Skip to content
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.1.dev6",
"regenerated": "2021-05-10 13:54:44.972483",
"spec_repo_commit": "dcadb1c"
"regenerated": "2021-05-10 15:07:21.922955",
"spec_repo_commit": "b9a2b4b"
},
"v2": {
"apigentools_version": "1.4.1.dev6",
"regenerated": "2021-05-10 13:55:32.733610",
"spec_repo_commit": "dcadb1c"
"regenerated": "2021-05-10 15:08:00.937618",
"spec_repo_commit": "b9a2b4b"
}
}
}
2 changes: 1 addition & 1 deletion api_docs/v1/SyntheticsTestConfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**assertions** | [**List<SyntheticsAssertion>**](SyntheticsAssertion.md) | Array of assertions used for the test. |
**configVariables** | [**List<SyntheticsConfigVariable>**](SyntheticsConfigVariable.md) | API tests only - array of variables used for the test. | [optional]
**request** | [**SyntheticsTestRequest**](SyntheticsTestRequest.md) | |
**request** | [**SyntheticsTestRequest**](SyntheticsTestRequest.md) | | [optional]
**variables** | [**List<SyntheticsBrowserVariable>**](SyntheticsBrowserVariable.md) | Browser tests only - array of variables used for the test steps. | [optional]


Expand Down
2 changes: 2 additions & 0 deletions api_docs/v1/SyntheticsTickInterval.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
## Enum


* `THIRTY_SECONDS` (value: `30l`)

* `MINUTE` (value: `60l`)

* `FIVE_MINUTES` (value: `300l`)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,10 @@ public SyntheticsTestConfig request(SyntheticsTestRequest request) {
*
* @return request
*/
@ApiModelProperty(required = true, value = "")
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_REQUEST)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public SyntheticsTestRequest getRequest() {
return request;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

/** The frequency at which to run the Synthetic test (in seconds). */
public enum SyntheticsTickInterval {
THIRTY_SECONDS(30l),

MINUTE(60l),

FIVE_MINUTES(300l),
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/com/datadog/api/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19971,7 +19971,6 @@ components:
type: array
required:
- assertions
- request
type: object
SyntheticsTestDetails:
description: Object containing details about your Synthetic test.
Expand Down Expand Up @@ -20372,6 +20371,7 @@ components:
SyntheticsTickInterval:
description: The frequency at which to run the Synthetic test (in seconds).
enum:
- 30
- 60
- 300
- 900
Expand All @@ -20384,6 +20384,7 @@ components:
format: int64
type: integer
x-enum-varnames:
- THIRTY_SECONDS
- MINUTE
- FIVE_MINUTES
- FIFTEEN_MINUTES
Expand Down

Large diffs are not rendered by default.