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
| @@ -38,11 +38,11 @@ class ShowFsDirResponse(SdkResponse): | |
| 38 38 |  | 
| 39 39 | 
             
                    :param path: 目录全路径
         | 
| 40 40 | 
             
                    :type path: str
         | 
| 41 | 
            -
                    :param mode:  | 
| 41 | 
            +
                    :param mode: 目录权限,仅HPC型、缓存型文件系统返回该字段。第三位表示目录所有者的权限,第四位表示目录所属用户组的权限,第五位表示其他用户的权限。目录所有者由uid指定,目录所属用户组由gid指定,不是目录所有者且不在目录所属用户组的用户为其他用户。例如:40755中第三位7代表目录所有者对该目录具有读、写、执行权限;第四位5代表目录所属用户组对该目录具有读、执行权限;第五位5代表其他用户对该目录具有读、执行权限。
         | 
| 42 42 | 
             
                    :type mode: int
         | 
| 43 | 
            -
                    :param uid:  | 
| 43 | 
            +
                    :param uid: 目录所有者的用户id,仅HPC型、缓存型文件系统返回该字段。
         | 
| 44 44 | 
             
                    :type uid: int
         | 
| 45 | 
            -
                    :param gid:  | 
| 45 | 
            +
                    :param gid: 目录所属用户组id,仅HPC型、缓存型文件系统返回该字段。
         | 
| 46 46 | 
             
                    :type gid: int
         | 
| 47 47 | 
             
                    """
         | 
| 48 48 |  | 
| @@ -89,7 +89,7 @@ class ShowFsDirResponse(SdkResponse): | |
| 89 89 | 
             
                def mode(self):
         | 
| 90 90 | 
             
                    """Gets the mode of this ShowFsDirResponse.
         | 
| 91 91 |  | 
| 92 | 
            -
                     | 
| 92 | 
            +
                    目录权限,仅HPC型、缓存型文件系统返回该字段。第三位表示目录所有者的权限,第四位表示目录所属用户组的权限,第五位表示其他用户的权限。目录所有者由uid指定,目录所属用户组由gid指定,不是目录所有者且不在目录所属用户组的用户为其他用户。例如:40755中第三位7代表目录所有者对该目录具有读、写、执行权限;第四位5代表目录所属用户组对该目录具有读、执行权限;第五位5代表其他用户对该目录具有读、执行权限。
         | 
| 93 93 |  | 
| 94 94 | 
             
                    :return: The mode of this ShowFsDirResponse.
         | 
| 95 95 | 
             
                    :rtype: int
         | 
| @@ -100,7 +100,7 @@ class ShowFsDirResponse(SdkResponse): | |
| 100 100 | 
             
                def mode(self, mode):
         | 
| 101 101 | 
             
                    """Sets the mode of this ShowFsDirResponse.
         | 
| 102 102 |  | 
| 103 | 
            -
                     | 
| 103 | 
            +
                    目录权限,仅HPC型、缓存型文件系统返回该字段。第三位表示目录所有者的权限,第四位表示目录所属用户组的权限,第五位表示其他用户的权限。目录所有者由uid指定,目录所属用户组由gid指定,不是目录所有者且不在目录所属用户组的用户为其他用户。例如:40755中第三位7代表目录所有者对该目录具有读、写、执行权限;第四位5代表目录所属用户组对该目录具有读、执行权限;第五位5代表其他用户对该目录具有读、执行权限。
         | 
| 104 104 |  | 
| 105 105 | 
             
                    :param mode: The mode of this ShowFsDirResponse.
         | 
| 106 106 | 
             
                    :type mode: int
         | 
| @@ -111,7 +111,7 @@ class ShowFsDirResponse(SdkResponse): | |
| 111 111 | 
             
                def uid(self):
         | 
| 112 112 | 
             
                    """Gets the uid of this ShowFsDirResponse.
         | 
| 113 113 |  | 
| 114 | 
            -
                     | 
| 114 | 
            +
                    目录所有者的用户id,仅HPC型、缓存型文件系统返回该字段。
         | 
| 115 115 |  | 
| 116 116 | 
             
                    :return: The uid of this ShowFsDirResponse.
         | 
| 117 117 | 
             
                    :rtype: int
         | 
| @@ -122,7 +122,7 @@ class ShowFsDirResponse(SdkResponse): | |
| 122 122 | 
             
                def uid(self, uid):
         | 
| 123 123 | 
             
                    """Sets the uid of this ShowFsDirResponse.
         | 
| 124 124 |  | 
| 125 | 
            -
                     | 
| 125 | 
            +
                    目录所有者的用户id,仅HPC型、缓存型文件系统返回该字段。
         | 
| 126 126 |  | 
| 127 127 | 
             
                    :param uid: The uid of this ShowFsDirResponse.
         | 
| 128 128 | 
             
                    :type uid: int
         | 
| @@ -133,7 +133,7 @@ class ShowFsDirResponse(SdkResponse): | |
| 133 133 | 
             
                def gid(self):
         | 
| 134 134 | 
             
                    """Gets the gid of this ShowFsDirResponse.
         | 
| 135 135 |  | 
| 136 | 
            -
                     | 
| 136 | 
            +
                    目录所属用户组id,仅HPC型、缓存型文件系统返回该字段。
         | 
| 137 137 |  | 
| 138 138 | 
             
                    :return: The gid of this ShowFsDirResponse.
         | 
