huaweicloudsdkgaussdb 3.1.95__py2.py3-none-any.whl → 3.1.97__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.
Files changed (78) hide show
  1. huaweicloudsdkgaussdb/v3/__init__.py +69 -0
  2. huaweicloudsdkgaussdb/v3/gaussdb_async_client.py +1101 -66
  3. huaweicloudsdkgaussdb/v3/gaussdb_client.py +1101 -66
  4. huaweicloudsdkgaussdb/v3/model/__init__.py +69 -0
  5. huaweicloudsdkgaussdb/v3/model/check_star_rocks_resource_request.py +140 -0
  6. huaweicloudsdkgaussdb/v3/model/check_star_rocks_resource_response.py +116 -0
  7. huaweicloudsdkgaussdb/v3/model/create_star_rocks_database_user_request.py +168 -0
  8. huaweicloudsdkgaussdb/v3/model/create_star_rocks_database_user_response.py +116 -0
  9. huaweicloudsdkgaussdb/v3/model/create_starrocks_instance_request.py +168 -0
  10. huaweicloudsdkgaussdb/v3/model/create_starrocks_instance_response.py +141 -0
  11. huaweicloudsdkgaussdb/v3/model/delete_star_rocks_database_user_request.py +171 -0
  12. huaweicloudsdkgaussdb/v3/model/delete_star_rocks_database_user_response.py +116 -0
  13. huaweicloudsdkgaussdb/v3/model/delete_starrocks_instance_request.py +171 -0
  14. huaweicloudsdkgaussdb/v3/model/delete_starrocks_instance_response.py +116 -0
  15. huaweicloudsdkgaussdb/v3/model/htap_flavor_info_flavors.py +318 -0
  16. huaweicloudsdkgaussdb/v3/model/htap_instance_list_available_zones.py +173 -0
  17. huaweicloudsdkgaussdb/v3/model/htap_instance_list_instance_state.py +202 -0
  18. huaweicloudsdkgaussdb/v3/model/htap_instance_list_instances.py +832 -0
  19. huaweicloudsdkgaussdb/v3/model/htap_instance_list_network.py +173 -0
  20. huaweicloudsdkgaussdb/v3/model/htap_storage_type_storage_type.py +173 -0
  21. huaweicloudsdkgaussdb/v3/model/list_htap_data_store_request.py +143 -0
  22. huaweicloudsdkgaussdb/v3/model/list_htap_data_store_response.py +116 -0
  23. huaweicloudsdkgaussdb/v3/model/list_htap_flavor_request.py +230 -0
  24. huaweicloudsdkgaussdb/v3/model/list_htap_flavor_response.py +116 -0
  25. huaweicloudsdkgaussdb/v3/model/list_htap_instance_info_request.py +143 -0
  26. huaweicloudsdkgaussdb/v3/model/list_htap_instance_info_response.py +174 -0
  27. huaweicloudsdkgaussdb/v3/model/list_htap_storage_type_request.py +171 -0
  28. huaweicloudsdkgaussdb/v3/model/list_htap_storage_type_response.py +116 -0
  29. huaweicloudsdkgaussdb/v3/model/list_starrocks_instance_info_request.py +171 -0
  30. huaweicloudsdkgaussdb/v3/model/list_starrocks_instance_info_response.py +116 -0
  31. huaweicloudsdkgaussdb/v3/model/param_group.py +144 -0
  32. huaweicloudsdkgaussdb/v3/model/query_action.py +318 -0
  33. huaweicloudsdkgaussdb/v3/model/readable_node_infos.py +173 -0
  34. huaweicloudsdkgaussdb/v3/model/resource_check.py +138 -0
  35. huaweicloudsdkgaussdb/v3/model/resource_check_resource.py +367 -0
  36. huaweicloudsdkgaussdb/v3/model/restart_starrocks_instance_request.py +143 -0
  37. huaweicloudsdkgaussdb/v3/model/restart_starrocks_instance_response.py +116 -0
  38. huaweicloudsdkgaussdb/v3/model/restart_starrocks_node_request.py +171 -0
  39. huaweicloudsdkgaussdb/v3/model/restart_starrocks_node_response.py +116 -0
  40. huaweicloudsdkgaussdb/v3/model/show_star_rocks_database_user_request.py +228 -0
  41. huaweicloudsdkgaussdb/v3/model/show_star_rocks_database_user_response.py +145 -0
  42. huaweicloudsdkgaussdb/v3/model/show_star_rocks_database_users_user_details.py +198 -0
  43. huaweicloudsdkgaussdb/v3/model/sr_create_instance_rsp_instance.py +538 -0
  44. huaweicloudsdkgaussdb/v3/model/sr_create_instance_rsp_instance_engine.py +144 -0
  45. huaweicloudsdkgaussdb/v3/model/sr_create_instance_rsp_instance_pay_info.py +231 -0
  46. huaweicloudsdkgaussdb/v3/model/sr_create_instance_rsp_instance_tags_info.py +144 -0
  47. huaweicloudsdkgaussdb/v3/model/sr_create_instance_rsp_instance_tags_info_sys_tags.py +144 -0
  48. huaweicloudsdkgaussdb/v3/model/sr_create_instance_rsp_instance_tags_info_tags.py +144 -0
  49. huaweicloudsdkgaussdb/v3/model/sr_data_stores_datastores.py +173 -0
  50. huaweicloudsdkgaussdb/v3/model/star_rocks_create_request.py +459 -0
  51. huaweicloudsdkgaussdb/v3/model/star_rocks_create_request_be_volume.py +142 -0
  52. huaweicloudsdkgaussdb/v3/model/star_rocks_create_request_engine.py +142 -0
  53. huaweicloudsdkgaussdb/v3/model/star_rocks_create_request_fe_volume.py +142 -0
  54. huaweicloudsdkgaussdb/v3/model/star_rocks_create_request_ha.py +114 -0
  55. huaweicloudsdkgaussdb/v3/model/star_rocks_create_request_tags_info.py +114 -0
  56. huaweicloudsdkgaussdb/v3/model/star_rocks_create_request_tags_info_sys_tags.py +142 -0
  57. huaweicloudsdkgaussdb/v3/model/star_rocks_database_user_info.py +228 -0
  58. huaweicloudsdkgaussdb/v3/model/star_rocks_database_user_p_sinfo.py +201 -0
  59. huaweicloudsdkgaussdb/v3/model/star_rocks_database_user_p_winfo.py +142 -0
  60. huaweicloudsdkgaussdb/v3/model/star_rocks_instance_info_datastore.py +173 -0
  61. huaweicloudsdkgaussdb/v3/model/star_rocks_instance_info_groups.py +231 -0
  62. huaweicloudsdkgaussdb/v3/model/star_rocks_instance_info_instances.py +1292 -0
  63. huaweicloudsdkgaussdb/v3/model/star_rocks_instance_info_nodes.py +1006 -0
  64. huaweicloudsdkgaussdb/v3/model/star_rocks_instance_info_ops_window.py +173 -0
  65. huaweicloudsdkgaussdb/v3/model/star_rocks_instance_info_port_info.py +115 -0
  66. huaweicloudsdkgaussdb/v3/model/star_rocks_instance_info_tags_info.py +144 -0
  67. huaweicloudsdkgaussdb/v3/model/star_rocks_instance_info_tags_info_sys_tags.py +144 -0
  68. huaweicloudsdkgaussdb/v3/model/star_rocks_instance_info_tags_info_tags.py +144 -0
  69. huaweicloudsdkgaussdb/v3/model/star_rocks_instance_info_volume.py +144 -0
  70. huaweicloudsdkgaussdb/v3/model/update_star_rocks_database_user_password_request.py +168 -0
  71. huaweicloudsdkgaussdb/v3/model/update_star_rocks_database_user_password_response.py +116 -0
  72. huaweicloudsdkgaussdb/v3/model/update_star_rocks_database_user_permission_request.py +168 -0
  73. huaweicloudsdkgaussdb/v3/model/update_star_rocks_database_user_permission_response.py +116 -0
  74. {huaweicloudsdkgaussdb-3.1.95.dist-info → huaweicloudsdkgaussdb-3.1.97.dist-info}/METADATA +2 -2
  75. {huaweicloudsdkgaussdb-3.1.95.dist-info → huaweicloudsdkgaussdb-3.1.97.dist-info}/RECORD +78 -9
  76. {huaweicloudsdkgaussdb-3.1.95.dist-info → huaweicloudsdkgaussdb-3.1.97.dist-info}/LICENSE +0 -0
  77. {huaweicloudsdkgaussdb-3.1.95.dist-info → huaweicloudsdkgaussdb-3.1.97.dist-info}/WHEEL +0 -0
  78. {huaweicloudsdkgaussdb-3.1.95.dist-info → huaweicloudsdkgaussdb-3.1.97.dist-info}/top_level.txt +0 -0
