Skip to content

Commit 4b25d1e

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-specjirikuncar
authored
Regenerate client from commit 8cf1daa of spec repo (#471)
Co-authored-by: ci.datadog-api-spec <[email protected]> Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com> Co-authored-by: Jiri Kuncar <[email protected]>
1 parent 1b4353d commit 4b25d1e

File tree

7 files changed

+28
-28
lines changed

7 files changed

+28
-28
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.5.1.dev2",
7-
"regenerated": "2022-01-12 10:08:12.968687",
8-
"spec_repo_commit": "55f26ba"
7+
"regenerated": "2022-01-12 10:46:05.030979",
8+
"spec_repo_commit": "8cf1daa"
99
},
1010
"v2": {
1111
"apigentools_version": "1.5.1.dev2",
12-
"regenerated": "2022-01-12 10:08:12.992024",
13-
"spec_repo_commit": "55f26ba"
12+
"regenerated": "2022-01-12 10:46:05.059939",
13+
"spec_repo_commit": "8cf1daa"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ components:
131131
schema:
132132
type: string
133133
IncidentIDPathParameter:
134-
description: The UUID the incident.
134+
description: The UUID of the incident.
135135
in: path
136136
name: incident_id
137137
required: true

docs/v2/IncidentsApi.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ const configuration = v2.createConfiguration();
125125
const apiInstance = new v2.IncidentsApi(configuration);
126126

127127
let params: v2.IncidentsApiDeleteIncidentRequest = {
128-
// string | The UUID the incident.
128+
// string | The UUID of the incident.
129129
incidentId: "incident_id_example",
130130
};
131131

@@ -141,9 +141,9 @@ apiInstance
141141

142142
### Parameters
143143

144-
| Name | Type | Description | Notes |
145-
| -------------- | ------------ | ---------------------- | --------------------- |
146-
| **incidentId** | [**string**] | The UUID the incident. | defaults to undefined |
144+
| Name | Type | Description | Notes |
145+
| -------------- | ------------ | ------------------------- | --------------------- |
146+
| **incidentId** | [**string**] | The UUID of the incident. | defaults to undefined |
147147

148148
### Return type
149149

@@ -187,7 +187,7 @@ const configuration = v2.createConfiguration();
187187
const apiInstance = new v2.IncidentsApi(configuration);
188188

189189
let params: v2.IncidentsApiGetIncidentRequest = {
190-
// string | The UUID the incident.
190+
// string | The UUID of the incident.
191191
incidentId: "incident_id_example",
192192
// Array<IncidentRelatedObject> | Specifies which types of related objects should be included in the response. (optional)
193193
include: ["users"],
@@ -207,7 +207,7 @@ apiInstance
207207

208208
| Name | Type | Description | Notes |
209209
| -------------- | -------------------------------------- | ---------------------------------------------------------------------------- | -------------------------------- |
210-
| **incidentId** | [**string**] | The UUID the incident. | defaults to undefined |
210+
| **incidentId** | [**string**] | The UUID of the incident. | defaults to undefined |
211211
| **include** | **Array&lt;IncidentRelatedObject&gt;** | Specifies which types of related objects should be included in the response. | (optional) defaults to undefined |
212212

213213
### Return type
@@ -320,7 +320,7 @@ const configuration = v2.createConfiguration();
320320
const apiInstance = new v2.IncidentsApi(configuration);
321321

322322
let params: v2.IncidentsApiUpdateIncidentRequest = {
323-
// string | The UUID the incident.
323+
// string | The UUID of the incident.
324324
incidentId: "incident_id_example",
325325
// IncidentUpdateRequest | Incident Payload.
326326
body: {
@@ -398,10 +398,10 @@ apiInstance
398398

399399
### Parameters
400400

401-
| Name | Type | Description | Notes |
402-
| -------------- | ------------------------- | ---------------------- | --------------------- |
403-
| **body** | **IncidentUpdateRequest** | Incident Payload. |
404-
| **incidentId** | [**string**] | The UUID the incident. | defaults to undefined |
401+
| Name | Type | Description | Notes |
402+
| -------------- | ------------------------- | ------------------------- | --------------------- |
403+
| **body** | **IncidentUpdateRequest** | Incident Payload. |
404+
| **incidentId** | [**string**] | The UUID of the incident. | defaults to undefined |
405405

406406
### Return type
407407

packages/datadog-api-client-v2/apis/IncidentsApi.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class IncidentsApiRequestFactory extends BaseAPIRequestFactory {
8080
/**
8181
* Deletes an existing incident from the users organization.
8282
* Delete an existing incident
83-
* @param incidentId The UUID the incident.
83+
* @param incidentId The UUID of the incident.
8484
*/
8585
public async deleteIncident(
8686
incidentId: string,
@@ -127,7 +127,7 @@ export class IncidentsApiRequestFactory extends BaseAPIRequestFactory {
127127
/**
128128
* Get the details of an incident by `incident_id`.
129129
* Get the details of an incident
130-
* @param incidentId The UUID the incident.
130+
* @param incidentId The UUID of the incident.
131131
* @param include Specifies which types of related objects should be included in the response.
132132
*/
133133
public async getIncident(
@@ -245,7 +245,7 @@ export class IncidentsApiRequestFactory extends BaseAPIRequestFactory {
245245
/**
246246
* Updates an incident. Provide only the attributes that should be updated as this request is a partial update.
247247
* Update an existing incident
248-
* @param incidentId The UUID the incident.
248+
* @param incidentId The UUID of the incident.
249249
* @param body Incident Payload.
250250
*/
251251
public async updateIncident(

packages/datadog-api-client-v2/types/ObjectParamAPI.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ export interface IncidentsApiCreateIncidentRequest {
574574

575575
export interface IncidentsApiDeleteIncidentRequest {
576576
/**
577-
* The UUID the incident.
577+
* The UUID of the incident.
578578
* @type string
579579
* @memberof IncidentsApideleteIncident
580580
*/
@@ -583,7 +583,7 @@ export interface IncidentsApiDeleteIncidentRequest {
583583

584584
export interface IncidentsApiGetIncidentRequest {
585585
/**
586-
* The UUID the incident.
586+
* The UUID of the incident.
587587
* @type string
588588
* @memberof IncidentsApigetIncident
589589
*/
@@ -619,7 +619,7 @@ export interface IncidentsApiListIncidentsRequest {
619619

620620
export interface IncidentsApiUpdateIncidentRequest {
621621
/**
622-
* The UUID the incident.
622+
* The UUID of the incident.
623623
* @type string
624624
* @memberof IncidentsApiupdateIncident
625625
*/

packages/datadog-api-client-v2/types/ObservableAPI.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ export class ObservableIncidentsApi {
851851
/**
852852
* Deletes an existing incident from the users organization.
853853
* Delete an existing incident
854-
* @param incidentId The UUID the incident.
854+
* @param incidentId The UUID of the incident.
855855
*/
856856
public deleteIncident(
857857
incidentId: string,
@@ -893,7 +893,7 @@ export class ObservableIncidentsApi {
893893
/**
894894
* Get the details of an incident by `incident_id`.
895895
* Get the details of an incident
896-
* @param incidentId The UUID the incident.
896+
* @param incidentId The UUID of the incident.
897897
* @param include Specifies which types of related objects should be included in the response.
898898
*/
899899
public getIncident(
@@ -986,7 +986,7 @@ export class ObservableIncidentsApi {
986986
/**
987987
* Updates an incident. Provide only the attributes that should be updated as this request is a partial update.
988988
* Update an existing incident
989-
* @param incidentId The UUID the incident.
989+
* @param incidentId The UUID of the incident.
990990
* @param body Incident Payload.
991991
*/
992992
public updateIncident(

packages/datadog-api-client-v2/types/PromiseAPI.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ export class PromiseIncidentsApi {
421421
/**
422422
* Deletes an existing incident from the users organization.
423423
* Delete an existing incident
424-
* @param incidentId The UUID the incident.
424+
* @param incidentId The UUID of the incident.
425425
*/
426426
public deleteIncident(
427427
incidentId: string,
@@ -434,7 +434,7 @@ export class PromiseIncidentsApi {
434434
/**
435435
* Get the details of an incident by `incident_id`.
436436
* Get the details of an incident
437-
* @param incidentId The UUID the incident.
437+
* @param incidentId The UUID of the incident.
438438
* @param include Specifies which types of related objects should be included in the response.
439439
*/
440440
public getIncident(
@@ -471,7 +471,7 @@ export class PromiseIncidentsApi {
471471
/**
472472
* Updates an incident. Provide only the attributes that should be updated as this request is a partial update.
473473
* Update an existing incident
474-
* @param incidentId The UUID the incident.
474+
* @param incidentId The UUID of the incident.
475475
* @param body Incident Payload.
476476
*/
477477
public updateIncident(

0 commit comments

Comments
 (0)