google_chat_organization_delegated_users
Creates, updates, deletes, gets or lists a google_chat_organization_delegated_users resource.
Overview
| Name | google_chat_organization_delegated_users |
| Type | Resource |
| Id | datadog.integrations.google_chat_organization_delegated_users |
Fields
The following fields are returned by SELECT queries:
- get_google_chat_delegated_user
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the delegated user. (example: 2b3c4d5e-6f78-9012-bcde-f23456789012) |
attributes | object | Google Chat delegated user attributes. |
type | string | Google 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_google_chat_delegated_user | select | organization_binding_id | Get the delegated user for a Google Chat organization binding in the Datadog Google Chat integration. | |
delete_google_chat_delegated_user | delete | organization_binding_id | Delete 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.
| Name | Datatype | Description |
|---|---|---|
organization_binding_id | string | Your organization binding ID. |
site | string | The 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_google_chat_delegated_user
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_google_chat_delegated_user
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
;