Skip to content

Commit d6d7e58

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 64bf902 of spec repo
1 parent 0f95355 commit d6d7e58

3 files changed

Lines changed: 13 additions & 2 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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

src/datadog_api_client/v2/model/ip_allowlist_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def __init__(
4949
:param attributes: Attributes of the IP allowlist.
5050
:type attributes: IPAllowlistAttributes, optional
5151
52-
:param id: The unique identifier of the org.
52+
:param id: The unique identifier of the organization.
5353
:type id: str, optional
5454
5555
:param type: IP allowlist type.

src/datadog_api_client/v2/model/ip_allowlist_entry_attributes.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,15 @@ def openapi_types(_):
2020
return {
2121
"cidr_block": (str,),
2222
"created_at": (datetime,),
23+
"label": (str,),
2324
"modified_at": (datetime,),
2425
"note": (str,),
2526
}
2627

2728
attribute_map = {
2829
"cidr_block": "cidr_block",
2930
"created_at": "created_at",
31+
"label": "label",
3032
"modified_at": "modified_at",
3133
"note": "note",
3234
}
@@ -39,6 +41,7 @@ def __init__(
3941
self_,
4042
cidr_block: Union[str, UnsetType] = unset,
4143
created_at: Union[datetime, UnsetType] = unset,
44+
label: Union[str, UnsetType] = unset,
4245
modified_at: Union[datetime, UnsetType] = unset,
4346
note: Union[str, UnsetType] = unset,
4447
**kwargs,
@@ -52,6 +55,9 @@ def __init__(
5255
:param created_at: Creation time of the entry.
5356
:type created_at: datetime, optional
5457
58+
:param label: A label for the IP allowlist entry.
59+
:type label: str, optional
60+
5561
:param modified_at: Time of last entry modification.
5662
:type modified_at: datetime, optional
5763
@@ -62,6 +68,8 @@ def __init__(
6268
kwargs["cidr_block"] = cidr_block
6369
if created_at is not unset:
6470
kwargs["created_at"] = created_at
71+
if label is not unset:
72+
kwargs["label"] = label
6573
if modified_at is not unset:
6674
kwargs["modified_at"] = modified_at
6775
if note is not unset:

0 commit comments

Comments
 (0)