huaweicloudsdkgaussdb 3.1.93__py2.py3-none-any.whl → 3.1.95__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 (37) hide show
  1. huaweicloudsdkgaussdb/v3/__init__.py +28 -0
  2. huaweicloudsdkgaussdb/v3/gaussdb_async_client.py +556 -0
  3. huaweicloudsdkgaussdb/v3/gaussdb_client.py +556 -0
  4. huaweicloudsdkgaussdb/v3/model/__init__.py +28 -0
  5. huaweicloudsdkgaussdb/v3/model/check_data_base_config_request.py +167 -0
  6. huaweicloudsdkgaussdb/v3/model/check_data_base_config_response.py +232 -0
  7. huaweicloudsdkgaussdb/v3/model/check_table_config_request.py +167 -0
  8. huaweicloudsdkgaussdb/v3/model/check_table_config_response.py +203 -0
  9. huaweicloudsdkgaussdb/v3/model/create_star_rocks_data_replication.py +227 -0
  10. huaweicloudsdkgaussdb/v3/model/create_star_rocks_data_replication_request.py +167 -0
  11. huaweicloudsdkgaussdb/v3/model/create_star_rocks_data_replication_response.py +116 -0
  12. huaweicloudsdkgaussdb/v3/model/data_base_info.py +144 -0
  13. huaweicloudsdkgaussdb/v3/model/db_config.py +144 -0
  14. huaweicloudsdkgaussdb/v3/model/db_config_check_request_v3.py +285 -0
  15. huaweicloudsdkgaussdb/v3/model/db_config_check_result.py +173 -0
  16. huaweicloudsdkgaussdb/v3/model/db_parameter.py +231 -0
  17. huaweicloudsdkgaussdb/v3/model/delete_star_rocks_data_replication.py +115 -0
  18. huaweicloudsdkgaussdb/v3/model/delete_star_rocks_data_replication_request.py +167 -0
  19. huaweicloudsdkgaussdb/v3/model/delete_star_rocks_data_replication_response.py +116 -0
  20. huaweicloudsdkgaussdb/v3/model/list_star_rocks_data_bases_request.py +229 -0
  21. huaweicloudsdkgaussdb/v3/model/list_star_rocks_data_bases_response.py +174 -0
  22. huaweicloudsdkgaussdb/v3/model/list_star_rocks_data_replication_config_request.py +170 -0
  23. huaweicloudsdkgaussdb/v3/model/list_star_rocks_data_replication_config_response.py +336 -0
  24. huaweicloudsdkgaussdb/v3/model/list_star_rocks_data_replications_request.py +200 -0
  25. huaweicloudsdkgaussdb/v3/model/list_star_rocks_data_replications_response.py +174 -0
  26. huaweicloudsdkgaussdb/v3/model/list_star_rocks_db_parameters_request.py +142 -0
  27. huaweicloudsdkgaussdb/v3/model/list_star_rocks_db_parameters_response.py +116 -0
  28. huaweicloudsdkgaussdb/v3/model/star_rocks_replication_info.py +318 -0
  29. huaweicloudsdkgaussdb/v3/model/table_config_check_request_v3.py +285 -0
  30. huaweicloudsdkgaussdb/v3/model/table_config_check_result.py +173 -0
  31. huaweicloudsdkgaussdb/v3/model/table_repl_config.py +173 -0
  32. huaweicloudsdkgaussdb/v3/model/tables_config.py +144 -0
  33. {huaweicloudsdkgaussdb-3.1.93.dist-info → huaweicloudsdkgaussdb-3.1.95.dist-info}/METADATA +2 -2
  34. {huaweicloudsdkgaussdb-3.1.93.dist-info → huaweicloudsdkgaussdb-3.1.95.dist-info}/RECORD +37 -9
  35. {huaweicloudsdkgaussdb-3.1.93.dist-info → huaweicloudsdkgaussdb-3.1.95.dist-info}/LICENSE +0 -0
  36. {huaweicloudsdkgaussdb-3.1.93.dist-info → huaweicloudsdkgaussdb-3.1.95.dist-info}/WHEEL +0 -0
  37. {huaweicloudsdkgaussdb-3.1.93.dist-info → huaweicloudsdkgaussdb-3.1.95.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,173 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class TableConfigCheckResult:
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
+ 'table_name': 'str',
21
+ 'table_config': 'str',
22
+ 'check_result': 'str'
23
+ }
24
+
25
+ attribute_map = {
26
+ 'table_name': 'table_name',
27
+ 'table_config': 'table_config',
28
+ 'check_result': 'check_result'
29
+ }
30
+
31
+ def __init__(self, table_name=None, table_config=None, check_result=None):
32
+ """TableConfigCheckResult
33
+
34
+ The model defined in huaweicloud sdk
35
+
36
+ :param table_name: 表名。
37
+ :type table_name: str
38
+ :param table_config: 表配置项。
39
+ :type table_config: str
40
+ :param check_result: 校验结果。
41
+ :type check_result: str
42
+ """
43
+
44
+
45
+
46
+ self._table_name = None
47
+ self._table_config = None
48
+ self._check_result = None
49
+ self.discriminator = None
50
+
51
+ if table_name is not None:
52
+ self.table_name = table_name
53
+ if table_config is not None:
54
+ self.table_config = table_config
55
+ if check_result is not None:
56
+ self.check_result = check_result
57
+
58
+ @property
59
+ def table_name(self):
60
+ """Gets the table_name of this TableConfigCheckResult.
61
+
62
+ 表名。
63
+
64
+ :return: The table_name of this TableConfigCheckResult.
65
+ :rtype: str
66
+ """
67
+ return self._table_name
68
+
69
+ @table_name.setter
70
+ def table_name(self, table_name):
71
+ """Sets the table_name of this TableConfigCheckResult.
72
+
73
+ 表名。
74
+
75
+ :param table_name: The table_name of this TableConfigCheckResult.
76
+ :type table_name: str
77
+ """
78
+ self._table_name = table_name
79
+
80
+ @property
81
+ def table_config(self):
82
+ """Gets the table_config of this TableConfigCheckResult.
83
+
84
+ 表配置项。
85
+
86
+ :return: The table_config of this TableConfigCheckResult.
87
+ :rtype: str
88
+ """
89
+ return self._table_config
90
+
91
+ @table_config.setter
92
+ def table_config(self, table_config):
93
+ """Sets the table_config of this TableConfigCheckResult.
94
+
95
+ 表配置项。
96
+
97
+ :param table_config: The table_config of this TableConfigCheckResult.
98
+ :type table_config: str
99
+ """
100
+ self._table_config = table_config
101
+
102
+ @property
103
+ def check_result(self):
104
+ """Gets the check_result of this TableConfigCheckResult.
105
+
106
+ 校验结果。
107
+
108
+ :return: The check_result of this TableConfigCheckResult.
109
+ :rtype: str
110
+ """
111
+ return self._check_result
112
+
113
+ @check_result.setter
114
+ def check_result(self, check_result):
115
+ """Sets the check_result of this TableConfigCheckResult.
116
+
117
+ 校验结果。
118
+
119
+ :param check_result: The check_result of this TableConfigCheckResult.
120
+ :type check_result: str
121
+ """
122
+ self._check_result = check_result
123
+
124
+ def to_dict(self):
125
+ """Returns the model properties as a dict"""
126
+ result = {}
127
+
128
+ for attr, _ in six.iteritems(self.openapi_types):
129
+ value = getattr(self, attr)
130
+ if isinstance(value, list):
131
+ result[attr] = list(map(
132
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
133
+ value
134
+ ))
135
+ elif hasattr(value, "to_dict"):
136
+ result[attr] = value.to_dict()
137
+ elif isinstance(value, dict):
138
+ result[attr] = dict(map(
139
+ lambda item: (item[0], item[1].to_dict())
140
+ if hasattr(item[1], "to_dict") else item,
141
+ value.items()
142
+ ))
143
+ else:
144
+ if attr in self.sensitive_list:
145
+ result[attr] = "****"
146
+ else:
147
+ result[attr] = value
148
+
149
+ return result
150
+
151
+ def to_str(self):
152
+ """Returns the string representation of the model"""
153
+ import simplejson as json
154
+ if six.PY2:
155
+ import sys
156
+ reload(sys)
157
+ sys.setdefaultencoding("utf-8")
158
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
159
+
160
+ def __repr__(self):
161
+ """For `print`"""
162
+ return self.to_str()
163
+
164
+ def __eq__(self, other):
165
+ """Returns true if both objects are equal"""
166
+ if not isinstance(other, TableConfigCheckResult):
167
+ return False
168
+
169
+ return self.__dict__ == other.__dict__
170
+
171
+ def __ne__(self, other):
172
+ """Returns true if both objects are not equal"""
173
+ return not self == other
@@ -0,0 +1,173 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class TableReplConfig:
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
+ 'repl_type': 'str',
21
+ 'repl_scope': 'str',
22
+ 'tables': 'list[str]'
23
+ }
24
+
25
+ attribute_map = {
26
+ 'repl_type': 'repl_type',
27
+ 'repl_scope': 'repl_scope',
28
+ 'tables': 'tables'
29
+ }
30
+
31
+ def __init__(self, repl_type=None, repl_scope=None, tables=None):
32
+ """TableReplConfig
33
+
34
+ The model defined in huaweicloud sdk
35
+
36
+ :param repl_type: 表同步类型。include_tables:白名单,exclude_tables:黑名单。
37
+ :type repl_type: str
38
+ :param repl_scope: 表同步范围。all:全量同步,part:部分同步。
39
+ :type repl_scope: str
40
+ :param tables: 白名单或黑名单的表范围。
41
+ :type tables: list[str]
42
+ """
43
+
44
+
45
+
46
+ self._repl_type = None
47
+ self._repl_scope = None
48
+ self._tables = None
49
+ self.discriminator = None
50
+
51
+ if repl_type is not None:
52
+ self.repl_type = repl_type
53
+ if repl_scope is not None:
54
+ self.repl_scope = repl_scope
55
+ if tables is not None:
56
+ self.tables = tables
57
+
58
+ @property
59
+ def repl_type(self):
60
+ """Gets the repl_type of this TableReplConfig.
61
+
62
+ 表同步类型。include_tables:白名单,exclude_tables:黑名单。
63
+
64
+ :return: The repl_type of this TableReplConfig.
65
+ :rtype: str
66
+ """
67
+ return self._repl_type
68
+
69
+ @repl_type.setter
70
+ def repl_type(self, repl_type):
71
+ """Sets the repl_type of this TableReplConfig.
72
+
73
+ 表同步类型。include_tables:白名单,exclude_tables:黑名单。
74
+
75
+ :param repl_type: The repl_type of this TableReplConfig.
76
+ :type repl_type: str
77
+ """
78
+ self._repl_type = repl_type
79
+
80
+ @property
81
+ def repl_scope(self):
82
+ """Gets the repl_scope of this TableReplConfig.
83
+
84
+ 表同步范围。all:全量同步,part:部分同步。
85
+
86
+ :return: The repl_scope of this TableReplConfig.
87
+ :rtype: str
88
+ """
89
+ return self._repl_scope
90
+
91
+ @repl_scope.setter
92
+ def repl_scope(self, repl_scope):
93
+ """Sets the repl_scope of this TableReplConfig.
94
+
95
+ 表同步范围。all:全量同步,part:部分同步。
96
+
97
+ :param repl_scope: The repl_scope of this TableReplConfig.
98
+ :type repl_scope: str
99
+ """
100
+ self._repl_scope = repl_scope
101
+
102
+ @property
103
+ def tables(self):
104
+ """Gets the tables of this TableReplConfig.
105
+
106
+ 白名单或黑名单的表范围。
107
+
108
+ :return: The tables of this TableReplConfig.
109
+ :rtype: list[str]
110
+ """
111
+ return self._tables
112
+
113
+ @tables.setter
114
+ def tables(self, tables):
115
+ """Sets the tables of this TableReplConfig.
116
+
117
+ 白名单或黑名单的表范围。
118
+
119
+ :param tables: The tables of this TableReplConfig.
120
+ :type tables: list[str]
121
+ """
122
+ self._tables = tables
123
+
124
+ def to_dict(self):
125
+ """Returns the model properties as a dict"""
126
+ result = {}
127
+
128
+ for attr, _ in six.iteritems(self.openapi_types):
129
+ value = getattr(self, attr)
130
+ if isinstance(value, list):
131
+ result[attr] = list(map(
132
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
133
+ value
134
+ ))
135
+ elif hasattr(value, "to_dict"):
136
+ result[attr] = value.to_dict()
137
+ elif isinstance(value, dict):
138
+ result[attr] = dict(map(
139
+ lambda item: (item[0], item[1].to_dict())
140
+ if hasattr(item[1], "to_dict") else item,
141
+ value.items()
142
+ ))
143
+ else:
144
+ if attr in self.sensitive_list:
145
+ result[attr] = "****"
146
+ else:
147
+ result[attr] = value
148
+
149
+ return result
150
+
151
+ def to_str(self):
152
+ """Returns the string representation of the model"""
153
+ import simplejson as json
154
+ if six.PY2:
155
+ import sys
156
+ reload(sys)
157
+ sys.setdefaultencoding("utf-8")
158
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
159
+
160
+ def __repr__(self):
161
+ """For `print`"""
162
+ return self.to_str()
163
+
164
+ def __eq__(self, other):
165
+ """Returns true if both objects are equal"""
166
+ if not isinstance(other, TableReplConfig):
167
+ return False
168
+
169
+ return self.__dict__ == other.__dict__
170
+
171
+ def __ne__(self, other):
172
+ """Returns true if both objects are not equal"""
173
+ 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 TablesConfig:
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
+ 'table_name': 'str',
21
+ 'table_config': 'str'
22
+ }
23
+
24
+ attribute_map = {
25
+ 'table_name': 'table_name',
26
+ 'table_config': 'table_config'
27
+ }
28
+
29
+ def __init__(self, table_name=None, table_config=None):
30
+ """TablesConfig
31
+
32
+ The model defined in huaweicloud sdk
33
+
34
+ :param table_name: 表名。
35
+ :type table_name: str
36
+ :param table_config: 表配置值。
37
+ :type table_config: str
38
+ """
39
+
40
+
41
+
42
+ self._table_name = None
43
+ self._table_config = None
44
+ self.discriminator = None
45
+
46
+ if table_name is not None:
47
+ self.table_name = table_name
48
+ if table_config is not None:
49
+ self.table_config = table_config
50
+
51
+ @property
52
+ def table_name(self):
53
+ """Gets the table_name of this TablesConfig.
54
+
55
+ 表名。
56
+
57
+ :return: The table_name of this TablesConfig.
58
+ :rtype: str
59
+ """
60
+ return self._table_name
61
+
62
+ @table_name.setter
63
+ def table_name(self, table_name):
64
+ """Sets the table_name of this TablesConfig.
65
+
66
+ 表名。
67
+
68
+ :param table_name: The table_name of this TablesConfig.
69
+ :type table_name: str
70
+ """
71
+ self._table_name = table_name
72
+
73
+ @property
74
+ def table_config(self):
75
+ """Gets the table_config of this TablesConfig.
76
+
77
+ 表配置值。
78
+
79
+ :return: The table_config of this TablesConfig.
80
+ :rtype: str
81
+ """
82
+ return self._table_config
83
+
84
+ @table_config.setter
85
+ def table_config(self, table_config):
86
+ """Sets the table_config of this TablesConfig.
87
+
88
+ 表配置值。
89
+
90
+ :param table_config: The table_config of this TablesConfig.
91
+ :type table_config: str
92
+ """
93
+ self._table_config = table_config
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, TablesConfig):
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: huaweicloudsdkgaussdb
3
- Version: 3.1.93
3
+ Version: 3.1.95
4
4
  Summary: GaussDB
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.93
25
+ Requires-Dist: huaweicloudsdkcore >=3.1.95
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
  huaweicloudsdkgaussdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- huaweicloudsdkgaussdb/v3/__init__.py,sha256=s-1DZeODFTMwhdLs_oN7Zp1V_m9Xfp1KLruHimcp6R4,44152
