Skip to content

Commit b6f9b7a

Browse files
committed
Merge 'integration_2025-12-09_1091084378882' into 'master'
merge branch integration_2025-12-09_1091084378882 into master See merge request: !964
2 parents a745e82 + c04058f commit b6f9b7a

File tree

121 files changed

+21259
-810
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+21259
-810
lines changed

meta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"lasted": "4.0.40",
3-
"meta_commit": "0614d6a38e35f98a9278da7fd6eef5d4937bfce7"
2+
"lasted": "4.0.41",
3+
"meta_commit": "17428debe6c6eea83e947874dd4de3c113cb199b"
44
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "volcengine-python-sdk"
3-
version = "4.0.38"
3+
version = "4.0.41"
44
authors = [
55
{name = "volc-engine", email = "[email protected]"},
66
]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages # noqa: H301
44

55
NAME = "volcengine-python-sdk"
6-
VERSION = "4.0.40"
6+
VERSION = "4.0.41"
77
# To install the library, run the following
88
#
99
# python setup.py install

volcenginesdkcore/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
6464
self.default_headers[header_name] = header_value
6565
self.cookie = cookie
6666
# Set default User-Agent.
67-
self.user_agent = 'volcstack-python-sdk/4.0.40'
67+
self.user_agent = 'volcstack-python-sdk/4.0.41'
6868
self.client_side_validation = configuration.client_side_validation
6969

7070
self.interceptor_chain = InterceptorChain()

volcenginesdkcore/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def to_debug_report(self):
272272
"OS: {env}\n" \
273273
"Python Version: {pyversion}\n" \
274274
"Version of the API: 0.1.0\n" \
275-
"SDK Package Version: 4.0.40".\
275+
"SDK Package Version: 4.0.41".\
276276
format(env=sys.platform, pyversion=sys.version)
277277

278278
@property

volcenginesdkrdspostgresql/__init__.py

Lines changed: 82 additions & 0 deletions
Large diffs are not rendered by default.

volcenginesdkrdspostgresql/api/rds_postgresql_api.py

Lines changed: 3175 additions & 750 deletions
Large diffs are not rendered by default.

volcenginesdkrdspostgresql/models/__init__.py

Lines changed: 82 additions & 0 deletions
Large diffs are not rendered by default.

volcenginesdkrdspostgresql/models/account_for_describe_db_accounts_output.py

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,19 @@ class AccountForDescribeDBAccountsOutput(object):
3636
'account_name': 'str',
3737
'account_privileges': 'str',
3838
'account_status': 'str',
39-
'account_type': 'str'
39+
'account_type': 'str',
40+
'not_allow_privileges': 'list[str]'
4041
}
4142

4243
attribute_map = {
4344
'account_name': 'AccountName',
4445
'account_privileges': 'AccountPrivileges',
4546
'account_status': 'AccountStatus',
46-
'account_type': 'AccountType'
47+
'account_type': 'AccountType',
48+
'not_allow_privileges': 'NotAllowPrivileges'
4749
}
4850

