diff --git a/.apigentools-info b/.apigentools-info index c97abb58ce6b..cd05322ebe7b 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,13 +4,13 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.6", - "regenerated": "2025-05-16 13:56:32.228031", - "spec_repo_commit": "dac51bc6" + "regenerated": "2025-05-19 15:26:12.611967", + "spec_repo_commit": "f89617c7" }, "v2": { "apigentools_version": "1.6.6", - "regenerated": "2025-05-16 13:56:32.243721", - "spec_repo_commit": "dac51bc6" + "regenerated": "2025-05-19 15:26:12.628655", + "spec_repo_commit": "f89617c7" } } } \ No newline at end of file diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index bfe39072ee55..3f645f25caf0 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -6729,6 +6729,11 @@ components: Monitor: description: Object describing a monitor. properties: + classification: + description: The classification of the monitor. + example: log + readOnly: true + type: string created: description: Timestamp of the monitor creation. format: date-time diff --git a/packages/datadog-api-client-v1/models/Monitor.ts b/packages/datadog-api-client-v1/models/Monitor.ts index 9cc59942c7cc..54c48e46fcf6 100644 --- a/packages/datadog-api-client-v1/models/Monitor.ts +++ b/packages/datadog-api-client-v1/models/Monitor.ts @@ -16,6 +16,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util"; * Object describing a monitor. */ export class Monitor { + /** + * The classification of the monitor. + */ + "classification"?: string; /** * Timestamp of the monitor creation. */ @@ -101,6 +105,10 @@ export class Monitor { * @ignore */ static readonly attributeTypeMap: AttributeTypeMap = { + classification: { + baseName: "classification", + type: "string", + }, created: { baseName: "created", type: "Date",