3
- huaweicloudsdkgaussdb/v3/gaussdb_async_client.py,sha256=6gRj5EVUcxtBCq_jnoI4iYm3DC75ZNNXsUaHTv369dM,301076
4
- huaweicloudsdkgaussdb/v3/gaussdb_client.py,sha256=rA_2loCYbXQbVHB78HmXp-ytR9vO5tVZkgvpcremf0w,301211
5
- huaweicloudsdkgaussdb/v3/model/__init__.py,sha256=zN-unl_TQBxTYvMPV-PVKkjHfpVkrD_awH_sJBcgKpA,44042
2
+ huaweicloudsdkgaussdb/v3/__init__.py,sha256=cSOQL7SQTgOenSbsfQP_qUig_yYJuGXuIKVuJpF9cE0,47040
3
+ huaweicloudsdkgaussdb/v3/gaussdb_async_client.py,sha256=CEBn3fdMXwPireerBFJn1xr6cOdTUA63XhEjbr2TuoQ,321156
4
+ huaweicloudsdkgaussdb/v3/gaussdb_client.py,sha256=C1Al1P1nB9K_KXyF9B-5KyGGZQQxO2Blbrj55tITirw,321307
5
+ huaweicloudsdkgaussdb/v3/model/__init__.py,sha256=7uzC5GB95EsNLVxk2_0vjd2T6vqE5d1nqWC4CVCIG5Q,46930
6
6
  huaweicloudsdkgaussdb/v3/model/access_control_rule.py,sha256=_hNgePJ5yjgiFJfw2hRCvIyyEYvaY8KZp0ESAA0O6WY,3900
