Skip to main content

google_chat_organization_delegated_users

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

Overview

Namegoogle_chat_organization_delegated_users
TypeResource
Iddatadog.integrations.google_chat_organization_delegated_users

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the delegated user. (example: 2b3c4d5e-6f78-9012-bcde-f23456789012)
attributesobjectGoogle Chat delegated user attributes.
typestringGoogle Chat delegated user resource type. (google-chat-delegated-user) (default: google-chat-delegated-user, example: google-chat-delegated-user)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_google_chat_delegated_userselectorganization_binding_idGet the delegated user for a Google Chat organization binding in the Datadog Google Chat integration.
delete_google_chat_delegated_userdeleteorganization_binding_idDelete the delegated user for 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 the delegated user for a Google Chat organization binding in the Datadog Google Chat integration.

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

DELETE examples

Delete the delegated user for a Google Chat organization binding from the Datadog Google Chat integration.

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