Skip to content

Commit f7530eb

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit df95b91b of spec repo
1 parent ce3577d commit f7530eb

6 files changed

+15
-9
lines changed

.apigentools-info

+4-4
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": "2025-01-28 14:57:26.078176",
8-
"spec_repo_commit": "f832f43e"
7+
"regenerated": "2025-01-28 19:48:07.524055",
8+
"spec_repo_commit": "df95b91b"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-01-28 14:57:26.093845",
13-
"spec_repo_commit": "f832f43e"
12+
"regenerated": "2025-01-28 19:48:07.539911",
13+
"spec_repo_commit": "df95b91b"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -5363,8 +5363,7 @@ components:
53635363
- USER
53645364
- SYSTEM
53655365
ChangeEventCustomAttributesChangedResource:
5366-
description: Object representing a uniquely identified resource. Only the resource
5367-
type `feature_flag` is supported.
5366+
description: Object representing a uniquely identified resource.
53685367
properties:
53695368
name:
53705369
description: Resource's name.
@@ -5380,10 +5379,12 @@ components:
53805379
description: Resource's type.
53815380
enum:
53825381
- feature_flag
5382+
- configuration
53835383
example: feature_flag
53845384
type: string
53855385
x-enum-varnames:
53865386
- FEATURE_FLAG
5387+
- CONFIGURATION
53875388
ChangeEventCustomAttributesImpactedResourcesItems:
53885389
description: Object representing a uniquely identified resource. Only the resource
53895390
type `service` is supported.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export class ChangeEventCustomAttributes {
2222
*/
2323
"changeMetadata"?: { [key: string]: any };
2424
/**
25-
* Object representing a uniquely identified resource. Only the resource type `feature_flag` is supported.
25+
* Object representing a uniquely identified resource.
2626
*/
2727
"changedResource": ChangeEventCustomAttributesChangedResource;
2828
/**

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { ChangeEventCustomAttributesChangedResourceType } from "./ChangeEventCus
88
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
99

1010
/**
11-
* Object representing a uniquely identified resource. Only the resource type `feature_flag` is supported.
11+
* Object representing a uniquely identified resource.
1212
*/
1313
export class ChangeEventCustomAttributesChangedResource {
1414
/**

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

+2
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,7 @@ import { UnparsedObject } from "../../datadog-api-client-common/util";
1212

1313
export type ChangeEventCustomAttributesChangedResourceType =
1414
| typeof FEATURE_FLAG
15+
| typeof CONFIGURATION
1516
| UnparsedObject;
1617
export const FEATURE_FLAG = "feature_flag";
18+
export const CONFIGURATION = "configuration";

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -1666,7 +1666,10 @@ const enumsMap: { [key: string]: any[] } = {
16661666
CaseStatus: ["OPEN", "IN_PROGRESS", "CLOSED"],
16671667
CaseType: ["STANDARD"],
16681668
ChangeEventCustomAttributesAuthorType: ["user", "system"],
1669-
ChangeEventCustomAttributesChangedResourceType: ["feature_flag"],
1669+
ChangeEventCustomAttributesChangedResourceType: [
1670+
"feature_flag",
1671+
"configuration",
1672+
],
16701673
ChangeEventCustomAttributesImpactedResourcesItemsType: ["service"],
16711674
CloudConfigurationRuleType: ["cloud_configuration"],
16721675
CloudWorkloadSecurityAgentRuleType: ["agent_rule"],

0 commit comments

Comments
 (0)