Skip to content

Commit 7c63057

Browse files
committed
chore: update to API v0.32.0
1 parent 9b7b793 commit 7c63057

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

lib/binarylane/models/domain_record_request.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ class DomainRecordRequest:
3333
data (str): A general data field that has different functions depending on the record type.
3434
priority (Union[Unset, None, int]): A priority value that is only relevant for SRV and MX records.
3535
port (Union[Unset, None, int]): A port value that is only relevant for SRV records.
36-
ttl (Union[Unset, None, int]): This value is the time to live for the record, in seconds.
36+
ttl (Union[Unset, None, int]): This value is the time to live for the record, in seconds. The default and only
37+
supported value is 3600. Leave null to accept this default.
3738
weight (Union[Unset, None, int]): The weight value that is only relevant for SRV records.
3839
flags (Union[Unset, None, int]): An unsigned integer between 0-255 that is only relevant for CAA records.
3940
tag (Union[Unset, None, str]): A parameter tag that is only relevant for CAA records.

src/binarylane/console/commands/api/post_v2_domains_domain_name_records.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def create_mapping(self) -> Mapping:
119119
Union[Unset, None, int],
120120
required=False,
121121
option_name="ttl",
122-
description="""This value is the time to live for the record, in seconds.""",
122+
description="""This value is the time to live for the record, in seconds. The default and only supported value is 3600. Leave null to accept this default.""",
123123
)
124124
)
125125

0 commit comments

Comments
 (0)