Skip to content

Commit 49467aa

Browse files
author
BitsAdmin
committed
Merge 'vepfs-Python-2022-01-01-online-2357-2026_03_13_16_44_31' into 'integration_2026-03-16_1125114264834'
feat: [development task] vepfs-2357-Python (2186306) See merge request: !1100
2 parents 28b6c72 + 7ab8873 commit 49467aa

File tree

10 files changed

+367
-8
lines changed

10 files changed

+367
-8
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": "5.0.16",
3-
"meta_commit": "9199c3f8398569fdba59591d0d6d7212501854a5"
2+
"lasted": "5.0.17",
3+
"meta_commit": "b7b75adae93b23ad5a519fcde577632a35e81343"
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 = "5.0.16"
3+
version = "5.0.17"
44
authors = [
55
{name = "volc-engine", email = "volc-sdk-team@bytedance.com"},
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 = "5.0.16"
6+
VERSION = "5.0.17"
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/5.0.16'
67+
self.user_agent = 'volcstack-python-sdk/5.0.17'
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
@@ -291,7 +291,7 @@ def to_debug_report(self):
291291
"OS: {env}\n" \
292292
"Python Version: {pyversion}\n" \
293293
"Version of the API: 0.1.0\n" \
294-
"SDK Package Version: 5.0.16".\
294+
"SDK Package Version: 5.0.17".\
295295
format(env=sys.platform, pyversion=sys.version)
296296

297297
@property

volcenginesdkvepfs/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@
177177
from volcenginesdkvepfs.models.tag_resources_response import TagResourcesResponse
178178
from volcenginesdkvepfs.models.target_info_for_create_lens_task_input import TargetInfoForCreateLensTaskInput
179179
from volcenginesdkvepfs.models.target_info_for_describe_lens_tasks_output import TargetInfoForDescribeLensTasksOutput
180+
from volcenginesdkvepfs.models.tls_info_for_describe_data_flow_tasks_output import TlsInfoForDescribeDataFlowTasksOutput
180181
from volcenginesdkvepfs.models.untag_resources_request import UntagResourcesRequest
181182
from volcenginesdkvepfs.models.untag_resources_response import UntagResourcesResponse
182183
from volcenginesdkvepfs.models.update_audit_request import UpdateAuditRequest

volcenginesdkvepfs/models/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@
173173
from volcenginesdkvepfs.models.tag_resources_response import TagResourcesResponse
174174
from volcenginesdkvepfs.models.target_info_for_create_lens_task_input import TargetInfoForCreateLensTaskInput
175175
from volcenginesdkvepfs.models.target_info_for_describe_lens_tasks_output import TargetInfoForDescribeLensTasksOutput
176+
from volcenginesdkvepfs.models.tls_info_for_describe_data_flow_tasks_output import TlsInfoForDescribeDataFlowTasksOutput
176177
from volcenginesdkvepfs.models.untag_resources_request import UntagResourcesRequest
177178
from volcenginesdkvepfs.models.untag_resources_response import UntagResourcesResponse
178179
from volcenginesdkvepfs.models.update_audit_request import UpdateAuditRequest

volcenginesdkvepfs/models/create_data_flow_task_request.py

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ class CreateDataFlowTaskRequest(object):
3737
'data_storage_path': 'str',
3838
'data_type': 'str',
3939
'delete_policy': 'DeletePolicyForCreateDataFlowTaskInput',
40+
'enable_tls_log': 'bool',
4041
'entry_list_file_info': 'EntryListFileInfoForCreateDataFlowTaskInput',
4142
'export_symlink_policy': 'str',
4243
'file_system_id': 'str',
@@ -51,6 +52,7 @@ class CreateDataFlowTaskRequest(object):
5152
'data_storage_path': 'DataStoragePath',
5253
'data_type': 'DataType',
5354
'delete_policy': 'DeletePolicy',
55+
'enable_tls_log': 'EnableTlsLog',
5456
'entry_list_file_info': 'EntryListFileInfo',
5557
'export_symlink_policy': 'ExportSymlinkPolicy',
5658
'file_system_id': 'FileSystemId',
@@ -60,7 +62,7 @@ class CreateDataFlowTaskRequest(object):
6062
'task_action': 'TaskAction'
6163
}
6264

