Skip to content

Commit a00ca9a

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Enable automerging for Fastly routes. (#1759)
Co-authored-by: ci.datadog-api-spec <[email protected]> Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
1 parent 2aa31f2 commit a00ca9a

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2024-08-14 20:10:54.879805",
8-
"spec_repo_commit": "fafdefa8"
7+
"regenerated": "2024-08-14 20:56:46.224274",
8+
"spec_repo_commit": "dcc3176b"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-08-14 20:10:54.897602",
13-
"spec_repo_commit": "fafdefa8"
12+
"regenerated": "2024-08-14 20:56:46.242852",
13+
"spec_repo_commit": "dcc3176b"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8061,6 +8061,10 @@ components:
80618061
FastlyAccounResponseAttributes:
80628062
description: Attributes object of a Fastly account.
80638063
properties:
8064+
api_key:
8065+
description: The FastlyAccounResponseAttributes api_key.
8066+
type: string
8067+
writeOnly: true
80648068
name:
80658069
description: The name of the Fastly account.
80668070
example: test-name
@@ -8158,6 +8162,9 @@ components:
81588162
description: The API key of the Fastly account.
81598163
example: ABCDEFG123
81608164
type: string
8165+
name:
8166+
description: The FastlyAccountUpdateRequestAttributes name.
8167+
type: string
81618168
type: object
81628169
FastlyAccountUpdateRequestData:
81638170
description: Data object for updating a Fastly account.

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1111
* Attributes object of a Fastly account.
1212
*/
1313
export class FastlyAccounResponseAttributes {
14+
/**
15+
* The FastlyAccounResponseAttributes api_key.
16+
*/
17+
"apiKey"?: string;
1418
/**
1519
* The name of the Fastly account.
1620
*/
@@ -36,6 +40,10 @@ export class FastlyAccounResponseAttributes {
3640
* @ignore
3741
*/
3842
static readonly attributeTypeMap: AttributeTypeMap = {
43+
apiKey: {
44+
baseName: "api_key",
45+
type: "string",
46+
},
3947
name: {
4048
baseName: "name",
4149
type: "string",

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ export class FastlyAccountUpdateRequestAttributes {
1414
* The API key of the Fastly account.
1515
*/
1616
"apiKey"?: string;
17+
/**
18+
* The FastlyAccountUpdateRequestAttributes name.
19+
*/
20+
"name"?: string;
1721

1822
/**
1923
* A container for additional, undeclared properties.
@@ -35,6 +39,10 @@ export class FastlyAccountUpdateRequestAttributes {
3539
baseName: "api_key",
3640
type: "string",
3741
},
42+
name: {
43+
baseName: "name",
44+
type: "string",
45+
},
3846
additionalProperties: {
3947
baseName: "additionalProperties",
4048
type: "any",

0 commit comments

Comments
 (0)