File tree Expand file tree Collapse file tree 6 files changed +83
-4
lines changed
packages/datadog-api-client-v1 Expand file tree Collapse file tree 6 files changed +83
-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.4",
7
- "regenerated": "2023-02-08 16:22:59.782448 ",
8
- "spec_repo_commit": "c826f5c2 "
7
+ "regenerated": "2023-02-10 07:58:02.678617 ",
8
+ "spec_repo_commit": "062e75ae "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.4",
12
- "regenerated": "2023-02-08 16:22:59.797784 ",
13
- "spec_repo_commit": "c826f5c2 "
12
+ "regenerated": "2023-02-10 07:58:02.696723 ",
13
+ "spec_repo_commit": "062e75ae "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -3791,6 +3791,22 @@ components:
3791
3791
type: string
3792
3792
type: array
3793
3793
type: object
3794
+ IPPrefixesOrchestrator:
3795
+ description: Available prefix information for the Orchestrator endpoints.
3796
+ properties:
3797
+ prefixes_ipv4:
3798
+ description: List of IPv4 prefixes.
3799
+ items:
3800
+ description: IPv4 prefix
3801
+ type: string
3802
+ type: array
3803
+ prefixes_ipv6:
3804
+ description: List of IPv6 prefixes.
3805
+ items:
3806
+ description: IPv6 prefix
3807
+ type: string
3808
+ type: array
3809
+ type: object
3794
3810
IPPrefixesProcess:
3795
3811
description: Available prefix information for the Process endpoints.
3796
3812
properties:
@@ -3889,6 +3905,8 @@ components:
3889
3905
description: Date when last updated, in the form `YYYY-MM-DD-hh-mm-ss`.
3890
3906
example: 2019-10-31-20-00-00
3891
3907
type: string
3908
+ orchestrator:
3909
+ $ref: '#/components/schemas/IPPrefixesOrchestrator'
3892
3910
process:
3893
3911
$ref: '#/components/schemas/IPPrefixesProcess'
3894
3912
synthetics:
Original file line number Diff line number Diff line change @@ -482,6 +482,7 @@ export { IPPrefixesAgents } from "./models/IPPrefixesAgents";
482
482
export { IPPrefixesAPI } from "./models/IPPrefixesAPI" ;
483
483
export { IPPrefixesAPM } from "./models/IPPrefixesAPM" ;
484
484
export { IPPrefixesLogs } from "./models/IPPrefixesLogs" ;
485
+ export { IPPrefixesOrchestrator } from "./models/IPPrefixesOrchestrator" ;
485
486
export { IPPrefixesProcess } from "./models/IPPrefixesProcess" ;
486
487
export { IPPrefixesSynthetics } from "./models/IPPrefixesSynthetics" ;
487
488
export { IPPrefixesSyntheticsPrivateLocations } from "./models/IPPrefixesSyntheticsPrivateLocations" ;
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
3
+ * This product includes software developed at Datadog (https://www.datadoghq.com/).
4
+ * Copyright 2020-Present Datadog, Inc.
5
+ */
6
+
7
+ import { AttributeTypeMap } from "../../datadog-api-client-common/util" ;
8
+
9
+ /**
10
+ * Available prefix information for the Orchestrator endpoints.
11
+ */
12
+ export class IPPrefixesOrchestrator {
13
+ /**
14
+ * List of IPv4 prefixes.
15
+ */
16
+ "prefixesIpv4" ?: Array < string > ;
17
+ /**
18
+ * List of IPv6 prefixes.
19
+ */
20
+ "prefixesIpv6" ?: Array < string > ;
21
+
22
+ /**
23
+ * @ignore
24
+ */
25
+ "_unparsed" ?: boolean ;
26
+
27
+ /**
28
+ * @ignore
29
+ */
30
+ static readonly attributeTypeMap : AttributeTypeMap = {
31
+ prefixesIpv4 : {
32
+ baseName : "prefixes_ipv4" ,
33
+ type : "Array<string>" ,
34
+ } ,
35
+ prefixesIpv6 : {
36
+ baseName : "prefixes_ipv6" ,
37
+ type : "Array<string>" ,
38
+ } ,
39
+ } ;
40
+
41
+ /**
42
+ * @ignore
43
+ */
44
+ static getAttributeTypeMap ( ) : AttributeTypeMap {
45
+ return IPPrefixesOrchestrator . attributeTypeMap ;
46
+ }
47
+
48
+ public constructor ( ) { }
49
+ }
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import { IPPrefixesAgents } from "./IPPrefixesAgents";
7
7
import { IPPrefixesAPI } from "./IPPrefixesAPI" ;
8
8
import { IPPrefixesAPM } from "./IPPrefixesAPM" ;
9
9
import { IPPrefixesLogs } from "./IPPrefixesLogs" ;
10
+ import { IPPrefixesOrchestrator } from "./IPPrefixesOrchestrator" ;
10
11
import { IPPrefixesProcess } from "./IPPrefixesProcess" ;
11
12
import { IPPrefixesSynthetics } from "./IPPrefixesSynthetics" ;
12
13
import { IPPrefixesSyntheticsPrivateLocations } from "./IPPrefixesSyntheticsPrivateLocations" ;
@@ -38,6 +39,10 @@ export class IPRanges {
38
39
* Date when last updated, in the form `YYYY-MM-DD-hh-mm-ss`.
39
40
*/
40
41
"modified" ?: string ;
42
+ /**
43
+ * Available prefix information for the Orchestrator endpoints.
44
+ */
45
+ "orchestrator" ?: IPPrefixesOrchestrator ;
41
46
/**
42
47
* Available prefix information for the Process endpoints.
43
48
*/
@@ -88,6 +93,10 @@ export class IPRanges {
88
93
baseName : "modified" ,
89
94
type : "string" ,
90
95
} ,
96
+ orchestrator : {
97
+ baseName : "orchestrator" ,
98
+ type : "IPPrefixesOrchestrator" ,
99
+ } ,
91
100
process : {
92
101
baseName : "process" ,
93
102
type : "IPPrefixesProcess" ,
Original file line number Diff line number Diff line change @@ -115,6 +115,7 @@ import { IPPrefixesAPI } from "./IPPrefixesAPI";
115
115
import { IPPrefixesAPM } from "./IPPrefixesAPM" ;
116
116
import { IPPrefixesAgents } from "./IPPrefixesAgents" ;
117
117
import { IPPrefixesLogs } from "./IPPrefixesLogs" ;
118
+ import { IPPrefixesOrchestrator } from "./IPPrefixesOrchestrator" ;
118
119
import { IPPrefixesProcess } from "./IPPrefixesProcess" ;
119
120
import { IPPrefixesSynthetics } from "./IPPrefixesSynthetics" ;
120
121
import { IPPrefixesSyntheticsPrivateLocations } from "./IPPrefixesSyntheticsPrivateLocations" ;
@@ -1505,6 +1506,7 @@ const typeMap: { [index: string]: any } = {
1505
1506
IPPrefixesAPM : IPPrefixesAPM ,
1506
1507
IPPrefixesAgents : IPPrefixesAgents ,
1507
1508
IPPrefixesLogs : IPPrefixesLogs ,
1509
+ IPPrefixesOrchestrator : IPPrefixesOrchestrator ,
1508
1510
IPPrefixesProcess : IPPrefixesProcess ,
1509
1511
IPPrefixesSynthetics : IPPrefixesSynthetics ,
1510
1512
IPPrefixesSyntheticsPrivateLocations : IPPrefixesSyntheticsPrivateLocations ,
You can’t perform that action at this time.
0 commit comments