7
7
  huaweicloudsdkgaussdb/v3/model/add_database_permission_request.py,sha256=m011GCLKS0xNt-1WbYaBZZoSSEBfxXADeCw4HL-3fhs,4908
8
8
  huaweicloudsdkgaussdb/v3/model/add_database_permission_response.py,sha256=FyiFrYFcWD0uMzPwyg-nB8mnk20HzgjTaal4kGyMmIc,3280
@@ -25,10 +25,14 @@ huaweicloudsdkgaussdb/v3/model/change_gauss_my_sql_instance_specification_reques
25
25
  huaweicloudsdkgaussdb/v3/model/change_gauss_my_sql_instance_specification_response.py,sha256=loi4iyieNzOp3QyGzIjSD4sZBTTjOCCamPCIwAQ_efE,4511
26
26
  huaweicloudsdkgaussdb/v3/model/change_gauss_my_sql_proxy_specification_request.py,sha256=QYE-It_yiTc8pKUK4vxYHiO_aDAcrNdcafIGCSAgz3M,6056
27
27
  huaweicloudsdkgaussdb/v3/model/change_gauss_my_sql_proxy_specification_response.py,sha256=FOgL0w31Ixh_PS0t3LY7A1D1VIkvoqyH3ss8c7fPfD4,3321
