Skip to content

Commit 2c43633

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 0d3f1ba of spec repo
1 parent 7030477 commit 2c43633

12 files changed

+33
-35
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13717,8 +13717,7 @@ components:
1371713717
type: string
1371813718
finished_at:
1371913719
description: Unix timestamp when the deployment finished. It must be in
13720-
nanoseconds, milliseconds, or seconds, and it should not be older than
13721-
1 hour.
13720+
nanoseconds, milliseconds, or seconds.
1372213721
example: 1693491984000000000
1372313722
format: int64
1372413723
type: integer
@@ -57663,8 +57662,7 @@ paths:
5766357662
- manage_log_reports
5766457663
/api/v2/dora/deployment:
5766557664
post:
57666-
description: 'Use this API endpoint to provide data about deployments for DORA
57667-
metrics.
57665+
description: 'Use this API endpoint to provide deployment data.
5766857666

5766957667

5767057668
This is necessary for:
@@ -57706,7 +57704,7 @@ paths:
5770657704
$ref: '#/components/responses/TooManyRequestsResponse'
5770757705
security:
5770857706
- apiKeyAuth: []
57709-
summary: Send a deployment event for DORA Metrics
57707+
summary: Send a deployment event
5771057708
tags:
5771157709
- DORA Metrics
5771257710
x-codegen-request-body-name: body
@@ -57823,7 +57821,7 @@ paths:
5782357821
- dora_metrics_read
5782457822
/api/v2/dora/failure:
5782557823
post:
57826-
description: 'Use this API endpoint to provide failure data for DORA metrics.
57824+
description: 'Use this API endpoint to provide failure data.
5782757825

5782857826

5782957827
This is necessary for:
@@ -57863,7 +57861,7 @@ paths:
5786357861
$ref: '#/components/responses/TooManyRequestsResponse'
5786457862
security:
5786557863
- apiKeyAuth: []
57866-
summary: Send a failure event for DORA Metrics
57864+
summary: Send a failure event
5786757865
tags:
5786857866
- DORA Metrics
5786957867
x-codegen-request-body-name: body
@@ -57985,7 +57983,7 @@ paths:
5798557983
instead.
5798657984

5798757985

57988-
Use this API endpoint to provide failure data for DORA metrics.
57986+
Use this API endpoint to provide failure data.
5798957987

5799057988

5799157989
This is necessary for:
@@ -58025,7 +58023,7 @@ paths:
5802558023
$ref: '#/components/responses/TooManyRequestsResponse'
5802658024
security:
5802758025
- apiKeyAuth: []
58028-
summary: Send an incident event for DORA Metrics
58026+
summary: Send an incident event
5802958027
tags:
5803058028
- DORA Metrics
5803158029
x-codegen-request-body-name: body

examples/v2/dora-metrics/CreateDORADeployment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Send a deployment event for DORA Metrics returns "OK" response
1+
// Send a deployment event returns "OK" response
22

33
import com.datadog.api.client.ApiClient;
44
import com.datadog.api.client.ApiException;

examples/v2/dora-metrics/CreateDORAFailure.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Send a failure event for DORA Metrics returns "OK - but delayed due to incident" response
1+
// Send a failure event returns "OK - but delayed due to incident" response
22

33
import com.datadog.api.client.ApiClient;
44
import com.datadog.api.client.ApiException;

examples/v2/dora-metrics/CreateDORAIncident.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Send an incident event for DORA Metrics returns "OK" response
1+
// Send an incident event returns "OK" response
22

33
import com.datadog.api.client.ApiClient;
44
import com.datadog.api.client.ApiException;

examples/v2/dora-metrics/CreateDORAIncident_1768887482.java renamed to examples/v2/dora-metrics/CreateDORAIncident_1101664022.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Send a failure event for DORA Metrics returns "OK" response
1+
// Send a failure event returns "OK" response
22

33
import com.datadog.api.client.ApiClient;
44
import com.datadog.api.client.ApiException;

src/main/java/com/datadog/api/client/v2/api/DoraMetricsApi.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void setApiClient(ApiClient apiClient) {
5151
}
5252