| 139 139 | 
             
                    :rtype: int
         | 
| @@ -144,7 +144,7 @@ class ShowFsDirResponse(SdkResponse): | |
| 144 144 | 
             
                def gid(self, gid):
         | 
| 145 145 | 
             
                    """Sets the gid of this ShowFsDirResponse.
         | 
| 146 146 |  | 
| 147 | 
            -
                     | 
| 147 | 
            +
                    目录所属用户组id,仅HPC型、缓存型文件系统返回该字段。
         | 
| 148 148 |  | 
| 149 149 | 
             
                    :param gid: The gid of this ShowFsDirResponse.
         | 
| 150 150 | 
             
                    :type gid: int
         | 
| @@ -32,7 +32,7 @@ class ShowFsDirUsageResponse(SdkResponse): | |
| 32 32 |  | 
| 33 33 | 
             
                    The model defined in huaweicloud sdk
         | 
| 34 34 |  | 
| 35 | 
            -
                    :param dir_usage:  | 
| 35 | 
            +
                    :param dir_usage: 
         | 
| 36 36 | 
             
                    :type dir_usage: :class:`huaweicloudsdksfsturbo.v1.FsDirUasge`
         | 
| 37 37 | 
             
                    :param x_request_id: 
         | 
| 38 38 | 
             
                    :type x_request_id: str
         | 
| @@ -53,8 +53,6 @@ class ShowFsDirUsageResponse(SdkResponse): | |
| 53 53 | 
             
                def dir_usage(self):
         | 
| 54 54 | 
             
                    """Gets the dir_usage of this ShowFsDirUsageResponse.
         | 
| 55 55 |  | 
| 56 | 
            -
                    消息描述
         | 
| 57 | 
            -
             | 
| 58 56 | 
             
                    :return: The dir_usage of this ShowFsDirUsageResponse.
         | 
| 59 57 | 
             
                    :rtype: :class:`huaweicloudsdksfsturbo.v1.FsDirUasge`
         | 
| 60 58 | 
             
                    """
         | 
| @@ -64,8 +62,6 @@ class ShowFsDirUsageResponse(SdkResponse): | |
| 64 62 | 
             
                def dir_usage(self, dir_usage):
         | 
| 65 63 | 
             
                    """Sets the dir_usage of this ShowFsDirUsageResponse.
         | 
| 66 64 |  | 
| 67 | 
            -
                    消息描述
         | 
| 68 | 
            -
             | 
| 69 65 | 
             
                    :param dir_usage: The dir_usage of this ShowFsDirUsageResponse.
         | 
| 70 66 | 
             
                    :type dir_usage: :class:`huaweicloudsdksfsturbo.v1.FsDirUasge`
         | 
| 71 67 | 
             
                    """
         | 
| @@ -37,7 +37,7 @@ class ShowFsTaskRequest: | |
| 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 ShowFsTaskRequest: | |
| 100 100 | 
             
                def task_id(self):
         | 
| 101 101 | 
             
                    """Gets the task_id of this ShowFsTaskRequest.
         | 
| 102 102 |  | 
| 103 | 
            -
                    任务 | 
| 103 | 
            +
                    任务ID
         | 
| 104 104 |  | 
| 105 105 | 
             
                    :return: The task_id of this ShowFsTaskRequest.
         | 
| 106 106 | 
             
                    :rtype: str
         | 
| @@ -111,7 +111,7 @@ class ShowFsTaskRequest: | |
| 111 111 | 
             
                def task_id(self, task_id):
         | 
| 112 112 | 
             
                    """Sets the task_id of this ShowFsTaskRequest.
         | 
| 113 113 |  | 
| 114 | 
            -
                    任务 | 
| 114 | 
            +
                    任务ID
         | 
| 115 115 |  | 
| 116 116 | 
             
                    :param task_id: The task_id of this ShowFsTaskRequest.
         | 
| 117 117 | 
             
                    :type task_id: str
         | 
| @@ -38,11 +38,11 @@ class ShowFsTaskResponse(SdkResponse): | |
| 38 38 |  | 
| 39 39 | 
             
                    The model defined in huaweicloud sdk
         | 
| 40 40 |  | 
| 41 | 
            -
                    :param task_id: 任务 | 
| 41 | 
            +
                    :param task_id: 任务ID
         | 
| 42 42 | 
             
                    :type task_id: str
         | 
| 43 43 | 
             
                    :param status: 任务状态, SUCCESS表示成功,DOING表示正在执行,FAIL表示失败
         | 
| 44 44 | 
             
                    :type status: str
         | 
| 45 | 
            -
                    :param dir_usage:  | 
| 45 | 
            +
                    :param dir_usage: 
         | 
| 46 46 | 
             
                    :type dir_usage: :class:`huaweicloudsdksfsturbo.v1.FsDuInfo`
         | 
| 47 47 | 
             
                    :param begin_time: 任务开始时间,UTC时间,例如:2006-01-02 15:04:05'
         | 
| 48 48 | 
             
                    :type begin_time: str
         | 
| @@ -74,7 +74,7 @@ class ShowFsTaskResponse(SdkResponse): | |
| 74 74 | 
             
                def task_id(self):
         | 
| 75 75 | 
             
                    """Gets the task_id of this ShowFsTaskResponse.
         | 
| 76 76 |  | 
| 77 | 
            -
                    任务 | 
| 77 | 
            +
                    任务ID
         | 