28
+ huaweicloudsdkgaussdb/v3/model/check_data_base_config_request.py,sha256=0WvdWrSQXG2n778-PIdTSv1S0A6uIw1IHwVoPflWuts,5065
29
+ huaweicloudsdkgaussdb/v3/model/check_data_base_config_response.py,sha256=eEwfkV-tIIRLzP4mGWcW7NZbNVIsv9f2RA2WwClW4yI,8696
28
30
  huaweicloudsdkgaussdb/v3/model/check_resource_info.py,sha256=WK4SYtn2rhItw3HeUyq4i5IHajZACVms8Q56ywisoZg,11300
29
31
  huaweicloudsdkgaussdb/v3/model/check_resource_request.py,sha256=QMVKYk2BH0lN8SahJi4azK24dtEOXzDsY8_rLKZj2xc,4125
30
32
  huaweicloudsdkgaussdb/v3/model/check_resource_request_body.py,sha256=kj3HeaR-f3L2e6owS9K3X6Vsitz58als0mGoMlxdB-U,4274
31
33
  huaweicloudsdkgaussdb/v3/model/check_resource_response.py,sha256=336rStS4rvQNBbMb1B7114FJthfk7O-vn5vL94m4RD8,3313
34
+ huaweicloudsdkgaussdb/v3/model/check_table_config_request.py,sha256=bfsjiUrl3Qm1Y9IYwI2rx15QfqtCQRsrjxtkFu3R8kc,5029
35
+ huaweicloudsdkgaussdb/v3/model/check_table_config_response.py,sha256=ctGvgH2tY8t3B-DJQeRuWIMJNWu2aoQi8QRwqVK_sAo,6861
32
36
  huaweicloudsdkgaussdb/v3/model/close_mysql_proxy_request_body.py,sha256=e26PCpf5cUHq42_KBlIqSWc53AdPbA7jsq_EaG-MNL8,3614
