team_syncs
Creates, updates, deletes, gets or lists a team_syncs resource.
Overview
| Name | team_syncs |
| Type | Resource |
| Id | datadog.organization.team_syncs |
Fields
The following fields are returned by SELECT queries:
- get_team_sync
| Name | Datatype | Description |
|---|---|---|
id | string | The sync's identifier (example: aeadc05e-98a8-11ec-ac2c-da7ad0900001) |
attributes | object | Team sync attributes. |
type | string | Team sync bulk type. (team_sync_bulk) (example: team_sync_bulk) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_team_sync | select | filter[source] | Get all team synchronization configurations.<br />Returns a list of configurations used for linking or provisioning teams with external sources like GitHub. |
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 |
|---|---|---|
filter[source] | string | Filter by the external source platform for team synchronization |
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_team_sync
Get all team synchronization configurations.<br />Returns a list of configurations used for linking or provisioning teams with external sources like GitHub.
SELECT
id,
attributes,
type
FROM datadog.organization.team_syncs
WHERE filter[source] = '{{ filter[source] }}' -- required
;