Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/datadog-api-client-v2/models/IPAllowlistData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class IPAllowlistData {
*/
"attributes"?: IPAllowlistAttributes;
/**
* The unique identifier of the org.
* The unique identifier of the organization.
*/
"id"?: string;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down Expand Up @@ -52,6 +56,10 @@ export class IPAllowlistEntryAttributes {
type: "Date",
format: "date-time",
},
label: {
baseName: "label",
type: "string",
},
modifiedAt: {
baseName: "modified_at",
type: "Date",
Expand Down
Loading