Skip to content

Commit 1f96033

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit d2c1ef5 of spec repo
1 parent f5e1df3 commit 1f96033

3 files changed

Lines changed: 57 additions & 0 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4241,6 +4241,18 @@ components:
42414241
description: Name of the connection
42424242
example: My AWS Connection
42434243
type: string
4244+
tags:
4245+
description: |-
4246+
Tags associated with the connection. Each tag must follow the `key:value` format.
4247+
The `default` tag key is reserved.
4248+
example:
4249+
- env:prod
4250+
- team:action-platform
4251+
items:
4252+
description: A non-reserved tag in `key:value` format.
4253+
pattern: "^(?!default:)[A-Za-z0-9._/-]+:[A-Za-z0-9._/-]+$"
4254+
type: string
4255+
type: array
42444256
required:
42454257
- name
42464258
- integration
@@ -4254,6 +4266,18 @@ components:
42544266
description: Name of the connection
42554267
example: My AWS Connection
42564268
type: string
4269+
tags:
4270+
description: |-
4271+
Tags associated with the connection. Each tag must follow the `key:value` format.
4272+
The `default` tag key is reserved.
4273+
example:
4274+
- env:prod
4275+
- team:action-platform
4276+
items:
4277+
description: A non-reserved tag in `key:value` format.
4278+
pattern: "^(?!default:)[A-Za-z0-9._/-]+:[A-Za-z0-9._/-]+$"
4279+
type: string
4280+
type: array
42574281
type: object
42584282
ActionConnectionData:
42594283
description: Data related to the connection.
@@ -121471,6 +121495,9 @@ paths:
121471121495
type: AWSAssumeRole
121472121496
type: AWS
121473121497
name: My AWS Connection
121498+
tags:
121499+
- env:prod
121500+
- team:action-platform
121474121501
type: action_connection
121475121502
schema:
121476121503
$ref: "#/components/schemas/CreateActionConnectionRequest"
@@ -121487,6 +121514,9 @@ paths:
121487121514
integration:
121488121515
type: AWS
121489121516
name: My AWS Connection
121517+
tags:
121518+
- env:prod
121519+
- team:action-platform
121490121520
id: 00000000-0000-0000-0000-000000000001
121491121521
type: action_connection
121492121522
schema:
@@ -121564,6 +121594,9 @@ paths:
121564121594
integration:
121565121595
type: AWS
121566121596
name: My AWS Connection
121597+
tags:
121598+
- env:prod
121599+
- team:action-platform
121567121600
id: 00000000-0000-0000-0000-000000000002
121568121601
type: action_connection
121569121602
schema:
@@ -121612,6 +121645,9 @@ paths:
121612121645
integration:
121613121646
type: AWS
121614121647
name: My AWS Connection
121648+
tags:
121649+
- env:prod
121650+
- team:action-platform
121615121651
type: action_connection
121616121652
schema:
121617121653
$ref: "#/components/schemas/UpdateActionConnectionRequest"
@@ -121629,6 +121665,9 @@ paths:
121629121665
integration:
121630121666
type: AWS
121631121667
name: My AWS Connection
121668+
tags:
121669+
- env:prod
121670+
- team:action-platform
121632121671
id: 00000000-0000-0000-0000-000000000003
121633121672
type: action_connection
121634121673
schema:

services/action_connection/src/v2/models/ActionConnectionAttributes.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ export class ActionConnectionAttributes {
1414
* Name of the connection
1515
*/
1616
"name": string;
17+
/**
18+
* Tags associated with the connection. Each tag must follow the `key:value` format.
19+
* The `default` tag key is reserved.
20+
*/
21+
"tags"?: Array<string>;
1722
/**
1823
* A container for additional, undeclared properties.
1924
* This is a holder for any undeclared properties as specified with
@@ -39,6 +44,10 @@ export class ActionConnectionAttributes {
3944
type: "string",
4045
required: true,
4146
},
47+
tags: {
48+
baseName: "tags",
49+
type: "Array<string>",
50+
},
4251
additionalProperties: {
4352
baseName: "additionalProperties",
4453
type: "{ [key: string]: any; }",

services/action_connection/src/v2/models/ActionConnectionAttributesUpdate.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ export class ActionConnectionAttributesUpdate {
1414
* Name of the connection
1515
*/
1616
"name"?: string;
17+
/**
18+
* Tags associated with the connection. Each tag must follow the `key:value` format.
19+
* The `default` tag key is reserved.
20+
*/
21+
"tags"?: Array<string>;
1722
/**
1823
* A container for additional, undeclared properties.
1924
* This is a holder for any undeclared properties as specified with
@@ -37,6 +42,10 @@ export class ActionConnectionAttributesUpdate {
3742
baseName: "name",
3843
type: "string",
3944
},
45+
tags: {
46+
baseName: "tags",
47+
type: "Array<string>",
48+
},
4049
additionalProperties: {
4150
baseName: "additionalProperties",
4251
type: "{ [key: string]: any; }",

0 commit comments

Comments
 (0)