From 122e4c53ed2cbccd43e289ec45be13c1ae77317c Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Tue, 10 Mar 2026 09:50:06 +0000 Subject: [PATCH] Regenerate client from commit 09dba22 of spec repo --- .generator/schemas/v2/openapi.yaml | 2 ++ src/datadog_api_client/v2/model/org_connection_type_enum.py | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 051d86838f..8919d9f33a 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -47860,11 +47860,13 @@ components: enum: - logs - metrics + - audit example: logs type: string x-enum-varnames: - LOGS - METRICS + - AUDIT OrgConnectionUpdate: description: Org connection update data. properties: diff --git a/src/datadog_api_client/v2/model/org_connection_type_enum.py b/src/datadog_api_client/v2/model/org_connection_type_enum.py index 4715b7fa2c..0970a28fbb 100644 --- a/src/datadog_api_client/v2/model/org_connection_type_enum.py +++ b/src/datadog_api_client/v2/model/org_connection_type_enum.py @@ -16,16 +16,18 @@ class OrgConnectionTypeEnum(ModelSimple): """ Available connection types between organizations. - :param value: Must be one of ["logs", "metrics"]. + :param value: Must be one of ["logs", "metrics", "audit"]. :type value: str """ allowed_values = { "logs", "metrics", + "audit", } LOGS: ClassVar["OrgConnectionTypeEnum"] METRICS: ClassVar["OrgConnectionTypeEnum"] + AUDIT: ClassVar["OrgConnectionTypeEnum"] @cached_property def openapi_types(_): @@ -36,3 +38,4 @@ def openapi_types(_): OrgConnectionTypeEnum.LOGS = OrgConnectionTypeEnum("logs") OrgConnectionTypeEnum.METRICS = OrgConnectionTypeEnum("metrics") +OrgConnectionTypeEnum.AUDIT = OrgConnectionTypeEnum("audit")