File tree Expand file tree Collapse file tree
packages/datadog-api-client-v2/models Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31529,7 +31529,7 @@ components:
3152931529 attributes:
3153031530 $ref: "#/components/schemas/IPAllowlistAttributes"
3153131531 id:
31532- description: The unique identifier of the org .
31532+ description: The unique identifier of the organization .
3153331533 type: string
3153431534 type:
3153531535 $ref: "#/components/schemas/IPAllowlistType"
@@ -31555,6 +31555,9 @@ components:
3155531555 format: date-time
3155631556 readOnly: true
3155731557 type: string
31558+ label:
31559+ description: A label for the IP allowlist entry.
31560+ type: string
3155831561 modified_at:
3155931562 description: Time of last entry modification.
3156031563 format: date-time
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export class IPAllowlistData {
1717 */
1818 "attributes" ?: IPAllowlistAttributes ;
1919 /**
20- * The unique identifier of the org .
20+ * The unique identifier of the organization .
2121 */
2222 "id" ?: string ;
2323 /**
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ export class IPAllowlistEntryAttributes {
1818 * Creation time of the entry.
1919 */
2020 "createdAt" ?: Date ;
21+ /**
22+ * A label for the IP allowlist entry.
23+ */
24+ "label" ?: string ;
2125 /**
2226 * Time of last entry modification.
2327 */
@@ -52,6 +56,10 @@ export class IPAllowlistEntryAttributes {
5256 type : "Date" ,
5357 format : "date-time" ,
5458 } ,
59+ label : {
60+ baseName : "label" ,
61+ type : "string" ,
62+ } ,
5563 modifiedAt : {
5664 baseName : "modified_at" ,
5765 type : "Date" ,
You can’t perform that action at this time.
0 commit comments