Skip to content

Commit bd1f9cb

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Enable all similar routes (#1772)
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 3abe4e8 commit bd1f9cb

File tree

7 files changed

+40
-4
lines changed

7 files changed

+40
-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-19 19:42:22.067782",
8-
"spec_repo_commit": "e0cd2a66"
7+
"regenerated": "2024-08-20 17:44:45.986126",
8+
"spec_repo_commit": "2d74b3a8"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-08-19 19:42:22.085991",
13-
"spec_repo_commit": "e0cd2a66"
12+
"regenerated": "2024-08-20 17:44:46.004079",
13+
"spec_repo_commit": "2d74b3a8"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4498,6 +4498,9 @@ components:
44984498
key is provided (and not a token), this field is also required.
44994499
45004500
type: string
4501+
name:
4502+
description: The name of the Cloudflare account.
4503+
type: string
45014504
resources:
45024505
description: An allowlist of resources to restrict pulling metrics for.
45034506
example:
@@ -8165,6 +8168,9 @@ components:
81658168
description: The API key of the Fastly account.
81668169
example: ABCDEFG123
81678170
type: string
8171+
name:
8172+
description: The name of the Fastly account.
8173+
type: string
81688174
type: object
81698175
FastlyAccountUpdateRequestData:
81708176
description: Data object for updating a Fastly account.
@@ -14345,10 +14351,12 @@ components:
1434514351
custom_url:
1434614352
description: The custom URL for a custom region.
1434714353
example: https://example.com
14354+
format: url
1434814355
type: string
1434914356
name:
1435014357
description: The name for the Opsgenie service.
1435114358
example: fake-opsgenie-service-name
14359+
maxLength: 100
1435214360
type: string
1435314361
opsgenie_api_key:
1435414362
description: The Opsgenie API key for your Opsgenie service.
@@ -14406,11 +14414,13 @@ components:
1440614414
custom_url:
1440714415
description: The custom URL for a custom region.
1440814416
example: null
14417+
format: url
1440914418
nullable: true
1441014419
type: string
1441114420
name:
1441214421
description: The name for the Opsgenie service.
1441314422
example: fake-opsgenie-service-name
14423+
maxLength: 100
1441414424
type: string
1441514425
region:
1441614426
$ref: '#/components/schemas/OpsgenieServiceRegionType'
@@ -14423,6 +14433,8 @@ components:
1442314433
id:
1442414434
description: The ID of the Opsgenie service.
1442514435
example: 596da4af-0563-4097-90ff-07230c3f9db3
14436+
maxLength: 100
14437+
minLength: 1
1442614438
type: string
1442714439
type:
1442814440
$ref: '#/components/schemas/OpsgenieServiceType'
@@ -14446,11 +14458,13 @@ components:
1444614458
custom_url:
1444714459
description: The custom URL for a custom region.
1444814460
example: https://example.com
14461+
format: url
1444914462
nullable: true
1445014463
type: string
1445114464
name:
1445214465
description: The name for the Opsgenie service.
1445314466
example: fake-opsgenie-service-name
14467+
maxLength: 100
1445414468
type: string
1445514469
opsgenie_api_key:
1445614470
description: The Opsgenie API key for your Opsgenie service.
@@ -14467,6 +14481,8 @@ components:
1446714481
id:
1446814482
description: The ID of the Opsgenie service.
1446914483
example: 596da4af-0563-4097-90ff-07230c3f9db3
14484+
maxLength: 100
14485+
minLength: 1
1447014486
type: string
1447114487
type:
1447214488
$ref: '#/components/schemas/OpsgenieServiceType'
@@ -24092,6 +24108,7 @@ components:
2409224108
access to the cloud cost data source in dashboards and notebooks.
2409324109
cloud_cost_management_write: Configure cloud cost accounts and global
2409424110
customizations.
24111+
code_analysis_read: View Code Analysis.
2409524112
continuous_profiler_pgo_read: Read and query Continuous Profiler data
2409624113
for Profile-Guided Optimization (PGO).
2409724114
create_webhooks: Create webhooks integrations.

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ export class CloudflareAccountUpdateRequestAttributes {
1818
* The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
1919
*/
2020
"email"?: string;
21+
/**
22+
* The name of the Cloudflare account.
23+
*/
24+
"name"?: string;
2125
/**
2226
* An allowlist of resources to restrict pulling metrics for.
2327
*/
@@ -52,6 +56,10 @@ export class CloudflareAccountUpdateRequestAttributes {
5256
baseName: "email",
5357
type: "string",
5458
},
59+
name: {
60+
baseName: "name",
61+
type: "string",
62+
},
5563
resources: {
5664
baseName: "resources",
5765
type: "Array<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 name of the Fastly account.
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",

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export class OpsgenieServiceCreateAttributes {
4747
customUrl: {
4848
baseName: "custom_url",
4949
type: "string",
50+
format: "url",
5051
},
5152
name: {
5253
baseName: "name",

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ export class OpsgenieServiceResponseAttributes {
4343
customUrl: {
4444
baseName: "custom_url",
4545
type: "string",
46+
format: "url",
4647
},
4748
name: {
4849
baseName: "name",

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export class OpsgenieServiceUpdateAttributes {
4747
customUrl: {
4848
baseName: "custom_url",
4949
type: "string",
50+
format: "url",
5051
},
5152
name: {
5253
baseName: "name",

0 commit comments

Comments
 (0)