huaweicloudsdkcbr 3.1.123__py2.py3-none-any.whl → 3.1.125__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.
- huaweicloudsdkcbr/v1/__init__.py +5 -0
- huaweicloudsdkcbr/v1/cbr_async_client.py +72 -2
- huaweicloudsdkcbr/v1/cbr_client.py +72 -2
- huaweicloudsdkcbr/v1/model/__init__.py +5 -0
- huaweicloudsdkcbr/v1/model/add_members_req.py +34 -4
- huaweicloudsdkcbr/v1/model/agent_add_path_req.py +32 -3
- huaweicloudsdkcbr/v1/model/backup_resp.py +44 -15
- huaweicloudsdkcbr/v1/model/cbc_order_change.py +225 -0
- huaweicloudsdkcbr/v1/model/cbc_product_info_order_change.py +199 -0
- huaweicloudsdkcbr/v1/model/cbc_product_info_update.py +3 -3
- huaweicloudsdkcbr/v1/model/change_order_request.py +111 -0
- huaweicloudsdkcbr/v1/model/change_order_response.py +174 -0
- huaweicloudsdkcbr/v1/model/delete_organization_policy_request.py +3 -3
- huaweicloudsdkcbr/v1/model/exclude_path.py +144 -0
- huaweicloudsdkcbr/v1/model/list_organization_policies_request.py +61 -3
- huaweicloudsdkcbr/v1/model/path.py +32 -3
- {huaweicloudsdkcbr-3.1.123.dist-info → huaweicloudsdkcbr-3.1.125.dist-info}/METADATA +2 -2
- {huaweicloudsdkcbr-3.1.123.dist-info → huaweicloudsdkcbr-3.1.125.dist-info}/RECORD +21 -16
- {huaweicloudsdkcbr-3.1.123.dist-info → huaweicloudsdkcbr-3.1.125.dist-info}/WHEEL +1 -1
- {huaweicloudsdkcbr-3.1.123.dist-info → huaweicloudsdkcbr-3.1.125.dist-info}/LICENSE +0 -0
- {huaweicloudsdkcbr-3.1.123.dist-info → huaweicloudsdkcbr-3.1.125.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,174 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.sdk_response import SdkResponse
|
6
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
7
|
+
|
8
|
+
|
9
|
+
class ChangeOrderResponse(SdkResponse):
|
10
|
+
|
11
|
+
"""
|
12
|
+
Attributes:
|
13
|
+
openapi_types (dict): The key is attribute name
|
14
|
+
and the value is attribute type.
|
15
|
+
attribute_map (dict): The key is attribute name
|
16
|
+
and the value is json key in definition.
|
17
|
+
"""
|
18
|
+
sensitive_list = []
|
19
|
+
|
20
|
+
openapi_types = {
|
21
|
+
'order_id': 'str',
|
22
|
+
'ret_code': 'str',
|
23
|
+
'ret_msg': 'str'
|
24
|
+
}
|
25
|
+
|
26
|
+
attribute_map = {
|
27
|
+
'order_id': 'orderId',
|
28
|
+
'ret_code': 'retCode',
|
29
|
+
'ret_msg': 'retMsg'
|
30
|
+
}
|
31
|
+
|
32
|
+
def __init__(self, order_id=None, ret_code=None, ret_msg=None):
|
33
|
+
"""ChangeOrderResponse
|
34
|
+
|
35
|
+
The model defined in huaweicloud sdk
|
36
|
+
|
37
|
+
:param order_id: 订单ID
|
38
|
+
:type order_id: str
|
39
|
+
:param ret_code: 变更状态码
|
40
|
+
:type ret_code: str
|
41
|
+
:param ret_msg: 变更信息
|
42
|
+
:type ret_msg: str
|
43
|
+
"""
|
44
|
+
|
45
|
+
super(ChangeOrderResponse, self).__init__()
|
46
|
+
|
47
|
+
self._order_id = None
|
48
|
+
self._ret_code = None
|
49
|
+
self._ret_msg = None
|
50
|
+
self.discriminator = None
|
51
|
+
|
52
|
+
if order_id is not None:
|
53
|
+
self.order_id = order_id
|
54
|
+
if ret_code is not None:
|
55
|
+
self.ret_code = ret_code
|
56
|
+
if ret_msg is not None:
|
57
|
+
self.ret_msg = ret_msg
|
58
|
+
|
59
|
+
@property
|
60
|
+
def order_id(self):
|
61
|
+
"""Gets the order_id of this ChangeOrderResponse.
|
62
|
+
|
63
|
+
订单ID
|
64
|
+
|
65
|
+
:return: The order_id of this ChangeOrderResponse.
|
66
|
+
:rtype: str
|
67
|
+
"""
|
68
|
+
return self._order_id
|
69
|
+
|
70
|
+
@order_id.setter
|
71
|
+
def order_id(self, order_id):
|
72
|
+
"""Sets the order_id of this ChangeOrderResponse.
|
73
|
+
|
74
|
+
订单ID
|
75
|
+
|
76
|
+
:param order_id: The order_id of this ChangeOrderResponse.
|
77
|
+
:type order_id: str
|
78
|
+
"""
|
79
|
+
self._order_id = order_id
|
80
|
+
|
81
|
+
@property
|
82
|
+
def ret_code(self):
|
83
|
+
"""Gets the ret_code of this ChangeOrderResponse.
|
84
|
+
|
85
|
+
变更状态码
|
86
|
+
|
87
|
+
:return: The ret_code of this ChangeOrderResponse.
|
88
|
+
:rtype: str
|
89
|
+
"""
|
90
|
+
return self._ret_code
|
91
|
+
|
92
|
+
@ret_code.setter
|
93
|
+
def ret_code(self, ret_code):
|
94
|
+
"""Sets the ret_code of this ChangeOrderResponse.
|
95
|
+
|
96
|
+
变更状态码
|
97
|
+
|
98
|
+
:param ret_code: The ret_code of this ChangeOrderResponse.
|
99
|
+
:type ret_code: str
|
100
|
+
"""
|
101
|
+
self._ret_code = ret_code
|
102
|
+
|
103
|
+
@property
|
104
|
+
def ret_msg(self):
|
105
|
+
"""Gets the ret_msg of this ChangeOrderResponse.
|
106
|
+
|
107
|
+
变更信息
|
108
|
+
|
109
|
+
:return: The ret_msg of this ChangeOrderResponse.
|
110
|
+
:rtype: str
|
111
|
+
"""
|
112
|
+
return self._ret_msg
|
113
|
+
|
114
|
+
@ret_msg.setter
|
115
|
+
def ret_msg(self, ret_msg):
|
116
|
+
"""Sets the ret_msg of this ChangeOrderResponse.
|
117
|
+
|
118
|
+
变更信息
|
119
|
+
|
120
|
+
:param ret_msg: The ret_msg of this ChangeOrderResponse.
|
121
|
+
:type ret_msg: str
|
122
|
+
"""
|
123
|
+
self._ret_msg = ret_msg
|
124
|
+
|
125
|
+
def to_dict(self):
|
126
|
+
"""Returns the model properties as a dict"""
|
127
|
+
result = {}
|
128
|
+
|
129
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
130
|
+
value = getattr(self, attr)
|
131
|
+
if isinstance(value, list):
|
132
|
+
result[attr] = list(map(
|
133
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
134
|
+
value
|
135
|
+
))
|
136
|
+
elif hasattr(value, "to_dict"):
|
137
|
+
result[attr] = value.to_dict()
|
138
|
+
elif isinstance(value, dict):
|
139
|
+
result[attr] = dict(map(
|
140
|
+
lambda item: (item[0], item[1].to_dict())
|
141
|
+
if hasattr(item[1], "to_dict") else item,
|
142
|
+
value.items()
|
143
|
+
))
|
144
|
+
else:
|
145
|
+
if attr in self.sensitive_list:
|
146
|
+
result[attr] = "****"
|
147
|
+
else:
|
148
|
+
result[attr] = value
|
149
|
+
|
150
|
+
return result
|
151
|
+
|
152
|
+
def to_str(self):
|
153
|
+
"""Returns the string representation of the model"""
|
154
|
+
import simplejson as json
|
155
|
+
if six.PY2:
|
156
|
+
import sys
|
157
|
+
reload(sys)
|
158
|
+
sys.setdefaultencoding("utf-8")
|
159
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
160
|
+
|
161
|
+
def __repr__(self):
|
162
|
+
"""For `print`"""
|
163
|
+
return self.to_str()
|
164
|
+
|
165
|
+
def __eq__(self, other):
|
166
|
+
"""Returns true if both objects are equal"""
|
167
|
+
if not isinstance(other, ChangeOrderResponse):
|
168
|
+
return False
|
169
|
+
|
170
|
+
return self.__dict__ == other.__dict__
|
171
|
+
|
172
|
+
def __ne__(self, other):
|
173
|
+
"""Returns true if both objects are not equal"""
|
174
|
+
return not self == other
|
@@ -29,7 +29,7 @@ class DeleteOrganizationPolicyRequest:
|
|
29
29
|
|
30
30
|
The model defined in huaweicloud sdk
|
31
31
|
|
32
|
-
:param organization_policy_id:
|
32
|
+
:param organization_policy_id: 组织策略ID
|
33
33
|
:type organization_policy_id: str
|
34
34
|
"""
|
35
35
|
|
@@ -44,7 +44,7 @@ class DeleteOrganizationPolicyRequest:
|
|
44
44
|
def organization_policy_id(self):
|
45
45
|
"""Gets the organization_policy_id of this DeleteOrganizationPolicyRequest.
|
46
46
|
|
47
|
-
|
47
|
+
组织策略ID
|
48
48
|
|
49
49
|
:return: The organization_policy_id of this DeleteOrganizationPolicyRequest.
|
50
50
|
:rtype: str
|
@@ -55,7 +55,7 @@ class DeleteOrganizationPolicyRequest:
|
|
55
55
|
def organization_policy_id(self, organization_policy_id):
|
56
56
|
"""Sets the organization_policy_id of this DeleteOrganizationPolicyRequest.
|
57
57
|
|
58
|
-
|
58
|
+
组织策略ID
|
59
59
|
|
60
60
|
:param organization_policy_id: The organization_policy_id of this DeleteOrganizationPolicyRequest.
|
61
61
|
:type organization_policy_id: str
|
@@ -0,0 +1,144 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
6
|
+
|
7
|
+
|
8
|
+
class ExcludePath:
|
9
|
+
|
10
|
+
"""
|
11
|
+
Attributes:
|
12
|
+
openapi_types (dict): The key is attribute name
|
13
|
+
and the value is attribute type.
|
14
|
+
attribute_map (dict): The key is attribute name
|
15
|
+
and the value is json key in definition.
|
16
|
+
"""
|
17
|
+
sensitive_list = []
|
18
|
+
|
19
|
+
openapi_types = {
|
20
|
+
'path_name': 'str',
|
21
|
+
'exclude_path_name': 'list[str]'
|
22
|
+
}
|
23
|
+
|
24
|
+
attribute_map = {
|
25
|
+
'path_name': 'path_name',
|
26
|
+
'exclude_path_name': 'exclude_path_name'
|
27
|
+
}
|
28
|
+
|
29
|
+
def __init__(self, path_name=None, exclude_path_name=None):
|
30
|
+
"""ExcludePath
|
31
|
+
|
32
|
+
The model defined in huaweicloud sdk
|
33
|
+
|
34
|
+
:param path_name: 备份目录
|
35
|
+
:type path_name: str
|
36
|
+
:param exclude_path_name: 排除目录列表
|
37
|
+
:type exclude_path_name: list[str]
|
38
|
+
"""
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
self._path_name = None
|
43
|
+
self._exclude_path_name = None
|
44
|
+
self.discriminator = None
|
45
|
+
|
46
|
+
if path_name is not None:
|
47
|
+
self.path_name = path_name
|
48
|
+
if exclude_path_name is not None:
|
49
|
+
self.exclude_path_name = exclude_path_name
|
50
|
+
|
51
|
+
@property
|
52
|
+
def path_name(self):
|
53
|
+
"""Gets the path_name of this ExcludePath.
|
54
|
+
|
55
|
+
备份目录
|
56
|
+
|
57
|
+
:return: The path_name of this ExcludePath.
|
58
|
+
:rtype: str
|
59
|
+
"""
|
60
|
+
return self._path_name
|
61
|
+
|
62
|
+
@path_name.setter
|
63
|
+
def path_name(self, path_name):
|
64
|
+
"""Sets the path_name of this ExcludePath.
|
65
|
+
|
66
|
+
备份目录
|
67
|
+
|
68
|
+
:param path_name: The path_name of this ExcludePath.
|
69
|
+
:type path_name: str
|
70
|
+
"""
|
71
|
+
self._path_name = path_name
|
72
|
+
|
73
|
+
@property
|
74
|
+
def exclude_path_name(self):
|
75
|
+
"""Gets the exclude_path_name of this ExcludePath.
|
76
|
+
|
77
|
+
排除目录列表
|
78
|
+
|
79
|
+
:return: The exclude_path_name of this ExcludePath.
|
80
|
+
:rtype: list[str]
|
81
|
+
"""
|
82
|
+
return self._exclude_path_name
|
83
|
+
|
84
|
+
@exclude_path_name.setter
|
85
|
+
def exclude_path_name(self, exclude_path_name):
|
86
|
+
"""Sets the exclude_path_name of this ExcludePath.
|
87
|
+
|
88
|
+
排除目录列表
|
89
|
+
|
90
|
+
:param exclude_path_name: The exclude_path_name of this ExcludePath.
|
91
|
+
:type exclude_path_name: list[str]
|
92
|
+
"""
|
93
|
+
self._exclude_path_name = exclude_path_name
|
94
|
+
|
95
|
+
def to_dict(self):
|
96
|
+
"""Returns the model properties as a dict"""
|
97
|
+
result = {}
|
98
|
+
|
99
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
100
|
+
value = getattr(self, attr)
|
101
|
+
if isinstance(value, list):
|
102
|
+
result[attr] = list(map(
|
103
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
104
|
+
value
|
105
|
+
))
|
106
|
+
elif hasattr(value, "to_dict"):
|
107
|
+
result[attr] = value.to_dict()
|
108
|
+
elif isinstance(value, dict):
|
109
|
+
result[attr] = dict(map(
|
110
|
+
lambda item: (item[0], item[1].to_dict())
|
111
|
+
if hasattr(item[1], "to_dict") else item,
|
112
|
+
value.items()
|
113
|
+
))
|
114
|
+
else:
|
115
|
+
if attr in self.sensitive_list:
|
116
|
+
result[attr] = "****"
|
117
|
+
else:
|
118
|
+
result[attr] = value
|
119
|
+
|
120
|
+
return result
|
121
|
+
|
122
|
+
def to_str(self):
|
123
|
+
"""Returns the string representation of the model"""
|
124
|
+
import simplejson as json
|
125
|
+
if six.PY2:
|
126
|
+
import sys
|
127
|
+
reload(sys)
|
128
|
+
sys.setdefaultencoding("utf-8")
|
129
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
130
|
+
|
131
|
+
def __repr__(self):
|
132
|
+
"""For `print`"""
|
133
|
+
return self.to_str()
|
134
|
+
|
135
|
+
def __eq__(self, other):
|
136
|
+
"""Returns true if both objects are equal"""
|
137
|
+
if not isinstance(other, ExcludePath):
|
138
|
+
return False
|
139
|
+
|
140
|
+
return self.__dict__ == other.__dict__
|
141
|
+
|
142
|
+
def __ne__(self, other):
|
143
|
+
"""Returns true if both objects are not equal"""
|
144
|
+
return not self == other
|
@@ -17,28 +17,42 @@ class ListOrganizationPoliciesRequest:
|
|
17
17
|
sensitive_list = []
|
18
18
|
|
19
19
|
openapi_types = {
|
20
|
-
'operation_type': 'str'
|
20
|
+
'operation_type': 'str',
|
21
|
+
'limit': 'int',
|
22
|
+
'offset': 'int'
|
21
23
|
}
|
22
24
|
|
23
25
|
attribute_map = {
|
24
|
-
'operation_type': 'operation_type'
|
26
|
+
'operation_type': 'operation_type',
|
27
|
+
'limit': 'limit',
|
28
|
+
'offset': 'offset'
|
25
29
|
}
|
26
30
|
|
27
|
-
def __init__(self, operation_type=None):
|
31
|
+
def __init__(self, operation_type=None, limit=None, offset=None):
|
28
32
|
"""ListOrganizationPoliciesRequest
|
29
33
|
|
30
34
|
The model defined in huaweicloud sdk
|
31
35
|
|
32
36
|
:param operation_type: 组织策略类型
|
33
37
|
:type operation_type: str
|
38
|
+
:param limit: 每页显示的条目数量,正整数
|
39
|
+
:type limit: int
|
40
|
+
:param offset: 偏移值,正整数
|
41
|
+
:type offset: int
|
34
42
|
"""
|
35
43
|
|
36
44
|
|
37
45
|
|
38
46
|
self._operation_type = None
|
47
|
+
self._limit = None
|
48
|
+
self._offset = None
|
39
49
|
self.discriminator = None
|
40
50
|
|
41
51
|
self.operation_type = operation_type
|
52
|
+
if limit is not None:
|
53
|
+
self.limit = limit
|
54
|
+
if offset is not None:
|
55
|
+
self.offset = offset
|
42
56
|
|
43
57
|
@property
|
44
58
|
def operation_type(self):
|
@@ -62,6 +76,50 @@ class ListOrganizationPoliciesRequest:
|
|
62
76
|
"""
|
63
77
|
self._operation_type = operation_type
|
64
78
|
|
79
|
+
@property
|
80
|
+
def limit(self):
|
81
|
+
"""Gets the limit of this ListOrganizationPoliciesRequest.
|
82
|
+
|
83
|
+
每页显示的条目数量,正整数
|
84
|
+
|
85
|
+
:return: The limit of this ListOrganizationPoliciesRequest.
|
86
|
+
:rtype: int
|
87
|
+
"""
|
88
|
+
return self._limit
|
89
|
+
|
90
|
+
@limit.setter
|
91
|
+
def limit(self, limit):
|
92
|
+
"""Sets the limit of this ListOrganizationPoliciesRequest.
|
93
|
+
|
94
|
+
每页显示的条目数量,正整数
|
95
|
+
|
96
|
+
:param limit: The limit of this ListOrganizationPoliciesRequest.
|
97
|
+
:type limit: int
|
98
|
+
"""
|
99
|
+
self._limit = limit
|
100
|
+
|
101
|
+
@property
|
102
|
+
def offset(self):
|
103
|
+
"""Gets the offset of this ListOrganizationPoliciesRequest.
|
104
|
+
|
105
|
+
偏移值,正整数
|
106
|
+
|
107
|
+
:return: The offset of this ListOrganizationPoliciesRequest.
|
108
|
+
:rtype: int
|
109
|
+
"""
|
110
|
+
return self._offset
|
111
|
+
|
112
|
+
@offset.setter
|
113
|
+
def offset(self, offset):
|
114
|
+
"""Sets the offset of this ListOrganizationPoliciesRequest.
|
115
|
+
|
116
|
+
偏移值,正整数
|
117
|
+
|
118
|
+
:param offset: The offset of this ListOrganizationPoliciesRequest.
|
119
|
+
:type offset: int
|
120
|
+
"""
|
121
|
+
self._offset = offset
|
122
|
+
|
65
123
|
def to_dict(self):
|
66
124
|
"""Returns the model properties as a dict"""
|
67
125
|
result = {}
|
@@ -20,17 +20,19 @@ class Path:
|
|
20
20
|
'id': 'str',
|
21
21
|
'status': 'str',
|
22
22
|
'agent_id': 'str',
|
23
|
-
'dir_path': 'str'
|
23
|
+
'dir_path': 'str',
|
24
|
+
'exclude_paths': 'str'
|
24
25
|
}
|
25
26
|
|
26
27
|
attribute_map = {
|
27
28
|
'id': 'id',
|
28
29
|
'status': 'status',
|
29
30
|
'agent_id': 'agent_id',
|
30
|
-
'dir_path': 'dir_path'
|
31
|
+
'dir_path': 'dir_path',
|
32
|
+
'exclude_paths': 'exclude_paths'
|
31
33
|
}
|
32
34
|
|
33
|
-
def __init__(self, id=None, status=None, agent_id=None, dir_path=None):
|
35
|
+
def __init__(self, id=None, status=None, agent_id=None, dir_path=None, exclude_paths=None):
|
34
36
|
"""Path
|
35
37
|
|
36
38
|
The model defined in huaweicloud sdk
|
@@ -43,6 +45,8 @@ class Path:
|
|
43
45
|
:type agent_id: str
|
44
46
|
:param dir_path: 路径详情
|
45
47
|
:type dir_path: str
|
48
|
+
:param exclude_paths: 排除目录列表,多个路径之间以英文逗号分隔 > 该特性目前处于公测阶段,部分region可能无法使用。
|
49
|
+
:type exclude_paths: str
|
46
50
|
"""
|
47
51
|
|
48
52
|
|
@@ -51,6 +55,7 @@ class Path:
|
|
51
55
|
self._status = None
|
52
56
|
self._agent_id = None
|
53
57
|
self._dir_path = None
|
58
|
+
self._exclude_paths = None
|
54
59
|
self.discriminator = None
|
55
60
|
|
56
61
|
if id is not None:
|
@@ -61,6 +66,8 @@ class Path:
|
|
61
66
|
self.agent_id = agent_id
|
62
67
|
if dir_path is not None:
|
63
68
|
self.dir_path = dir_path
|
69
|
+
if exclude_paths is not None:
|
70
|
+
self.exclude_paths = exclude_paths
|
64
71
|
|
65
72
|
@property
|
66
73
|
def id(self):
|
@@ -150,6 +157,28 @@ class Path:
|
|
150
157
|
"""
|
151
158
|
self._dir_path = dir_path
|
152
159
|
|
160
|
+
@property
|
161
|
+
def exclude_paths(self):
|
162
|
+
"""Gets the exclude_paths of this Path.
|
163
|
+
|
164
|
+
排除目录列表,多个路径之间以英文逗号分隔 > 该特性目前处于公测阶段,部分region可能无法使用。
|
165
|
+
|
166
|
+
:return: The exclude_paths of this Path.
|
167
|
+
:rtype: str
|
168
|
+
"""
|
169
|
+
return self._exclude_paths
|
170
|
+
|
171
|
+
@exclude_paths.setter
|
172
|
+
def exclude_paths(self, exclude_paths):
|
173
|
+
"""Sets the exclude_paths of this Path.
|
174
|
+
|
175
|
+
排除目录列表,多个路径之间以英文逗号分隔 > 该特性目前处于公测阶段,部分region可能无法使用。
|
176
|
+
|
177
|
+
:param exclude_paths: The exclude_paths of this Path.
|
178
|
+
:type exclude_paths: str
|
179
|
+
"""
|
180
|
+
self._exclude_paths = exclude_paths
|
181
|
+
|
153
182
|
def to_dict(self):
|
154
183
|
"""Returns the model properties as a dict"""
|
155
184
|
result = {}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkcbr
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.125
|
4
4
|
Summary: CBR
|
5
5
|
Home-page: https://github.com/huaweicloud/huaweicloud-sdk-python-v3
|
6
6
|
Author: HuaweiCloud SDK
|
@@ -22,6 +22,6 @@ Classifier: Topic :: Software Development
|
|
22
22
|
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*
|
23
23
|
Description-Content-Type: text/markdown
|
24
24
|
License-File: LICENSE
|
25
|
-
Requires-Dist: huaweicloudsdkcore>=3.1.
|
25
|
+
Requires-Dist: huaweicloudsdkcore>=3.1.125
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
@@ -1,17 +1,17 @@
|
|
1
1
|
huaweicloudsdkcbr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
huaweicloudsdkcbr/v1/__init__.py,sha256=
|
3
|
-
huaweicloudsdkcbr/v1/cbr_async_client.py,sha256=
|
4
|
-
huaweicloudsdkcbr/v1/cbr_client.py,sha256=
|
5
|
-
huaweicloudsdkcbr/v1/model/__init__.py,sha256=
|
2
|
+
huaweicloudsdkcbr/v1/__init__.py,sha256=cbb-N_VJR_Ym4-FLkISwKhv5Eks_u7TSvEyHHr9CPkA,22456
|
3
|
+
huaweicloudsdkcbr/v1/cbr_async_client.py,sha256=KaL8dHUDAcdE1Fc-l1vJ6TXEefYmnEKkn6pvVzdvO34,161563
|
4
|
+
huaweicloudsdkcbr/v1/cbr_client.py,sha256=wSCxV1GqmJ6y3hhsB9IXDhjrNBNsDcJvY2eDcKXVQek,161598
|
5
|
+
huaweicloudsdkcbr/v1/model/__init__.py,sha256=cbu7AIBZuKl6xhCUuiXlMB0IsdVvihm4lVhSPzqfjIs,22370
|
6
6
|
huaweicloudsdkcbr/v1/model/add_agent_path_request.py,sha256=Pr6eVCOzpjgWgqLZJnd9WH0Pbb0K6dgT5pMAFz5XkF4,3814
|
7
7
|
huaweicloudsdkcbr/v1/model/add_agent_path_response.py,sha256=2MBTKerhkmxm5MlDsxbXDb8bfaa3iKH6jV18nEkQiz0,4012
|
8
8
|
huaweicloudsdkcbr/v1/model/add_member_request.py,sha256=ayiU4_SQPeMyXLpWT9p8DC7uWXgjc6--sGJD-MLyjs8,3801
|
9
9
|
huaweicloudsdkcbr/v1/model/add_member_response.py,sha256=rJpcVwcuVP64ibDYIB_IiCv5jCjsSfpgYNGYKzIGen0,4063
|
10
|
-
huaweicloudsdkcbr/v1/model/add_members_req.py,sha256=
|
10
|
+
huaweicloudsdkcbr/v1/model/add_members_req.py,sha256=3PML7bitMvPeAk0nP8XhFRY5-zhDBecEFKhojN3mHZI,4219
|
11
11
|
huaweicloudsdkcbr/v1/model/add_vault_resource_request.py,sha256=cNDLQvNTcOSbDhLoqHZlwEbN81CBqj9gMCbQmoj9NMk,3878
|
12
12
|
huaweicloudsdkcbr/v1/model/add_vault_resource_response.py,sha256=-qZdPhuJralvV-wzviLSijtv6FoCh9VM-I9umEOVMbo,3476
|
13
13
|
huaweicloudsdkcbr/v1/model/agent.py,sha256=pIpJhijYoV2FK8X2Awu_7jiNF_M3NvtQPL10xaQlf-k,11645
|
14
|
-
huaweicloudsdkcbr/v1/model/agent_add_path_req.py,sha256=
|
14
|
+
huaweicloudsdkcbr/v1/model/agent_add_path_req.py,sha256=0Hn2s2Ek5J6zNmGGyoUfJwSn6GI1k9JQO7L9Qf-VaRg,4287
|
15
15
|
huaweicloudsdkcbr/v1/model/agent_register.py,sha256=2dwCkE3AW5LhXuwtQUbNFraLVuN7d2dWGIzSjmTwYvk,7953
|
16
16
|
huaweicloudsdkcbr/v1/model/agent_register_req.py,sha256=pJX-7k4zYkVoGKBfJ3XmRYPqK5p4r-8mWsfN8UdMIBI,3024
|
17
17
|
huaweicloudsdkcbr/v1/model/agent_remove_path_req.py,sha256=DiXCPTdBN5MeGLEzYHWvpfIHtnmLmtORrD_8bDAkfHg,3159
|
@@ -23,7 +23,7 @@ huaweicloudsdkcbr/v1/model/backup_extend_info.py,sha256=chdkTGMZ9J33J_QKo32ArucP
|
|
23
23
|
huaweicloudsdkcbr/v1/model/backup_replicate_req.py,sha256=LZHhedtu1_2wZZw-FvliVsxgs3zY6BkU4JJgsIDvp84,3162
|
24
24
|
huaweicloudsdkcbr/v1/model/backup_replicate_req_body.py,sha256=v_qq0nI1vzeq5SU1LJRomBx-fW2XQAt_VSKJ1zOTH_w,8300
|
25
25
|
huaweicloudsdkcbr/v1/model/backup_replicate_resp_body.py,sha256=-fhI8u0wP4SP8HAYLDjxdXztSNkIShCmY68gjuedC_c,10114
|
26
|
-
huaweicloudsdkcbr/v1/model/backup_resp.py,sha256=
|
26
|
+
huaweicloudsdkcbr/v1/model/backup_resp.py,sha256=L0BTlc5ccU2MGU2DL5JAj6-n-eRWrTaGcz5dnosdqNc,28249
|
27
27
|
huaweicloudsdkcbr/v1/model/backup_restore.py,sha256=i6i0SZGrIdOX97CjYfI5P7JpbQ6Z6dmpYCvKWZlgp88,7684
|
28
28
|
huaweicloudsdkcbr/v1/model/backup_restore_req.py,sha256=7Y0HsvEsWIIUtPOxZZdUtqhJE-Q3jo3HNWMB8lZByGs,3068
|
29
29
|
huaweicloudsdkcbr/v1/model/backup_restore_server_mapping.py,sha256=xfxfVF_urcpmoQqK1m7kGQ8IFPwSpzMUrmmwlYU6TRI,4405
|
@@ -42,9 +42,13 @@ huaweicloudsdkcbr/v1/model/billing_create.py,sha256=GbPmeVd7ou4rnrWJZDAxq26k1WS_
|
|
42
42
|
huaweicloudsdkcbr/v1/model/billing_update.py,sha256=2l4KbKapAgHZVl4a6YIraF3Zz0AD1CqzDw8QvkA6Aqo,3919
|
43
43
|
huaweicloudsdkcbr/v1/model/bind_rules_tags.py,sha256=PIjJJa53wtEtdfNNEDnn5xmf5IlMNhNLAeblF0e0cRc,5312
|
44
44
|
huaweicloudsdkcbr/v1/model/bulk_create_and_delete_vault_tags_req.py,sha256=FDPmAwYJMSW0RFZAqdh-xSdYk8mEESJEeTx8CJeY_w4,6033
|
45
|
+
huaweicloudsdkcbr/v1/model/cbc_order_change.py,sha256=MQibATbQzE0UmfcLbim9B96LdQxpQuqvPY4h5fKSAHE,7240
|
45
46
|
huaweicloudsdkcbr/v1/model/cbc_order_result.py,sha256=csLyllR6XsyB1x5q5-JMF_KF9Dn3UV91Od4PfSYrOyQ,5738
|
46
|
-
huaweicloudsdkcbr/v1/model/
|
47
|
+
huaweicloudsdkcbr/v1/model/cbc_product_info_order_change.py,sha256=1KH4RLoo0nzILj-TFD0bwEwrrMb7y56EgEtgXRAVLxw,7350
|
48
|
+
huaweicloudsdkcbr/v1/model/cbc_product_info_update.py,sha256=UhzENH3qvbYu6hI89qsN1SM0lm3eb_BILvDKqoi4u4c,7263
|
47
49
|
huaweicloudsdkcbr/v1/model/cbc_update.py,sha256=QOsdi2aVWUS62TMkmi3ADDZtmleOd73kYHAlcD_hulc,6194
|
50
|
+
huaweicloudsdkcbr/v1/model/change_order_request.py,sha256=0X1EUMms7OSuB8_z6Bo60rhQNqDtxCVI_NkRQ0zqZIQ,3083
|
51
|
+
huaweicloudsdkcbr/v1/model/change_order_response.py,sha256=7pbo21WQJ0HfZTVVrZwf0jEiTVvam-6Dcgl37VwUH5Q,4675
|
48
52
|
huaweicloudsdkcbr/v1/model/check_agent_request.py,sha256=Gq3IsO3FDPO-9xA6XsGz4ru2lK2WyD1mzLvx7YX0DUA,3095
|
49
53
|
huaweicloudsdkcbr/v1/model/check_agent_response.py,sha256=UqLW7LC4FSInM5yc0Fyx0ZvZ2iBviQxUdlansW5hRr0,3460
|
50
54
|
huaweicloudsdkcbr/v1/model/checkpoint_create.py,sha256=t1qXee0JgvV2mDn0LYGo4elHsCFBjWAPPyod-cxxyU8,7019
|
@@ -78,7 +82,7 @@ huaweicloudsdkcbr/v1/model/delete_backup_request.py,sha256=A7L6biOFN_aE4cqULA-Rm
|
|
78
82
|
huaweicloudsdkcbr/v1/model/delete_backup_response.py,sha256=0uKXb7CLVBcWtYeHQaJiP02FFdYkru9GuRnR7BM19rw,2431
|
79
83
|
huaweicloudsdkcbr/v1/model/delete_member_request.py,sha256=IcPYjeV3BHy3qJ91uOu3a-8ABviAiPHCwX3HrEU4L5E,3797
|
80
84
|
huaweicloudsdkcbr/v1/model/delete_member_response.py,sha256=OmDl_ECFWHzq2IH6EMl47TsLL-Hmr20QHGbBcCRw9lA,2431
|
81
|
-
huaweicloudsdkcbr/v1/model/delete_organization_policy_request.py,sha256=
|
85
|
+
huaweicloudsdkcbr/v1/model/delete_organization_policy_request.py,sha256=wHUlO06k5R0rGlD_esj-Xd0w6xgdFgoBVFUesybnBKE,3435
|
82
86
|
huaweicloudsdkcbr/v1/model/delete_organization_policy_response.py,sha256=fzN_rRezIqKmUmAHri_Pe2FBqBLMFnJu599mi8TDrHA,2479
|
83
87
|
huaweicloudsdkcbr/v1/model/delete_policy_request.py,sha256=VBOeK9ZxOWIu3EfBuMQ4xYfbnEPeKLWP6RYCl37bn8I,3047
|
84
88
|
huaweicloudsdkcbr/v1/model/delete_policy_response.py,sha256=IwksWxqsswLkYWofJa1hDcGa7GnGRRj5cPy7JuiX2v0,2431
|
@@ -91,6 +95,7 @@ huaweicloudsdkcbr/v1/model/disassociate_vault_policy_response.py,sha256=LfXPwS51
|
|
91
95
|
huaweicloudsdkcbr/v1/model/domain_migrate.py,sha256=MdsOC7zOjMQJaW0wAWBsqBkbQZZoa2vjOi1sICzXHK4,3987
|
92
96
|
huaweicloudsdkcbr/v1/model/domain_migrate_project_status.py,sha256=UYQfUPGGiCpYUd5Sh1j63ZY3I-Am22GCJmiEGwCyBq4,8246
|
93
97
|
huaweicloudsdkcbr/v1/model/domain_projects_info.py,sha256=NyI6s8UOIERWKcmhrtBarukAR-0Ss478nGEdAEc3KfA,3808
|
98
|
+
huaweicloudsdkcbr/v1/model/exclude_path.py,sha256=yjStzy8f_8tjBbKQWHM5KV6RfzL379trOjiSnab7vvQ,4017
|
94
99
|
huaweicloudsdkcbr/v1/model/image_data.py,sha256=_59OjGVDo7SmUUS2v0apTewpfM7vdC42wckzFdGVS7M,2992
|
95
100
|
huaweicloudsdkcbr/v1/model/import_backup_request.py,sha256=yooIsybxItbJYasuWAnsIW3IF6GwN6YBe_Up7FbIYp8,3087
|
96
101
|
huaweicloudsdkcbr/v1/model/import_backup_response.py,sha256=2oHdUAfL15m6zXX3YF1ZBZfUZB1oqt8nurp5faG2mOo,3357
|
@@ -107,7 +112,7 @@ huaweicloudsdkcbr/v1/model/list_external_vault_request.py,sha256=wkgLsK8qFvcM1ke
|
|
107
112
|
huaweicloudsdkcbr/v1/model/list_external_vault_response.py,sha256=mgKk9s07t7Nd3e48TrkrOHdPO2-tssamjMhLRcXqmT8,5655
|
108
113
|
huaweicloudsdkcbr/v1/model/list_op_logs_request.py,sha256=vJwPI0u1WC-lWAmP6LRZ2QUPuW7gDvz3IOwIocqwPqg,13187
|
109
114
|
huaweicloudsdkcbr/v1/model/list_op_logs_response.py,sha256=yZjp8dG_CbIAolfr2gZhcG2Qrf7DhXb-UkdlFteaxMo,5691
|
110
|
-
huaweicloudsdkcbr/v1/model/list_organization_policies_request.py,sha256=
|
115
|
+
huaweicloudsdkcbr/v1/model/list_organization_policies_request.py,sha256=6hd32eJhFE_q9myOuQ7r8y06zfqEJ9d0tdwpmp29TJQ,4878
|
111
116
|
huaweicloudsdkcbr/v1/model/list_organization_policies_response.py,sha256=9ukcUvX_x1_Vsxlq8f8q1LbQi3zzlOOMecIFOSlfRio,5893
|
112
117
|
huaweicloudsdkcbr/v1/model/list_organization_policy_detail_request.py,sha256=wRlf_XE4pMxM_bYACdfvDKyBNnhJj3rMTL_Zo13OiBI,3463
|
113
118
|
huaweicloudsdkcbr/v1/model/list_organization_policy_detail_response.py,sha256=D3_m8eaNYu3XhYR7ytAm7h_YslOPaklLNRTkS3D6DQ4,6069
|
@@ -142,7 +147,7 @@ huaweicloudsdkcbr/v1/model/organization_policy_create_req.py,sha256=X08KcZ6AAYo7
|
|
142
147
|
huaweicloudsdkcbr/v1/model/organization_policy_status.py,sha256=Pn2O97jXAt8McBFHkGwLXm727lPHPVHqMIb2S7TCv5E,5288
|
143
148
|
huaweicloudsdkcbr/v1/model/organization_policy_update.py,sha256=9EoLlz-S21wjOE5Syao0fH4gs_MBkVnZly9RGYo-9xA,7989
|
144
149
|
huaweicloudsdkcbr/v1/model/organization_policy_update_req.py,sha256=8sNDK5-ZMnQcmlJ3gF75xDJevJn6H21YVUzjeARmxUs,3167
|
145
|
-
huaweicloudsdkcbr/v1/model/path.py,sha256=
|
150
|
+
huaweicloudsdkcbr/v1/model/path.py,sha256=AU5560u3fUW4WQwZ6T1UKB-LxRFmeE1LA_gas3RvUFc,6218
|
146
151
|
huaweicloudsdkcbr/v1/model/policy.py,sha256=Tcvq8xFD746rhjlGeZoWzPWcbKfAdcO6QwotWt21MCA,7829
|
147
152
|
huaweicloudsdkcbr/v1/model/policy_associate_vault.py,sha256=j_241yMZewE5b0xeuKdKhzhsW9SWOzj4v7pme24PLtE,4122
|
148
153
|
huaweicloudsdkcbr/v1/model/policy_create.py,sha256=xUfVnZWi1SO84h0X4W3ZRXUJ4qPmWuf1xzUXvkNl4BU,6668
|
@@ -270,8 +275,8 @@ huaweicloudsdkcbr/v1/model/vault_update.py,sha256=rBtHY8Eyhy4eA0YKS_j7KmXSaMFxtr
|
|
270
275
|
huaweicloudsdkcbr/v1/model/vault_update_req.py,sha256=16TbM9KJfcVqSWj6PIqExydBn_Uy2P0wmqcV44Uzz4E,3002
|
271
276
|
huaweicloudsdkcbr/v1/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
272
277
|
huaweicloudsdkcbr/v1/region/cbr_region.py,sha256=qh4Ao4H-x0YX0qY_Rkw6do_FnNQrVpSvY8fv5R3lrVo,4570
|
273
|
-
huaweicloudsdkcbr-3.1.
|
274
|
-
huaweicloudsdkcbr-3.1.
|
275
|
-
huaweicloudsdkcbr-3.1.
|
276
|
-
huaweicloudsdkcbr-3.1.
|
277
|
-
huaweicloudsdkcbr-3.1.
|
278
|
+
huaweicloudsdkcbr-3.1.125.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
279
|
+
huaweicloudsdkcbr-3.1.125.dist-info/METADATA,sha256=ULtVhliXDfwDvNVAv114Zy4j7PuNuNyeKIEWEtql4xE,1135
|
280
|
+
huaweicloudsdkcbr-3.1.125.dist-info/WHEEL,sha256=Kh9pAotZVRFj97E15yTA4iADqXdQfIVTHcNaZTjxeGM,110
|
281
|
+
huaweicloudsdkcbr-3.1.125.dist-info/top_level.txt,sha256=CpXxi0Z24SDOTA3ZE_lGTbpC87AzndcF4s7WiMxpY0w,18
|
282
|
+
huaweicloudsdkcbr-3.1.125.dist-info/RECORD,,
|
File without changes
|
File without changes
|