huaweicloudsdkgaussdbforopengauss 3.1.125__py2.py3-none-any.whl → 3.1.126__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.
- huaweicloudsdkgaussdbforopengauss/v3/__init__.py +7 -0
- huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_async_client.py +136 -0
- huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_client.py +136 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/__init__.py +7 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/feature_result.py +289 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/gauss_db_error_response_body.py +142 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/list_features_request.py +143 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/list_features_response.py +116 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/update_features_request.py +168 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/update_features_request_body.py +114 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/update_features_response.py +116 -0
- {huaweicloudsdkgaussdbforopengauss-3.1.125.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.126.dist-info}/METADATA +2 -2
- {huaweicloudsdkgaussdbforopengauss-3.1.125.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.126.dist-info}/RECORD +16 -9
- {huaweicloudsdkgaussdbforopengauss-3.1.125.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.126.dist-info}/LICENSE +0 -0
- {huaweicloudsdkgaussdbforopengauss-3.1.125.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.126.dist-info}/WHEEL +0 -0
- {huaweicloudsdkgaussdbforopengauss-3.1.125.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.126.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,116 @@
|
|
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 UpdateFeaturesResponse(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
|
+
'job_id': 'str'
|
22
|
+
}
|
23
|
+
|
24
|
+
attribute_map = {
|
25
|
+
'job_id': 'job_id'
|
26
|
+
}
|
27
|
+
|
28
|
+
def __init__(self, job_id=None):
|
29
|
+
"""UpdateFeaturesResponse
|
30
|
+
|
31
|
+
The model defined in huaweicloud sdk
|
32
|
+
|
33
|
+
:param job_id: 工作流ID。
|
34
|
+
:type job_id: str
|
35
|
+
"""
|
36
|
+
|
37
|
+
super(UpdateFeaturesResponse, self).__init__()
|
38
|
+
|
39
|
+
self._job_id = None
|
40
|
+
self.discriminator = None
|
41
|
+
|
42
|
+
if job_id is not None:
|
43
|
+
self.job_id = job_id
|
44
|
+
|
45
|
+
@property
|
46
|
+
def job_id(self):
|
47
|
+
"""Gets the job_id of this UpdateFeaturesResponse.
|
48
|
+
|
49
|
+
工作流ID。
|
50
|
+
|
51
|
+
:return: The job_id of this UpdateFeaturesResponse.
|
52
|
+
:rtype: str
|
53
|
+
"""
|
54
|
+
return self._job_id
|
55
|
+
|
56
|
+
@job_id.setter
|
57
|
+
def job_id(self, job_id):
|
58
|
+
"""Sets the job_id of this UpdateFeaturesResponse.
|
59
|
+
|
60
|
+
工作流ID。
|
61
|
+
|
62
|
+
:param job_id: The job_id of this UpdateFeaturesResponse.
|
63
|
+
:type job_id: str
|
64
|
+
"""
|
65
|
+
self._job_id = job_id
|
66
|
+
|
67
|
+
def to_dict(self):
|
68
|
+
"""Returns the model properties as a dict"""
|
69
|
+
result = {}
|
70
|
+
|
71
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
72
|
+
value = getattr(self, attr)
|
73
|
+
if isinstance(value, list):
|
74
|
+
result[attr] = list(map(
|
75
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
76
|
+
value
|
77
|
+
))
|
78
|
+
elif hasattr(value, "to_dict"):
|
79
|
+
result[attr] = value.to_dict()
|
80
|
+
elif isinstance(value, dict):
|
81
|
+
result[attr] = dict(map(
|
82
|
+
lambda item: (item[0], item[1].to_dict())
|
83
|
+
if hasattr(item[1], "to_dict") else item,
|
84
|
+
value.items()
|
85
|
+
))
|
86
|
+
else:
|
87
|
+
if attr in self.sensitive_list:
|
88
|
+
result[attr] = "****"
|
89
|
+
else:
|
90
|
+
result[attr] = value
|
91
|
+
|
92
|
+
return result
|
93
|
+
|
94
|
+
def to_str(self):
|
95
|
+
"""Returns the string representation of the model"""
|
96
|
+
import simplejson as json
|
97
|
+
if six.PY2:
|
98
|
+
import sys
|
99
|
+
reload(sys)
|
100
|
+
sys.setdefaultencoding("utf-8")
|
101
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
102
|
+
|
103
|
+
def __repr__(self):
|
104
|
+
"""For `print`"""
|
105
|
+
return self.to_str()
|
106
|
+
|
107
|
+
def __eq__(self, other):
|
108
|
+
"""Returns true if both objects are equal"""
|
109
|
+
if not isinstance(other, UpdateFeaturesResponse):
|
110
|
+
return False
|
111
|
+
|
112
|
+
return self.__dict__ == other.__dict__
|
113
|
+
|
114
|
+
def __ne__(self, other):
|
115
|
+
"""Returns true if both objects are not equal"""
|
116
|
+
return not self == other
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkgaussdbforopengauss
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.126
|
4
4
|
Summary: GaussDBforopenGauss
|
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.126
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
@@ -1,8 +1,8 @@
|
|
1
1
|
huaweicloudsdkgaussdbforopengauss/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
huaweicloudsdkgaussdbforopengauss/v3/__init__.py,sha256=
|
3
|
-
huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_async_client.py,sha256=
|
4
|
-
huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_client.py,sha256=
|
5
|
-
huaweicloudsdkgaussdbforopengauss/v3/model/__init__.py,sha256=
|
2
|
+
huaweicloudsdkgaussdbforopengauss/v3/__init__.py,sha256=dknnNm0lLgSFs7hH2IWIUsgjtltC9vdlicS_kTGX3MU,40527
|
3
|
+
huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_async_client.py,sha256=Zv7qRxaXz4K2rk1ghkQBGAAVQe77E_vpRqcWq46NInU,272303
|
4
|
+
huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_client.py,sha256=99GXrS0P_mhtJh2tJ6NXcNFi6iHR2tiClcuNWUKx5Yk,272418
|
5
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/__init__.py,sha256=dZvxz3aLhidqEAa_lxK_6vnJRTpzUFE8yUduuZrCY5E,40345
|
6
6
|
huaweicloudsdkgaussdbforopengauss/v3/model/add_instance_tags_request.py,sha256=wWayfcbJ4P3MA7CINc1L_BEj_RNLWXExO8YR_m1US58,4784
|
7
7
|
huaweicloudsdkgaussdbforopengauss/v3/model/add_instance_tags_response.py,sha256=Z3MBz9wjgIqiNE3XJlcgsYJYKfIPvYYhoJIUsQ2uuiQ,4273
|
8
8
|
huaweicloudsdkgaussdbforopengauss/v3/model/add_tags_request_body.py,sha256=fV7_rS3Q-6vMRmostu9KLEwy4BPMnw7oqTmArLTosUE,3076
|
@@ -83,6 +83,7 @@ huaweicloudsdkgaussdbforopengauss/v3/model/download_backup_response.py,sha256=lP
|
|
83
83
|
huaweicloudsdkgaussdbforopengauss/v3/model/download_object.py,sha256=JegD6EnEuTcmEur1QYp7lDhJDQqU17dvZxNPwBK0Tc0,5873
|
84
84
|
huaweicloudsdkgaussdbforopengauss/v3/model/eps_quotas_option.py,sha256=vX47UaNBSR_ZLiWnG46twOR1wrpjrOmNaWFHN-SwXIc,7469
|
85
85
|
huaweicloudsdkgaussdbforopengauss/v3/model/error_response.py,sha256=ZDzyBX-v6FFPtcGlAJf6qNLpYnQPDpcPCRO2A-q5uN4,3768
|
86
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/feature_result.py,sha256=QPlFUv4J0CnljXslFuBCy876ZbVlqXOCTwIPgWvldiE,7476
|
86
87
|
huaweicloudsdkgaussdbforopengauss/v3/model/flavor.py,sha256=X05-cUUQv4kWoRiBU8UanYcAlekVer_TklhWm_ko_IQ,9561
|
87
88
|
huaweicloudsdkgaussdbforopengauss/v3/model/flavor_error_response.py,sha256=bo531BZD14LYJctfVGFpqUiFk7w9YeAiL60Ezqhpda4,3834
|
88
89
|
huaweicloudsdkgaussdbforopengauss/v3/model/flavor_result.py,sha256=AUD8Clv_krcb_yNqx2xsXlzaXNbQ6s6fb8LQkINhG40,9726
|
@@ -96,6 +97,7 @@ huaweicloudsdkgaussdbforopengauss/v3/model/gauss_d_bfor_open_gauss_user_for_crea
|
|
96
97
|
huaweicloudsdkgaussdbforopengauss/v3/model/gauss_d_bfor_open_gauss_user_for_list.py,sha256=wTUUST944g7wQiWKi6VXx3AsJSsWErnGtpDQ96-kyOY,5928
|
97
98
|
huaweicloudsdkgaussdbforopengauss/v3/model/gauss_d_bfor_open_gauss_user_for_list_attribute.py,sha256=pbqFVzyz8shMYRaZmQ301XLrnFEnEW7LjM13ZvQ2rho,12391
|
98
99
|
huaweicloudsdkgaussdbforopengauss/v3/model/gauss_d_bfor_open_gauss_user_with_privilege.py,sha256=WaFKkndJJEQHSIp5NwXd_6GW1hS471zLlSCi-9GtKug,6782
|
100
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/gauss_db_error_response_body.py,sha256=eDFSnxxJmwYRns2jVjZZAZr7E61ZGZktR0UfR9u2hg4,3889
|
99
101
|
huaweicloudsdkgaussdbforopengauss/v3/model/gauss_db_upgrade_instances_version_request.py,sha256=F5kjvs5rQ7zhwDVofG-U9i4UYlKsHpdN5X1yeddxRT4,7298
|
100
102
|
huaweicloudsdkgaussdbforopengauss/v3/model/get_restore_time_response_restore_time.py,sha256=RoezLqgaEl2kj9pS0EuJTYPuFKF3HIvS_whmjCDpEDc,4449
|
101
103
|
huaweicloudsdkgaussdbforopengauss/v3/model/hotfix_info.py,sha256=WSu0QXDRymkzulab56Ysu9bmxYzIKNSdoA2B0LbsEu4,5788
|
@@ -146,6 +148,8 @@ huaweicloudsdkgaussdbforopengauss/v3/model/list_db_users_response.py,sha256=tr99
|
|
146
148
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_diff_details_result.py,sha256=Xgx4UaxCYgopMWS9-HYQNuhPBjmnpL4VbxmtgWcRpZk,4831
|
147
149
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_eps_quotas_request.py,sha256=n-LZxtadHxMRcaRQUh-_rB17Y0_19zoEOIxW-SlcqgU,6944
|
148
150
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_eps_quotas_response.py,sha256=721ZzdiEj-RiV55fPSFFrRwNPTumiY__nJxFF-dwu2A,4339
|
151
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/list_features_request.py,sha256=hRMT1VfDTfqNnsefuPuUz7hj_LA26zdm08WQe07Qaq8,3896
|
152
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/list_features_response.py,sha256=Wa4Uy1D88M25DP0nZXOlv4ZyI0ywNUyGhVDXbUgbFpY,3423
|
149
153
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_flavor_info.py,sha256=eVR5kvvToansHvScUnOIFRs72JTeMPBNYcwk7BVteIs,3515
|
150
154
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_flavors_request.py,sha256=olkoUNMzsBQQsCBJ16kLYh3vbeJ5lq5PKbaSEOonwiA,7689
|
151
155
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_flavors_response.py,sha256=6Bo3Bnps0watmaycaISWtKkkfqVAYKD31d7TrE8WOlw,4081
|
@@ -348,6 +352,9 @@ huaweicloudsdkgaussdbforopengauss/v3/model/tags_option.py,sha256=lx82DBDPArCZNrn
|
|
348
352
|
huaweicloudsdkgaussdbforopengauss/v3/model/tags_result.py,sha256=eBhCo1uswwrlVHkq2b5jijDNb-v4Nv0GC-zcl1o_VaY,4288
|
349
353
|
huaweicloudsdkgaussdbforopengauss/v3/model/task_detail_result.py,sha256=H-Hb0e4RnQwhlQLg97E7m0-QJdklr0DePXk6Hu4bhcA,9365
|
350
354
|
huaweicloudsdkgaussdbforopengauss/v3/model/top_io_info.py,sha256=XpHf3dOlIl798Iot5YzrBcZwnWFAKZpTmlfjarYL_zI,11315
|
355
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/update_features_request.py,sha256=DDC2X9FkGMhqIOp__turwYb9ZLjmvNBLSmYvNcOCgrQ,4796
|
356
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/update_features_request_body.py,sha256=895Nn98wJlSxULAGtrIH8bZTEZKtW3RMMxPkCkbWXjc,3209
|
357
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/update_features_response.py,sha256=j6edqP6w_6nqaGNBkre2QbkZFufVWf-AO73hZSSBRwE,3170
|
351
358
|
huaweicloudsdkgaussdbforopengauss/v3/model/update_instance_configuration_request.py,sha256=STQbHjsGWxhGAeVWtoQoYsXcZdi-8Ed1ckk1kwFKTpQ,5067
|
352
359
|
huaweicloudsdkgaussdbforopengauss/v3/model/update_instance_configuration_response.py,sha256=d-3iUg1dZqZq9qHXVWw6nDi9gHWpuUeKmxqJLMQrkPw,4585
|
353
360
|
huaweicloudsdkgaussdbforopengauss/v3/model/update_instance_name_request.py,sha256=HP1Hlts8clORbJNTIg-J7284IyfoTd3Z_O2gXPyiwZs,4910
|
@@ -374,8 +381,8 @@ huaweicloudsdkgaussdbforopengauss/v3/model/validate_weak_password_response.py,sh
|
|
374
381
|
huaweicloudsdkgaussdbforopengauss/v3/model/weak_password_request_body.py,sha256=o6aHUH5vLvSBEf2BJZkKk4XCiwcJgVu7rHklOd476B0,3101
|
375
382
|
huaweicloudsdkgaussdbforopengauss/v3/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
376
383
|
huaweicloudsdkgaussdbforopengauss/v3/region/gaussdbforopengauss_region.py,sha256=FbNUZqtmwEpCo-_xezK3z0tAjKztPMC4CuuE3bF6nJg,3125
|
377
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
378
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
379
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
380
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
381
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
384
|
+
huaweicloudsdkgaussdbforopengauss-3.1.126.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
385
|
+
huaweicloudsdkgaussdbforopengauss-3.1.126.dist-info/METADATA,sha256=9i91nWMSUpw1qRHk2sH28ZWOjChdKqaPodEIGjdP_Zg,1183
|
386
|
+
huaweicloudsdkgaussdbforopengauss-3.1.126.dist-info/WHEEL,sha256=Kh9pAotZVRFj97E15yTA4iADqXdQfIVTHcNaZTjxeGM,110
|
387
|
+
huaweicloudsdkgaussdbforopengauss-3.1.126.dist-info/top_level.txt,sha256=Eu0Q0tFHFbnL_PjFOY4Uagc9Xd6tEIZWVieOKIvJ5-A,34
|
388
|
+
huaweicloudsdkgaussdbforopengauss-3.1.126.dist-info/RECORD,,
|
File without changes
|
File without changes
|