Skip to main content

google_chat_organizations

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

Overview

Namegoogle_chat_organizations
TypeResource
Iddatadog.integrations.google_chat_organizations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the Google Chat organization binding. (example: 5ce87709-a12f-4086-fcc8-147045b73a19)
attributesobjectGoogle Chat organization attributes.
relationshipsobjectGoogle Chat organization relationships.
typestringGoogle Chat organization resource type. (google-chat-organization) (default: google-chat-organization, example: google-chat-organization)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_google_chat_organizationselectorganization_binding_idGet a Google Chat organization binding from the Datadog Google Chat integration.
list_google_chat_organizationsselectGet a list of all Google Chat organization bindings in the Datadog Google Chat integration.
delete_google_chat_organizationdeleteorganization_binding_idDelete a Google Chat organization binding from 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
organization_binding_idstringYour organization binding ID.
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.

SELECT examples

Get a Google Chat organization binding from the Datadog Google Chat integration.

SELECT
id,
attributes,
relationships,
type
FROM datadog.integrations.google_chat_organizations
WHERE organization_binding_id = '{{ organization_binding_id }}' -- required
;

DELETE examples

Delete a Google Chat organization binding from the Datadog Google Chat integration.

DELETE FROM datadog.integrations.google_chat_organizations
WHERE organization_binding_id = '{{ organization_binding_id }}' --required
;