webhook_auth_methods
Creates, updates, deletes, gets or lists a webhook_auth_methods resource.
Overview
| Name | webhook_auth_methods |
| Type | Resource |
| Id | datadog.integrations.webhook_auth_methods |
Fields
The following fields are returned by SELECT queries:
- get_all_auth_methods
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the auth method. (example: 596da4af-0563-4097-90ff-07230c3f9db3) |
attributes | object | Attributes of a webhooks auth method. |
relationships | object | Relationships of a webhooks auth method to its protocol-specific resource. |
type | string | Webhooks auth method resource type. (webhooks-auth-method) (default: webhooks-auth-method, example: webhooks-auth-method) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_all_auth_methods | select | include | Get a list of all auth methods configured for the Webhooks integration in<br />your organization. |
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 |
|---|---|---|
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. |
include | string | Comma-separated list of relationships to include in the response. |
SELECT examples
- get_all_auth_methods
Get a list of all auth methods configured for the Webhooks integration in<br />your organization.
SELECT
id,
attributes,
relationships,
type
FROM datadog.integrations.webhook_auth_methods
WHERE include = '{{ include }}'
;