Skip to content

Commit 06cd6ce

Browse files
ci_volc_sdk_genbytestarter
authored andcommitted
feat: auto generate for vpc-Python-2020-04-01-online-2030-2026_01_12_22_25_46
1 parent 6219b03 commit 06cd6ce

3 files changed

Lines changed: 31 additions & 5 deletions

File tree

meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"lasted": "5.0.6",
3-
"meta_commit": "c052315a28392795bc22f23aa97730902f8f998a"
3+
"meta_commit": "393a17d49d6087666f3541e5bc7ccf0464ea061e"
44
}

volcenginesdkvpc/models/ipv6_address_bandwidth_for_describe_ipv6_address_bandwidths_output.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class Ipv6AddressBandwidthForDescribeIpv6AddressBandwidthsOutput(object):
3434
"""
3535
swagger_types = {
3636
'allocation_id': 'str',
37-
'bandwidth': 'str',
37+
'bandwidth': 'int',
3838
'bandwidth_package_id': 'str',
3939
'billing_type': 'int',
4040
'business_status': 'str',
@@ -174,7 +174,7 @@ def bandwidth(self):
174174
175175
176176
:return: The bandwidth of this Ipv6AddressBandwidthForDescribeIpv6AddressBandwidthsOutput. # noqa: E501
177-
:rtype: str
177+
:rtype: int
178178
"""
179179
return self._bandwidth
180180

@@ -184,7 +184,7 @@ def bandwidth(self, bandwidth):
184184
185185
186186
:param bandwidth: The bandwidth of this Ipv6AddressBandwidthForDescribeIpv6AddressBandwidthsOutput. # noqa: E501
187-
:type: str
187+
:type: int
188188
"""
189189

190190
self._bandwidth = bandwidth

volcenginesdkvpc/models/unassign_private_ip_addresses_request.py

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,29 +33,55 @@ class UnassignPrivateIpAddressesRequest(object):
3333
and the value is json key in definition.
3434
"""
3535
swagger_types = {
36+
'client_token': 'str',
3637
'network_interface_id': 'str',
3738
'private_ip_address': 'list[str]'
3839
}
3940

4041
attribute_map = {
42+
'client_token': 'ClientToken',
4143
'network_interface_id': 'NetworkInterfaceId',
4244
'private_ip_address': 'PrivateIpAddress'
4345
}
4446

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

53+
self._client_token = None
5154
self._network_interface_id = None
5255
self._private_ip_address = None
5356
self.discriminator = None
5457

58+
if client_token is not None:
59+
self.client_token = client_token
5560
self.network_interface_id = network_interface_id
5661
if private_ip_address is not None:
5762
self.private_ip_address = private_ip_address
5863

64+
@property
65+
def client_token(self):
66+
"""Gets the client_token of this UnassignPrivateIpAddressesRequest. # noqa: E501
67+
68+
69+
:return: The client_token of this UnassignPrivateIpAddressesRequest. # noqa: E501
70+
:rtype: str
71+
"""
72+
return self._client_token
73+
74+
@client_token.setter
75+
def client_token(self, client_token):
76+
"""Sets the client_token of this UnassignPrivateIpAddressesRequest.
77+
78+
79+
:param client_token: The client_token of this UnassignPrivateIpAddressesRequest. # noqa: E501
80+
:type: str
81+
"""
82+
83+
self._client_token = client_token
84+
5985
@property
6086
def network_interface_id(self):
6187
"""Gets the network_interface_id of this UnassignPrivateIpAddressesRequest. # noqa: E501

0 commit comments

Comments
 (0)