33
37
  huaweicloudsdkgaussdb/v3/model/configuration_summary.py,sha256=9nh3MmRG7vKwRTpM7PitR4pHwHR6Jy146EoikrLvyAo,9777
34
38
  huaweicloudsdkgaussdb/v3/model/configuration_summary2.py,sha256=b5qb8c98bPNgDlSjCq0uvR8YlFWy9pA0Rb_UAE-aZKc,7495
@@ -69,8 +73,16 @@ huaweicloudsdkgaussdb/v3/model/create_restore_table_info.py,sha256=tn8e0lf6VmZyX
69
73
  huaweicloudsdkgaussdb/v3/model/create_restore_tables_request.py,sha256=x5xtCv3wsRYbdsS0BqMjrrx6KQQQy7JasmLrFP2W4Gk,5109
70
74
  huaweicloudsdkgaussdb/v3/model/create_restore_tables_request_body.py,sha256=AFDVhNbh27mokah9SnCruyeGaUAxi5FpNJ9CkKWM3fY,5673
71
75
  huaweicloudsdkgaussdb/v3/model/create_restore_tables_response.py,sha256=dWaNkMQYGFqd_GiiWqqXbP1Vxy75v_ZRAktafXTreCE,3201
76
+ huaweicloudsdkgaussdb/v3/model/create_star_rocks_data_replication.py,sha256=yW8hddIuWEW48c_Tyh5euN4e6qRU8KD6b8_66_O6s6w,7737
77
+ huaweicloudsdkgaussdb/v3/model/create_star_rocks_data_replication_request.py,sha256=3y1AofBkLH0rKXz-rrQcCwmzCM3aLv9-fmjsb29IlWE,5273
78
+ huaweicloudsdkgaussdb/v3/model/create_star_rocks_data_replication_response.py,sha256=QmmzCx1f-VxiSdrWONBFwjE8i6dGZSbFslaZMkHvr7A,3352
79
+ huaweicloudsdkgaussdb/v3/model/data_base_info.py,sha256=RhgqXQlG3SG95XNy4jbg3wtrnkMXHljiaAMkjHEpXkI,4478
72
80
  huaweicloudsdkgaussdb/v3/model/database_permission.py,sha256=aYgrHeStBuQBPYHKlQ5Wd27vhTk9HCuKz2Y4LbS7j0U,3880
