Skip to content

Commit

Permalink
Add is_totp and is_fido to Synthetic global variables (#1910)
Browse files Browse the repository at this point in the history
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
  • Loading branch information
api-clients-generation-pipeline[bot] and ci.datadog-api-spec authored Aug 16, 2024
1 parent 45db5d2 commit 3af8770
Show file tree
Hide file tree
Showing 26 changed files with 699 additions and 53 deletions.
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-08-14 22:32:07.515779",
"spec_repo_commit": "07d72513"
"regenerated": "2024-08-16 13:40:32.441500",
"spec_repo_commit": "1b56c3ba"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-08-14 22:32:07.533818",
"spec_repo_commit": "07d72513"
"regenerated": "2024-08-16 13:40:32.459608",
"spec_repo_commit": "1b56c3ba"
}
}
}
57 changes: 55 additions & 2 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15143,6 +15143,12 @@ components:
description: Unique identifier of the global variable.
readOnly: true
type: string
is_fido:
description: Determines if the global variable is a FIDO variable.
type: boolean
is_totp:
description: Determines if the global variable is a TOTP/MFA variable.
type: boolean
name:
description: Name of the global variable. Unique across Synthetic global
variables.
Expand Down Expand Up @@ -15233,6 +15239,53 @@ components:
- JSON_PATH
- REGEX
- X_PATH
SyntheticsGlobalVariableRequest:
description: Details of the global variable to create.
properties:
attributes:
$ref: '#/components/schemas/SyntheticsGlobalVariableAttributes'
description:
description: Description of the global variable.
example: Example description
type: string
id:
description: Unique identifier of the global variable.
readOnly: true
type: string
is_fido:
description: Determines if the global variable is a FIDO variable.
type: boolean
is_totp:
description: Determines if the global variable is a TOTP/MFA variable.
type: boolean
name:
description: Name of the global variable. Unique across Synthetic global
variables.
example: MY_VARIABLE
type: string
parse_test_options:
$ref: '#/components/schemas/SyntheticsGlobalVariableParseTestOptions'
parse_test_public_id:
description: A Synthetic test ID to use as a test to generate the variable
value.
example: abc-def-123
type: string
tags:
description: Tags of the global variable.
example:
- team:front
- test:workflow-1
items:
description: Tag name.
type: string
type: array
value:
$ref: '#/components/schemas/SyntheticsGlobalVariableValue'
required:
- description
- name
- tags
type: object
SyntheticsGlobalVariableTOTPParameters:
description: Parameters for the TOTP/MFA variable
properties:
Expand Down Expand Up @@ -31194,7 +31247,7 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/SyntheticsGlobalVariable'
$ref: '#/components/schemas/SyntheticsGlobalVariableRequest'
description: Details of the global variable to create.
required: true
responses:
Expand Down Expand Up @@ -31328,7 +31381,7 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/SyntheticsGlobalVariable'
$ref: '#/components/schemas/SyntheticsGlobalVariableRequest'
description: Details of the global variable to update.
required: true
responses:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2024-08-14T08:58:43.057Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2024-08-14T08:58:58.240Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-06-25T09:44:03.099Z
2024-08-01T17:00:57.470Z
Loading

0 comments on commit 3af8770

Please sign in to comment.