huaweicloudsdksfsturbo 3.1.72__py2.py3-none-any.whl → 3.1.73__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- huaweicloudsdksfsturbo/v1/model/create_backend_target_request_body.py +3 -3
- huaweicloudsdksfsturbo/v1/model/create_backend_target_response.py +12 -12
- huaweicloudsdksfsturbo/v1/model/create_fs_dir_request_body.py +9 -9
- huaweicloudsdksfsturbo/v1/model/create_fs_task_response.py +3 -3
- huaweicloudsdksfsturbo/v1/model/create_hpc_cache_task_req.py +15 -15
- huaweicloudsdksfsturbo/v1/model/create_hpc_cache_task_response.py +3 -3
- huaweicloudsdksfsturbo/v1/model/delete_backend_target_request.py +6 -6
- huaweicloudsdksfsturbo/v1/model/delete_backend_target_response.py +9 -9
- huaweicloudsdksfsturbo/v1/model/delete_fs_task_request.py +3 -3
- huaweicloudsdksfsturbo/v1/model/fs_du_info.py +9 -9
- huaweicloudsdksfsturbo/v1/model/fs_file_count.py +14 -7
- huaweicloudsdksfsturbo/v1/model/list_backend_targets_response.py +6 -6
- huaweicloudsdksfsturbo/v1/model/list_hpc_cache_tasks_request.py +3 -3
- huaweicloudsdksfsturbo/v1/model/list_hpc_cache_tasks_response.py +3 -3
- huaweicloudsdksfsturbo/v1/model/obs_data_repository.py +6 -6
- huaweicloudsdksfsturbo/v1/model/one_fs_task_resp.py +4 -8
- huaweicloudsdksfsturbo/v1/model/one_hpc_cache_task_info_resp.py +15 -15
- huaweicloudsdksfsturbo/v1/model/share.py +35 -6
- huaweicloudsdksfsturbo/v1/model/share_info.py +61 -3
- huaweicloudsdksfsturbo/v1/model/show_backend_target_info_request.py +3 -3
- huaweicloudsdksfsturbo/v1/model/show_backend_target_info_response.py +12 -12
- huaweicloudsdksfsturbo/v1/model/show_backend_target_info_response_body.py +12 -12
- huaweicloudsdksfsturbo/v1/model/show_fs_dir_response.py +9 -9
- huaweicloudsdksfsturbo/v1/model/show_fs_dir_usage_response.py +1 -5
- huaweicloudsdksfsturbo/v1/model/show_fs_task_request.py +3 -3
- huaweicloudsdksfsturbo/v1/model/show_fs_task_response.py +4 -8
- huaweicloudsdksfsturbo/v1/model/show_hpc_cache_task_request.py +3 -3
- huaweicloudsdksfsturbo/v1/model/show_hpc_cache_task_response.py +15 -15
- huaweicloudsdksfsturbo/v1/model/show_share_response.py +61 -3
- huaweicloudsdksfsturbo/v1/model/update_hpc_share_request_body.py +3 -3
- huaweicloudsdksfsturbo/v1/model/update_hpc_share_response.py +3 -3
- huaweicloudsdksfsturbo/v1/sfsturbo_async_client.py +20 -20
- huaweicloudsdksfsturbo/v1/sfsturbo_client.py +20 -20
- {huaweicloudsdksfsturbo-3.1.72.dist-info → huaweicloudsdksfsturbo-3.1.73.dist-info}/METADATA +2 -2
- {huaweicloudsdksfsturbo-3.1.72.dist-info → huaweicloudsdksfsturbo-3.1.73.dist-info}/RECORD +38 -38
- {huaweicloudsdksfsturbo-3.1.72.dist-info → huaweicloudsdksfsturbo-3.1.73.dist-info}/LICENSE +0 -0
- {huaweicloudsdksfsturbo-3.1.72.dist-info → huaweicloudsdksfsturbo-3.1.73.dist-info}/WHEEL +0 -0
- {huaweicloudsdksfsturbo-3.1.72.dist-info → huaweicloudsdksfsturbo-3.1.73.dist-info}/top_level.txt +0 -0
@@ -31,7 +31,7 @@ class CreateBackendTargetRequestBody:
|
|
31
31
|
|
32
32
|
The model defined in huaweicloud sdk
|
33
33
|
|
34
|
-
:param file_system_path:
|
34
|
+
:param file_system_path: 联动目录名称,SFS Turbo会在文件系统根目录下以该名称创建一个子目录,该目录用于绑定后端存储。子目录名称不能重复,长度不能超过255个字符,子目录名称不能是“.”或“..”。不支持多层目录,不能包含字符'/'。
|
35
35
|
:type file_system_path: str
|
36
36
|
:param obs:
|
37
37
|
:type obs: :class:`huaweicloudsdksfsturbo.v1.ObsDataRepository`
|
@@ -50,7 +50,7 @@ class CreateBackendTargetRequestBody:
|
|
50
50
|
def file_system_path(self):
|
51
51
|
"""Gets the file_system_path of this CreateBackendTargetRequestBody.
|
52
52
|
|
53
|
-
|
53
|
+
联动目录名称,SFS Turbo会在文件系统根目录下以该名称创建一个子目录,该目录用于绑定后端存储。子目录名称不能重复,长度不能超过255个字符,子目录名称不能是“.”或“..”。不支持多层目录,不能包含字符'/'。
|
54
54
|
|
55
55
|
:return: The file_system_path of this CreateBackendTargetRequestBody.
|
56
56
|
:rtype: str
|
@@ -61,7 +61,7 @@ class CreateBackendTargetRequestBody:
|
|
61
61
|
def file_system_path(self, file_system_path):
|
62
62
|
"""Sets the file_system_path of this CreateBackendTargetRequestBody.
|
63
63
|
|
64
|
-
|
64
|
+
联动目录名称,SFS Turbo会在文件系统根目录下以该名称创建一个子目录,该目录用于绑定后端存储。子目录名称不能重复,长度不能超过255个字符,子目录名称不能是“.”或“..”。不支持多层目录,不能包含字符'/'。
|
65
65
|
|
66
66
|
:param file_system_path: The file_system_path of this CreateBackendTargetRequestBody.
|
67
67
|
:type file_system_path: str
|
@@ -42,15 +42,15 @@ class CreateBackendTargetResponse(SdkResponse):
|
|
42
42
|
|
43
43
|
The model defined in huaweicloud sdk
|
44
44
|
|
45
|
-
:param target_id:
|
45
|
+
:param target_id: 绑定关系id
|
46
46
|
:type target_id: str
|
47
|
-
:param creation_time:
|
47
|
+
:param creation_time: 绑定关系创建时间
|
48
48
|
:type creation_time: str
|
49
49
|
:param failure_details:
|
50
50
|
:type failure_details: :class:`huaweicloudsdksfsturbo.v1.FailureDetailsMessage`
|
51
|
-
:param file_system_path:
|
51
|
+
:param file_system_path: 联动目录名称
|
52
52
|
:type file_system_path: str
|
53
|
-
:param lifecycle:
|
53
|
+
:param lifecycle: 绑定状态。如果返回状态为CREATING,您需要通过获取后端存储详细信息接口去轮询绑定完成状态。 如果返回状态为AVAILABLE,代表绑定后端存储成功。如果返回状态MISCONFIGURED,代表绑定后端存储失败。DELETING 状态暂不支持。
|
54
54
|
:type lifecycle: str
|
55
55
|
:param obs:
|
56
56
|
:type obs: :class:`huaweicloudsdksfsturbo.v1.ObsDataRepository`
|
@@ -88,7 +88,7 @@ class CreateBackendTargetResponse(SdkResponse):
|
|
88
88
|
def target_id(self):
|
89
89
|
"""Gets the target_id of this CreateBackendTargetResponse.
|
90
90
|
|
91
|
-
|
91
|
+
绑定关系id
|
92
92
|
|
93
93
|
:return: The target_id of this CreateBackendTargetResponse.
|
94
94
|
:rtype: str
|
@@ -99,7 +99,7 @@ class CreateBackendTargetResponse(SdkResponse):
|
|
99
99
|
def target_id(self, target_id):
|
100
100
|
"""Sets the target_id of this CreateBackendTargetResponse.
|
101
101
|
|
102
|
-
|
102
|
+
绑定关系id
|
103
103
|
|
104
104
|
:param target_id: The target_id of this CreateBackendTargetResponse.
|
105
105
|
:type target_id: str
|
@@ -110,7 +110,7 @@ class CreateBackendTargetResponse(SdkResponse):
|
|
110
110
|
def creation_time(self):
|
111
111
|
"""Gets the creation_time of this CreateBackendTargetResponse.
|
112
112
|
|
113
|
-
|
113
|
+
绑定关系创建时间
|
114
114
|
|
115
115
|
:return: The creation_time of this CreateBackendTargetResponse.
|
116
116
|
:rtype: str
|
@@ -121,7 +121,7 @@ class CreateBackendTargetResponse(SdkResponse):
|
|
121
121
|
def creation_time(self, creation_time):
|
122
122
|
"""Sets the creation_time of this CreateBackendTargetResponse.
|
123
123
|
|
124
|
-
|
124
|
+
绑定关系创建时间
|
125
125
|
|
126
126
|
:param creation_time: The creation_time of this CreateBackendTargetResponse.
|
127
127
|
:type creation_time: str
|
@@ -150,7 +150,7 @@ class CreateBackendTargetResponse(SdkResponse):
|
|
150
150
|
def file_system_path(self):
|
151
151
|
"""Gets the file_system_path of this CreateBackendTargetResponse.
|
152
152
|
|
153
|
-
|
153
|
+
联动目录名称
|
154
154
|
|
155
155
|
:return: The file_system_path of this CreateBackendTargetResponse.
|
156
156
|
:rtype: str
|
@@ -161,7 +161,7 @@ class CreateBackendTargetResponse(SdkResponse):
|
|
161
161
|
def file_system_path(self, file_system_path):
|
162
162
|
"""Sets the file_system_path of this CreateBackendTargetResponse.
|
163
163
|
|
164
|
-
|
164
|
+
联动目录名称
|
165
165
|
|
166
166
|
:param file_system_path: The file_system_path of this CreateBackendTargetResponse.
|
167
167
|
:type file_system_path: str
|
@@ -172,7 +172,7 @@ class CreateBackendTargetResponse(SdkResponse):
|
|
172
172
|
def lifecycle(self):
|
173
173
|
"""Gets the lifecycle of this CreateBackendTargetResponse.
|
174
174
|
|
175
|
-
|
175
|
+
绑定状态。如果返回状态为CREATING,您需要通过获取后端存储详细信息接口去轮询绑定完成状态。 如果返回状态为AVAILABLE,代表绑定后端存储成功。如果返回状态MISCONFIGURED,代表绑定后端存储失败。DELETING 状态暂不支持。
|
176
176
|
|
177
177
|
:return: The lifecycle of this CreateBackendTargetResponse.
|
178
178
|
:rtype: str
|
@@ -183,7 +183,7 @@ class CreateBackendTargetResponse(SdkResponse):
|
|
183
183
|
def lifecycle(self, lifecycle):
|
184
184
|
"""Sets the lifecycle of this CreateBackendTargetResponse.
|
185
185
|
|
186
|
-
|
186
|
+
绑定状态。如果返回状态为CREATING,您需要通过获取后端存储详细信息接口去轮询绑定完成状态。 如果返回状态为AVAILABLE,代表绑定后端存储成功。如果返回状态MISCONFIGURED,代表绑定后端存储失败。DELETING 状态暂不支持。
|
187
187
|
|
188
188
|
:param lifecycle: The lifecycle of this CreateBackendTargetResponse.
|
189
189
|
:type lifecycle: str
|
@@ -37,11 +37,11 @@ class CreateFsDirRequestBody:
|
|
37
37
|
|
38
38
|
:param path: 合法的的目录全路径
|
39
39
|
:type path: str
|
40
|
-
:param mode:
|
40
|
+
:param mode: 目录权限,默认值是755,取值范围是0到777。第一位表示目录所有者的权限,第二位表示目录所属用户组的权限,第三位表示其他用户的权限。目录所有者由uid指定,目录所属用户组由gid指定,不是目录所有者且不在目录所属用户组的用户为其他用户。例如:755中第一位7代表该目录所有者对该目录具有读、写、执行权限;第二位5代表该目录所属用户组对该目录具有读、执行权限;第三位5代表其他用户对该目录具有读、执行权限。
|
41
41
|
:type mode: int
|
42
|
-
:param uid:
|
42
|
+
:param uid: 目录所有者的用户id,默认值是0,取值范围是0到4,294,967,294(即2^32-2)。
|
43
43
|
:type uid: int
|
44
|
-
:param gid:
|
44
|
+
:param gid: 目录所属用户组id,默认值是0,取值范围是0到4,294,967,294(即2^32-2)。
|
45
45
|
:type gid: int
|
46
46
|
"""
|
47
47
|
|
@@ -87,7 +87,7 @@ class CreateFsDirRequestBody:
|
|
87
87
|
def mode(self):
|
88
88
|
"""Gets the mode of this CreateFsDirRequestBody.
|
89
89
|
|
90
|
-
|
90
|
+
目录权限,默认值是755,取值范围是0到777。第一位表示目录所有者的权限,第二位表示目录所属用户组的权限,第三位表示其他用户的权限。目录所有者由uid指定,目录所属用户组由gid指定,不是目录所有者且不在目录所属用户组的用户为其他用户。例如:755中第一位7代表该目录所有者对该目录具有读、写、执行权限;第二位5代表该目录所属用户组对该目录具有读、执行权限;第三位5代表其他用户对该目录具有读、执行权限。
|
91
91
|
|
92
92
|
:return: The mode of this CreateFsDirRequestBody.
|
93
93
|
:rtype: int
|
@@ -98,7 +98,7 @@ class CreateFsDirRequestBody:
|
|
98
98
|
def mode(self, mode):
|
99
99
|
"""Sets the mode of this CreateFsDirRequestBody.
|
100
100
|
|
101
|
-
|
101
|
+
目录权限,默认值是755,取值范围是0到777。第一位表示目录所有者的权限,第二位表示目录所属用户组的权限,第三位表示其他用户的权限。目录所有者由uid指定,目录所属用户组由gid指定,不是目录所有者且不在目录所属用户组的用户为其他用户。例如:755中第一位7代表该目录所有者对该目录具有读、写、执行权限;第二位5代表该目录所属用户组对该目录具有读、执行权限;第三位5代表其他用户对该目录具有读、执行权限。
|
102
102
|
|
103
103
|
:param mode: The mode of this CreateFsDirRequestBody.
|
104
104
|
:type mode: int
|
@@ -109,7 +109,7 @@ class CreateFsDirRequestBody:
|
|
109
109
|
def uid(self):
|
110
110
|
"""Gets the uid of this CreateFsDirRequestBody.
|
111
111
|
|
112
|
-
|
112
|
+
目录所有者的用户id,默认值是0,取值范围是0到4,294,967,294(即2^32-2)。
|
113
113
|
|
114
114
|
:return: The uid of this CreateFsDirRequestBody.
|
115
115
|
:rtype: int
|
@@ -120,7 +120,7 @@ class CreateFsDirRequestBody:
|
|
120
120
|
def uid(self, uid):
|
121
121
|
"""Sets the uid of this CreateFsDirRequestBody.
|
122
122
|
|
123
|
-
|
123
|
+
目录所有者的用户id,默认值是0,取值范围是0到4,294,967,294(即2^32-2)。
|
124
124
|
|
125
125
|
:param uid: The uid of this CreateFsDirRequestBody.
|
126
126
|
:type uid: int
|
@@ -131,7 +131,7 @@ class CreateFsDirRequestBody:
|
|
131
131
|
def gid(self):
|
132
132
|
"""Gets the gid of this CreateFsDirRequestBody.
|
133
133
|
|
134
|
-
|
134
|
+
目录所属用户组id,默认值是0,取值范围是0到4,294,967,294(即2^32-2)。
|
135
135
|
|
136
136
|
:return: The gid of this CreateFsDirRequestBody.
|
137
137
|
:rtype: int
|
@@ -142,7 +142,7 @@ class CreateFsDirRequestBody:
|
|
142
142
|
def gid(self, gid):
|
143
143
|
"""Sets the gid of this CreateFsDirRequestBody.
|
144
144
|
|
145
|
-
|
145
|
+
目录所属用户组id,默认值是0,取值范围是0到4,294,967,294(即2^32-2)。
|
146
146
|
|
147
147
|
:param gid: The gid of this CreateFsDirRequestBody.
|
148
148
|
:type gid: int
|
@@ -30,7 +30,7 @@ class CreateFsTaskResponse(SdkResponse):
|
|
30
30
|
|
31
31
|
The model defined in huaweicloud sdk
|
32
32
|
|
33
|
-
:param task_id: 任务
|
33
|
+
:param task_id: 任务ID
|
34
34
|
:type task_id: str
|
35
35
|
"""
|
36
36
|
|
@@ -46,7 +46,7 @@ class CreateFsTaskResponse(SdkResponse):
|
|
46
46
|
def task_id(self):
|
47
47
|
"""Gets the task_id of this CreateFsTaskResponse.
|
48
48
|
|
49
|
-
任务
|
49
|
+
任务ID
|
50
50
|
|
51
51
|
:return: The task_id of this CreateFsTaskResponse.
|
52
52
|
:rtype: str
|
@@ -57,7 +57,7 @@ class CreateFsTaskResponse(SdkResponse):
|
|
57
57
|
def task_id(self, task_id):
|
58
58
|
"""Sets the task_id of this CreateFsTaskResponse.
|
59
59
|
|
60
|
-
任务
|
60
|
+
任务ID
|
61
61
|
|
62
62
|
:param task_id: The task_id of this CreateFsTaskResponse.
|
63
63
|
:type task_id: str
|
@@ -37,15 +37,15 @@ class CreateHpcCacheTaskReq:
|
|
37
37
|
|
38
38
|
The model defined in huaweicloud sdk
|
39
39
|
|
40
|
-
:param type:
|
40
|
+
:param type: 任务类型,当前支持import(附加元数据导入),import_metadata(快速导入),preload(数据预热),export(导出)。 附加元数据导入方式会导入OBS对象的元数据(名称、大小、最后修改时间)以及来源于SFS Turbo HPC型导出时的附加元数据(如uid、gid、mode)。 快速导入方式仅会导入OBS对象的元数据(名称、大小、最后修改时间),不会导入其它附加元数据(如uid、gid、mode),SFS Turbo会生成默认的附加元数据(uid:0、gid:0、目录权限:755、文件权限:644)。 数据预热功能会同时导入元数据和数据内容,数据预热中的元数据导入采用快速导入方式,不会导入其它附加元数据(如uid、gid、mode)。 数据导出功能会将您在联动目录里创建的文件,以及对从OBS导入后又做过修改的文件导出存储到OBS桶里。
|
41
41
|
:type type: str
|
42
|
-
:param src_target:
|
42
|
+
:param src_target: 联动目录名称
|
43
43
|
:type src_target: str
|
44
|
-
:param src_prefix:
|
44
|
+
:param src_prefix: 导入导出任务的源端路径前缀,导入时不需要包含OBS桶名,导出时不需要包含联动目录名称。 对于数据预热导入,携带源端路径前缀时必须是以“/”结尾的目录或具体到某个对象。 如果不带该字段,导入时会导入绑定OBS桶内的所有对象,导出时会导出联动目录下的所有文件。
|
45
45
|
:type src_prefix: str
|
46
|
-
:param dest_target:
|
46
|
+
:param dest_target: 目前只支持和src_target保持一致
|
47
47
|
:type dest_target: str
|
48
|
-
:param dest_prefix:
|
48
|
+
:param dest_prefix: 目前只支持和src_prefix保持一致
|
49
49
|
:type dest_prefix: str
|
50
50
|
"""
|
51
51
|
|
@@ -70,7 +70,7 @@ class CreateHpcCacheTaskReq:
|
|
70
70
|
def type(self):
|
71
71
|
"""Gets the type of this CreateHpcCacheTaskReq.
|
72
72
|
|
73
|
-
|
73
|
+
任务类型,当前支持import(附加元数据导入),import_metadata(快速导入),preload(数据预热),export(导出)。 附加元数据导入方式会导入OBS对象的元数据(名称、大小、最后修改时间)以及来源于SFS Turbo HPC型导出时的附加元数据(如uid、gid、mode)。 快速导入方式仅会导入OBS对象的元数据(名称、大小、最后修改时间),不会导入其它附加元数据(如uid、gid、mode),SFS Turbo会生成默认的附加元数据(uid:0、gid:0、目录权限:755、文件权限:644)。 数据预热功能会同时导入元数据和数据内容,数据预热中的元数据导入采用快速导入方式,不会导入其它附加元数据(如uid、gid、mode)。 数据导出功能会将您在联动目录里创建的文件,以及对从OBS导入后又做过修改的文件导出存储到OBS桶里。
|
74
74
|
|
75
75
|
:return: The type of this CreateHpcCacheTaskReq.
|
76
76
|
:rtype: str
|
@@ -81,7 +81,7 @@ class CreateHpcCacheTaskReq:
|
|
81
81
|
def type(self, type):
|
82
82
|
"""Sets the type of this CreateHpcCacheTaskReq.
|
83
83
|
|
84
|
-
|
84
|
+
任务类型,当前支持import(附加元数据导入),import_metadata(快速导入),preload(数据预热),export(导出)。 附加元数据导入方式会导入OBS对象的元数据(名称、大小、最后修改时间)以及来源于SFS Turbo HPC型导出时的附加元数据(如uid、gid、mode)。 快速导入方式仅会导入OBS对象的元数据(名称、大小、最后修改时间),不会导入其它附加元数据(如uid、gid、mode),SFS Turbo会生成默认的附加元数据(uid:0、gid:0、目录权限:755、文件权限:644)。 数据预热功能会同时导入元数据和数据内容,数据预热中的元数据导入采用快速导入方式,不会导入其它附加元数据(如uid、gid、mode)。 数据导出功能会将您在联动目录里创建的文件,以及对从OBS导入后又做过修改的文件导出存储到OBS桶里。
|
85
85
|
|
86
86
|
:param type: The type of this CreateHpcCacheTaskReq.
|
87
87
|
:type type: str
|
@@ -92,7 +92,7 @@ class CreateHpcCacheTaskReq:
|
|
92
92
|
def src_target(self):
|
93
93
|
"""Gets the src_target of this CreateHpcCacheTaskReq.
|
94
94
|
|
95
|
-
|
95
|
+
联动目录名称
|
96
96
|
|
97
97
|
:return: The src_target of this CreateHpcCacheTaskReq.
|
98
98
|
:rtype: str
|
@@ -103,7 +103,7 @@ class CreateHpcCacheTaskReq:
|
|
103
103
|
def src_target(self, src_target):
|
104
104
|
"""Sets the src_target of this CreateHpcCacheTaskReq.
|
105
105
|
|
106
|
-
|
106
|
+
联动目录名称
|
107
107
|
|
108
108
|
:param src_target: The src_target of this CreateHpcCacheTaskReq.
|
109
109
|
:type src_target: str
|
@@ -114,7 +114,7 @@ class CreateHpcCacheTaskReq:
|
|
114
114
|
def src_prefix(self):
|
115
115
|
"""Gets the src_prefix of this CreateHpcCacheTaskReq.
|
116
116
|
|
117
|
-
|
117
|
+
导入导出任务的源端路径前缀,导入时不需要包含OBS桶名,导出时不需要包含联动目录名称。 对于数据预热导入,携带源端路径前缀时必须是以“/”结尾的目录或具体到某个对象。 如果不带该字段,导入时会导入绑定OBS桶内的所有对象,导出时会导出联动目录下的所有文件。
|
118
118
|
|
119
119
|
:return: The src_prefix of this CreateHpcCacheTaskReq.
|
120
120
|
:rtype: str
|
@@ -125,7 +125,7 @@ class CreateHpcCacheTaskReq:
|
|
125
125
|
def src_prefix(self, src_prefix):
|
126
126
|
"""Sets the src_prefix of this CreateHpcCacheTaskReq.
|
127
127
|
|
128
|
-
|
128
|
+
导入导出任务的源端路径前缀,导入时不需要包含OBS桶名,导出时不需要包含联动目录名称。 对于数据预热导入,携带源端路径前缀时必须是以“/”结尾的目录或具体到某个对象。 如果不带该字段,导入时会导入绑定OBS桶内的所有对象,导出时会导出联动目录下的所有文件。
|
129
129
|
|
130
130
|
:param src_prefix: The src_prefix of this CreateHpcCacheTaskReq.
|
131
131
|
:type src_prefix: str
|
@@ -136,7 +136,7 @@ class CreateHpcCacheTaskReq:
|
|
136
136
|
def dest_target(self):
|
137
137
|
"""Gets the dest_target of this CreateHpcCacheTaskReq.
|
138
138
|
|
139
|
-
|
139
|
+
目前只支持和src_target保持一致
|
140
140
|
|
141
141
|
:return: The dest_target of this CreateHpcCacheTaskReq.
|
142
142
|
:rtype: str
|
@@ -147,7 +147,7 @@ class CreateHpcCacheTaskReq:
|
|
147
147
|
def dest_target(self, dest_target):
|
148
148
|
"""Sets the dest_target of this CreateHpcCacheTaskReq.
|
149
149
|
|
150
|
-
|
150
|
+
目前只支持和src_target保持一致
|
151
151
|
|
152
152
|
:param dest_target: The dest_target of this CreateHpcCacheTaskReq.
|
153
153
|
:type dest_target: str
|
@@ -158,7 +158,7 @@ class CreateHpcCacheTaskReq:
|
|
158
158
|
def dest_prefix(self):
|
159
159
|
"""Gets the dest_prefix of this CreateHpcCacheTaskReq.
|
160
160
|
|
161
|
-
|
161
|
+
目前只支持和src_prefix保持一致
|
162
162
|
|
163
163
|
:return: The dest_prefix of this CreateHpcCacheTaskReq.
|
164
164
|
:rtype: str
|
@@ -169,7 +169,7 @@ class CreateHpcCacheTaskReq:
|
|
169
169
|
def dest_prefix(self, dest_prefix):
|
170
170
|
"""Sets the dest_prefix of this CreateHpcCacheTaskReq.
|
171
171
|
|
172
|
-
|
172
|
+
目前只支持和src_prefix保持一致
|
173
173
|
|
174
174
|
:param dest_prefix: The dest_prefix of this CreateHpcCacheTaskReq.
|
175
175
|
:type dest_prefix: str
|
@@ -32,7 +32,7 @@ class CreateHpcCacheTaskResponse(SdkResponse):
|
|
32
32
|
|
33
33
|
The model defined in huaweicloud sdk
|
34
34
|
|
35
|
-
:param task_id:
|
35
|
+
:param task_id: 任务ID
|
36
36
|
:type task_id: str
|
37
37
|
:param x_request_id:
|
38
38
|
:type x_request_id: str
|
@@ -53,7 +53,7 @@ class CreateHpcCacheTaskResponse(SdkResponse):
|
|
53
53
|
def task_id(self):
|
54
54
|
"""Gets the task_id of this CreateHpcCacheTaskResponse.
|
55
55
|
|
56
|
-
|
56
|
+
任务ID
|
57
57
|
|
58
58
|
:return: The task_id of this CreateHpcCacheTaskResponse.
|
59
59
|
:rtype: str
|
@@ -64,7 +64,7 @@ class CreateHpcCacheTaskResponse(SdkResponse):
|
|
64
64
|
def task_id(self, task_id):
|
65
65
|
"""Sets the task_id of this CreateHpcCacheTaskResponse.
|
66
66
|
|
67
|
-
|
67
|
+
任务ID
|
68
68
|
|
69
69
|
:param task_id: The task_id of this CreateHpcCacheTaskResponse.
|
70
70
|
:type task_id: str
|
@@ -35,9 +35,9 @@ class DeleteBackendTargetRequest:
|
|
35
35
|
|
36
36
|
:param share_id: 文件系统id
|
37
37
|
:type share_id: str
|
38
|
-
:param target_id:
|
38
|
+
:param target_id: 绑定关系id
|
39
39
|
:type target_id: str
|
40
|
-
:param delete_data_in_file_system:
|
40
|
+
:param delete_data_in_file_system: 删除后端存储时是否同时删除文件系统内的联动目录及其数据文件,默认为 false。数据删除后无法恢复,请谨慎操作。
|
41
41
|
:type delete_data_in_file_system: bool
|
42
42
|
"""
|
43
43
|
|
@@ -79,7 +79,7 @@ class DeleteBackendTargetRequest:
|
|
79
79
|
def target_id(self):
|
80
80
|
"""Gets the target_id of this DeleteBackendTargetRequest.
|
81
81
|
|
82
|
-
|
82
|
+
绑定关系id
|
83
83
|
|
84
84
|
:return: The target_id of this DeleteBackendTargetRequest.
|
85
85
|
:rtype: str
|
@@ -90,7 +90,7 @@ class DeleteBackendTargetRequest:
|
|
90
90
|
def target_id(self, target_id):
|
91
91
|
"""Sets the target_id of this DeleteBackendTargetRequest.
|
92
92
|
|
93
|
-
|
93
|
+
绑定关系id
|
94
94
|
|
95
95
|
:param target_id: The target_id of this DeleteBackendTargetRequest.
|
96
96
|
:type target_id: str
|
@@ -101,7 +101,7 @@ class DeleteBackendTargetRequest:
|
|
101
101
|
def delete_data_in_file_system(self):
|
102
102
|
"""Gets the delete_data_in_file_system of this DeleteBackendTargetRequest.
|
103
103
|
|
104
|
-
|
104
|
+
删除后端存储时是否同时删除文件系统内的联动目录及其数据文件,默认为 false。数据删除后无法恢复,请谨慎操作。
|
105
105
|
|
106
106
|
:return: The delete_data_in_file_system of this DeleteBackendTargetRequest.
|
107
107
|
:rtype: bool
|
@@ -112,7 +112,7 @@ class DeleteBackendTargetRequest:
|
|
112
112
|
def delete_data_in_file_system(self, delete_data_in_file_system):
|
113
113
|
"""Sets the delete_data_in_file_system of this DeleteBackendTargetRequest.
|
114
114
|
|
115
|
-
|
115
|
+
删除后端存储时是否同时删除文件系统内的联动目录及其数据文件,默认为 false。数据删除后无法恢复,请谨慎操作。
|
116
116
|
|
117
117
|
:param delete_data_in_file_system: The delete_data_in_file_system of this DeleteBackendTargetRequest.
|
118
118
|
:type delete_data_in_file_system: bool
|
@@ -36,11 +36,11 @@ class DeleteBackendTargetResponse(SdkResponse):
|
|
36
36
|
|
37
37
|
The model defined in huaweicloud sdk
|
38
38
|
|
39
|
-
:param target_id:
|
39
|
+
:param target_id: 绑定关系id
|
40
40
|
:type target_id: str
|
41
|
-
:param delete_data_in_file_system:
|
41
|
+
:param delete_data_in_file_system: 删除后端存储时是否同时删除文件系统内的联动目录及其数据文件
|
42
42
|
:type delete_data_in_file_system: bool
|
43
|
-
:param lifecycle:
|
43
|
+
:param lifecycle: 绑定状态。只支持DELETING和FAILED
|
44
44
|
:type lifecycle: str
|
45
45
|
:param x_request_id:
|
46
46
|
:type x_request_id: str
|
@@ -67,7 +67,7 @@ class DeleteBackendTargetResponse(SdkResponse):
|
|
67
67
|
def target_id(self):
|
68
68
|
"""Gets the target_id of this DeleteBackendTargetResponse.
|
69
69
|
|
70
|
-
|
70
|
+
绑定关系id
|
71
71
|
|
72
72
|
:return: The target_id of this DeleteBackendTargetResponse.
|
73
73
|
:rtype: str
|
@@ -78,7 +78,7 @@ class DeleteBackendTargetResponse(SdkResponse):
|
|
78
78
|
def target_id(self, target_id):
|
79
79
|
"""Sets the target_id of this DeleteBackendTargetResponse.
|
80
80
|
|
81
|
-
|
81
|
+
绑定关系id
|
82
82
|
|
83
83
|
:param target_id: The target_id of this DeleteBackendTargetResponse.
|
84
84
|
:type target_id: str
|
@@ -89,7 +89,7 @@ class DeleteBackendTargetResponse(SdkResponse):
|
|
89
89
|
def delete_data_in_file_system(self):
|
90
90
|
"""Gets the delete_data_in_file_system of this DeleteBackendTargetResponse.
|
91
91
|
|
92
|
-
|
92
|
+
删除后端存储时是否同时删除文件系统内的联动目录及其数据文件
|
93
93
|
|
94
94
|
:return: The delete_data_in_file_system of this DeleteBackendTargetResponse.
|
95
95
|
:rtype: bool
|
@@ -100,7 +100,7 @@ class DeleteBackendTargetResponse(SdkResponse):
|
|
100
100
|
def delete_data_in_file_system(self, delete_data_in_file_system):
|
101
101
|
"""Sets the delete_data_in_file_system of this DeleteBackendTargetResponse.
|
102
102
|
|
103
|
-
|
103
|
+
删除后端存储时是否同时删除文件系统内的联动目录及其数据文件
|
104
104
|
|
105
105
|
:param delete_data_in_file_system: The delete_data_in_file_system of this DeleteBackendTargetResponse.
|
106
106
|
:type delete_data_in_file_system: bool
|
@@ -111,7 +111,7 @@ class DeleteBackendTargetResponse(SdkResponse):
|
|
111
111
|
def lifecycle(self):
|
112
112
|
"""Gets the lifecycle of this DeleteBackendTargetResponse.
|
113
113
|
|
114
|
-
|
114
|
+
绑定状态。只支持DELETING和FAILED
|
115
115
|
|
116
116
|
:return: The lifecycle of this DeleteBackendTargetResponse.
|
117
117
|
:rtype: str
|
@@ -122,7 +122,7 @@ class DeleteBackendTargetResponse(SdkResponse):
|
|
122
122
|
def lifecycle(self, lifecycle):
|
123
123
|
"""Sets the lifecycle of this DeleteBackendTargetResponse.
|
124
124
|
|
125
|
-
|
125
|
+
绑定状态。只支持DELETING和FAILED
|
126
126
|
|
127
127
|
:param lifecycle: The lifecycle of this DeleteBackendTargetResponse.
|
128
128
|
:type lifecycle: str
|
@@ -37,7 +37,7 @@ class DeleteFsTaskRequest:
|
|
37
37
|
:type share_id: str
|
38
38
|
:param feature: 任务类型。例,DU任务取值为dir-usage
|
39
39
|
:type feature: str
|
40
|
-
:param task_id: 任务
|
40
|
+
:param task_id: 任务ID
|
41
41
|
:type task_id: str
|
42
42
|
"""
|
43
43
|
|
@@ -100,7 +100,7 @@ class DeleteFsTaskRequest:
|
|
100
100
|
def task_id(self):
|
101
101
|
"""Gets the task_id of this DeleteFsTaskRequest.
|
102
102
|
|
103
|
-
任务
|
103
|
+
任务ID
|
104
104
|
|
105
105
|
:return: The task_id of this DeleteFsTaskRequest.
|
106
106
|
:rtype: str
|
@@ -111,7 +111,7 @@ class DeleteFsTaskRequest:
|
|
111
111
|
def task_id(self, task_id):
|
112
112
|
"""Sets the task_id of this DeleteFsTaskRequest.
|
113
113
|
|
114
|
-
任务
|
114
|
+
任务ID
|
115
115
|
|
116
116
|
:param task_id: The task_id of this DeleteFsTaskRequest.
|
117
117
|
:type task_id: str
|
@@ -39,7 +39,7 @@ class FsDuInfo:
|
|
39
39
|
:type path: str
|
40
40
|
:param used_capacity: 占用容量,单位:byte
|
41
41
|
:type used_capacity: int
|
42
|
-
:param file_count:
|
42
|
+
:param file_count:
|
43
43
|
:type file_count: :class:`huaweicloudsdksfsturbo.v1.FsFileCount`
|
44
44
|
:param message: 错误信息
|
45
45
|
:type message: str
|
@@ -53,10 +53,14 @@ class FsDuInfo:
|
|
53
53
|
self._message = None
|
54
54
|
self.discriminator = None
|
55
55
|
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
56
|
+
if path is not None:
|
57
|
+
self.path = path
|
58
|
+
if used_capacity is not None:
|
59
|
+
self.used_capacity = used_capacity
|
60
|
+
if file_count is not None:
|
61
|
+
self.file_count = file_count
|
62
|
+
if message is not None:
|
63
|
+
self.message = message
|
60
64
|
|
61
65
|
@property
|
62
66
|
def path(self):
|
@@ -106,8 +110,6 @@ class FsDuInfo:
|
|
106
110
|
def file_count(self):
|
107
111
|
"""Gets the file_count of this FsDuInfo.
|
108
112
|
|
109
|
-
该目录下所有文件数目
|
110
|
-
|
111
113
|
:return: The file_count of this FsDuInfo.
|
112
114
|
:rtype: :class:`huaweicloudsdksfsturbo.v1.FsFileCount`
|
113
115
|
"""
|
@@ -117,8 +119,6 @@ class FsDuInfo:
|
|
117
119
|
def file_count(self, file_count):
|
118
120
|
"""Sets the file_count of this FsDuInfo.
|
119
121
|
|
120
|
-
该目录下所有文件数目
|
121
|
-
|
122
122
|
:param file_count: The file_count of this FsDuInfo.
|
123
123
|
:type file_count: :class:`huaweicloudsdksfsturbo.v1.FsFileCount`
|
124
124
|
"""
|
@@ -68,13 +68,20 @@ class FsFileCount:
|
|
68
68
|
self._symlink = None
|
69
69
|
self.discriminator = None
|
70
70
|
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
71
|
+
if dir is not None:
|
72
|
+
self.dir = dir
|
73
|
+
if regular is not None:
|
74
|
+
self.regular = regular
|
75
|
+
if pipe is not None:
|
76
|
+
self.pipe = pipe
|
77
|
+
if char is not None:
|
78
|
+
self.char = char
|
79
|
+
if block is not None:
|
80
|
+
self.block = block
|
81
|
+
if socket is not None:
|
82
|
+
self.socket = socket
|
83
|
+
if symlink is not None:
|
84
|
+
self.symlink = symlink
|
78
85
|
|
79
86
|
@property
|
80
87
|
def dir(self):
|
@@ -34,9 +34,9 @@ class ListBackendTargetsResponse(SdkResponse):
|
|
34
34
|
|
35
35
|
The model defined in huaweicloud sdk
|
36
36
|
|
37
|
-
:param count:
|
37
|
+
:param count: 后端存储列表个数
|
38
38
|
:type count: int
|
39
|
-
:param targets:
|
39
|
+
:param targets: 后端存储列表
|
40
40
|
:type targets: list[:class:`huaweicloudsdksfsturbo.v1.ShowBackendTargetInfoResponseBody`]
|
41
41
|
:param x_request_id:
|
42
42
|
:type x_request_id: str
|
@@ -60,7 +60,7 @@ class ListBackendTargetsResponse(SdkResponse):
|
|
60
60
|
def count(self):
|
61
61
|
"""Gets the count of this ListBackendTargetsResponse.
|
62
62
|
|
63
|
-
|
63
|
+
后端存储列表个数
|
64
64
|
|
65
65
|
:return: The count of this ListBackendTargetsResponse.
|
66
66
|
:rtype: int
|
@@ -71,7 +71,7 @@ class ListBackendTargetsResponse(SdkResponse):
|
|
71
71
|
def count(self, count):
|
72
72
|
"""Sets the count of this ListBackendTargetsResponse.
|
73
73
|
|
74
|
-
|
74
|
+
后端存储列表个数
|
75
75
|
|
76
76
|
:param count: The count of this ListBackendTargetsResponse.
|
77
77
|
:type count: int
|
@@ -82,7 +82,7 @@ class ListBackendTargetsResponse(SdkResponse):
|
|
82
82
|
def targets(self):
|
83
83
|
"""Gets the targets of this ListBackendTargetsResponse.
|
84
84
|
|
85
|
-
|
85
|
+
后端存储列表
|
86
86
|
|
87
87
|
:return: The targets of this ListBackendTargetsResponse.
|
88
88
|
:rtype: list[:class:`huaweicloudsdksfsturbo.v1.ShowBackendTargetInfoResponseBody`]
|
@@ -93,7 +93,7 @@ class ListBackendTargetsResponse(SdkResponse):
|
|
93
93
|
def targets(self, targets):
|
94
94
|
"""Sets the targets of this ListBackendTargetsResponse.
|
95
95
|
|
96
|
-
|
96
|
+
后端存储列表
|
97
97
|
|
98
98
|
:param targets: The targets of this ListBackendTargetsResponse.
|
99
99
|
:type targets: list[:class:`huaweicloudsdksfsturbo.v1.ShowBackendTargetInfoResponseBody`]
|
@@ -39,7 +39,7 @@ class ListHpcCacheTasksRequest:
|
|
39
39
|
|
40
40
|
:param share_id: 文件系统ID
|
41
41
|
:type share_id: str
|
42
|
-
:param type:
|
42
|
+
:param type: 任务类型
|
43
43
|
:type type: str
|
44
44
|
:param status: 任务状态
|
45
45
|
:type status: str
|
@@ -94,7 +94,7 @@ class ListHpcCacheTasksRequest:
|
|
94
94
|
def type(self):
|
95
95
|
"""Gets the type of this ListHpcCacheTasksRequest.
|
96
96
|
|
97
|
-
|
97
|
+
任务类型
|
98
98
|
|
99
99
|
:return: The type of this ListHpcCacheTasksRequest.
|
100
100
|
:rtype: str
|
@@ -105,7 +105,7 @@ class ListHpcCacheTasksRequest:
|
|
105
105
|
def type(self, type):
|
106
106
|
"""Sets the type of this ListHpcCacheTasksRequest.
|
107
107
|
|
108
|
-
|
108
|
+
任务类型
|
109
109
|
|
110
110
|
:param type: The type of this ListHpcCacheTasksRequest.
|
111
111
|
:type type: str
|