73
81
  huaweicloudsdkgaussdb/v3/model/datastore_result.py,sha256=YLFcCDHSSYQLVoVR5LtjWhLhUj4nUsBzoIRqx3H51uk,4004
82
+ huaweicloudsdkgaussdb/v3/model/db_config.py,sha256=KajSHTKjCMS4chperC1402S4tgnG6wsssjkDfW2VKGk,3689
83
+ huaweicloudsdkgaussdb/v3/model/db_config_check_request_v3.py,sha256=6kjTFrWHbiMdIuhQAngKaZ2B-7wqnHOJ_jdU_tcRxjY,10075
84
+ huaweicloudsdkgaussdb/v3/model/db_config_check_result.py,sha256=vhzsVnVBEqniW1HK6D2rPGeJ1eP1CCO1O6NlA0Zqits,4670
85
+ huaweicloudsdkgaussdb/v3/model/db_parameter.py,sha256=rDcCI5dV5O66KHpZYFk4BIT_6v8eCI4NwpEfxEeSeik,6320
74
86
  huaweicloudsdkgaussdb/v3/model/dedicated_compute_info.py,sha256=aYhDaxuRtKpiYP-eftWcfbpzav9BqLtcVRpFGi-eCfM,7350
75
87
  huaweicloudsdkgaussdb/v3/model/dedicated_resource.py,sha256=EgOYh93Rt-l2luvKktzfrkTKSY0mDqaAhFm2_Wgi3rI,8182
76
88
  huaweicloudsdkgaussdb/v3/model/dedicated_resource_capacity.py,sha256=VoF9JP-rHv1-eS7-9Wl2N-npTksCLidWhfS6Kqdt-MQ,4509
@@ -103,6 +115,9 @@ huaweicloudsdkgaussdb/v3/model/delete_schedule_tas_k_response.py,sha256=J98fqso2
103
115
  huaweicloudsdkgaussdb/v3/model/delete_sql_filter_rule_req.py,sha256=t2Ar1MvRhlgtHeSNlyg8amgfZ78XAk4jfYv8-73LrfI,3400
104
116
  huaweicloudsdkgaussdb/v3/model/delete_sql_filter_rule_request.py,sha256=PVDpxzD909M_KB9edQFhKKQHU7GuuN_I_ciyFs__EH4,4828
105
117
  huaweicloudsdkgaussdb/v3/model/delete_sql_filter_rule_response.py,sha256=VYGG7f15e2gM9Pqh4NZVArsA_EqnrmIzVNjz8TvUz2w,3264
118
+ huaweicloudsdkgaussdb/v3/model/delete_star_rocks_data_replication.py,sha256=3OKamLrHQZAQ1pAuYXiG5HAzSmrTAIKbGI4ksjIA0s8,3471
119
+ huaweicloudsdkgaussdb/v3/model/delete_star_rocks_data_replication_request.py,sha256=-XH-TF6SOMhc_RLLI_VYTIxaDeEJizTa7YSVLWDnpCQ,5273
120
+ huaweicloudsdkgaussdb/v3/model/delete_star_rocks_data_replication_response.py,sha256=z01h7Te-oncU9S9_QM13gC6E5qKci2veqdlUa1DzRYs,3343
106
121
  huaweicloudsdkgaussdb/v3/model/delete_task_record_request.py,sha256=CYvAaewZW25t8yy1gizr9kKhCWGuJKc65fypZg3CI30,3830
107
122
  huaweicloudsdkgaussdb/v3/model/delete_task_record_response.py,sha256=u-sftMYJ_bKFr-LshgPMuWfrpC6-RYHgj4aZGcZR_kg,3078
108
123
  huaweicloudsdkgaussdb/v3/model/describe_backup_encrypt_status_request.py,sha256=1dCJnoxfoGtOrNfTspSttzOI7kniaS5JEOi3YgP0-Lc,4145
