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
12 changes: 9 additions & 3 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -189759,6 +189759,7 @@ paths:
Please check the documentation regularly for updates.
/api/v2/slo/report:
post:
deprecated: true
description: |-
Create a job to generate an SLO report. The report job is processed asynchronously and eventually results in a CSV report being available for download.

Expand Down Expand Up @@ -189821,10 +189822,12 @@ paths:
operator: OR
permissions:
- slos_read
x-sunset: "2027-01-25"
x-unstable: |-
**Note**: This feature is in private beta. To request access, use the request access form in the [Service Level Objectives](https://docs.datadoghq.com/service_management/service_level_objectives/#slo-csv-export) docs.
**Note**: This feature is in private beta and is no longer accepting requests for access.
/api/v2/slo/report/{report_id}/download:
get:
deprecated: true
description: |-
Download an SLO report. This can only be performed after the report job has completed.

Expand Down Expand Up @@ -189870,10 +189873,12 @@ paths:
summary: Get SLO report
tags:
- Service Level Objectives
x-sunset: "2027-01-25"
x-unstable: |-
**Note**: This feature is in private beta. To request access, use the request access form in the [Service Level Objectives](https://docs.datadoghq.com/service_management/service_level_objectives/#slo-csv-export) docs.
**Note**: This feature is in private beta and is no longer accepting requests for access.
/api/v2/slo/report/{report_id}/status:
get:
deprecated: true
description: Get the status of the SLO report job.
operationId: GetSLOReportJobStatus
parameters:
Expand Down Expand Up @@ -189921,8 +189926,9 @@ paths:
summary: Get SLO report status
tags:
- Service Level Objectives
x-sunset: "2027-01-25"
x-unstable: |-
**Note**: This feature is in private beta. To request access, use the request access form in the [Service Level Objectives](https://docs.datadoghq.com/service_management/service_level_objectives/#slo-csv-export) docs.
**Note**: This feature is in private beta and is no longer accepting requests for access.
/api/v2/slo/{slo_id}/status:
get:
description: |-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ public void setApiClient(ApiClient apiClient) {
* @param body Create SLO report job request body. (required)
* @return SLOReportPostResponse
* @throws ApiException if fails to make API call
* @deprecated
*/
@Deprecated
public SLOReportPostResponse createSLOReportJob(SloReportCreateRequest body) throws ApiException {
return createSLOReportJobWithHttpInfo(body).getData();
}
Expand All @@ -67,7 +69,9 @@ public SLOReportPostResponse createSLOReportJob(SloReportCreateRequest body) thr
*
* @param body Create SLO report job request body. (required)
* @return CompletableFuture<SLOReportPostResponse>
* @deprecated
*/
@Deprecated
public CompletableFuture<SLOReportPostResponse> createSLOReportJobAsync(
SloReportCreateRequest body) {
return createSLOReportJobWithHttpInfoAsync(body)
Expand Down Expand Up @@ -96,7 +100,10 @@ public CompletableFuture<SLOReportPostResponse> createSLOReportJobAsync(
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
*
* @deprecated
*/
@Deprecated
public ApiResponse<SLOReportPostResponse> createSLOReportJobWithHttpInfo(
SloReportCreateRequest body) throws ApiException {
// Check if unstable operation is enabled
Expand Down Expand Up @@ -145,7 +152,9 @@ public ApiResponse<SLOReportPostResponse> createSLOReportJobWithHttpInfo(
*
* @param body Create SLO report job request body. (required)
* @return CompletableFuture&lt;ApiResponse&lt;SLOReportPostResponse&gt;&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<ApiResponse<SLOReportPostResponse>> createSLOReportJobWithHttpInfoAsync(
SloReportCreateRequest body) {
// Check if unstable operation is enabled
Expand Down Expand Up @@ -208,7 +217,9 @@ public CompletableFuture<ApiResponse<SLOReportPostResponse>> createSLOReportJobW
* @param reportId The ID of the report job. (required)
* @return String
* @throws ApiException if fails to make API call
* @deprecated
*/
@Deprecated
public String getSLOReport(String reportId) throws ApiException {
return getSLOReportWithHttpInfo(reportId).getData();
}
Expand All @@ -220,7 +231,9 @@ public String getSLOReport(String reportId) throws ApiException {
*
* @param reportId The ID of the report job. (required)
* @return CompletableFuture&lt;String&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<String> getSLOReportAsync(String reportId) {
return getSLOReportWithHttpInfoAsync(reportId)
.thenApply(
Expand Down Expand Up @@ -248,7 +261,10 @@ public CompletableFuture<String> getSLOReportAsync(String reportId) {
* <tr><td> 404 </td><td> Not Found </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
*
* @deprecated
*/
@Deprecated
public ApiResponse<String> getSLOReportWithHttpInfo(String reportId) throws ApiException {
// Check if unstable operation is enabled
String operationId = "getSLOReport";
Expand Down Expand Up @@ -298,7 +314,9 @@ public ApiResponse<String> getSLOReportWithHttpInfo(String reportId) throws ApiE
*
* @param reportId The ID of the report job. (required)
* @return CompletableFuture&lt;ApiResponse&lt;String&gt;&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<ApiResponse<String>> getSLOReportWithHttpInfoAsync(String reportId) {
// Check if unstable operation is enabled
String operationId = "getSLOReport";
Expand Down Expand Up @@ -362,7 +380,9 @@ public CompletableFuture<ApiResponse<String>> getSLOReportWithHttpInfoAsync(Stri
* @param reportId The ID of the report job. (required)
* @return SLOReportStatusGetResponse
* @throws ApiException if fails to make API call
* @deprecated
*/
@Deprecated
public SLOReportStatusGetResponse getSLOReportJobStatus(String reportId) throws ApiException {
return getSLOReportJobStatusWithHttpInfo(reportId).getData();
}
Expand All @@ -374,7 +394,9 @@ public SLOReportStatusGetResponse getSLOReportJobStatus(String reportId) throws
*
* @param reportId The ID of the report job. (required)
* @return CompletableFuture&lt;SLOReportStatusGetResponse&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<SLOReportStatusGetResponse> getSLOReportJobStatusAsync(String reportId) {
return getSLOReportJobStatusWithHttpInfoAsync(reportId)
.thenApply(
Expand All @@ -399,7 +421,10 @@ public CompletableFuture<SLOReportStatusGetResponse> getSLOReportJobStatusAsync(
* <tr><td> 404 </td><td> Not Found </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
*
* @deprecated
*/
@Deprecated
public ApiResponse<SLOReportStatusGetResponse> getSLOReportJobStatusWithHttpInfo(String reportId)
throws ApiException {
// Check if unstable operation is enabled
Expand Down Expand Up @@ -450,7 +475,9 @@ public ApiResponse<SLOReportStatusGetResponse> getSLOReportJobStatusWithHttpInfo
*
* @param reportId The ID of the report job. (required)
* @return CompletableFuture&lt;ApiResponse&lt;SLOReportStatusGetResponse&gt;&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<ApiResponse<SLOReportStatusGetResponse>>
getSLOReportJobStatusWithHttpInfoAsync(String reportId) {
// Check if unstable operation is enabled
Expand Down
Loading