Skip to content

Commit cb4b63f

Browse files
author
ci_volc_sdk_gen
committed
feat: auto generate for vpc-Python-2020-04-01-online-1925-2025_12_10_14_29_07
1 parent b6f9b7a commit cb4b63f

File tree

87 files changed

+2154
-99
lines changed

Some content is hidden

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

87 files changed

+2154
-99
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.41",
3-
"meta_commit": "17428debe6c6eea83e947874dd4de3c113cb199b"
2+
"lasted": "4.0.42",
3+
"meta_commit": "01647a2f667c5545738d18df72e6ba0d97365d2e"
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.41"
3+
version = "4.0.42"
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.41"
6+
VERSION = "4.0.42"
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.41'
67+
self.user_agent = 'volcstack-python-sdk/4.0.42'
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.41".\
275+
"SDK Package Version: 4.0.42".\
276276
format(env=sys.platform, pyversion=sys.version)
277277

278278
@property

volcenginesdkvpc/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@
367367
from volcenginesdkvpc.models.tag_for_describe_ip_address_pools_output import TagForDescribeIpAddressPoolsOutput
368368
from volcenginesdkvpc.models.tag_for_describe_ipv6_address_bandwidth_attributes_output import TagForDescribeIpv6AddressBandwidthAttributesOutput
369369
from volcenginesdkvpc.models.tag_for_describe_ipv6_address_bandwidths_output import TagForDescribeIpv6AddressBandwidthsOutput
370+
from volcenginesdkvpc.models.tag_for_describe_ipv6_gateway_attribute_output import TagForDescribeIpv6GatewayAttributeOutput
370371
from volcenginesdkvpc.models.tag_for_describe_network_acl_attributes_output import TagForDescribeNetworkAclAttributesOutput
371372
from volcenginesdkvpc.models.tag_for_describe_network_acls_output import TagForDescribeNetworkAclsOutput
372373
from volcenginesdkvpc.models.tag_for_describe_network_interface_attributes_output import TagForDescribeNetworkInterfaceAttributesOutput

volcenginesdkvpc/models/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,7 @@
363363
from volcenginesdkvpc.models.tag_for_describe_ip_address_pools_output import TagForDescribeIpAddressPoolsOutput
364364
from volcenginesdkvpc.models.tag_for_describe_ipv6_address_bandwidth_attributes_output import TagForDescribeIpv6AddressBandwidthAttributesOutput
365365
from volcenginesdkvpc.models.tag_for_describe_ipv6_address_bandwidths_output import TagForDescribeIpv6AddressBandwidthsOutput
366+
from volcenginesdkvpc.models.tag_for_describe_ipv6_gateway_attribute_output import TagForDescribeIpv6GatewayAttributeOutput
366367
from volcenginesdkvpc.models.tag_for_describe_network_acl_attributes_output import TagForDescribeNetworkAclAttributesOutput
367368
from volcenginesdkvpc.models.tag_for_describe_network_acls_output import TagForDescribeNetworkAclsOutput
368369
from volcenginesdkvpc.models.tag_for_describe_network_interface_attributes_output import TagForDescribeNetworkInterfaceAttributesOutput

volcenginesdkvpc/models/active_flow_log_request.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ def __init__(self, client_token=None, flow_log_id=None, _configuration=None): #
5252
self._flow_log_id = None
5353
self.discriminator = None
5454

55-
self.client_token = client_token
55+
if client_token is not None:
56+
self.client_token = client_token
5657
self.flow_log_id = flow_log_id
5758

5859
@property
@@ -73,8 +74,6 @@ def client_token(self, client_token):
7374
:param client_token: The client_token of this ActiveFlowLogRequest. # noqa: E501
7475
:type: str
7576
"""
76-
if self._configuration.client_side_validation and client_token is None:
77-
raise ValueError("Invalid value for `client_token`, must not be `None`") # noqa: E501
7877

7978
self._client_token = client_token
8079

volcenginesdkvpc/models/active_flow_log_response.py

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,25 +33,51 @@ class ActiveFlowLogResponse(object):
3333
and the value is json key in definition.
3434
"""
3535
swagger_types = {
36+
'async_task_id': 'str',
3637
'request_id': 'str'
3738
}
3839