@@ -175,6 +190,14 @@ huaweicloudsdkgaussdb/v3/model/list_project_tags_request.py,sha256=7K81e0NVtEYjR
175
190
  huaweicloudsdkgaussdb/v3/model/list_project_tags_response.py,sha256=0_N21ygPwkHh_w8-R7vBvFssiwDjmxh9avv29fAaz24,4158
176
191
  huaweicloudsdkgaussdb/v3/model/list_schedule_jobs_request.py,sha256=lnkILUIKhJqZjv60YSxTi8Xq_kpMchpGz2gISMUk55E,10874
177
192
  huaweicloudsdkgaussdb/v3/model/list_schedule_jobs_response.py,sha256=2TW_lYBWSKD50JmirbUYAjhUHAgr8Ogx7AO9WzXf48Y,4268
193
+ huaweicloudsdkgaussdb/v3/model/list_star_rocks_data_bases_request.py,sha256=IBFX_ZxOf18iHsFz_zBlfwgEGcmtSYiDSQTyq-k6OOM,7264
194
+ huaweicloudsdkgaussdb/v3/model/list_star_rocks_data_bases_response.py,sha256=abeXcoxdZLHiApuHIEJaIMLRGV9f5ymWyDRjexNVjEo,5073
195
+ huaweicloudsdkgaussdb/v3/model/list_star_rocks_data_replication_config_request.py,sha256=81aQZ6bPmNMRfbswcqSbf1TqwU_gPC_bU5PeyZUzhyE,5507
196
+ huaweicloudsdkgaussdb/v3/model/list_star_rocks_data_replication_config_response.py,sha256=0dhrvYHPjKID8gSnsw98OgYYRBo9CQyp7wUGjOBSctE,12851
197
+ huaweicloudsdkgaussdb/v3/model/list_star_rocks_data_replications_request.py,sha256=Lj_f_kSu-0IwTdeENkIrRb9vkSqQqGoMXRqOazub8EU,6549
198
+ huaweicloudsdkgaussdb/v3/model/list_star_rocks_data_replications_response.py,sha256=wmqfdJzqSHNZ3MO5cRPL7PRC_VFb_SDf25N95MEgD5w,5471
199
+ huaweicloudsdkgaussdb/v3/model/list_star_rocks_db_parameters_request.py,sha256=M58tF-KOHog5w-JqAGexdiMyoSuOC5JftT4rZfsJ4F8,4276
200
+ huaweicloudsdkgaussdb/v3/model/list_star_rocks_db_parameters_response.py,sha256=M7YY79zycDmyN8Qt8mtN4CQ5hk9SSybEK8x468mIWm0,3589
178
201
  huaweicloudsdkgaussdb/v3/model/lts_log_error_detail.py,sha256=oDCNp8oSO1mKBYPiOEiFNPrjipdE_TNZDgW8jcA_uI4,5935
179
202
  huaweicloudsdkgaussdb/v3/model/lts_log_error_query_request.py,sha256=fZOv9b8j1d3BsY8fg1yvBWC_8H6-FKhx8bRzaRmppZo,8246
180
203
  huaweicloudsdkgaussdb/v3/model/lts_log_slow_detail.py,sha256=orr8XW105NNn5OpepoHnQ7BXBo90DstZDhjT4K6XqOQ,12177
@@ -337,6 +360,7 @@ huaweicloudsdkgaussdb/v3/model/shrink_gauss_my_sql_proxy_request_body.py,sha256=
337
360
  huaweicloudsdkgaussdb/v3/model/shrink_gauss_my_sql_proxy_response.py,sha256=d_41CnpgqV0TY6lkVSZkC2LWpUur0_oh9u7RTzH0daU,3217
338
361
  huaweicloudsdkgaussdb/v3/model/sql_filter_rule.py,sha256=pQ0Q0PzyUlA5JZCfYBZZxPC1tmv32QQ_yoOTC3xeLEg,4073
339
362
  huaweicloudsdkgaussdb/v3/model/sql_filter_rule_pattern.py,sha256=WzbpyPVPakfDq8vBzr2syMh5Z85nXylWySxQuEK9yOA,3938
363
+ huaweicloudsdkgaussdb/v3/model/star_rocks_replication_info.py,sha256=YZ_Q_VU_EVFPAfJ1c5CzUHA21S3a8IK3JlzrN1SbWuM,10023
340
364
  huaweicloudsdkgaussdb/v3/model/switch_access_control_request.py,sha256=Z8TDrs6A4EC1xXST1YHrLbBHXM8ywPxgSjE2axsrTik,5958
