File tree Expand file tree Collapse file tree 6 files changed +84
-4
lines changed
packages/datadog-api-client-v1 Expand file tree Collapse file tree 6 files changed +84
-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.2",
7
- "regenerated": "2022-06-27 16:07 :52.649564 ",
8
- "spec_repo_commit": "2d1ebbf0 "
7
+ "regenerated": "2022-06-28 06:45 :52.602520 ",
8
+ "spec_repo_commit": "de78e1e5 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.2",
12
- "regenerated": "2022-06-27 16:07 :52.664534 ",
13
- "spec_repo_commit": "2d1ebbf0 "
12
+ "regenerated": "2022-06-28 06:45 :52.618119 ",
13
+ "spec_repo_commit": "de78e1e5 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -3797,6 +3797,23 @@ components:
3797
3797
description: List of IPv6 prefixes by location.
3798
3798
type: object
3799
3799
type: object
3800
+ IPPrefixesSyntheticsPrivateLocations:
3801
+ description: Available prefix information for the Synthetics Private Locations
3802
+ endpoints.
3803
+ properties:
3804
+ prefixes_ipv4:
3805
+ description: List of IPv4 prefixes.
3806
+ items:
3807
+ description: IPv4 prefix
3808
+ type: string
3809
+ type: array
3810
+ prefixes_ipv6:
3811
+ description: List of IPv6 prefixes.
3812
+ items:
3813
+ description: IPv6 prefix
3814
+ type: string
3815
+ type: array
3816
+ type: object
3800
3817
IPPrefixesWebhooks:
3801
3818
description: Available prefix information for the Webhook endpoints.
3802
3819
properties:
@@ -3832,6 +3849,8 @@ components:
3832
3849
$ref: '#/components/schemas/IPPrefixesProcess'
3833
3850
synthetics:
3834
3851
$ref: '#/components/schemas/IPPrefixesSynthetics'
3852
+ synthetics-private-locations:
3853
+ $ref: '#/components/schemas/IPPrefixesSyntheticsPrivateLocations'
3835
3854
version:
3836
3855
description: Version of the IP list.
3837
3856
example: 11
Original file line number Diff line number Diff line change @@ -483,6 +483,7 @@ export { IPPrefixesAPM } from "./models/IPPrefixesAPM";
483
483
export { IPPrefixesLogs } from "./models/IPPrefixesLogs" ;
484
484
export { IPPrefixesProcess } from "./models/IPPrefixesProcess" ;
485
485
export { IPPrefixesSynthetics } from "./models/IPPrefixesSynthetics" ;
486
+ export { IPPrefixesSyntheticsPrivateLocations } from "./models/IPPrefixesSyntheticsPrivateLocations" ;
486
487
export { IPPrefixesWebhooks } from "./models/IPPrefixesWebhooks" ;
487
488
export { IPRanges } from "./models/IPRanges" ;
488
489
export { ListStreamColumn } from "./models/ListStreamColumn" ;
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 Synthetics Private Locations endpoints.
11
+ */
12
+ export class IPPrefixesSyntheticsPrivateLocations {
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
+ "unparsedObject" ?: any ;
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 IPPrefixesSyntheticsPrivateLocations . attributeTypeMap ;
46
+ }
47
+
48
+ public constructor ( ) { }
49
+ }
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import { IPPrefixesAPM } from "./IPPrefixesAPM";
9
9
import { IPPrefixesLogs } from "./IPPrefixesLogs" ;
10
10
import { IPPrefixesProcess } from "./IPPrefixesProcess" ;
11
11
import { IPPrefixesSynthetics } from "./IPPrefixesSynthetics" ;
12
+ import { IPPrefixesSyntheticsPrivateLocations } from "./IPPrefixesSyntheticsPrivateLocations" ;
12
13
import { IPPrefixesWebhooks } from "./IPPrefixesWebhooks" ;
13
14
14
15
import { AttributeTypeMap } from "../../datadog-api-client-common/util" ;
@@ -45,6 +46,10 @@ export class IPRanges {
45
46
* Available prefix information for the Synthetics endpoints.
46
47
*/
47
48
"synthetics" ?: IPPrefixesSynthetics ;
49
+ /**
50
+ * Available prefix information for the Synthetics Private Locations endpoints.
51
+ */
52
+ "syntheticsPrivateLocations" ?: IPPrefixesSyntheticsPrivateLocations ;
48
53
/**
49
54
* Version of the IP list.
50
55
*/
@@ -91,6 +96,10 @@ export class IPRanges {
91
96
baseName : "synthetics" ,
92
97
type : "IPPrefixesSynthetics" ,
93
98
} ,
99
+ syntheticsPrivateLocations : {
100
+ baseName : "synthetics-private-locations" ,
101
+ type : "IPPrefixesSyntheticsPrivateLocations" ,
102
+ } ,
94
103
version : {
95
104
baseName : "version" ,
96
105
type : "number" ,
Original file line number Diff line number Diff line change @@ -117,6 +117,7 @@ import { IPPrefixesAgents } from "./IPPrefixesAgents";
117
117
import { IPPrefixesLogs } from "./IPPrefixesLogs" ;
118
118
import { IPPrefixesProcess } from "./IPPrefixesProcess" ;
119
119
import { IPPrefixesSynthetics } from "./IPPrefixesSynthetics" ;
120
+ import { IPPrefixesSyntheticsPrivateLocations } from "./IPPrefixesSyntheticsPrivateLocations" ;
120
121
import { IPPrefixesWebhooks } from "./IPPrefixesWebhooks" ;
121
122
import { IPRanges } from "./IPRanges" ;
122
123
import { IdpFormData } from "./IdpFormData" ;
@@ -1354,6 +1355,7 @@ const typeMap: { [index: string]: any } = {
1354
1355
IPPrefixesLogs : IPPrefixesLogs ,
1355
1356
IPPrefixesProcess : IPPrefixesProcess ,
1356
1357
IPPrefixesSynthetics : IPPrefixesSynthetics ,
1358
+ IPPrefixesSyntheticsPrivateLocations : IPPrefixesSyntheticsPrivateLocations ,
1357
1359
IPPrefixesWebhooks : IPPrefixesWebhooks ,
1358
1360
IPRanges : IPRanges ,
1359
1361
IdpFormData : IdpFormData ,
You can’t perform that action at this time.
0 commit comments