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/packages/datadog-api-client-v2/models/IPAllowlistData.ts b/packages/datadog-api-client-v2/models/IPAllowlistData.ts index 946d1eb13dd0..5a6120ca069a 100644 --- a/packages/datadog-api-client-v2/models/IPAllowlistData.ts +++ b/packages/datadog-api-client-v2/models/IPAllowlistData.ts @@ -17,7 +17,7 @@ export class IPAllowlistData { */ "attributes"?: IPAllowlistAttributes; /** - * The unique identifier of the org. + * The unique identifier of the organization. */ "id"?: string; /** diff --git a/packages/datadog-api-client-v2/models/IPAllowlistEntryAttributes.ts b/packages/datadog-api-client-v2/models/IPAllowlistEntryAttributes.ts index 9647eae9246c..e6e977c25030 100644 --- a/packages/datadog-api-client-v2/models/IPAllowlistEntryAttributes.ts +++ b/packages/datadog-api-client-v2/models/IPAllowlistEntryAttributes.ts @@ -18,6 +18,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. */ @@ -52,6 +56,10 @@ export class IPAllowlistEntryAttributes { type: "Date", format: "date-time", }, + label: { + baseName: "label", + type: "string", + }, modifiedAt: { baseName: "modified_at", type: "Date",