| 78 78 |  | 
| 79 79 | 
             
                    :return: The task_id of this ShowFsTaskResponse.
         | 
| 80 80 | 
             
                    :rtype: str
         | 
| @@ -85,7 +85,7 @@ class ShowFsTaskResponse(SdkResponse): | |
| 85 85 | 
             
                def task_id(self, task_id):
         | 
| 86 86 | 
             
                    """Sets the task_id of this ShowFsTaskResponse.
         | 
| 87 87 |  | 
| 88 | 
            -
                    任务 | 
| 88 | 
            +
                    任务ID
         | 
| 89 89 |  | 
| 90 90 | 
             
                    :param task_id: The task_id of this ShowFsTaskResponse.
         | 
| 91 91 | 
             
                    :type task_id: str
         | 
| @@ -118,8 +118,6 @@ class ShowFsTaskResponse(SdkResponse): | |
| 118 118 | 
             
                def dir_usage(self):
         | 
| 119 119 | 
             
                    """Gets the dir_usage of this ShowFsTaskResponse.
         | 
| 120 120 |  | 
| 121 | 
            -
                    目录资源使用情况(包含子目录)
         | 
| 122 | 
            -
             | 
| 123 121 | 
             
                    :return: The dir_usage of this ShowFsTaskResponse.
         | 
| 124 122 | 
             
                    :rtype: :class:`huaweicloudsdksfsturbo.v1.FsDuInfo`
         | 
| 125 123 | 
             
                    """
         | 
| @@ -129,8 +127,6 @@ class ShowFsTaskResponse(SdkResponse): | |
| 129 127 | 
             
                def dir_usage(self, dir_usage):
         | 
| 130 128 | 
             
                    """Sets the dir_usage of this ShowFsTaskResponse.
         | 
| 131 129 |  | 
| 132 | 
            -
                    目录资源使用情况(包含子目录)
         | 
| 133 | 
            -
             | 
| 134 130 | 
             
                    :param dir_usage: The dir_usage of this ShowFsTaskResponse.
         | 
| 135 131 | 
             
                    :type dir_usage: :class:`huaweicloudsdksfsturbo.v1.FsDuInfo`
         | 
| 136 132 | 
             
                    """
         | 
| @@ -33,7 +33,7 @@ class ShowHpcCacheTaskRequest: | |
| 33 33 |  | 
| 34 34 | 
             
                    :param share_id: 文件系统ID
         | 
| 35 35 | 
             
                    :type share_id: str
         | 
| 36 | 
            -
                    :param task_id: 任务 | 
| 36 | 
            +
                    :param task_id: 任务ID
         | 
| 37 37 | 
             
                    :type task_id: str
         | 
| 38 38 | 
             
                    """
         | 
| 39 39 |  | 
| @@ -72,7 +72,7 @@ class ShowHpcCacheTaskRequest: | |
| 72 72 | 
             
                def task_id(self):
         | 
| 73 73 | 
             
                    """Gets the task_id of this ShowHpcCacheTaskRequest.
         | 
| 74 74 |  | 
| 75 | 
            -
                    任务 | 
| 75 | 
            +
                    任务ID
         | 
| 76 76 |  | 
| 77 77 | 
             
                    :return: The task_id of this ShowHpcCacheTaskRequest.
         | 
| 78 78 | 
             
                    :rtype: str
         | 
| @@ -83,7 +83,7 @@ class ShowHpcCacheTaskRequest: | |
| 83 83 | 
             
                def task_id(self, task_id):
         | 
| 84 84 | 
             
                    """Sets the task_id of this ShowHpcCacheTaskRequest.
         | 
| 85 85 |  | 
| 86 | 
            -
                    任务 | 
| 86 | 
            +
                    任务ID
         | 
| 87 87 |  | 
| 88 88 | 
             
                    :param task_id: The task_id of this ShowHpcCacheTaskRequest.
         | 
| 89 89 | 
             
                    :type task_id: str
         | 
| @@ -50,19 +50,19 @@ class ShowHpcCacheTaskResponse(SdkResponse): | |
| 50 50 |  | 
| 51 51 | 
             
                    The model defined in huaweicloud sdk
         | 
| 52 52 |  | 
| 53 | 
            -
                    :param task_id: 任务 | 
| 53 | 
            +
                    :param task_id: 任务ID
         | 
| 54 54 | 
             
                    :type task_id: str
         | 
| 55 55 | 
             
                    :param type: 任务类型
         | 
| 56 56 | 
             
                    :type type: str
         | 
| 57 57 | 
             
                    :param status: 任务状态
         | 
| 58 58 | 
             
                    :type status: str
         | 
| 59 | 
            -
                    :param src_target:  | 
| 59 | 
            +
                    :param src_target: 联动目录名称
         | 
| 60 60 | 
             
                    :type src_target: str
         | 
| 61 | 
            -
                    :param src_prefix:  | 
| 61 | 
            +
                    :param src_prefix: 导入导出任务的源端路径前缀
         | 
| 62 62 | 
             
                    :type src_prefix: str
         | 
| 63 | 
            -
                    :param dest_target:  | 
| 63 | 
            +
                    :param dest_target: 和src_target保持一致
         | 
| 64 64 | 
             
                    :type dest_target: str
         | 
| 65 | 
            -
                    :param dest_prefix:  | 
| 65 | 
            +
                    :param dest_prefix: 和src_prefix保持一致
         | 
| 66 66 | 
             
                    :type dest_prefix: str
         | 
