Skip to content

Commit

Permalink
Regenerate client from commit de5a985 of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Sep 10, 2021
1 parent 1e217a8 commit a1f1136
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 12 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.4.1.dev11",
"regenerated": "2021-09-09 11:04:29.878972",
"spec_repo_commit": "7c115a3"
"regenerated": "2021-09-10 08:08:26.479851",
"spec_repo_commit": "de5a985"
},
"v2": {
"apigentools_version": "1.4.1.dev11",
"regenerated": "2021-09-09 11:05:10.511548",
"spec_repo_commit": "7c115a3"
"regenerated": "2021-09-10 08:09:11.334282",
"spec_repo_commit": "de5a985"
}
}
}
2 changes: 1 addition & 1 deletion api_docs/v1/SLOHistoryMetricsSeries.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A representation of `metric` based SLO time series for the provided queries. Thi
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**count** | **Long** | Count of submitted metrics. |
**metadata** | [**SLOHistoryMetricsSeriesMetadata**](SLOHistoryMetricsSeriesMetadata.md) | |
**metadata** | [**SLOHistoryMetricsSeriesMetadata**](SLOHistoryMetricsSeriesMetadata.md) | | [optional]
**sum** | **Double** | Total sum of the query. |
**values** | **List<Double>** | The query values for each metric. |

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,9 @@ public SLOHistoryMetricsSeries() {}
@JsonCreator
public SLOHistoryMetricsSeries(
@JsonProperty(required = true, value = JSON_PROPERTY_COUNT) Long count,
@JsonProperty(required = true, value = JSON_PROPERTY_METADATA)
SLOHistoryMetricsSeriesMetadata metadata,
@JsonProperty(required = true, value = JSON_PROPERTY_SUM) Double sum,
@JsonProperty(required = true, value = JSON_PROPERTY_VALUES) List<Double> values) {
this.count = count;
this.metadata = metadata;
this.unparsed |= metadata.unparsed;
this.sum = sum;
this.values = values;
}
Expand Down Expand Up @@ -98,9 +94,10 @@ public SLOHistoryMetricsSeries metadata(SLOHistoryMetricsSeriesMetadata metadata
*
* @return metadata
*/
@ApiModelProperty(required = true, value = "")
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_METADATA)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public SLOHistoryMetricsSeriesMetadata getMetadata() {
return metadata;
}
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/datadog/api/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19435,7 +19435,6 @@ components:
type: array
required:
- count
- metadata
- sum
- values
type: object
Expand Down

0 comments on commit a1f1136

Please sign in to comment.