Skip to content

Commit 614cdaa

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit d2c1ef5 of spec repo
1 parent 246edea commit 614cdaa

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:

packages/datadog-api-client-v2/models/ActionConnectionAttributes.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ export class ActionConnectionAttributes {
1919
* Name of the connection
2020
*/
2121
"name": string;
22+
/**
23+
* Tags associated with the connection. Each tag must follow the `key:value` format.
24+
* The `default` tag key is reserved.
25+
*/
26+
"tags"?: Array<string>;
2227

2328
/**
2429
* A container for additional, undeclared properties.
@@ -46,6 +51,10 @@ export class ActionConnectionAttributes {
4651
type: "string",
4752
required: true,
4853
},
54+
tags: {
55+
baseName: "tags",
56+
type: "Array<string>",
57+
},
4958
additionalProperties: {
5059
baseName: "additionalProperties",
5160
type: "{ [key: string]: any; }",

packages/datadog-api-client-v2/models/ActionConnectionAttributesUpdate.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ export class ActionConnectionAttributesUpdate {
1919
* Name of the connection
2020
*/
2121
"name"?: string;
22+
/**
23+
* Tags associated with the connection. Each tag must follow the `key:value` format.
24+
* The `default` tag key is reserved.
25+
*/
26+
"tags"?: Array<string>;
2227

2328
/**
2429
* A container for additional, undeclared properties.
@@ -44,6 +49,10 @@ export class ActionConnectionAttributesUpdate {
4449
baseName: "name",
4550
type: "string",
4651
},
52+
tags: {
53+
baseName: "tags",
54+
type: "Array<string>",
55+
},
4756
additionalProperties: {
4857
baseName: "additionalProperties",
4958
type: "{ [key: string]: any; }",

0 commit comments

Comments
 (0)