| 67 67 | 
             
                    :param start_time: 任务开始时间
         | 
| 68 68 | 
             
                    :type start_time: str
         | 
| @@ -116,7 +116,7 @@ class ShowHpcCacheTaskResponse(SdkResponse): | |
| 116 116 | 
             
                def task_id(self):
         | 
| 117 117 | 
             
                    """Gets the task_id of this ShowHpcCacheTaskResponse.
         | 
| 118 118 |  | 
| 119 | 
            -
                    任务 | 
| 119 | 
            +
                    任务ID
         | 
| 120 120 |  | 
| 121 121 | 
             
                    :return: The task_id of this ShowHpcCacheTaskResponse.
         | 
| 122 122 | 
             
                    :rtype: str
         | 
| @@ -127,7 +127,7 @@ class ShowHpcCacheTaskResponse(SdkResponse): | |
| 127 127 | 
             
                def task_id(self, task_id):
         | 
| 128 128 | 
             
                    """Sets the task_id of this ShowHpcCacheTaskResponse.
         | 
| 129 129 |  | 
| 130 | 
            -
                    任务 | 
| 130 | 
            +
                    任务ID
         | 
| 131 131 |  | 
| 132 132 | 
             
                    :param task_id: The task_id of this ShowHpcCacheTaskResponse.
         | 
| 133 133 | 
             
                    :type task_id: str
         | 
| @@ -182,7 +182,7 @@ class ShowHpcCacheTaskResponse(SdkResponse): | |
| 182 182 | 
             
                def src_target(self):
         | 
| 183 183 | 
             
                    """Gets the src_target of this ShowHpcCacheTaskResponse.
         | 
| 184 184 |  | 
| 185 | 
            -
                     | 
| 185 | 
            +
                    联动目录名称
         | 
| 186 186 |  | 
| 187 187 | 
             
                    :return: The src_target of this ShowHpcCacheTaskResponse.
         | 
| 188 188 | 
             
                    :rtype: str
         | 
| @@ -193,7 +193,7 @@ class ShowHpcCacheTaskResponse(SdkResponse): | |
| 193 193 | 
             
                def src_target(self, src_target):
         | 
| 194 194 | 
             
                    """Sets the src_target of this ShowHpcCacheTaskResponse.
         | 
| 195 195 |  | 
| 196 | 
            -
                     | 
| 196 | 
            +
                    联动目录名称
         | 
| 197 197 |  | 
| 198 198 | 
             
                    :param src_target: The src_target of this ShowHpcCacheTaskResponse.
         | 
| 199 199 | 
             
                    :type src_target: str
         | 
| @@ -204,7 +204,7 @@ class ShowHpcCacheTaskResponse(SdkResponse): | |
| 204 204 | 
             
                def src_prefix(self):
         | 
| 205 205 | 
             
                    """Gets the src_prefix of this ShowHpcCacheTaskResponse.
         | 
| 206 206 |  | 
| 207 | 
            -
                     | 
| 207 | 
            +
                    导入导出任务的源端路径前缀
         | 
| 208 208 |  | 
| 209 209 | 
             
                    :return: The src_prefix of this ShowHpcCacheTaskResponse.
         | 
| 210 210 | 
             
                    :rtype: str
         | 
| @@ -215,7 +215,7 @@ class ShowHpcCacheTaskResponse(SdkResponse): | |
| 215 215 | 
             
                def src_prefix(self, src_prefix):
         | 
| 216 216 | 
             
                    """Sets the src_prefix of this ShowHpcCacheTaskResponse.
         | 
| 217 217 |  | 
| 218 | 
            -
                     | 
| 218 | 
            +
                    导入导出任务的源端路径前缀
         | 
| 219 219 |  | 
| 220 220 | 
             
                    :param src_prefix: The src_prefix of this ShowHpcCacheTaskResponse.
         | 
| 221 221 | 
             
                    :type src_prefix: str
         | 
| @@ -226,7 +226,7 @@ class ShowHpcCacheTaskResponse(SdkResponse): | |
| 226 226 | 
             
                def dest_target(self):
         | 
| 227 227 | 
             
                    """Gets the dest_target of this ShowHpcCacheTaskResponse.
         | 
| 228 228 |  | 
| 229 | 
            -
                     | 
| 229 | 
            +
                    和src_target保持一致
         | 
| 230 230 |  | 
| 231 231 | 
             
                    :return: The dest_target of this ShowHpcCacheTaskResponse.
         | 
| 232 232 | 
             
                    :rtype: str
         | 
| @@ -237,7 +237,7 @@ class ShowHpcCacheTaskResponse(SdkResponse): | |
| 237 237 | 
             
                def dest_target(self, dest_target):
         | 
| 238 238 | 
             
                    """Sets the dest_target of this ShowHpcCacheTaskResponse.
         | 
| 239 239 |  | 
| 240 | 
            -
                     | 
| 240 | 
            +
                    和src_target保持一致
         | 
| 241 241 |  | 
| 242 242 | 
             
                    :param dest_target: The dest_target of this ShowHpcCacheTaskResponse.
         | 
| 243 243 | 
             
                    :type dest_target: str
         | 
| @@ -248,7 +248,7 @@ class ShowHpcCacheTaskResponse(SdkResponse): | |
| 248 248 | 
             
                def dest_prefix(self):
         | 