@@ -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 StarRocksInstanceInfoTagsInfoTags:
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
+ 'key': 'str',
21
+ 'value': 'str'
22
+ }
23
+
24
+ attribute_map = {
25
+ 'key': 'key',
26
+ 'value': 'value'
27
+ }
28
+
29
+ def __init__(self, key=None, value=None):
30
+ """StarRocksInstanceInfoTagsInfoTags
31
+
32
+ The model defined in huaweicloud sdk
33
+
34
+ :param key: 标签键。最大长度36个unicode字符。key不能为空或者空字符串,不能为空格。 字符集:A-Z,a-z ,0-9,‘-’,‘_’,UNICODE字符(\\u4E00-\\u9FFF)。
35
+ :type key: str
36
+ :param value: 标签值。最大长度43个unicode字符。可以为空字符串。 字符集:A-Z,a-z ,0-9,‘.’,‘-’,‘_’,UNICODE字符(\\u4E00-\\u9FFF)。
37
+ :type value: str
38
+ """
39
+
40
+
41
+
42
+ self._key = None
43
+ self._value = None
44
+ self.discriminator = None
45
+
46
+ if key is not None:
47
+ self.key = key
48
+ if value is not None:
49
+ self.value = value
50
+
51
+ @property
52
+ def key(self):
53
+ """Gets the key of this StarRocksInstanceInfoTagsInfoTags.
54
+
55
+ 标签键。最大长度36个unicode字符。key不能为空或者空字符串,不能为空格。 字符集:A-Z,a-z ,0-9,‘-’,‘_’,UNICODE字符(\\u4E00-\\u9FFF)。
56
+
57
+ :return: The key of this StarRocksInstanceInfoTagsInfoTags.
58
+ :rtype: str
59
+ """
60
+ return self._key
61
+
62
+ @key.setter
63
+ def key(self, key):
64
+ """Sets the key of this StarRocksInstanceInfoTagsInfoTags.
65
+
66
+ 标签键。最大长度36个unicode字符。key不能为空或者空字符串,不能为空格。 字符集:A-Z,a-z ,0-9,‘-’,‘_’,UNICODE字符(\\u4E00-\\u9FFF)。
67
+
68
+ :param key: The key of this StarRocksInstanceInfoTagsInfoTags.
69
+ :type key: str
70
+ """
71
+ self._key = key
72
+
73
+ @property
74
+ def value(self):
75
+ """Gets the value of this StarRocksInstanceInfoTagsInfoTags.
76
+
77
+ 标签值。最大长度43个unicode字符。可以为空字符串。 字符集:A-Z,a-z ,0-9,‘.’,‘-’,‘_’,UNICODE字符(\\u4E00-\\u9FFF)。
78
+
79
+ :return: The value of this StarRocksInstanceInfoTagsInfoTags.
80
+ :rtype: str
81
+ """
82
+ return self._value
83
+
84
+ @value.setter
85
+ def value(self, value):
86
+ """Sets the value of this StarRocksInstanceInfoTagsInfoTags.
87
+
88
+ 标签值。最大长度43个unicode字符。可以为空字符串。 字符集:A-Z,a-z ,0-9,‘.’,‘-’,‘_’,UNICODE字符(\\u4E00-\\u9FFF)。
89
+
90
+ :param value: The value of this StarRocksInstanceInfoTagsInfoTags.
91
+ :type value: str
92
+ """
93
+ self._value = value
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, StarRocksInstanceInfoTagsInfoTags):
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
@@ -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 StarRocksInstanceInfoVolume:
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
+ 'type': 'str',
21
+ 'size': 'str'
22
+ }
23
+
24
+ attribute_map = {
25
+ 'type': 'type',
26
+ 'size': 'size'
27
+ }
28
+
29
+ def __init__(self, type=None, size=None):
30
+ """StarRocksInstanceInfoVolume
31
+
32
+ The model defined in huaweicloud sdk
33
+
34
+ :param type: 实例节点存储类型。
35
+ :type type: str
36
+ :param size: 实例节点存储大小。
37
+ :type size: str
38
+ """
39
+
40
+
41
+
42
+ self._type = None
43
+ self._size = None
44
+ self.discriminator = None
45
+
46
+ if type is not None:
47
+ self.type = type
48
+ if size is not None:
49
+ self.size = size
50
+
51
+ @property
52
+ def type(self):
53
+ """Gets the type of this StarRocksInstanceInfoVolume.
54
+
55
+ 实例节点存储类型。
56
+
57
+ :return: The type of this StarRocksInstanceInfoVolume.
58
+ :rtype: str
59
+ """
60
+ return self._type
61
+
62
+ @type.setter
63
+ def type(self, type):
64
+ """Sets the type of this StarRocksInstanceInfoVolume.
65
+
66
+ 实例节点存储类型。
67
+
68
+ :param type: The type of this StarRocksInstanceInfoVolume.
69
+ :type type: str
70
+ """
71
+ self._type = type
72
+
73
+ @property
74
+ def size(self):
75
+ """Gets the size of this StarRocksInstanceInfoVolume.
76
+
77
+ 实例节点存储大小。
78
+
79
+ :return: The size of this StarRocksInstanceInfoVolume.
80
+ :rtype: str
81
+ """
82
+ return self._size
83
+
84
+ @size.setter
85
+ def size(self, size):
86
+ """Sets the size of this StarRocksInstanceInfoVolume.
87
+
88
+ 实例节点存储大小。
89
+
90
+ :param size: The size of this StarRocksInstanceInfoVolume.
91
+ :type size: str
92
+ """
93
+ self._size = size
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, StarRocksInstanceInfoVolume):
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
@@ -0,0 +1,168 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class UpdateStarRocksDatabaseUserPasswordRequest:
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
+ 'instance_id': 'str',
21
+ 'x_language': 'str',
22
+ 'body': 'StarRocksDatabaseUserPWinfo'
23
+ }
24
+
25
+ attribute_map = {
26
+ 'instance_id': 'instance_id',
27
+ 'x_language': 'X-Language',
28
+ 'body': 'body'
29
+ }
30
+
31
+ def __init__(self, instance_id=None, x_language=None, body=None):
32
+ """UpdateStarRocksDatabaseUserPasswordRequest
33
+
34
+ The model defined in huaweicloud sdk
35
+
36
+ :param instance_id: StarRocks实例ID,严格匹配UUID规则。
37
+ :type instance_id: str
38
+ :param x_language: 请求语言类型。默认en-us。 取值范围: - en-us - zh-cn
39
+ :type x_language: str
40
+ :param body: Body of the UpdateStarRocksDatabaseUserPasswordRequest
41
+ :type body: :class:`huaweicloudsdkgaussdb.v3.StarRocksDatabaseUserPWinfo`
42
+ """
43
+
44
+
45
+
46
+ self._instance_id = None
47
+ self._x_language = None
48
+ self._body = None
49
+ self.discriminator = None
50
+
51
+ self.instance_id = instance_id
52
+ if x_language is not None:
53
+ self.x_language = x_language
54
+ if body is not None:
55
+ self.body = body
56
+
57
+ @property
58
+ def instance_id(self):
59
+ """Gets the instance_id of this UpdateStarRocksDatabaseUserPasswordRequest.
60
+
61
+ StarRocks实例ID,严格匹配UUID规则。
62
+
63
+ :return: The instance_id of this UpdateStarRocksDatabaseUserPasswordRequest.
64
+ :rtype: str
65
+ """
66
+ return self._instance_id
67
+
68
+ @instance_id.setter
69
+ def instance_id(self, instance_id):
70
+ """Sets the instance_id of this UpdateStarRocksDatabaseUserPasswordRequest.
71
+
72
+ StarRocks实例ID,严格匹配UUID规则。
73
+
74
+ :param instance_id: The instance_id of this UpdateStarRocksDatabaseUserPasswordRequest.
75
+ :type instance_id: str
76
+ """
77
+ self._instance_id = instance_id
78
+
79
+ @property
80
+ def x_language(self):
81
+ """Gets the x_language of this UpdateStarRocksDatabaseUserPasswordRequest.
82
+
83
+ 请求语言类型。默认en-us。 取值范围: - en-us - zh-cn
84
+
85
+ :return: The x_language of this UpdateStarRocksDatabaseUserPasswordRequest.
86
+ :rtype: str
87
+ """
88
+ return self._x_language
89
+
90
+ @x_language.setter
91
+ def x_language(self, x_language):
92
+ """Sets the x_language of this UpdateStarRocksDatabaseUserPasswordRequest.
93
+
94
+ 请求语言类型。默认en-us。 取值范围: - en-us - zh-cn
95
+
96
+ :param x_language: The x_language of this UpdateStarRocksDatabaseUserPasswordRequest.
97
+ :type x_language: str
98
+ """
99
+ self._x_language = x_language
100
+
101
+ @property
102
+ def body(self):
103
+ """Gets the body of this UpdateStarRocksDatabaseUserPasswordRequest.
104
+
105
+ :return: The body of this UpdateStarRocksDatabaseUserPasswordRequest.
106
+ :rtype: :class:`huaweicloudsdkgaussdb.v3.StarRocksDatabaseUserPWinfo`
107
+ """
108
+ return self._body
109
+
110
+ @body.setter
111
+ def body(self, body):
112
+ """Sets the body of this UpdateStarRocksDatabaseUserPasswordRequest.
113
+
114
+ :param body: The body of this UpdateStarRocksDatabaseUserPasswordRequest.
115
+ :type body: :class:`huaweicloudsdkgaussdb.v3.StarRocksDatabaseUserPWinfo`
116
+ """
117
+ self._body = body
118
+
119
+ def to_dict(self):
120
+ """Returns the model properties as a dict"""
121
+ result = {}
122
+
123
+ for attr, _ in six.iteritems(self.openapi_types):
124
+ value = getattr(self, attr)
125
+ if isinstance(value, list):
126
+ result[attr] = list(map(
127
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
128
+ value
129
+ ))
130
+ elif hasattr(value, "to_dict"):
131
+ result[attr] = value.to_dict()
132
+ elif isinstance(value, dict):
133
+ result[attr] = dict(map(
134
+ lambda item: (item[0], item[1].to_dict())
135
+ if hasattr(item[1], "to_dict") else item,
136
+ value.items()
137
+ ))
138
+ else:
139
+ if attr in self.sensitive_list:
140
+ result[attr] = "****"
141
+ else:
142
+ result[attr] = value
143
+
144
+ return result
145
+
146
+ def to_str(self):
147
+ """Returns the string representation of the model"""
148
+ import simplejson as json
149
+ if six.PY2:
150
+ import sys
151
+ reload(sys)
152
+ sys.setdefaultencoding("utf-8")
153
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
154
+
155
+ def __repr__(self):
156
+ """For `print`"""
157
+ return self.to_str()
158
+
159
+ def __eq__(self, other):
160
+ """Returns true if both objects are equal"""
161
+ if not isinstance(other, UpdateStarRocksDatabaseUserPasswordRequest):
162
+ return False
163
+
164
+ return self.__dict__ == other.__dict__
165
+
166
+ def __ne__(self, other):
167
+ """Returns true if both objects are not equal"""
168
+ return not self == other
@@ -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 UpdateStarRocksDatabaseUserPasswordResponse(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
+ 'result': 'str'
22
+ }
23
+
24
+ attribute_map = {
25
+ 'result': 'result'
26
+ }
27
+
28
+ def __init__(self, result=None):
29
+ """UpdateStarRocksDatabaseUserPasswordResponse
30
+
31
+ The model defined in huaweicloud sdk
32
+
33
+ :param result: 请求结果。
34
+ :type result: str
35
+ """
36
+
37
+ super(UpdateStarRocksDatabaseUserPasswordResponse, self).__init__()
38
+
39
+ self._result = None
40
+ self.discriminator = None
41
+
42
+ if result is not None:
43
+ self.result = result
44
+
45
+ @property
46
+ def result(self):
47
+ """Gets the result of this UpdateStarRocksDatabaseUserPasswordResponse.
48
+
49
+ 请求结果。
50
+
51
+ :return: The result of this UpdateStarRocksDatabaseUserPasswordResponse.
52
+ :rtype: str
53
+ """
54
+ return self._result
55
+
56
+ @result.setter
57
+ def result(self, result):
58
+ """Sets the result of this UpdateStarRocksDatabaseUserPasswordResponse.
59
+
60
+ 请求结果。
61
+
62
+ :param result: The result of this UpdateStarRocksDatabaseUserPasswordResponse.
63
+ :type result: str
64
+ """
65
+ self._result = result
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, UpdateStarRocksDatabaseUserPasswordResponse):
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