File tree 4 files changed +5
-10
lines changed
4 files changed +5
-10
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.6",
7
- "regenerated": "2025-02-06 17:59:42.408810 ",
8
- "spec_repo_commit": "b89b292b "
7
+ "regenerated": "2025-02-07 15:58:39.824016 ",
8
+ "spec_repo_commit": "1ff7c087 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2025-02-06 17:59:42.424278 ",
13
- "spec_repo_commit": "b89b292b "
12
+ "regenerated": "2025-02-07 15:58:39.839881 ",
13
+ "spec_repo_commit": "1ff7c087 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -14988,15 +14988,13 @@ components:
14988
14988
- element
14989
14989
- email
14990
14990
- global
14991
- - javascript
14992
14991
- text
14993
14992
example: text
14994
14993
type: string
14995
14994
x-enum-varnames:
14996
14995
- ELEMENT
14997
14996
- EMAIL
14998
14997
- GLOBAL
14999
- - JAVASCRIPT
15000
14998
- TEXT
15001
14999
SyntheticsCIBatchMetadata:
15002
15000
description: Metadata for the Synthetic tests run.
Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ components:
193
193
schema:
194
194
type: string
195
195
ConfluentAccountID:
196
- description: Confluent Account id .
196
+ description: Confluent Account ID .
197
197
in: path
198
198
name: account_id
199
199
required: true
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ pub enum SyntheticsBrowserVariableType {
10
10
ELEMENT ,
11
11
EMAIL ,
12
12
GLOBAL ,
13
- JAVASCRIPT ,
14
13
TEXT ,
15
14
UnparsedObject ( crate :: datadog:: UnparsedObject ) ,
16
15
}
@@ -21,7 +20,6 @@ impl ToString for SyntheticsBrowserVariableType {
21
20
Self :: ELEMENT => String :: from ( "element" ) ,
22
21
Self :: EMAIL => String :: from ( "email" ) ,
23
22
Self :: GLOBAL => String :: from ( "global" ) ,
24
- Self :: JAVASCRIPT => String :: from ( "javascript" ) ,
25
23
Self :: TEXT => String :: from ( "text" ) ,
26
24
Self :: UnparsedObject ( v) => v. value . to_string ( ) ,
27
25
}
@@ -50,7 +48,6 @@ impl<'de> Deserialize<'de> for SyntheticsBrowserVariableType {
50
48
"element" => Self :: ELEMENT ,
51
49
"email" => Self :: EMAIL ,
52
50
"global" => Self :: GLOBAL ,
53
- "javascript" => Self :: JAVASCRIPT ,
54
51
"text" => Self :: TEXT ,
55
52
_ => Self :: UnparsedObject ( crate :: datadog:: UnparsedObject {
56
53
value : serde_json:: Value :: String ( s. into ( ) ) ,
You can’t perform that action at this time.
0 commit comments