3940
attribute_map = {
41+
'async_task_id': 'AsyncTaskId',
4042
'request_id': 'RequestId'
4143
}
4244

43-
def __init__(self, request_id=None, _configuration=None): # noqa: E501
45+
def __init__(self, async_task_id=None, request_id=None, _configuration=None): # noqa: E501
4446
"""ActiveFlowLogResponse - a model defined in Swagger""" # noqa: E501
4547
if _configuration is None:
4648
_configuration = Configuration()
4749
self._configuration = _configuration
4850

51+
self._async_task_id = None
4952
self._request_id = None
5053
self.discriminator = None
5154

55+
if async_task_id is not None:
56+
self.async_task_id = async_task_id
5257
if request_id is not None:
5358
self.request_id = request_id
5459

60+
@property
61+
def async_task_id(self):
62+
"""Gets the async_task_id of this ActiveFlowLogResponse. # noqa: E501
63+
64+
65+
:return: The async_task_id of this ActiveFlowLogResponse. # noqa: E501
66+
:rtype: str
67+
"""
68+
return self._async_task_id
69+
70+
@async_task_id.setter
71+
def async_task_id(self, async_task_id):
72+
"""Sets the async_task_id of this ActiveFlowLogResponse.
73+
74+
75+
:param async_task_id: The async_task_id of this ActiveFlowLogResponse. # noqa: E501
76+
:type: str
77+
"""
78+
79+
self._async_task_id = async_task_id
80+
5581
@property
5682
def request_id(self):
5783
"""Gets the request_id of this ActiveFlowLogResponse. # noqa: E501

volcenginesdkvpc/models/allocate_ipv6_address_bandwidth_response.py

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,26 +34,31 @@ class AllocateIpv6AddressBandwidthResponse(object):
3434
"""
3535
swagger_types = {
3636
'allocation_id': 'str',
37+
'allocation_ids': 'list[str]',
3738
'request_id': 'str'
3839
}
3940

4041
attribute_map = {
4142
'allocation_id': 'AllocationId',
43+
'allocation_ids': 'AllocationIds',
4244
'request_id': 'RequestId'
4345
}
4446

45-
def __init__(self, allocation_id=None, request_id=None, _configuration=None): # noqa: E501
47+
def __init__(self, allocation_id=None, allocation_ids=None, request_id=None, _configuration=None): # noqa: E501
4648
"""AllocateIpv6AddressBandwidthResponse - a model defined in Swagger""" # noqa: E501
4749
if _configuration is None:
4850
_configuration = Configuration()
4951
self._configuration = _configuration
5052

5153
self._allocation_id = None
54+
self._allocation_ids = None
5255
self._request_id = None
5356
self.discriminator = None
5457

5558
if allocation_id is not None:
5659
self.allocation_id = allocation_id
60+
if allocation_ids is not None:
61+
self.allocation_ids = allocation_ids
5762
if request_id is not None:
5863
self.request_id = request_id
5964

@@ -78,6 +83,27 @@ def allocation_id(self, allocation_id):
7883

7984
self._allocation_id = allocation_id
8085

86+
@property
87+
def allocation_ids(self):
88+
"""Gets the allocation_ids of this AllocateIpv6AddressBandwidthResponse. # noqa: E501
89+
90+
91+
:return: The allocation_ids of this AllocateIpv6AddressBandwidthResponse. # noqa: E501
92+
:rtype: list[str]
93+
"""
94+
return self._allocation_ids
95+
96+
@allocation_ids.setter
97+
def allocation_ids(self, allocation_ids):
98+
"""Sets the allocation_ids of this AllocateIpv6AddressBandwidthResponse.
99+
100+
101+
:param allocation_ids: The allocation_ids of this AllocateIpv6AddressBandwidthResponse. # noqa: E501
102+
:type: list[str]
103+
"""
104+
105+
self._allocation_ids = allocation_ids
106+
81107
@property
82108
def request_id(self):
83109
"""Gets the request_id of this AllocateIpv6AddressBandwidthResponse. # noqa: E501

0 commit comments

Comments
 (0)