63-
def __init__(self, data_storage=None, data_storage_path=None, data_type=None, delete_policy=None, entry_list_file_info=None, export_symlink_policy=None, file_system_id=None, fileset_id=None, same_name_file_policy=None, sub_path=None, task_action=None, _configuration=None): # noqa: E501
65+
def __init__(self, data_storage=None, data_storage_path=None, data_type=None, delete_policy=None, enable_tls_log=None, entry_list_file_info=None, export_symlink_policy=None, file_system_id=None, fileset_id=None, same_name_file_policy=None, sub_path=None, task_action=None, _configuration=None): # noqa: E501
6466
"""CreateDataFlowTaskRequest - a model defined in Swagger""" # noqa: E501
6567
if _configuration is None:
6668
_configuration = Configuration()
@@ -70,6 +72,7 @@ def __init__(self, data_storage=None, data_storage_path=None, data_type=None, de
7072
self._data_storage_path = None
7173
self._data_type = None
7274
self._delete_policy = None
75+
self._enable_tls_log = None
7376
self._entry_list_file_info = None
7477
self._export_symlink_policy = None
7578
self._file_system_id = None
@@ -86,6 +89,8 @@ def __init__(self, data_storage=None, data_storage_path=None, data_type=None, de
8689
self.data_type = data_type
8790
if delete_policy is not None:
8891
self.delete_policy = delete_policy
92+
if enable_tls_log is not None:
93+
self.enable_tls_log = enable_tls_log
8994
if entry_list_file_info is not None:
9095
self.entry_list_file_info = entry_list_file_info
9196
if export_symlink_policy is not None:
@@ -192,6 +197,27 @@ def delete_policy(self, delete_policy):
192197

193198
self._delete_policy = delete_policy
194199

200+
@property
201+
def enable_tls_log(self):
202+
"""Gets the enable_tls_log of this CreateDataFlowTaskRequest. # noqa: E501
203+
204+
205+
:return: The enable_tls_log of this CreateDataFlowTaskRequest. # noqa: E501
206+
:rtype: bool
207+
"""
208+
return self._enable_tls_log
209+
210+
@enable_tls_log.setter
211+
def enable_tls_log(self, enable_tls_log):
212+
"""Sets the enable_tls_log of this CreateDataFlowTaskRequest.
213+
214+
215+
:param enable_tls_log: The enable_tls_log of this CreateDataFlowTaskRequest. # noqa: E501
216+
:type: bool
217+
"""
218+
219+
self._enable_tls_log = enable_tls_log
220+
195221
@property
196222
def entry_list_file_info(self):
197223
"""Gets the entry_list_file_info of this CreateDataFlowTaskRequest. # noqa: E501

volcenginesdkvepfs/models/data_flow_task_for_describe_data_flow_tasks_output.py

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ class DataFlowTaskForDescribeDataFlowTasksOutput(object):
5656
'status': 'str',
5757
'sub_path': 'str',
5858
'task_action': 'str',
59+
'tls_info': 'TlsInfoForDescribeDataFlowTasksOutput',
5960
'total_size': 'str',
6061
'update_time': 'str'
6162
}
@@ -84,11 +85,12 @@ class DataFlowTaskForDescribeDataFlowTasksOutput(object):
8485
'status': 'Status',
8586
'sub_path': 'SubPath',
8687
'task_action': 'TaskAction',
88+
'tls_info': 'TlsInfo',
8789
'total_size': 'TotalSize',
8890
'update_time': 'UpdateTime'
8991
}
9092

91-
def __init__(self, create_time=None, data_flow_task_id=None, data_storage=None, data_storage_path=None, data_type=None, delete_policy=None, end_time=None, entry_list_file_info=None, entry_list_file_url=None, exec_count=None, exec_size=None, export_symlink_policy=None, failed_count=None, file_system_id=None, fileset_id=None, fileset_path=None, queue_count=None, reports=None, same_name_file_policy=None, start_time=None, status=None, sub_path=None, task_action=None, total_size=None, update_time=None, _configuration=None): # noqa: E501
93+
def __init__(self, create_time=None, data_flow_task_id=None, data_storage=None, data_storage_path=None, data_type=None, delete_policy=None, end_time=None, entry_list_file_info=None, entry_list_file_url=None, exec_count=None, exec_size=None, export_symlink_policy=None, failed_count=None, file_system_id=None, fileset_id=None, fileset_path=None, queue_count=None, reports=None, same_name_file_policy=None, start_time=None, status=None, sub_path=None, task_action=None, tls_info=None, total_size=None, update_time=None, _configuration=None): # noqa: E501
9294
"""DataFlowTaskForDescribeDataFlowTasksOutput - a model defined in Swagger""" # noqa: E501
9395
if _configuration is None:
9496
_configuration = Configuration()
@@ -117,6 +119,7 @@ def __init__(self, create_time=None, data_flow_task_id=None, data_storage=None,
117119
self._status = None
118120
self._sub_path = None
119121
self._task_action = None
122+
self._tls_info = None
120123
self._total_size = None
121124
self._update_time = None
122125
self.discriminator = None
@@ -167,6 +170,8 @@ def __init__(self, create_time=None, data_flow_task_id=None, data_storage=None,
167170
self.sub_path = sub_path
168171
if task_action is not None:
169172
self.task_action = task_action
173+
if tls_info is not None:
174+
self.tls_info = tls_info
170175
if total_size is not None:
171176
self.total_size = total_size
172177
if update_time is not None:
@@ -655,6 +660,27 @@ def task_action(self, task_action):
655660

656661
self._task_action = task_action
657662

663+
@property
664+
def tls_info(self):
665+
"""Gets the tls_info of this DataFlowTaskForDescribeDataFlowTasksOutput. # noqa: E501
666+
667+
668+
:return: The tls_info of this DataFlowTaskForDescribeDataFlowTasksOutput. # noqa: E501
669+
:rtype: TlsInfoForDescribeDataFlowTasksOutput
670+
"""
671+
return self._tls_info
672+
673+
@tls_info.setter
674+
def tls_info(self, tls_info):
675+
"""Sets the tls_info of this DataFlowTaskForDescribeDataFlowTasksOutput.
676+
677+
678+
:param tls_info: The tls_info of this DataFlowTaskForDescribeDataFlowTasksOutput. # noqa: E501
679+
:type: TlsInfoForDescribeDataFlowTasksOutput
680+
"""
681+
682+
self._tls_info = tls_info
683+
658684
@property
659685
def total_size(self):
660686
"""Gets the total_size of this DataFlowTaskForDescribeDataFlowTasksOutput. # noqa: E501

0 commit comments

Comments
 (0)