From 0595673e49e1bc55e3df6921b5ff1c935c3af47f Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Wed, 19 Nov 2025 21:46:49 +0000 Subject: [PATCH] Regenerate client from commit e2f3b21 of spec repo --- .generator/schemas/v2/openapi.yaml | 5 ----- examples/v2/reference-tables/UpdateReferenceTable.ts | 1 - features/v2/reference_tables.feature | 4 ++-- .../models/PatchTableRequestDataAttributes.ts | 8 -------- 4 files changed, 2 insertions(+), 16 deletions(-) diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index d2781f328c87..17fa274d522c 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -38611,7 +38611,6 @@ components: type: STRING primary_keys: - id - sync_enabled: false tags: - test_tag type: reference_table @@ -38643,10 +38642,6 @@ components: $ref: '#/components/schemas/PatchTableRequestDataAttributesFileMetadata' schema: $ref: '#/components/schemas/PatchTableRequestDataAttributesSchema' - sync_enabled: - description: Whether this table is synced automatically. - example: false - type: boolean tags: description: Tags for organizing and filtering reference tables. example: diff --git a/examples/v2/reference-tables/UpdateReferenceTable.ts b/examples/v2/reference-tables/UpdateReferenceTable.ts index 0080307154eb..0ea3503b1044 100644 --- a/examples/v2/reference-tables/UpdateReferenceTable.ts +++ b/examples/v2/reference-tables/UpdateReferenceTable.ts @@ -35,7 +35,6 @@ const params: v2.ReferenceTablesApiUpdateReferenceTableRequest = { ], primaryKeys: ["id"], }, - syncEnabled: false, tags: ["test_tag"], }, type: "reference_table", diff --git a/features/v2/reference_tables.feature b/features/v2/reference_tables.feature index fa3ea42360ab..dee6c603418e 100644 --- a/features/v2/reference_tables.feature +++ b/features/v2/reference_tables.feature @@ -108,7 +108,7 @@ Feature: Reference Tables Scenario: Update reference table returns "Bad Request" response Given new "UpdateReferenceTable" request And request contains "id" parameter from "REPLACE.ME" - And body with value {"data": {"attributes": {"description": "this is a cloud table generated via a cloud bucket sync", "file_metadata": {"access_details": {"aws_detail": {"aws_account_id": "test-account-id", "aws_bucket_name": "test-bucket", "file_path": "test_rt.csv"}}, "sync_enabled": true}, "schema": {"fields": [{"name": "id", "type": "INT32"}, {"name": "name", "type": "STRING"}], "primary_keys": ["id"]}, "sync_enabled": false, "tags": ["test_tag"]}, "type": "reference_table"}} + And body with value {"data": {"attributes": {"description": "this is a cloud table generated via a cloud bucket sync", "file_metadata": {"access_details": {"aws_detail": {"aws_account_id": "test-account-id", "aws_bucket_name": "test-bucket", "file_path": "test_rt.csv"}}, "sync_enabled": true}, "schema": {"fields": [{"name": "id", "type": "INT32"}, {"name": "name", "type": "STRING"}], "primary_keys": ["id"]}, "tags": ["test_tag"]}, "type": "reference_table"}} When the request is sent Then the response status is 400 Bad Request @@ -116,6 +116,6 @@ Feature: Reference Tables Scenario: Update reference table returns "OK" response Given new "UpdateReferenceTable" request And request contains "id" parameter from "REPLACE.ME" - And body with value {"data": {"attributes": {"description": "this is a cloud table generated via a cloud bucket sync", "file_metadata": {"access_details": {"aws_detail": {"aws_account_id": "test-account-id", "aws_bucket_name": "test-bucket", "file_path": "test_rt.csv"}}, "sync_enabled": true}, "schema": {"fields": [{"name": "id", "type": "INT32"}, {"name": "name", "type": "STRING"}], "primary_keys": ["id"]}, "sync_enabled": false, "tags": ["test_tag"]}, "type": "reference_table"}} + And body with value {"data": {"attributes": {"description": "this is a cloud table generated via a cloud bucket sync", "file_metadata": {"access_details": {"aws_detail": {"aws_account_id": "test-account-id", "aws_bucket_name": "test-bucket", "file_path": "test_rt.csv"}}, "sync_enabled": true}, "schema": {"fields": [{"name": "id", "type": "INT32"}, {"name": "name", "type": "STRING"}], "primary_keys": ["id"]}, "tags": ["test_tag"]}, "type": "reference_table"}} When the request is sent Then the response status is 200 OK diff --git a/packages/datadog-api-client-v2/models/PatchTableRequestDataAttributes.ts b/packages/datadog-api-client-v2/models/PatchTableRequestDataAttributes.ts index a6699da24562..642db0fe28a8 100644 --- a/packages/datadog-api-client-v2/models/PatchTableRequestDataAttributes.ts +++ b/packages/datadog-api-client-v2/models/PatchTableRequestDataAttributes.ts @@ -24,10 +24,6 @@ export class PatchTableRequestDataAttributes { * Schema defining the updates to the structure and columns of the reference table. Schema fields cannot be deleted or renamed. */ "schema"?: PatchTableRequestDataAttributesSchema; - /** - * Whether this table is synced automatically. - */ - "syncEnabled"?: boolean; /** * Tags for organizing and filtering reference tables. */ @@ -61,10 +57,6 @@ export class PatchTableRequestDataAttributes { baseName: "schema", type: "PatchTableRequestDataAttributesSchema", }, - syncEnabled: { - baseName: "sync_enabled", - type: "boolean", - }, tags: { baseName: "tags", type: "Array",