huaweicloudsdkgaussdbforopengauss 3.1.104__py2.py3-none-any.whl → 3.1.106__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 (28) hide show
  1. huaweicloudsdkgaussdbforopengauss/v3/__init__.py +17 -1
  2. huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_async_client.py +408 -0
  3. huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_client.py +408 -0
  4. huaweicloudsdkgaussdbforopengauss/v3/model/__init__.py +17 -1
  5. huaweicloudsdkgaussdbforopengauss/v3/model/install_kernel_plugin_request.py +168 -0
  6. huaweicloudsdkgaussdbforopengauss/v3/model/install_kernel_plugin_request_body.py +170 -0
  7. huaweicloudsdkgaussdbforopengauss/v3/model/install_kernel_plugin_response.py +116 -0
  8. huaweicloudsdkgaussdbforopengauss/v3/model/list_kernel_plugins_request.py +143 -0
  9. huaweicloudsdkgaussdbforopengauss/v3/model/list_kernel_plugins_response.py +116 -0
  10. huaweicloudsdkgaussdbforopengauss/v3/model/list_plugin_extensions_request.py +168 -0
  11. huaweicloudsdkgaussdbforopengauss/v3/model/list_plugin_extensions_request_body.py +142 -0
  12. huaweicloudsdkgaussdbforopengauss/v3/model/list_plugin_extensions_response.py +116 -0
  13. huaweicloudsdkgaussdbforopengauss/v3/model/list_support_kernel_plugins_request.py +115 -0
  14. huaweicloudsdkgaussdbforopengauss/v3/model/list_support_kernel_plugins_response.py +116 -0
  15. huaweicloudsdkgaussdbforopengauss/v3/model/plugin_extensions.py +144 -0
  16. huaweicloudsdkgaussdbforopengauss/v3/model/recovery_backup_source.py +8 -65
  17. huaweicloudsdkgaussdbforopengauss/v3/model/resume_plugin_extensions_request.py +168 -0
  18. huaweicloudsdkgaussdbforopengauss/v3/model/resume_plugin_extensions_request_body.py +198 -0
  19. huaweicloudsdkgaussdbforopengauss/v3/model/resume_plugin_extensions_response.py +112 -0
  20. huaweicloudsdkgaussdbforopengauss/v3/model/set_kernel_plugin_license_request.py +168 -0
  21. huaweicloudsdkgaussdbforopengauss/v3/model/set_kernel_plugin_license_request_body.py +114 -0
  22. huaweicloudsdkgaussdbforopengauss/v3/model/set_kernel_plugin_license_response.py +112 -0
  23. {huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.106.dist-info}/METADATA +2 -2
  24. {huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.106.dist-info}/RECORD +27 -11
  25. huaweicloudsdkgaussdbforopengauss/v3/model/restore_table_list_detail.py +0 -259
  26. {huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.106.dist-info}/LICENSE +0 -0
  27. {huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.106.dist-info}/WHEEL +0 -0
  28. {huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.106.dist-info}/top_level.txt +0 -0