| 249 249 | 
             
                    """Gets the dest_prefix of this ShowHpcCacheTaskResponse.
         | 
| 250 250 |  | 
| 251 | 
            -
                     | 
| 251 | 
            +
                    和src_prefix保持一致
         | 
| 252 252 |  | 
| 253 253 | 
             
                    :return: The dest_prefix of this ShowHpcCacheTaskResponse.
         | 
| 254 254 | 
             
                    :rtype: str
         | 
| @@ -259,7 +259,7 @@ class ShowHpcCacheTaskResponse(SdkResponse): | |
| 259 259 | 
             
                def dest_prefix(self, dest_prefix):
         | 
| 260 260 | 
             
                    """Sets the dest_prefix of this ShowHpcCacheTaskResponse.
         | 
| 261 261 |  | 
| 262 | 
            -
                     | 
| 262 | 
            +
                    和src_prefix保持一致
         | 
| 263 263 |  | 
| 264 264 | 
             
                    :param dest_prefix: The dest_prefix of this ShowHpcCacheTaskResponse.
         | 
| 265 265 | 
             
                    :type dest_prefix: str
         | 
| @@ -38,7 +38,9 @@ class ShowShareResponse(SdkResponse): | |
| 38 38 | 
             
                    'status': 'str',
         | 
| 39 39 | 
             
                    'sub_status': 'str',
         | 
| 40 40 | 
             
                    'subnet_id': 'str',
         | 
| 41 | 
            -
                    'vpc_id': 'str'
         | 
| 41 | 
            +
                    'vpc_id': 'str',
         | 
| 42 | 
            +
                    'enterprise_project_id': 'str',
         | 
| 43 | 
            +
                    'tags': 'list[ResourceTag]'
         | 
| 42 44 | 
             
                }
         | 
| 43 45 |  | 
| 44 46 | 
             
                attribute_map = {
         | 
| @@ -62,10 +64,12 @@ class ShowShareResponse(SdkResponse): | |
| 62 64 | 
             
                    'status': 'status',
         | 
| 63 65 | 
             
                    'sub_status': 'sub_status',
         | 
| 64 66 | 
             
                    'subnet_id': 'subnet_id',
         | 
| 65 | 
            -
                    'vpc_id': 'vpc_id'
         | 
| 67 | 
            +
                    'vpc_id': 'vpc_id',
         | 
| 68 | 
            +
                    'enterprise_project_id': 'enterprise_project_id',
         | 
| 69 | 
            +
                    'tags': 'tags'
         | 
| 66 70 | 
             
                }
         | 
| 67 71 |  | 
| 68 | 
            -
                def __init__(self, action_progress=None, version=None, avail_capacity=None, availability_zone=None, az_name=None, created_at=None, crypt_key_id=None, expand_type=None, export_location=None, id=None, name=None, pay_model=None, region=None, security_group_id=None, share_proto=None, share_type=None, size=None, status=None, sub_status=None, subnet_id=None, vpc_id=None):
         | 
| 72 | 
            +
                def __init__(self, action_progress=None, version=None, avail_capacity=None, availability_zone=None, az_name=None, created_at=None, crypt_key_id=None, expand_type=None, export_location=None, id=None, name=None, pay_model=None, region=None, security_group_id=None, share_proto=None, share_type=None, size=None, status=None, sub_status=None, subnet_id=None, vpc_id=None, enterprise_project_id=None, tags=None):
         | 
| 69 73 | 
             
                    """ShowShareResponse
         | 
| 70 74 |  | 
| 71 75 | 
             
                    The model defined in huaweicloud sdk
         | 
| @@ -112,6 +116,10 @@ class ShowShareResponse(SdkResponse): | |
| 112 116 | 
             
                    :type subnet_id: str
         | 
| 113 117 | 
             
                    :param vpc_id: 用户指定的VPC ID。
         | 
| 114 118 | 
             
                    :type vpc_id: str
         | 
| 119 | 
            +
                    :param enterprise_project_id: SFS Turbo文件系统绑定的企业项目ID。
         | 
| 120 | 
            +
                    :type enterprise_project_id: str
         | 
| 121 | 
            +
                    :param tags: tag标签的列表。
         | 
| 122 | 
            +
                    :type tags: list[:class:`huaweicloudsdksfsturbo.v1.ResourceTag`]
         | 
| 115 123 | 
             
                    """
         | 
| 116 124 |  | 
| 117 125 | 
             
                    super(ShowShareResponse, self).__init__()
         | 
| @@ -137,6 +145,8 @@ class ShowShareResponse(SdkResponse): | |
| 137 145 | 
             
                    self._sub_status = None
         | 
| 138 146 | 
             
                    self._subnet_id = None
         | 
| 139 147 | 
             
                    self._vpc_id = None
         | 
| 148 | 
            +
                    self._enterprise_project_id = None
         | 
| 149 | 
            +
                    self._tags = None
         | 
| 140 150 | 
             
                    self.discriminator = None
         | 
| 141 151 |  | 
| 142 152 | 
             
                    if action_progress is not None:
         | 
| @@ -181,6 +191,10 @@ class ShowShareResponse(SdkResponse): | |
| 181 191 | 
             
                        self.subnet_id = subnet_id
         | 
| 182 192 | 
             
                    if vpc_id is not None:
         | 
| 183 193 | 
             
                        self.vpc_id = vpc_id
         | 
| 194 | 
            +
                    if enterprise_project_id is not None:
         | 