5353
/**
54-
* Send a deployment event for DORA Metrics.
54+
* Send a deployment event.
5555
*
5656
* <p>See {@link #createDORADeploymentWithHttpInfo}.
5757
*
@@ -65,7 +65,7 @@ public DORADeploymentResponse createDORADeployment(DORADeploymentRequest body)
6565
}
6666

6767
/**
68-
* Send a deployment event for DORA Metrics.
68+
* Send a deployment event.
6969
*
7070
* <p>See {@link #createDORADeploymentWithHttpInfoAsync}.
7171
*
@@ -82,7 +82,7 @@ public CompletableFuture<DORADeploymentResponse> createDORADeploymentAsync(
8282
}
8383

8484
/**
85-
* Use this API endpoint to provide data about deployments for DORA metrics.
85+
* Use this API endpoint to provide deployment data.
8686
*
8787
* <p>This is necessary for: - Deployment Frequency - Change Lead Time - Change Failure Rate
8888
*
@@ -135,7 +135,7 @@ public ApiResponse<DORADeploymentResponse> createDORADeploymentWithHttpInfo(
135135
}
136136

137137
/**
138-
* Send a deployment event for DORA Metrics.
138+
* Send a deployment event.
139139
*
140140
* <p>See {@link #createDORADeploymentWithHttpInfo}.
141141
*
@@ -187,7 +187,7 @@ public ApiResponse<DORADeploymentResponse> createDORADeploymentWithHttpInfo(
187187
}
188188

189189
/**
190-
* Send a failure event for DORA Metrics.
190+
* Send a failure event.
191191
*
192192
* <p>See {@link #createDORAFailureWithHttpInfo}.
193193
*
@@ -200,7 +200,7 @@ public DORAFailureResponse createDORAFailure(DORAFailureRequest body) throws Api
200200
}
201201

202202
/**
203-
* Send a failure event for DORA Metrics.
203+
* Send a failure event.
204204
*
205205
* <p>See {@link #createDORAFailureWithHttpInfoAsync}.
206206
*
@@ -216,7 +216,7 @@ public CompletableFuture<DORAFailureResponse> createDORAFailureAsync(DORAFailure
216216
}
217217

218218
/**
219-
* Use this API endpoint to provide failure data for DORA metrics.
219+
* Use this API endpoint to provide failure data.
220220
*
221221
* <p>This is necessary for: - Change Failure Rate - Time to Restore
222222
*
@@ -269,7 +269,7 @@ public ApiResponse<DORAFailureResponse> createDORAFailureWithHttpInfo(DORAFailur
269269
}
270270

271271
/**
272-
* Send a failure event for DORA Metrics.
272+
* Send a failure event.
273273
*
274274
* <p>See {@link #createDORAFailureWithHttpInfo}.
275275
*
@@ -321,7 +321,7 @@ public CompletableFuture<ApiResponse<DORAFailureResponse>> createDORAFailureWith
321321
}
322322

323323
/**
324-
* Send an incident event for DORA Metrics.
324+
* Send an incident event.
325325
*
326326
* <p>See {@link #createDORAIncidentWithHttpInfo}.
327327
*
@@ -336,7 +336,7 @@ public DORAFailureResponse createDORAIncident(DORAFailureRequest body) throws Ap
336336
}
337337

338338
/**
339-
* Send an incident event for DORA Metrics.
339+
* Send an incident event.
340340
*
341341
* <p>See {@link #createDORAIncidentWithHttpInfoAsync}.
342342
*
@@ -357,7 +357,7 @@ public CompletableFuture<DORAFailureResponse> createDORAIncidentAsync(DORAFailur
357357
* <strong>Note</strong>: This endpoint is deprecated. Please use <code>/api/v2/dora/failure
358358
* </code> instead.
359359
*
360-
* <p>Use this API endpoint to provide failure data for DORA metrics.
360+
* <p>Use this API endpoint to provide failure data.
361361
*
362362
* <p>This is necessary for: - Change Failure Rate - Time to Restore
363363
*
@@ -413,7 +413,7 @@ public ApiResponse<DORAFailureResponse> createDORAIncidentWithHttpInfo(DORAFailu
413413
}
414414

415415
/**
416-
* Send an incident event for DORA Metrics.
416+
* Send an incident event.
417417
*
418418
* <p>See {@link #createDORAIncidentWithHttpInfo}.
419419
*

src/main/java/com/datadog/api/client/v2/model/DORADeploymentRequestAttributes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public DORADeploymentRequestAttributes finishedAt(Long finishedAt) {
147147

148148
/**
149149
* Unix timestamp when the deployment finished. It must be in nanoseconds, milliseconds, or
150-
* seconds, and it should not be older than 1 hour.
150+
* seconds.
151151
*
152152
* @return finishedAt
153153
*/
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)