@@ -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 SetKernelPluginLicenseRequest:
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
+ 'x_language': 'str',
21
+ 'instance_id': 'str',
22
+ 'body': 'SetKernelPluginLicenseRequestBody'
23
+ }
24
+
25
+ attribute_map = {
26
+ 'x_language': 'X-Language',
27
+ 'instance_id': 'instance_id',
28
+ 'body': 'body'
29
+ }
30
+
31
+ def __init__(self, x_language=None, instance_id=None, body=None):
32
+ """SetKernelPluginLicenseRequest
33
+
34
+ The model defined in huaweicloud sdk
35
+
36
+ :param x_language: 语言。
37
+ :type x_language: str
38
+ :param instance_id: 需要配置license的实例
39
+ :type instance_id: str
40
+ :param body: Body of the SetKernelPluginLicenseRequest
41
+ :type body: :class:`huaweicloudsdkgaussdbforopengauss.v3.SetKernelPluginLicenseRequestBody`
42
+ """
43
+
44
+
45
+
46
+ self._x_language = None
47
+ self._instance_id = None
48
+ self._body = None
49
+ self.discriminator = None
50
+
51
+ if x_language is not None:
52
+ self.x_language = x_language
53
+ self.instance_id = instance_id
54
+ if body is not None:
55
+ self.body = body
56
+
57
+ @property
58
+ def x_language(self):
59
+ """Gets the x_language of this SetKernelPluginLicenseRequest.
60
+
61
+ 语言。
62
+
63
+ :return: The x_language of this SetKernelPluginLicenseRequest.
64
+ :rtype: str
65
+ """
66
+ return self._x_language
67
+
68
+ @x_language.setter
69
+ def x_language(self, x_language):
70
+ """Sets the x_language of this SetKernelPluginLicenseRequest.
71
+
72
+ 语言。
73
+
74
+ :param x_language: The x_language of this SetKernelPluginLicenseRequest.
75
+ :type x_language: str
76
+ """
77
+ self._x_language = x_language
78
+
79
+ @property
80
+ def instance_id(self):
81
+ """Gets the instance_id of this SetKernelPluginLicenseRequest.
82
+
83
+ 需要配置license的实例
84
+
85
+ :return: The instance_id of this SetKernelPluginLicenseRequest.
86
+ :rtype: str
87
+ """
88
+ return self._instance_id
89
+
90
+ @instance_id.setter
91
+ def instance_id(self, instance_id):
92
+ """Sets the instance_id of this SetKernelPluginLicenseRequest.
93
+
94
+ 需要配置license的实例
95
+
96
+ :param instance_id: The instance_id of this SetKernelPluginLicenseRequest.
97
+ :type instance_id: str
98
+ """
99
+ self._instance_id = instance_id
100
+
101
+ @property
102
+ def body(self):
103
+ """Gets the body of this SetKernelPluginLicenseRequest.
104
+
105
+ :return: The body of this SetKernelPluginLicenseRequest.
106
+ :rtype: :class:`huaweicloudsdkgaussdbforopengauss.v3.SetKernelPluginLicenseRequestBody`
107
+ """
108
+ return self._body
109
+
110
+ @body.setter
111
+ def body(self, body):
112
+ """Sets the body of this SetKernelPluginLicenseRequest.
113
+
114
+ :param body: The body of this SetKernelPluginLicenseRequest.
115
+ :type body: :class:`huaweicloudsdkgaussdbforopengauss.v3.SetKernelPluginLicenseRequestBody`
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, SetKernelPluginLicenseRequest):
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,114 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class SetKernelPluginLicenseRequestBody:
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
+ 'license_str': 'str'
21
+ }
22
+
23
+ attribute_map = {
24
+ 'license_str': 'license_str'
25
+ }
26
+
27
+ def __init__(self, license_str=None):
28
+ """SetKernelPluginLicenseRequestBody
29
+
30
+ The model defined in huaweicloud sdk
31
+
32
+ :param license_str: license
33
+ :type license_str: str
34
+ """
35
+
36
+
37
+
38
+ self._license_str = None
39
+ self.discriminator = None
40
+
41
+ self.license_str = license_str
42
+
43
+ @property
44
+ def license_str(self):
45
+ """Gets the license_str of this SetKernelPluginLicenseRequestBody.
46
+
47
+ license
48
+
49
+ :return: The license_str of this SetKernelPluginLicenseRequestBody.
50
+ :rtype: str
51
+ """
52
+ return self._license_str
53
+
54
+ @license_str.setter
55
+ def license_str(self, license_str):
56
+ """Sets the license_str of this SetKernelPluginLicenseRequestBody.
57
+
58
+ license
59
+
60
+ :param license_str: The license_str of this SetKernelPluginLicenseRequestBody.
61
+ :type license_str: str
62
+ """
63
+ self._license_str = license_str
64
+
65
+ def to_dict(self):
66
+ """Returns the model properties as a dict"""
67
+ result = {}
68
+
69
+ for attr, _ in six.iteritems(self.openapi_types):
70
+ value = getattr(self, attr)
71
+ if isinstance(value, list):
72
+ result[attr] = list(map(
73
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
74
+ value
75
+ ))
76
+ elif hasattr(value, "to_dict"):
77
+ result[attr] = value.to_dict()
78
+ elif isinstance(value, dict):
79
+ result[attr] = dict(map(
80
+ lambda item: (item[0], item[1].to_dict())
81
+ if hasattr(item[1], "to_dict") else item,
82
+ value.items()
83
+ ))
84
+ else:
85
+ if attr in self.sensitive_list:
86
+ result[attr] = "****"
87
+ else:
88
+ result[attr] = value
89
+
90
+ return result
91
+
92
+ def to_str(self):
93
+ """Returns the string representation of the model"""
94
+ import simplejson as json
95
+ if six.PY2:
96
+ import sys
97
+ reload(sys)
98
+ sys.setdefaultencoding("utf-8")
99
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
100
+
101
+ def __repr__(self):
102
+ """For `print`"""
103
+ return self.to_str()
104
+
105
+ def __eq__(self, other):
106
+ """Returns true if both objects are equal"""
107
+ if not isinstance(other, SetKernelPluginLicenseRequestBody):
108
+ return False
109
+
110
+ return self.__dict__ == other.__dict__
111
+
112
+ def __ne__(self, other):
113
+ """Returns true if both objects are not equal"""
114
+ return not self == other
@@ -0,0 +1,112 @@
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 SetKernelPluginLicenseResponse(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
+ 'body': 'str'
22
+ }
23
+
24
+ attribute_map = {
25
+ 'body': 'body'
26
+ }
27
+
28
+ def __init__(self, body=None):
29
+ """SetKernelPluginLicenseResponse
30
+
31
+ The model defined in huaweicloud sdk
32
+
33
+ :param body:
34
+ :type body: str
35
+ """
36
+
37
+ super(SetKernelPluginLicenseResponse, self).__init__()
38
+
39
+ self._body = None
40
+ self.discriminator = None
41
+
42
+ if body is not None:
43
+ self.body = body
44
+
45
+ @property
46
+ def body(self):
47
+ """Gets the body of this SetKernelPluginLicenseResponse.
48
+
49
+ :return: The body of this SetKernelPluginLicenseResponse.
50
+ :rtype: str
51
+ """
52
+ return self._body
53
+
54
+ @body.setter
55
+ def body(self, body):
56
+ """Sets the body of this SetKernelPluginLicenseResponse.
57
+
58
+ :param body: The body of this SetKernelPluginLicenseResponse.
59
+ :type body: str
60
+ """
61
+ self._body = body
62
+
63
+ def to_dict(self):
64
+ """Returns the model properties as a dict"""
65
+ result = {}
66
+
67
+ for attr, _ in six.iteritems(self.openapi_types):
68
+ value = getattr(self, attr)
69
+ if isinstance(value, list):
70
+ result[attr] = list(map(
71
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
72
+ value
73
+ ))
74
+ elif hasattr(value, "to_dict"):
75
+ result[attr] = value.to_dict()
76
+ elif isinstance(value, dict):
77
+ result[attr] = dict(map(
78
+ lambda item: (item[0], item[1].to_dict())
79
+ if hasattr(item[1], "to_dict") else item,
80
+ value.items()
81
+ ))
82
+ else:
83
+ if attr in self.sensitive_list:
84
+ result[attr] = "****"
85
+ else:
86
+ result[attr] = value
87
+
88
+ return result
89
+
90
+ def to_str(self):
91
+ """Returns the string representation of the model"""
92
+ import simplejson as json
93
+ if six.PY2:
94
+ import sys
95
+ reload(sys)
96
+ sys.setdefaultencoding("utf-8")
97
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
98
+
99
+ def __repr__(self):
100
+ """For `print`"""
101
+ return self.to_str()
102
+
103
+ def __eq__(self, other):
104
+ """Returns true if both objects are equal"""
105
+ if not isinstance(other, SetKernelPluginLicenseResponse):
106
+ return False
107
+
108
+ return self.__dict__ == other.__dict__
109
+
110
+ def __ne__(self, other):
111
+ """Returns true if both objects are not equal"""
112
+ return not self == other
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: huaweicloudsdkgaussdbforopengauss
3
- Version: 3.1.104
3
+ Version: 3.1.106
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.104
25
+ Requires-Dist: huaweicloudsdkcore >=3.1.106
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=NRon5sDwiCYGZBVTahax-8g-urZeZu_ULlthfwr5pWI,34385
3
- huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_async_client.py,sha256=2qtGzrrIpTiT2Jp4syEU4xahBtrzHfmHpSQpIZbhOuQ,228834
4
- huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_client.py,sha256=Yrn7IDA-Cmh04yGJli5nvtAG-UdZjeuvKZn94A9GHYU,228913
5
- huaweicloudsdkgaussdbforopengauss/v3/model/__init__.py,sha256=Uabi5mE3YN8wuWEOm3UsIouVttz8JxSI9Io_TtITrQs,34203
2
+ huaweicloudsdkgaussdbforopengauss/v3/__init__.py,sha256=Vh-DjfOCzyi-P5OSaH7D-bzehsJEbZlnhoZDIhAzqcY,36270
3
+ huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_async_client.py,sha256=qUPoV8gERdyn4N2ctYAUz_9PLyEcgNU5CQbKbDcfWRs,242916
4
+ huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_client.py,sha256=ADVTUD5ZozWrPtCjPUGfBLRDtCHz7xF0JmLfhNk-t1o,243007
5
+ huaweicloudsdkgaussdbforopengauss/v3/model/__init__.py,sha256=QDdr-CHEW7Zg79zcPPNArSBRT-m5aLn3CSHRo8SKnPA,36088
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
@@ -92,6 +92,9 @@ huaweicloudsdkgaussdbforopengauss/v3/model/hotfix_info.py,sha256=AOnwbRDGSaaxdSg
92
92
  huaweicloudsdkgaussdbforopengauss/v3/model/hotfix_rollback_infos.py,sha256=kjjOTsz7RASQcPTiGH6k7aHsTuoEbNBL0HgxXGXSJvU,6089
93
93
  huaweicloudsdkgaussdbforopengauss/v3/model/hotfix_upgrade_infos.py,sha256=42I1MihTpclRB5t1QQy3RSsMyshnGnvprht8ciZw8ME,6070
94
94
  huaweicloudsdkgaussdbforopengauss/v3/model/hotfix_version_info.py,sha256=o1eBmsyCcxXg-AJ1i5dZrBLLXTPqPRic4Y8S-cHm2t8,4468
95
+ huaweicloudsdkgaussdbforopengauss/v3/model/install_kernel_plugin_request.py,sha256=jPomY_GzXqUOYbf-SvpE-zQPA9ZiGx4zc6A9qAPs6Zo,4950
96
+ huaweicloudsdkgaussdbforopengauss/v3/model/install_kernel_plugin_request_body.py,sha256=Jm1viE2rfViJY_syTjikVjUar6NkmFdY597UcgcQy1Y,4652
97
+ huaweicloudsdkgaussdbforopengauss/v3/model/install_kernel_plugin_response.py,sha256=f-E9hqmT4YpbPc9sPWTeXVClx6cjypbMN8iq8Qoh-Jo,3237
95
98
  huaweicloudsdkgaussdbforopengauss/v3/model/instance_info_result.py,sha256=F-IRdC5BnXejA0JizSF3-X3-EuBBtJcFCjp9GjOJABk,4937
96
99
  huaweicloudsdkgaussdbforopengauss/v3/model/instance_log_file.py,sha256=-CNIDxPTfQqtnEipdnPv37YkVcZxnaAqFNKytIXPmWo,7043
97
100
  huaweicloudsdkgaussdbforopengauss/v3/model/instances_list_result.py,sha256=JAn3VuBgrccL0xwSewKj3srcsda4m_DdcDmPUUhE6lA,4023
@@ -156,8 +159,13 @@ huaweicloudsdkgaussdbforopengauss/v3/model/list_instances_details_response.py,sh
156
159
  huaweicloudsdkgaussdbforopengauss/v3/model/list_instances_request.py,sha256=RFlMgBf60KXlZbcH2WtLGc5yq6SR6BME7ID81VOfu2Y,16728
157
160
  huaweicloudsdkgaussdbforopengauss/v3/model/list_instances_response.py,sha256=1uPx8URT3g07DDu8jvfbUn494tr97cnIXgoLbt2kUUg,4312
158
161
  huaweicloudsdkgaussdbforopengauss/v3/model/list_instances_result.py,sha256=a2L6gyVW6g1oq_5OnvsHE-CGkHCDyX7uDPOSuMAk9jY,35158
162
+ huaweicloudsdkgaussdbforopengauss/v3/model/list_kernel_plugins_request.py,sha256=C1-54dgR71Fbd6-eFHD-TfD2_HfPhltP-RngEO8IvMM,4059
163
+ huaweicloudsdkgaussdbforopengauss/v3/model/list_kernel_plugins_response.py,sha256=3FBVU4256bSfQ2nYnMdPU5osNRjWkAD-2Hs4Ju7NcXQ,3166
159
164
  huaweicloudsdkgaussdbforopengauss/v3/model/list_param_group_templates_request.py,sha256=CZ25lAe4SucH2KKT5HgqrHlMe7K_TwCwKwPed2d1WTQ,5435
160
165
  huaweicloudsdkgaussdbforopengauss/v3/model/list_param_group_templates_response.py,sha256=3pz51p6A3Dap9KJxd4lmuSfYGlZn1-ZHAL7fiFdlwx8,4438
166
+ huaweicloudsdkgaussdbforopengauss/v3/model/list_plugin_extensions_request.py,sha256=M0uVxxcBl6_DMsh0qhFW0dX9MVX7KCA-Vm6ecwFMeRk,5006
167
+ huaweicloudsdkgaussdbforopengauss/v3/model/list_plugin_extensions_request_body.py,sha256=Qm0czJ5AkuGOscpNsObkKX-dUVziE4mdICgnr0N4_r4,3944
168
+ huaweicloudsdkgaussdbforopengauss/v3/model/list_plugin_extensions_response.py,sha256=UXBwww9ZRa4kDvTs0qM3AHXyM6HuCwX_ULRTnuivjoI,3416
161
169
  huaweicloudsdkgaussdbforopengauss/v3/model/list_predefined_tags_request.py,sha256=Ov7yx1HpppLBmvS0T7gNvonfPDeriX2Gpy1oyYOJic8,3144
162
170
  huaweicloudsdkgaussdbforopengauss/v3/model/list_predefined_tags_response.py,sha256=ZdUAHn8j1R5g-7S-d75nnDV6LTGaAa_2jjrUQeBftdw,3154
163
171
  huaweicloudsdkgaussdbforopengauss/v3/model/list_project_tags_request.py,sha256=zQpTuxQTVdUlF_kvEoQOtUDMmCcloGW_6Mak-jocR00,3123
@@ -171,6 +179,8 @@ huaweicloudsdkgaussdbforopengauss/v3/model/list_restore_times_request.py,sha256=
171
179
  huaweicloudsdkgaussdbforopengauss/v3/model/list_restore_times_response.py,sha256=9l5TmsI-I6GvpNAFX0wOcQP1k_nN0QZGxMY4F59L9U0,3645
172
180
  huaweicloudsdkgaussdbforopengauss/v3/model/list_storage_types_request.py,sha256=lTpiDu0acDLoqJQIcdyk9FcPicMgcfjAwSuVUGS-OjM,4886
173
181
  huaweicloudsdkgaussdbforopengauss/v3/model/list_storage_types_response.py,sha256=r_otq0Wo1l1xH6mUU_8uk3qcukyXBYaSfloliznymnY,3541
182
+ huaweicloudsdkgaussdbforopengauss/v3/model/list_support_kernel_plugins_request.py,sha256=mWzQLZnDZ--NQGRbpAqYKTejHGUGKrHPCGsHV7BwPI0,3195
183
+ huaweicloudsdkgaussdbforopengauss/v3/model/list_support_kernel_plugins_response.py,sha256=U8AoISc8ktez8aX-Mt4AZrb7OJJOiDlNYbdI9xVrSnI,3222
174
184
  huaweicloudsdkgaussdbforopengauss/v3/model/list_tasks_request.py,sha256=lQbgwEwRJ7F2TOfXBzMvJucpJYb9P4otJNEvF19QUbc,8157
175
185
  huaweicloudsdkgaussdbforopengauss/v3/model/list_tasks_response.py,sha256=ZL7ZkgFV4qglM7fAsaBh29Qpe9lIjgM3HIBWi3CSu28,4153
176
186
  huaweicloudsdkgaussdbforopengauss/v3/model/list_top_io_traffics_request.py,sha256=4l-l7wFYUnmxYoddqn9eRdiR8c8yMzew85nBHRr-obQ,8869
@@ -218,9 +228,10 @@ huaweicloudsdkgaussdbforopengauss/v3/model/para_error_response_body.py,sha256=fA
218
228
  huaweicloudsdkgaussdbforopengauss/v3/model/para_group_parameter_result.py,sha256=X9bK0DxoKqWRLfiIM1_DR4KlV_I2G81RjJLftXqWJYg,8463
219
229
  huaweicloudsdkgaussdbforopengauss/v3/model/param_group_copy_request_body.py,sha256=jYu7owOlsAVFnUvi498PqV_xIPQZBhv9_fmMXTIiMVM,3933
220
230
  huaweicloudsdkgaussdbforopengauss/v3/model/param_group_diff_request_body.py,sha256=pr2Po4_yKHFkouDqEYInVJutvvcaTb1_ycbWaKVVtBI,4232
231
+ huaweicloudsdkgaussdbforopengauss/v3/model/plugin_extensions.py,sha256=bnOrl47ydb1P2uS15bdahyBJFXuUsJL3KeVsaJbm8Os,4006
221
232
  huaweicloudsdkgaussdbforopengauss/v3/model/project_quotas_result.py,sha256=pcmBBao6DJ3b7O4QEW7C4U9mBjql4F8PxYj_eA0U0hE,3283
222
233
  huaweicloudsdkgaussdbforopengauss/v3/model/pwd_reset_request.py,sha256=8FK-aoSYKXZHgBP1NlfTbhMrmNFNZvmJe_CmwvyNTWY,3515
223
- huaweicloudsdkgaussdbforopengauss/v3/model/recovery_backup_source.py,sha256=adVOUHDsAmkm-lBxeH1woS05J9BM1xNI7S6Uxh0Wr5g,7498
234
+ huaweicloudsdkgaussdbforopengauss/v3/model/recovery_backup_source.py,sha256=-wGlOH8QTy_2bIjlnZs8UdMhgmwHjgGre2XJFDeunDs,5563
224
235
  huaweicloudsdkgaussdbforopengauss/v3/model/recovery_backup_target.py,sha256=OsJwrNgGuPIEQQRX9lgW-hK-q3gzznX2XOjvsH0MEdU,3098
225
236
  huaweicloudsdkgaussdbforopengauss/v3/model/recycle_instances_detail_result.py,sha256=ZKPWEMTFO8-va81NLpER3NQy1GFbQxtockRdSQqLUlo,18522
226
237
  huaweicloudsdkgaussdbforopengauss/v3/model/recycle_policy.py,sha256=zyCHXs3jM_MVNdoy27tnKz30zP6jeSCRWU_oU4IeHWc,3671
@@ -239,7 +250,9 @@ huaweicloudsdkgaussdbforopengauss/v3/model/restore_instance_request.py,sha256=S9
239
250
  huaweicloudsdkgaussdbforopengauss/v3/model/restore_instance_request_body.py,sha256=otdApUUUJRO-4ZMyFC0Bv31Rg1EpABOc2iwtbgONYpw,4048
240
251
  huaweicloudsdkgaussdbforopengauss/v3/model/restore_instance_response.py,sha256=jYDkF0PFdMFnDmrBoP9dm1Q8E677ibkS2ce8i5V8Z7k,3232
241
252
  huaweicloudsdkgaussdbforopengauss/v3/model/restore_point.py,sha256=N1NjeiGOTXeHwiXN9PkoSTFuHJWOn5EKm1tzpa6yFfo,3818
242
- huaweicloudsdkgaussdbforopengauss/v3/model/restore_table_list_detail.py,sha256=Y_0elcPwtJ_82e57Jd3xV4jXQuUuFpCHQX8QRpKFtI0,9870
253
+ huaweicloudsdkgaussdbforopengauss/v3/model/resume_plugin_extensions_request.py,sha256=xsUVZbZC5-tC76hDMCDpt0Bnx6Z16qojnz399eHljzk,5028
254
+ huaweicloudsdkgaussdbforopengauss/v3/model/resume_plugin_extensions_request_body.py,sha256=-Rjo3i_7sxKCYc1Z2Pcy7EfIjh0HA08_lmKddytqSIA,5986
255
+ huaweicloudsdkgaussdbforopengauss/v3/model/resume_plugin_extensions_response.py,sha256=Je7FCai-s8Fq6FRQQuUWu3RnTWj1HY5Y-CtjPszPgls,3126
243
256
  huaweicloudsdkgaussdbforopengauss/v3/model/roll_upgrade_progress.py,sha256=p4n8m59eL_mwC0zamJxx7LAoZysVBivQ4mZpWcXMdys,8195
244
257
  huaweicloudsdkgaussdbforopengauss/v3/model/run_instance_action_request.py,sha256=2TZYA5bNC8SRYUzi9lNNHneuBrJ2iUdjJLkxWqzVywg,4855
245
258
  huaweicloudsdkgaussdbforopengauss/v3/model/run_instance_action_response.py,sha256=rtm6WkL_L4uH9aMBbKMpevhZxSKaS3yvHkAetEX7pzM,4184
@@ -250,6 +263,9 @@ huaweicloudsdkgaussdbforopengauss/v3/model/set_backup_policy_request_body.py,sha
250
263
  huaweicloudsdkgaussdbforopengauss/v3/model/set_backup_policy_response.py,sha256=1M45SVHNLxjVQ1fWrDmpzdex8zyDzHmmOB3raCuhwp4,2443
251
264
  huaweicloudsdkgaussdbforopengauss/v3/model/set_db_user_pwd_request.py,sha256=abRNzruJW45xswT_2MiHKoL2Bn4wsTK-3SZFIQLtxq8,4719
252
265
  huaweicloudsdkgaussdbforopengauss/v3/model/set_db_user_pwd_response.py,sha256=SrM0vqI5lE0AYlgkz0vMVy-nCtd9vsbKa8DMiQoefKA,2431
266
+ huaweicloudsdkgaussdbforopengauss/v3/model/set_kernel_plugin_license_request.py,sha256=_KBDO92eeRUjGseFYizIWY6Avqi7LXxLaAGg51w5CG8,5007
267
+ huaweicloudsdkgaussdbforopengauss/v3/model/set_kernel_plugin_license_request_body.py,sha256=tbTQKuCATlYAQ5F1a1iLAYSI5QkQkm48r4dsuO5uOrA,3186
268
+ huaweicloudsdkgaussdbforopengauss/v3/model/set_kernel_plugin_license_response.py,sha256=OD469tFSnSuMRaBwl8HEDbkrxg1IvhROqTaHy47IBBA,3126
253
269
  huaweicloudsdkgaussdbforopengauss/v3/model/set_new_backup_policy_request.py,sha256=n2yLpDrGaRqDpC0Y7KaI3kFPAKTjZXMjkaAR35A2TeE,4942
254
270
  huaweicloudsdkgaussdbforopengauss/v3/model/set_new_backup_policy_request_body.py,sha256=jgX37EgaTrBlYHb4V1ROhGT8XvI8FW4IX9kfNGL25wQ,3351
255
271
  huaweicloudsdkgaussdbforopengauss/v3/model/set_new_backup_policy_response.py,sha256=Ko4_SkU5Np0DkwuRjJcMS1Nw_7lSE1oS2FR6Ocnx29g,2455
@@ -326,8 +342,8 @@ huaweicloudsdkgaussdbforopengauss/v3/model/validate_weak_password_response.py,sh
326
342
  huaweicloudsdkgaussdbforopengauss/v3/model/weak_password_request_body.py,sha256=o6aHUH5vLvSBEf2BJZkKk4XCiwcJgVu7rHklOd476B0,3101
327
343
  huaweicloudsdkgaussdbforopengauss/v3/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
328
344
  huaweicloudsdkgaussdbforopengauss/v3/region/gaussdbforopengauss_region.py,sha256=12tDcVvpGUM3dRQG38MK4JaveqrmzOwxPrDpJ9AVC84,2971
329
- huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
330
- huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info/METADATA,sha256=v3gre1oPsSsXEKoW7Ud64RbsI9jarVsiXTncp_0iqR8,1184
331
- huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
332
- huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info/top_level.txt,sha256=Eu0Q0tFHFbnL_PjFOY4Uagc9Xd6tEIZWVieOKIvJ5-A,34
333
- huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info/RECORD,,
345
+ huaweicloudsdkgaussdbforopengauss-3.1.106.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
346
+ huaweicloudsdkgaussdbforopengauss-3.1.106.dist-info/METADATA,sha256=gdltrPTMRpx1cp-mMTjCvkpomwJ8ncVEuVSohKLTWOM,1184
347
+ huaweicloudsdkgaussdbforopengauss-3.1.106.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
348
+ huaweicloudsdkgaussdbforopengauss-3.1.106.dist-info/top_level.txt,sha256=Eu0Q0tFHFbnL_PjFOY4Uagc9Xd6tEIZWVieOKIvJ5-A,34
349
+ huaweicloudsdkgaussdbforopengauss-3.1.106.dist-info/RECORD,,