341
365
  huaweicloudsdkgaussdb/v3/model/switch_access_control_request_body.py,sha256=ikHAxloycqBnZZkvYEkEXZm_hb4CBZlFvZe9b0g2_II,3552
342
366
  huaweicloudsdkgaussdb/v3/model/switch_access_control_response.py,sha256=iEkeO6bD8y4fotxAeFjOoQNz5ACjbH1OUy5GMugjJPQ,3708
@@ -348,6 +372,10 @@ huaweicloudsdkgaussdb/v3/model/switch_gauss_my_sql_proxy_ssl_request.py,sha256=_
348
372
  huaweicloudsdkgaussdb/v3/model/switch_gauss_my_sql_proxy_ssl_response.py,sha256=MAHrkP3NBzuyqpuFUX5dXJp5eSHQuYZjPSaX96hT0pQ,3241
349
373
  huaweicloudsdkgaussdb/v3/model/switch_proxy_ssl_request.py,sha256=esyBecwJVs0pq_e1nGA7q6ROUPZJPOK4WdYCuGgpblA,3411
350
374
  huaweicloudsdkgaussdb/v3/model/switch_ssl_request.py,sha256=ky_M38WBeMVACVg8OMaAln_PJ-aZ1mw_sjxigsaeGCE,3322
375
+ huaweicloudsdkgaussdb/v3/model/table_config_check_request_v3.py,sha256=yXzQSd73_lg0FWrYa67snappyIGzBPZkNCCAQ-Kqh6M,9922
376
+ huaweicloudsdkgaussdb/v3/model/table_config_check_result.py,sha256=n4XbW-MsRU_abTWmNEadh_HT7YHpmtfaaxq0r6sP1MQ,4876
377
+ huaweicloudsdkgaussdb/v3/model/table_repl_config.py,sha256=bmEIDLlTTQHhJokYHicNu3L8leaDOXtjHxHu-PTxG14,4960
378
+ huaweicloudsdkgaussdb/v3/model/tables_config.py,sha256=BBwpJSQ65Ms_iSrI1sSjciUTj34-teK1F9uqGsQK4pc,3894
351
379
  huaweicloudsdkgaussdb/v3/model/tag_item.py,sha256=e7Wj-SbWqb7f4tRAimC1oH0Sdrp_c72vCr6wpABzw7o,4904
352
380
  huaweicloudsdkgaussdb/v3/model/task_detail_info.py,sha256=2vnvKGBylYV9Y6-qC-WZWbQT60-fXFji0-aIuq2OTr0,18446
353
381
  huaweicloudsdkgaussdb/v3/model/taurus_modify_instance_monitor_request_body.py,sha256=fKgc3XhfFclsM98jLJlsG_5go6LeBMAKdL5IxXIvnGE,4740
@@ -421,8 +449,8 @@ huaweicloudsdkgaussdb/v3/model/upgrade_gauss_my_sql_instance_database_request.py
421
449
  huaweicloudsdkgaussdb/v3/model/upgrade_gauss_my_sql_instance_database_response.py,sha256=2FDFF2Tj6nknBR6kHFQSYYlnihPVvB2E_5bn30AklJ8,3313
422
450
  huaweicloudsdkgaussdb/v3/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
423
451
  huaweicloudsdkgaussdb/v3/region/gaussdb_region.py,sha256=jSkp4XxflMd24DfUCSkocI70ZDFvifYbZbt9MpvyaRw,2844
424
- huaweicloudsdkgaussdb-3.1.93.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
425
- huaweicloudsdkgaussdb-3.1.93.dist-info/METADATA,sha256=kMzNh36P24cmpq5szhovYdmFf_rZQiX2P9uvaelyVW0,1146
426
- huaweicloudsdkgaussdb-3.1.93.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
427
- huaweicloudsdkgaussdb-3.1.93.dist-info/top_level.txt,sha256=_exDbngu-ivLzntD1UgfR3aRI7WoXQUaayhgYshbpyA,22
428
- huaweicloudsdkgaussdb-3.1.93.dist-info/RECORD,,
452
+ huaweicloudsdkgaussdb-3.1.95.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
453
+ huaweicloudsdkgaussdb-3.1.95.dist-info/METADATA,sha256=N3KZ9_pvLh1xQVCc7HeNZBtAzu9UClT6noD_UPKsCRY,1146
454
+ huaweicloudsdkgaussdb-3.1.95.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
455
+ huaweicloudsdkgaussdb-3.1.95.dist-info/top_level.txt,sha256=_exDbngu-ivLzntD1UgfR3aRI7WoXQUaayhgYshbpyA,22
456
+ huaweicloudsdkgaussdb-3.1.95.dist-info/RECORD,,