Skip to content

Commit

Permalink
Regenerate client from commit 0d76884c of spec repo (#1820)
Browse files Browse the repository at this point in the history
Co-authored-by: ci.datadog-api-spec <[email protected]>
  • Loading branch information
api-clients-generation-pipeline[bot] and ci.datadog-api-spec authored Sep 25, 2024
1 parent f2aa14b commit de482dc
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 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.6.6",
"regenerated": "2024-09-24 18:16:28.821186",
"spec_repo_commit": "2eb52c63"
"regenerated": "2024-09-25 14:32:11.589758",
"spec_repo_commit": "0d76884c"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-09-24 18:16:28.835857",
"spec_repo_commit": "2eb52c63"
"regenerated": "2024-09-25 14:32:11.604468",
"spec_repo_commit": "0d76884c"
}
}
}
6 changes: 6 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6559,6 +6559,12 @@ components:
example: 1693491974000000000
format: int64
type: integer
team:
description: Name of the team owning the deployed service. If not provided,
this is automatically populated with the team associated with the service
in the Service Catalog.
example: backend
type: string
version:
description: Version to correlate with [APM Deployment Tracking](https://docs.datadoghq.com/tracing/services/deployment_tracking/).
example: v1.12.07
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ export class DORADeploymentRequestAttributes {
* Unix timestamp when the deployment started. It must be in nanoseconds, milliseconds, or seconds.
*/
"startedAt": number;
/**
* Name of the team owning the deployed service. If not provided, this is automatically populated with the team associated with the service in the Service Catalog.
*/
"team"?: string;
/**
* Version to correlate with [APM Deployment Tracking](https://docs.datadoghq.com/tracing/services/deployment_tracking/).
*/
Expand Down Expand Up @@ -85,6 +89,10 @@ export class DORADeploymentRequestAttributes {
required: true,
format: "int64",
},
team: {
baseName: "team",
type: "string",
},
version: {
baseName: "version",
type: "string",
Expand Down

0 comments on commit de482dc

Please sign in to comment.