Skip to content

Add javascript value to synthetics browser variable types #197

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.4.0",
"regenerated": "2020-12-17 09:25:49.061070",
"spec_repo_commit": "3a1a95f"
"regenerated": "2020-12-17 14:42:11.691627",
"spec_repo_commit": "c18e9b3"
},
"v2": {
"apigentools_version": "1.4.0",
"regenerated": "2020-12-17 09:25:59.607276",
"spec_repo_commit": "3a1a95f"
"regenerated": "2020-12-17 14:42:22.183975",
"spec_repo_commit": "c18e9b3"
}
}
}
2 changes: 1 addition & 1 deletion docs/v1/SyntheticsBrowserVariableType.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Type of browser test variable.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**value** | **str** | Type of browser test variable. | must be one of ["element", "email", "global", "text", ]
**value** | **str** | Type of browser test variable. | must be one of ["element", "email", "global", "javascript", "text", ]

[[Back to Model list]](README.md#documentation-for-models) [[Back to API list]](README.md#documentation-for-api-endpoints) [[Back to README]](README.md)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ class SyntheticsBrowserVariableType(ModelSimple):
'ELEMENT': "element",
'EMAIL': "email",
'GLOBAL': "global",
'JAVASCRIPT': "javascript",
'TEXT': "text",
},
}
Expand Down Expand Up @@ -99,10 +100,10 @@ def __init__(self, *args, **kwargs):
Note that value can be passed either in args or in kwargs, but not in both.

Args:
args[0] (str): Type of browser test variable.., must be one of ["element", "email", "global", "text", ] # noqa: E501
args[0] (str): Type of browser test variable.., must be one of ["element", "email", "global", "javascript", "text", ] # noqa: E501

Keyword Args:
value (str): Type of browser test variable.., must be one of ["element", "email", "global", "text", ] # noqa: E501
value (str): Type of browser test variable.., must be one of ["element", "email", "global", "javascript", "text", ] # noqa: E501
_check_type (bool): if True, values for parameters in openapi_types
will be type checked and a TypeError will be
raised if the wrong type is input.
Expand Down
2 changes: 2 additions & 0 deletions src/datadog_api_client/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6015,12 +6015,14 @@ components:
- element
- email
- global
- javascript
- text
type: string
x-enum-varnames:
- ELEMENT
- EMAIL
- GLOBAL
- JAVASCRIPT
- TEXT
SyntheticsCITest:
description: Test configuration for Synthetics CI
Expand Down