diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index a5b1012c5d22..94872e876914 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -4241,6 +4241,18 @@ components: description: Name of the connection example: My AWS Connection type: string + tags: + description: |- + Tags associated with the connection. Each tag must follow the `key:value` format. + The `default` tag key is reserved. + example: + - env:prod + - team:action-platform + items: + description: A non-reserved tag in `key:value` format. + pattern: "^(?!default:)[A-Za-z0-9._/-]+:[A-Za-z0-9._/-]+$" + type: string + type: array required: - name - integration @@ -4254,6 +4266,18 @@ components: description: Name of the connection example: My AWS Connection type: string + tags: + description: |- + Tags associated with the connection. Each tag must follow the `key:value` format. + The `default` tag key is reserved. + example: + - env:prod + - team:action-platform + items: + description: A non-reserved tag in `key:value` format. + pattern: "^(?!default:)[A-Za-z0-9._/-]+:[A-Za-z0-9._/-]+$" + type: string + type: array type: object ActionConnectionData: description: Data related to the connection. @@ -121471,6 +121495,9 @@ paths: type: AWSAssumeRole type: AWS name: My AWS Connection + tags: + - env:prod + - team:action-platform type: action_connection schema: $ref: "#/components/schemas/CreateActionConnectionRequest" @@ -121487,6 +121514,9 @@ paths: integration: type: AWS name: My AWS Connection + tags: + - env:prod + - team:action-platform id: 00000000-0000-0000-0000-000000000001 type: action_connection schema: @@ -121564,6 +121594,9 @@ paths: integration: type: AWS name: My AWS Connection + tags: + - env:prod + - team:action-platform id: 00000000-0000-0000-0000-000000000002 type: action_connection schema: @@ -121612,6 +121645,9 @@ paths: integration: type: AWS name: My AWS Connection + tags: + - env:prod + - team:action-platform type: action_connection schema: $ref: "#/components/schemas/UpdateActionConnectionRequest" @@ -121629,6 +121665,9 @@ paths: integration: type: AWS name: My AWS Connection + tags: + - env:prod + - team:action-platform id: 00000000-0000-0000-0000-000000000003 type: action_connection schema: diff --git a/packages/datadog-api-client-v2/models/ActionConnectionAttributes.ts b/packages/datadog-api-client-v2/models/ActionConnectionAttributes.ts index 848fd98320a6..797d2a02aa52 100644 --- a/packages/datadog-api-client-v2/models/ActionConnectionAttributes.ts +++ b/packages/datadog-api-client-v2/models/ActionConnectionAttributes.ts @@ -19,6 +19,11 @@ export class ActionConnectionAttributes { * Name of the connection */ "name": string; + /** + * Tags associated with the connection. Each tag must follow the `key:value` format. + * The `default` tag key is reserved. + */ + "tags"?: Array; /** * A container for additional, undeclared properties. @@ -46,6 +51,10 @@ export class ActionConnectionAttributes { type: "string", required: true, }, + tags: { + baseName: "tags", + type: "Array", + }, additionalProperties: { baseName: "additionalProperties", type: "{ [key: string]: any; }", diff --git a/packages/datadog-api-client-v2/models/ActionConnectionAttributesUpdate.ts b/packages/datadog-api-client-v2/models/ActionConnectionAttributesUpdate.ts index 2be2a1d792d8..f3e1fd898ea8 100644 --- a/packages/datadog-api-client-v2/models/ActionConnectionAttributesUpdate.ts +++ b/packages/datadog-api-client-v2/models/ActionConnectionAttributesUpdate.ts @@ -19,6 +19,11 @@ export class ActionConnectionAttributesUpdate { * Name of the connection */ "name"?: string; + /** + * Tags associated with the connection. Each tag must follow the `key:value` format. + * The `default` tag key is reserved. + */ + "tags"?: Array; /** * A container for additional, undeclared properties. @@ -44,6 +49,10 @@ export class ActionConnectionAttributesUpdate { baseName: "name", type: "string", }, + tags: { + baseName: "tags", + type: "Array", + }, additionalProperties: { baseName: "additionalProperties", type: "{ [key: string]: any; }",