File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed
packages/datadog-api-client-v1/models Expand file tree Collapse file tree 4 files changed +10
-5
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-05-24 09:15:53.923524 ",
8
- "spec_repo_commit": "99066a28 "
7
+ "regenerated": "2022-05-24 09:40:57.394417 ",
8
+ "spec_repo_commit": "730e00d7 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.2",
12
- "regenerated": "2022-05-24 09:15:53.938968 ",
13
- "spec_repo_commit": "99066a28 "
12
+ "regenerated": "2022-05-24 09:40:57.406647 ",
13
+ "spec_repo_commit": "730e00d7 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -10453,6 +10453,7 @@ components:
10453
10453
- packetsReceived
10454
10454
- networkHop
10455
10455
- receivedMessage
10456
+ - connection
10456
10457
example: statusCode
10457
10458
type: string
10458
10459
x-enum-varnames:
@@ -10471,6 +10472,7 @@ components:
10471
10472
- PACKETS_RECEIVED
10472
10473
- NETWORK_HOP
10473
10474
- RECEIVED_MESSAGE
10475
+ - CONNECTION
10474
10476
SyntheticsBasicAuth:
10475
10477
description: Object to handle basic authentication when performing the test.
10476
10478
oneOf:
Original file line number Diff line number Diff line change @@ -876,6 +876,7 @@ const enumsMap: { [key: string]: any[] } = {
876
876
"packetsReceived" ,
877
877
"networkHop" ,
878
878
"receivedMessage" ,
879
+ "connection" ,
879
880
] ,
880
881
SyntheticsBasicAuthNTLMType : [ "ntlm" ] ,
881
882
SyntheticsBasicAuthSigv4Type : [ "sigv4" ] ,
Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ export type SyntheticsAssertionType =
19
19
| typeof PACKET_LOSS_PERCENTAGE
20
20
| typeof PACKETS_RECEIVED
21
21
| typeof NETWORK_HOP
22
- | typeof RECEIVED_MESSAGE ;
22
+ | typeof RECEIVED_MESSAGE
23
+ | typeof CONNECTION ;
23
24
export const BODY = "body" ;
24
25
export const HEADER = "header" ;
25
26
export const STATUS_CODE = "statusCode" ;
@@ -35,3 +36,4 @@ export const PACKET_LOSS_PERCENTAGE = "packetLossPercentage";
35
36
export const PACKETS_RECEIVED = "packetsReceived" ;
36
37
export const NETWORK_HOP = "networkHop" ;
37
38
export const RECEIVED_MESSAGE = "receivedMessage" ;
39
+ export const CONNECTION = "connection" ;
You can’t perform that action at this time.
0 commit comments