From 8f09597b9f790a215204914470da6a2c3acd0fbb Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Fri, 17 Apr 2026 09:12:35 +0000 Subject: [PATCH] Regenerate client from commit 64bf902 of spec repo --- .generator/schemas/v2/openapi.yaml | 5 ++++- services/ip_allowlist/src/v2/models/IPAllowlistData.ts | 2 +- .../src/v2/models/IPAllowlistEntryAttributes.ts | 8 ++++++++ 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 75755ab7e79f..c2f13accd80d 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -31529,7 +31529,7 @@ components: attributes: $ref: "#/components/schemas/IPAllowlistAttributes" id: - description: The unique identifier of the org. + description: The unique identifier of the organization. type: string type: $ref: "#/components/schemas/IPAllowlistType" @@ -31555,6 +31555,9 @@ components: format: date-time readOnly: true type: string + label: + description: A label for the IP allowlist entry. + type: string modified_at: description: Time of last entry modification. format: date-time diff --git a/services/ip_allowlist/src/v2/models/IPAllowlistData.ts b/services/ip_allowlist/src/v2/models/IPAllowlistData.ts index a27364914f97..8f08358ae521 100644 --- a/services/ip_allowlist/src/v2/models/IPAllowlistData.ts +++ b/services/ip_allowlist/src/v2/models/IPAllowlistData.ts @@ -12,7 +12,7 @@ export class IPAllowlistData { */ "attributes"?: IPAllowlistAttributes; /** - * The unique identifier of the org. + * The unique identifier of the organization. */ "id"?: string; /** diff --git a/services/ip_allowlist/src/v2/models/IPAllowlistEntryAttributes.ts b/services/ip_allowlist/src/v2/models/IPAllowlistEntryAttributes.ts index 97e00d7b5f3a..ca200e2fbbda 100644 --- a/services/ip_allowlist/src/v2/models/IPAllowlistEntryAttributes.ts +++ b/services/ip_allowlist/src/v2/models/IPAllowlistEntryAttributes.ts @@ -12,6 +12,10 @@ export class IPAllowlistEntryAttributes { * Creation time of the entry. */ "createdAt"?: Date; + /** + * A label for the IP allowlist entry. + */ + "label"?: string; /** * Time of last entry modification. */ @@ -44,6 +48,10 @@ export class IPAllowlistEntryAttributes { type: "Date", format: "date-time", }, + label: { + baseName: "label", + type: "string", + }, modifiedAt: { baseName: "modified_at", type: "Date",