diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index be704220519..92be46cd8f3 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -26223,9 +26223,11 @@ components: description: Schema defining the structure and columns of the reference table. properties: fields: - description: The schema fields. + description: The schema fields. Maximum of 200 columns. items: $ref: "#/components/schemas/CreateTableRequestDataAttributesSchemaFieldsItems" + maxItems: 200 + minItems: 1 type: array primary_keys: description: List of field names that serve as primary keys for the table. Only one primary key is supported, and it is used as an ID to retrieve rows. @@ -26488,13 +26490,14 @@ components: description: Upload configuration specifying how data is uploaded by the user, and properties of the table to associate the upload with. properties: headers: - description: The CSV file headers that define the schema fields, provided in the same order as the columns in the uploaded file. + description: The CSV file headers that define the schema fields, provided in the same order as the columns in the uploaded file. Maximum of 200 columns. example: - "field_1" - "field_2" items: description: A column header name from the CSV file. type: string + maxItems: 200 type: array part_count: description: Number of parts to split the file into for multipart upload. @@ -80962,9 +80965,11 @@ components: description: Schema defining the updates to the structure and columns of the reference table. Schema fields cannot be deleted or renamed. properties: fields: - description: The schema fields. + description: The schema fields. Maximum of 200 columns. items: $ref: "#/components/schemas/PatchTableRequestDataAttributesSchemaFieldsItems" + maxItems: 200 + minItems: 1 type: array primary_keys: description: List of field names that serve as primary keys for the table. Only one primary key is supported, and it is used as an ID to retrieve rows. Primary keys cannot be changed after table creation. @@ -110124,9 +110129,11 @@ components: description: Schema defining the structure and columns of the reference table. properties: fields: - description: The schema fields. + description: The schema fields. Maximum of 200 columns. items: $ref: "#/components/schemas/TableResultV2DataAttributesSchemaFieldsItems" + maxItems: 200 + minItems: 1 type: array primary_keys: description: List of field names that serve as primary keys for the table. Only one primary key is supported, and it is used as an ID to retrieve rows. diff --git a/src/main/java/com/datadog/api/client/v2/model/CreateTableRequestDataAttributesSchema.java b/src/main/java/com/datadog/api/client/v2/model/CreateTableRequestDataAttributesSchema.java index 9c5b2ed67a9..a2ca95b565a 100644 --- a/src/main/java/com/datadog/api/client/v2/model/CreateTableRequestDataAttributesSchema.java +++ b/src/main/java/com/datadog/api/client/v2/model/CreateTableRequestDataAttributesSchema.java @@ -65,7 +65,7 @@ public CreateTableRequestDataAttributesSchema addFieldsItem( } /** - * The schema fields. + * The schema fields. Maximum of 200 columns. * * @return fields */ diff --git a/src/main/java/com/datadog/api/client/v2/model/CreateUploadRequestDataAttributes.java b/src/main/java/com/datadog/api/client/v2/model/CreateUploadRequestDataAttributes.java index fa863e864ba..a7b0409c6a9 100644 --- a/src/main/java/com/datadog/api/client/v2/model/CreateUploadRequestDataAttributes.java +++ b/src/main/java/com/datadog/api/client/v2/model/CreateUploadRequestDataAttributes.java @@ -71,7 +71,7 @@ public CreateUploadRequestDataAttributes addHeadersItem(String headersItem) { /** * The CSV file headers that define the schema fields, provided in the same order as the columns - * in the uploaded file. + * in the uploaded file. Maximum of 200 columns. * * @return headers */ diff --git a/src/main/java/com/datadog/api/client/v2/model/PatchTableRequestDataAttributesSchema.java b/src/main/java/com/datadog/api/client/v2/model/PatchTableRequestDataAttributesSchema.java index 5a1f5ce3398..ada0b7de6be 100644 --- a/src/main/java/com/datadog/api/client/v2/model/PatchTableRequestDataAttributesSchema.java +++ b/src/main/java/com/datadog/api/client/v2/model/PatchTableRequestDataAttributesSchema.java @@ -68,7 +68,7 @@ public PatchTableRequestDataAttributesSchema addFieldsItem( } /** - * The schema fields. + * The schema fields. Maximum of 200 columns. * * @return fields */ diff --git a/src/main/java/com/datadog/api/client/v2/model/TableResultV2DataAttributesSchema.java b/src/main/java/com/datadog/api/client/v2/model/TableResultV2DataAttributesSchema.java index cb1b8e33f4b..d1dc2956498 100644 --- a/src/main/java/com/datadog/api/client/v2/model/TableResultV2DataAttributesSchema.java +++ b/src/main/java/com/datadog/api/client/v2/model/TableResultV2DataAttributesSchema.java @@ -65,7 +65,7 @@ public TableResultV2DataAttributesSchema addFieldsItem( } /** - * The schema fields. + * The schema fields. Maximum of 200 columns. * * @return fields */