integration_accounts
Creates, updates, deletes, gets or lists an integration_accounts resource.
Overview
| Name | integration_accounts |
| Type | Resource |
| Id | datadog.llm_observability.integration_accounts |
Fields
The following fields are returned by SELECT queries:
- list_llmobs_integration_accounts
| Name | Datatype | Description |
|---|---|---|
id | string | Unique identifier for the integration account. (example: account-abc123) |
account_id | string | Provider-specific account identifier. (example: org-XYZ123) |
account_name | string | Human-readable name for the integration account. (example: Production OpenAI) |
account_region | string | Provider region associated with the account, if applicable. (example: us-east-1) |
azure_openai_metadata | object | Azure OpenAI-specific metadata for an integration account or inference request. |
integration | string | The name of the LLM provider integration. (example: openai) |
vertex_ai_metadata | object | Vertex AI-specific metadata for an integration account or inference request. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_llmobs_integration_accounts | select | integration | Retrieve the list of configured accounts for the specified LLM provider 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 |
|---|---|---|
integration | string | The name of the LLM integration. |
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
- list_llmobs_integration_accounts
Retrieve the list of configured accounts for the specified LLM provider integration.
SELECT
id,
account_id,
account_name,
account_region,
azure_openai_metadata,
integration,
vertex_ai_metadata
FROM datadog.llm_observability.integration_accounts
WHERE integration = '{{ integration }}' -- required
;