Skip to content

Commit ed5271d

Browse files
author
BitsAdmin
committed
Merge branch 'vefaas-Python-2024-06-06-online-1809-2025_11_13_14_01_11' into 'integration_2025-11-13_1083916009218'
feat: [development task] vefaas-1809-Python (1828577) See merge request iaasng/volcengine-python-sdk!910
2 parents 5f1f14a + 7353b39 commit ed5271d

File tree

6 files changed

+7
-33
lines changed

6 files changed

+7
-33
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.33",
3-
"meta_commit": "c3df350eb15e68c9b10d1611335633edaa2dabde"
2+
"lasted": "4.0.34",
3+
"meta_commit": "ce31b9fc4ed7b8f6406898e15043dcd6a2150c8c"
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.33"
3+
version = "4.0.34"
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.33"
6+
VERSION = "4.0.34"
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.33'
67+
self.user_agent = 'volcstack-python-sdk/4.0.34'
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.33".\
275+
"SDK Package Version: 4.0.34".\
276276
format(env=sys.platform, pyversion=sys.version)
277277

278278
@property

volcenginesdkvefaas/models/describe_sandbox_response.py

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ class DescribeSandboxResponse(object):
4747
'instance_type': 'str',
4848
'max_concurrency': 'int',
4949
'memory_mb': 'int',
50-
'metadata': 'dict(str, str)',
5150
'metadata_list': 'list[MetadataListForDescribeSandboxOutput]',
5251
'pending': 'bool',
5352
'request_timeout': 'int',
@@ -70,15 +69,14 @@ class DescribeSandboxResponse(object):
7069
'instance_type': 'InstanceType',
7170
'max_concurrency': 'MaxConcurrency',
7271
'memory_mb': 'MemoryMB',
73-
'metadata': 'Metadata',
7472
'metadata_list': 'MetadataList',
7573
'pending': 'Pending',
7674
'request_timeout': 'RequestTimeout',
7775
'revision_number': 'RevisionNumber',
7876
'status': 'Status'
7977
}
8078

81-
def __init__(self, availability_zone=None, cpu_milli=None, created_at=None, envs=None, error_code=None, error_message=None, expire_at=None, function_id=None, id=None, image_info=None, instance_tos_mount_config=None, instance_type=None, max_concurrency=None, memory_mb=None, metadata=None, metadata_list=None, pending=None, request_timeout=None, revision_number=None, status=None, _configuration=None): # noqa: E501
79+
def __init__(self, availability_zone=None, cpu_milli=None, created_at=None, envs=None, error_code=None, error_message=None, expire_at=None, function_id=None, id=None, image_info=None, instance_tos_mount_config=None, instance_type=None, max_concurrency=None, memory_mb=None, metadata_list=None, pending=None, request_timeout=None, revision_number=None, status=None, _configuration=None): # noqa: E501
8280
"""DescribeSandboxResponse - a model defined in Swagger""" # noqa: E501
8381
if _configuration is None:
8482
_configuration = Configuration()
@@ -98,7 +96,6 @@ def __init__(self, availability_zone=None, cpu_milli=None, created_at=None, envs
9896
self._instance_type = None
9997
self._max_concurrency = None
10098
self._memory_mb = None
101-
self._metadata = None
10299
self._metadata_list = None
103100
self._pending = None
104101
self._request_timeout = None
@@ -134,8 +131,6 @@ def __init__(self, availability_zone=None, cpu_milli=None, created_at=None, envs
134131
self.max_concurrency = max_concurrency
135132
if memory_mb is not None:
136133
self.memory_mb = memory_mb
137-
if metadata is not None:
138-
self.metadata = metadata
139134
if metadata_list is not None:
140135
self.metadata_list = metadata_list
141136
if pending is not None:
@@ -441,27 +436,6 @@ def memory_mb(self, memory_mb):
441436

442437
self._memory_mb = memory_mb
443438

444-
@property
445-
def metadata(self):
446-
"""Gets the metadata of this DescribeSandboxResponse. # noqa: E501
447-
448-
449-
:return: The metadata of this DescribeSandboxResponse. # noqa: E501
450-
:rtype: dict(str, str)
451-
"""
452-
return self._metadata
453-
454-
@metadata.setter
455-
def metadata(self, metadata):
456-
"""Sets the metadata of this DescribeSandboxResponse.
457-
458-
459-
:param metadata: The metadata of this DescribeSandboxResponse. # noqa: E501
460-
:type: dict(str, str)
461-
"""
462-
463-
self._metadata = metadata
464-
465439
@property
466440
def metadata_list(self):
467441
"""Gets the metadata_list of this DescribeSandboxResponse. # noqa: E501

0 commit comments

Comments
 (0)