| 195 | 
            +
                        self.enterprise_project_id = enterprise_project_id
         | 
| 196 | 
            +
                    if tags is not None:
         | 
| 197 | 
            +
                        self.tags = tags
         | 
| 184 198 |  | 
| 185 199 | 
             
                @property
         | 
| 186 200 | 
             
                def action_progress(self):
         | 
| @@ -640,6 +654,50 @@ class ShowShareResponse(SdkResponse): | |
| 640 654 | 
             
                    """
         | 
| 641 655 | 
             
                    self._vpc_id = vpc_id
         | 
| 642 656 |  | 
| 657 | 
            +
                @property
         | 
| 658 | 
            +
                def enterprise_project_id(self):
         | 
| 659 | 
            +
                    """Gets the enterprise_project_id of this ShowShareResponse.
         | 
| 660 | 
            +
             | 
| 661 | 
            +
                    SFS Turbo文件系统绑定的企业项目ID。
         | 
| 662 | 
            +
             | 
| 663 | 
            +
                    :return: The enterprise_project_id of this ShowShareResponse.
         | 
| 664 | 
            +
                    :rtype: str
         | 
| 665 | 
            +
                    """
         | 
| 666 | 
            +
                    return self._enterprise_project_id
         | 
| 667 | 
            +
             | 
| 668 | 
            +
                @enterprise_project_id.setter
         | 
| 669 | 
            +
                def enterprise_project_id(self, enterprise_project_id):
         | 
| 670 | 
            +
                    """Sets the enterprise_project_id of this ShowShareResponse.
         | 
| 671 | 
            +
             | 
| 672 | 
            +
                    SFS Turbo文件系统绑定的企业项目ID。
         | 
| 673 | 
            +
             | 
| 674 | 
            +
                    :param enterprise_project_id: The enterprise_project_id of this ShowShareResponse.
         | 
| 675 | 
            +
                    :type enterprise_project_id: str
         | 
| 676 | 
            +
                    """
         | 
| 677 | 
            +
                    self._enterprise_project_id = enterprise_project_id
         | 
| 678 | 
            +
             | 
| 679 | 
            +
                @property
         | 
| 680 | 
            +
                def tags(self):
         | 
| 681 | 
            +
                    """Gets the tags of this ShowShareResponse.
         | 
| 682 | 
            +
             | 
| 683 | 
            +
                    tag标签的列表。
         | 
| 684 | 
            +
             | 
| 685 | 
            +
                    :return: The tags of this ShowShareResponse.
         | 
| 686 | 
            +
                    :rtype: list[:class:`huaweicloudsdksfsturbo.v1.ResourceTag`]
         | 
| 687 | 
            +
                    """
         | 
| 688 | 
            +
                    return self._tags
         | 
| 689 | 
            +
             | 
| 690 | 
            +
                @tags.setter
         | 
| 691 | 
            +
                def tags(self, tags):
         | 
| 692 | 
            +
                    """Sets the tags of this ShowShareResponse.
         | 
| 693 | 
            +
             | 
| 694 | 
            +
                    tag标签的列表。
         | 
| 695 | 
            +
             | 
| 696 | 
            +
                    :param tags: The tags of this ShowShareResponse.
         | 
| 697 | 
            +
                    :type tags: list[:class:`huaweicloudsdksfsturbo.v1.ResourceTag`]
         | 
| 698 | 
            +
                    """
         | 
| 699 | 
            +
                    self._tags = tags
         | 
| 700 | 
            +
             | 
| 643 701 | 
             
                def to_dict(self):
         | 
| 644 702 | 
             
                    """Returns the model properties as a dict"""
         | 
| 645 703 | 
             
                    result = {}
         | 
| @@ -33,7 +33,7 @@ class UpdateHpcShareRequestBody: | |
| 33 33 |  | 
| 34 34 | 
             
                    :param action: 更新 HPC 型文件系统的操作类型。当前仅支持取值 config_gc_time
         | 
| 35 35 | 
             
                    :type action: str
         | 
| 36 | 
            -
                    :param gc_time: 文件系统冷数据淘汰时间,单位为小时,取值范围 [1, 100000000] | 
| 36 | 
            +
                    :param gc_time: 文件系统冷数据淘汰时间,单位为小时,取值范围 [1, 100000000]。系统默认为 60 小时
         | 
| 37 37 | 
             
                    :type gc_time: int
         | 
| 38 38 | 
             
                    """
         | 
| 39 39 |  | 
| @@ -72,7 +72,7 @@ class UpdateHpcShareRequestBody: | |
| 72 72 | 
             
                def gc_time(self):
         | 
| 73 73 | 
             
                    """Gets the gc_time of this UpdateHpcShareRequestBody.
         | 
| 74 74 |  | 
| 75 | 
            -
                    文件系统冷数据淘汰时间,单位为小时,取值范围 [1, 100000000] | 
| 75 | 
            +
                    文件系统冷数据淘汰时间,单位为小时,取值范围 [1, 100000000]。系统默认为 60 小时
         | 
| 76 76 |  | 
| 77 77 | 
             
                    :return: The gc_time of this UpdateHpcShareRequestBody.
         | 
| 78 78 | 
             
                    :rtype: int
         | 
| @@ -83,7 +83,7 @@ class UpdateHpcShareRequestBody: | |
| 83 83 | 
             
                def gc_time(self, gc_time):
         | 
| 84 84 | 
             
                    """Sets the gc_time of this UpdateHpcShareRequestBody.
         | 
