Skip to main content

google_chat_organization_app_named_spaces

Creates, updates, deletes, gets or lists a google_chat_organization_app_named_spaces resource.

Overview

Namegoogle_chat_organization_app_named_spaces
TypeResource
Iddatadog.integrations.google_chat_organization_app_named_spaces

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the Google Chat space. (example: 596da4af-0563-4097-90ff-07230c3f9db3)
attributesobjectGoogle Chat space attributes.
typestringGoogle Chat space resource type. (google-chat-app-named-space) (default: google-chat-app-named-space, example: google-chat-app-named-space)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_space_by_display_nameselectdomain_name, space_display_nameGet the resource name and organization binding ID of a space in the Datadog Google Chat integration.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
domain_namestringThe Google Chat domain name.
sitestringThe Datadog site (region) for your organization, for example datadoghq.com, us3.datadoghq.com, us5.datadoghq.com, ap1.datadoghq.com, ap2.datadoghq.com, datadoghq.eu, ddog-gov.com. Resolved from the DD_SITE environment variable when set. Optional: defaults to datadoghq.com, or the value of the DD_SITE environment variable when set; a WHERE value overrides both.
space_display_namestringThe Google Chat space display name.

SELECT examples

Get the resource name and organization binding ID of a space in the Datadog Google Chat integration.

SELECT
id,
attributes,
type
FROM datadog.integrations.google_chat_organization_app_named_spaces
WHERE domain_name = '{{ domain_name }}' -- required
AND space_display_name = '{{ space_display_name }}' -- required
;