49-
def __init__(self, account_name=None, account_privileges=None, account_status=None, account_type=None, _configuration=None): # noqa: E501
51+
def __init__(self, account_name=None, account_privileges=None, account_status=None, account_type=None, not_allow_privileges=None, _configuration=None): # noqa: E501
5052
"""AccountForDescribeDBAccountsOutput - a model defined in Swagger""" # noqa: E501
5153
if _configuration is None:
5254
_configuration = Configuration()
@@ -56,6 +58,7 @@ def __init__(self, account_name=None, account_privileges=None, account_status=No
5658
self._account_privileges = None
5759
self._account_status = None
5860
self._account_type = None
61+
self._not_allow_privileges = None
5962
self.discriminator = None
6063

6164
if account_name is not None:
@@ -66,6 +69,8 @@ def __init__(self, account_name=None, account_privileges=None, account_status=No
6669
self.account_status = account_status
6770
if account_type is not None:
6871
self.account_type = account_type
72+
if not_allow_privileges is not None:
73+
self.not_allow_privileges = not_allow_privileges
6974

7075
@property
7176
def account_name(self):
@@ -151,6 +156,27 @@ def account_type(self, account_type):
151156

152157
self._account_type = account_type
153158

159+
@property
160+
def not_allow_privileges(self):
161+
"""Gets the not_allow_privileges of this AccountForDescribeDBAccountsOutput. # noqa: E501
162+
163+
164+
:return: The not_allow_privileges of this AccountForDescribeDBAccountsOutput. # noqa: E501
165+
:rtype: list[str]
166+
"""
167+
return self._not_allow_privileges
168+
169+
@not_allow_privileges.setter
170+
def not_allow_privileges(self, not_allow_privileges):
171+
"""Sets the not_allow_privileges of this AccountForDescribeDBAccountsOutput.
172+
173+
174+
:param not_allow_privileges: The not_allow_privileges of this AccountForDescribeDBAccountsOutput. # noqa: E501
175+
:type: list[str]
176+
"""
177+
178+
self._not_allow_privileges = not_allow_privileges
179+
154180
def to_dict(self):
155181
"""Returns the model properties as a dict"""
156182
result = {}

volcenginesdkrdspostgresql/models/address_for_describe_db_instance_detail_output.py

Lines changed: 53 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,10 @@ class AddressForDescribeDBInstanceDetailOutput(object):
3333
and the value is json key in definition.
3434
"""
3535
swagger_types = {
36+
'cross_region_domain': 'str',
3637
'dns_visibility': 'bool',
3738
'domain': 'str',
39+
'domain_visibility_setting': 'str',
3840
'eip_id': 'str',
3941
'ip_address': 'str',
4042
'network_type': 'str',
@@ -43,34 +45,42 @@ class AddressForDescribeDBInstanceDetailOutput(object):
4345
}
4446

4547
attribute_map = {
48+
'cross_region_domain': 'CrossRegionDomain',
4649
'dns_visibility': 'DNSVisibility',
4750
'domain': 'Domain',
51+
'domain_visibility_setting': 'DomainVisibilitySetting',
4852
'eip_id': 'EipId',
4953
'ip_address': 'IPAddress',
5054
'network_type': 'NetworkType',
5155
'port': 'Port',
5256
'subnet_id': 'SubnetId'
5357
}
5458

55-
def __init__(self, dns_visibility=None, domain=None, eip_id=None, ip_address=None, network_type=None, port=None, subnet_id=None, _configuration=None): # noqa: E501
59+
def __init__(self, cross_region_domain=None, dns_visibility=None, domain=None, domain_visibility_setting=None, eip_id=None, ip_address=None, network_type=None, port=None, subnet_id=None, _configuration=None): # noqa: E501
5660
"""AddressForDescribeDBInstanceDetailOutput - a model defined in Swagger""" # noqa: E501
5761
if _configuration is None:
5862
_configuration = Configuration()
5963
self._configuration = _configuration
6064

65+
self._cross_region_domain = None
6166
self._dns_visibility = None
6267
self._domain = None
68+
self._domain_visibility_setting = None
6369
self._eip_id = None
6470
self._ip_address = None
6571
self._network_type = None
6672
self._port = None
6773
self._subnet_id = None
6874
self.discriminator = None
6975

76+
if cross_region_domain is not None:
77+
self.cross_region_domain = cross_region_domain
7078
if dns_visibility is not None:
7179
self.dns_visibility = dns_visibility
7280
if domain is not None:
7381
self.domain = domain
82+
if domain_visibility_setting is not None:
83+
self.domain_visibility_setting = domain_visibility_setting
7484
if eip_id is not None:
7585
self.eip_id = eip_id
7686
if ip_address is not None:
@@ -82,6 +92,27 @@ def __init__(self, dns_visibility=None, domain=None, eip_id=None, ip_address=Non
8292
if subnet_id is not None:
8393
self.subnet_id = subnet_id
8494

95+
@property
96+
def cross_region_domain(self):
97+
"""Gets the cross_region_domain of this AddressForDescribeDBInstanceDetailOutput. # noqa: E501
98+
99+
100+
:return: The cross_region_domain of this AddressForDescribeDBInstanceDetailOutput. # noqa: E501
101+
:rtype: str
102+
"""
103+
return self._cross_region_domain
104+
105+
@cross_region_domain.setter
106+
def cross_region_domain(self, cross_region_domain):
107+
"""Sets the cross_region_domain of this AddressForDescribeDBInstanceDetailOutput.
108+
109+
110+
:param cross_region_domain: The cross_region_domain of this AddressForDescribeDBInstanceDetailOutput. # noqa: E501
111+
:type: str
112+
"""
113+
114+
self._cross_region_domain = cross_region_domain
115+
85116
@property
86117
def dns_visibility(self):
87118
"""Gets the dns_visibility of this AddressForDescribeDBInstanceDetailOutput. # noqa: E501
@@ -124,6 +155,27 @@ def domain(self, domain):
124155

125156
self._domain = domain
126157

158+
@property
159+
def domain_visibility_setting(self):
160+
"""Gets the domain_visibility_setting of this AddressForDescribeDBInstanceDetailOutput. # noqa: E501
161+
162+
163+
:return: The domain_visibility_setting of this AddressForDescribeDBInstanceDetailOutput. # noqa: E501
164+
:rtype: str
165+
"""
166+
return self._domain_visibility_setting
167+
168+
@domain_visibility_setting.setter
169+
def domain_visibility_setting(self, domain_visibility_setting):
170+
"""Sets the domain_visibility_setting of this AddressForDescribeDBInstanceDetailOutput.
171+
172+
173+
:param domain_visibility_setting: The domain_visibility_setting of this AddressForDescribeDBInstanceDetailOutput. # noqa: E501
174+
:type: str
175+
"""
176+
177+
self._domain_visibility_setting = domain_visibility_setting
178+
127179
@property
128180
def eip_id(self):
129181
"""Gets the eip_id of this AddressForDescribeDBInstanceDetailOutput. # noqa: E501

0 commit comments

Comments
 (0)