| 85 85 |  | 
| 86 | 
            -
                    文件系统冷数据淘汰时间,单位为小时,取值范围 [1, 100000000] | 
| 86 | 
            +
                    文件系统冷数据淘汰时间,单位为小时,取值范围 [1, 100000000]。系统默认为 60 小时
         | 
| 87 87 |  | 
| 88 88 | 
             
                    :param gc_time: The gc_time of this UpdateHpcShareRequestBody.
         | 
| 89 89 | 
             
                    :type gc_time: int
         | 
| @@ -32,7 +32,7 @@ class UpdateHpcShareResponse(SdkResponse): | |
| 32 32 |  | 
| 33 33 | 
             
                    The model defined in huaweicloud sdk
         | 
| 34 34 |  | 
| 35 | 
            -
                    :param gc_time:  | 
| 35 | 
            +
                    :param gc_time: 文件系统冷数据淘汰时间
         | 
| 36 36 | 
             
                    :type gc_time: int
         | 
| 37 37 | 
             
                    :param x_request_id: 
         | 
| 38 38 | 
             
                    :type x_request_id: str
         | 
| @@ -53,7 +53,7 @@ class UpdateHpcShareResponse(SdkResponse): | |
| 53 53 | 
             
                def gc_time(self):
         | 
| 54 54 | 
             
                    """Gets the gc_time of this UpdateHpcShareResponse.
         | 
| 55 55 |  | 
| 56 | 
            -
                     | 
| 56 | 
            +
                    文件系统冷数据淘汰时间
         | 
| 57 57 |  | 
| 58 58 | 
             
                    :return: The gc_time of this UpdateHpcShareResponse.
         | 
| 59 59 | 
             
                    :rtype: int
         | 
| @@ -64,7 +64,7 @@ class UpdateHpcShareResponse(SdkResponse): | |
| 64 64 | 
             
                def gc_time(self, gc_time):
         | 
| 65 65 | 
             
                    """Sets the gc_time of this UpdateHpcShareResponse.
         | 
| 66 66 |  | 
| 67 | 
            -
                     | 
| 67 | 
            +
                    文件系统冷数据淘汰时间
         | 
| 68 68 |  | 
| 69 69 | 
             
                    :param gc_time: The gc_time of this UpdateHpcShareResponse.
         | 
| 70 70 | 
             
                    :type gc_time: int
         | 
| @@ -238,9 +238,9 @@ class SFSTurboAsyncClient(Client): | |
| 238 238 | 
             
                    return http_info
         | 
| 239 239 |  | 
| 240 240 | 
             
                def create_backend_target_async(self, request):
         | 
| 241 | 
            -
                    """ | 
| 241 | 
            +
                    """绑定后端存储
         | 
| 242 242 |  | 
| 243 | 
            -
                     | 
| 243 | 
            +
                    为SFS Turbo HPC型文件系统绑定后端存储
         | 
| 244 244 |  | 
| 245 245 | 
             
                    Please refer to HUAWEI cloud API Explorer for details.
         | 
| 246 246 |  | 
| @@ -441,7 +441,7 @@ class SFSTurboAsyncClient(Client): | |
| 441 441 | 
             
                def create_fs_task_async(self, request):
         | 
| 442 442 | 
             
                    """创建文件系统异步任务
         | 
| 443 443 |  | 
| 444 | 
            -
                     | 
| 444 | 
            +
                    创建文件系统异步任务
         | 
| 445 445 |  | 
| 446 446 | 
             
                    Please refer to HUAWEI cloud API Explorer for details.
         | 
| 447 447 |  | 
| @@ -508,9 +508,9 @@ class SFSTurboAsyncClient(Client): | |
| 508 508 | 
             
                    return http_info
         | 
| 509 509 |  | 
| 510 510 | 
             
                def create_hpc_cache_task_async(self, request):
         | 
| 511 | 
            -
                    """ | 
| 511 | 
            +
                    """创建数据导入导出任务
         | 
| 512 512 |  | 
| 513 | 
            -
                     | 
| 513 | 
            +
                    创建数据导入导出任务
         | 
| 514 514 |  | 
| 515 515 | 
             
                    Please refer to HUAWEI cloud API Explorer for details.
         | 
| 516 516 |  | 
| @@ -777,9 +777,9 @@ class SFSTurboAsyncClient(Client): | |
| 777 777 | 
             
                    return http_info
         | 
| 778 778 |  | 
| 779 779 | 
             
                def delete_backend_target_async(self, request):
         | 
| 780 | 
            -
                    """ | 
| 780 | 
            +
                    """删除后端存储
         | 
| 781 781 |  | 
| 782 | 
            -
                     | 
| 782 | 
            +
                    删除后端存储
         | 
| 783 783 |  | 
| 784 784 | 
             
                    Please refer to HUAWEI cloud API Explorer for details.
         | 
| 785 785 |  | 
| @@ -982,7 +982,7 @@ class SFSTurboAsyncClient(Client): | |
| 982 982 | 
             
                def delete_fs_task_async(self, request):
         | 
| 983 983 | 
             
                    """取消/删除文件系统异步任务
         | 
| 984 984 |  | 
| 985 | 
            -
                     | 
| 985 | 
            +
                    如果异步任务正在执行,则取消并删除任务;否则,删除任务。
         | 
| 986 986 |  | 
| 987 987 | 
             
                    Please refer to HUAWEI cloud API Explorer for details.
         | 
