File tree Expand file tree Collapse file tree 4 files changed +27
-4
lines changed
packages/datadog-api-client-v2/models Expand file tree Collapse file tree 4 files changed +27
-4
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"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 "
9
9
},
10
10
"v2": {
11
11
"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 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -8061,6 +8061,10 @@ components:
8061
8061
FastlyAccounResponseAttributes:
8062
8062
description: Attributes object of a Fastly account.
8063
8063
properties:
8064
+ api_key:
8065
+ description: The FastlyAccounResponseAttributes api_key.
8066
+ type: string
8067
+ writeOnly: true
8064
8068
name:
8065
8069
description: The name of the Fastly account.
8066
8070
example: test-name
@@ -8158,6 +8162,9 @@ components:
8158
8162
description: The API key of the Fastly account.
8159
8163
example: ABCDEFG123
8160
8164
type: string
8165
+ name:
8166
+ description: The FastlyAccountUpdateRequestAttributes name.
8167
+ type: string
8161
8168
type: object
8162
8169
FastlyAccountUpdateRequestData:
8163
8170
description: Data object for updating a Fastly account.
Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
11
11
* Attributes object of a Fastly account.
12
12
*/
13
13
export class FastlyAccounResponseAttributes {
14
+ /**
15
+ * The FastlyAccounResponseAttributes api_key.
16
+ */
17
+ "apiKey" ?: string ;
14
18
/**
15
19
* The name of the Fastly account.
16
20
*/
@@ -36,6 +40,10 @@ export class FastlyAccounResponseAttributes {
36
40
* @ignore
37
41
*/
38
42
static readonly attributeTypeMap : AttributeTypeMap = {
43
+ apiKey : {
44
+ baseName : "api_key" ,
45
+ type : "string" ,
46
+ } ,
39
47
name : {
40
48
baseName : "name" ,
41
49
type : "string" ,
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ export class FastlyAccountUpdateRequestAttributes {
14
14
* The API key of the Fastly account.
15
15
*/
16
16
"apiKey" ?: string ;
17
+ /**
18
+ * The FastlyAccountUpdateRequestAttributes name.
19
+ */
20
+ "name" ?: string ;
17
21
18
22
/**
19
23
* A container for additional, undeclared properties.
@@ -35,6 +39,10 @@ export class FastlyAccountUpdateRequestAttributes {
35
39
baseName : "api_key" ,
36
40
type : "string" ,
37
41
} ,
42
+ name : {
43
+ baseName : "name" ,
44
+ type : "string" ,
45
+ } ,
38
46
additionalProperties : {
39
47
baseName : "additionalProperties" ,
40
48
type : "any" ,
You can’t perform that action at this time.
0 commit comments