Skip to main content

integration_accounts

Creates, updates, deletes, gets or lists an integration_accounts resource.

Overview

Nameintegration_accounts
TypeResource
Iddatadog.llm_observability.integration_accounts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringUnique identifier for the integration account. (example: account-abc123)
account_idstringProvider-specific account identifier. (example: org-XYZ123)
account_namestringHuman-readable name for the integration account. (example: Production OpenAI)
account_regionstringProvider region associated with the account, if applicable. (example: us-east-1)
azure_openai_metadataobjectAzure OpenAI-specific metadata for an integration account or inference request.
integrationstringThe name of the LLM provider integration. (example: openai)
vertex_ai_metadataobjectVertex AI-specific metadata for an integration account or inference request.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_llmobs_integration_accountsselectintegrationRetrieve 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.

NameDatatypeDescription
integrationstringThe name of the LLM integration.
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

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
;