| 988 988 |  | 
| @@ -1315,9 +1315,9 @@ class SFSTurboAsyncClient(Client): | |
| 1315 1315 | 
             
                    return http_info
         | 
| 1316 1316 |  | 
| 1317 1317 | 
             
                def list_backend_targets_async(self, request):
         | 
| 1318 | 
            -
                    """ | 
| 1318 | 
            +
                    """查询后端存储列表
         | 
| 1319 1319 |  | 
| 1320 | 
            -
                     | 
| 1320 | 
            +
                    查询后端存储列表
         | 
| 1321 1321 |  | 
| 1322 1322 | 
             
                    Please refer to HUAWEI cloud API Explorer for details.
         | 
| 1323 1323 |  | 
| @@ -1386,7 +1386,7 @@ class SFSTurboAsyncClient(Client): | |
| 1386 1386 | 
             
                def list_fs_tasks_async(self, request):
         | 
| 1387 1387 | 
             
                    """获取文件系统异步任务列表
         | 
| 1388 1388 |  | 
| 1389 | 
            -
                     | 
| 1389 | 
            +
                    获取文件系统异步任务列表
         | 
| 1390 1390 |  | 
| 1391 1391 | 
             
                    Please refer to HUAWEI cloud API Explorer for details.
         | 
| 1392 1392 |  | 
| @@ -1455,9 +1455,9 @@ class SFSTurboAsyncClient(Client): | |
| 1455 1455 | 
             
                    return http_info
         | 
| 1456 1456 |  | 
| 1457 1457 | 
             
                def list_hpc_cache_tasks_async(self, request):
         | 
| 1458 | 
            -
                    """ | 
| 1458 | 
            +
                    """查询数据导入导出任务列表
         | 
| 1459 1459 |  | 
| 1460 | 
            -
                     | 
| 1460 | 
            +
                    查询数据导入导出任务列表
         | 
| 1461 1461 |  | 
| 1462 1462 | 
             
                    Please refer to HUAWEI cloud API Explorer for details.
         | 
| 1463 1463 |  | 
| @@ -1790,9 +1790,9 @@ class SFSTurboAsyncClient(Client): | |
| 1790 1790 | 
             
                    return http_info
         | 
| 1791 1791 |  | 
| 1792 1792 | 
             
                def show_backend_target_info_async(self, request):
         | 
| 1793 | 
            -
                    """ | 
| 1793 | 
            +
                    """获取后端存储详细信息
         | 
| 1794 1794 |  | 
| 1795 | 
            -
                     | 
| 1795 | 
            +
                    获取后端存储详细信息
         | 
| 1796 1796 |  | 
| 1797 1797 | 
             
                    Please refer to HUAWEI cloud API Explorer for details.
         | 
| 1798 1798 |  | 
| @@ -1993,7 +1993,7 @@ class SFSTurboAsyncClient(Client): | |
| 1993 1993 | 
             
                def show_fs_dir_usage_async(self, request):
         | 
| 1994 1994 | 
             
                    """查询目录资源使用情况
         | 
| 1995 1995 |  | 
| 1996 | 
            -
                    查询目录资源使用情况(包括子目录的资源)。后端有5min | 
| 1996 | 
            +
                    查询目录资源使用情况(包括子目录的资源)。后端有5min的缓存时间,查询的数据可能有延迟。
         | 
| 1997 1997 |  | 
| 1998 1998 | 
             
                    Please refer to HUAWEI cloud API Explorer for details.
         | 
| 1999 1999 |  | 
| @@ -2060,7 +2060,7 @@ class SFSTurboAsyncClient(Client): | |
| 2060 2060 | 
             
                def show_fs_task_async(self, request):
         | 
| 2061 2061 | 
             
                    """获取文件系统异步任务详情
         | 
| 2062 2062 |  | 
| 2063 | 
            -
                     | 
| 2063 | 
            +
                    获取文件系统异步任务详情
         | 
| 2064 2064 |  | 
| 2065 2065 | 
             
                    Please refer to HUAWEI cloud API Explorer for details.
         | 
| 2066 2066 |  | 
| @@ -2127,9 +2127,9 @@ class SFSTurboAsyncClient(Client): | |
| 2127 2127 | 
             
                    return http_info
         | 
| 2128 2128 |  | 
| 2129 2129 | 
             
                def show_hpc_cache_task_async(self, request):
         | 
| 2130 | 
            -
                    """ | 
| 2130 | 
            +
                    """查询数据导入导出任务详情
         | 
| 2131 2131 |  | 
| 2132 | 
            -
                     | 
| 2132 | 
            +
                    查询数据导入导出任务详情
         | 
| 2133 2133 |  | 
| 2134 2134 | 
             
                    Please refer to HUAWEI cloud API Explorer for details.
         | 
| 2135 2135 |  | 
| @@ -2460,7 +2460,7 @@ class SFSTurboAsyncClient(Client): | |
| 2460 2460 | 
             
                def update_hpc_share_async(self, request):
         | 
| 2461 2461 | 
             
                    """更新文件系统
         | 
| 2462 2462 |  | 
| 2463 | 
            -
                     | 
| 2463 | 
            +
                    更新文件系统冷数据淘汰时间
         | 
| 2464 2464 |  | 
| 2465 2465 | 
             
                    Please refer to HUAWEI cloud API Explorer for details.
         | 
| 2466 2466 |  |