huaweicloudsdkgaussdb 3.1.116__py2.py3-none-any.whl → 3.1.118__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.
- huaweicloudsdkgaussdb/v3/model/check_starrocks_params_response.py +18 -18
- huaweicloudsdkgaussdb/v3/model/star_rocks_create_request.py +32 -3
- {huaweicloudsdkgaussdb-3.1.116.dist-info → huaweicloudsdkgaussdb-3.1.118.dist-info}/METADATA +2 -2
- {huaweicloudsdkgaussdb-3.1.116.dist-info → huaweicloudsdkgaussdb-3.1.118.dist-info}/RECORD +7 -7
- {huaweicloudsdkgaussdb-3.1.116.dist-info → huaweicloudsdkgaussdb-3.1.118.dist-info}/LICENSE +0 -0
- {huaweicloudsdkgaussdb-3.1.116.dist-info → huaweicloudsdkgaussdb-3.1.118.dist-info}/WHEEL +0 -0
- {huaweicloudsdkgaussdb-3.1.116.dist-info → huaweicloudsdkgaussdb-3.1.118.dist-info}/top_level.txt +0 -0
@@ -18,51 +18,51 @@ class CheckStarrocksParamsResponse(SdkResponse):
|
|
18
18
|
sensitive_list = []
|
19
19
|
|
20
20
|
openapi_types = {
|
21
|
-
'
|
21
|
+
'differences': 'list[ParamGroupParameterDifferences]'
|
22
22
|
}
|
23
23
|
|
24
24
|
attribute_map = {
|
25
|
-
'
|
25
|
+
'differences': 'differences'
|
26
26
|
}
|
27
27
|
|
28
|
-
def __init__(self,
|
28
|
+
def __init__(self, differences=None):
|
29
29
|
"""CheckStarrocksParamsResponse
|
30
30
|
|
31
31
|
The model defined in huaweicloud sdk
|
32
32
|
|
33
|
-
:param
|
34
|
-
:type
|
33
|
+
:param differences: 参数之间区别的集合。
|
34
|
+
:type differences: list[:class:`huaweicloudsdkgaussdb.v3.ParamGroupParameterDifferences`]
|
35
35
|
"""
|
36
36
|
|
37
37
|
super(CheckStarrocksParamsResponse, self).__init__()
|
38
38
|
|
39
|
-
self.
|
39
|
+
self._differences = None
|
40
40
|
self.discriminator = None
|
41
41
|
|
42
|
-
if
|
43
|
-
self.
|
42
|
+
if differences is not None:
|
43
|
+
self.differences = differences
|
44
44
|
|
45
45
|
@property
|
46
|
-
def
|
47
|
-
"""Gets the
|
46
|
+
def differences(self):
|
47
|
+
"""Gets the differences of this CheckStarrocksParamsResponse.
|
48
48
|
|
49
49
|
参数之间区别的集合。
|
50
50
|
|
51
|
-
:return: The
|
51
|
+
:return: The differences of this CheckStarrocksParamsResponse.
|
52
52
|
:rtype: list[:class:`huaweicloudsdkgaussdb.v3.ParamGroupParameterDifferences`]
|
53
53
|
"""
|
54
|
-
return self.
|
54
|
+
return self._differences
|
55
55
|
|
56
|
-
@
|
57
|
-
def
|
58
|
-
"""Sets the
|
56
|
+
@differences.setter
|
57
|
+
def differences(self, differences):
|
58
|
+
"""Sets the differences of this CheckStarrocksParamsResponse.
|
59
59
|
|
60
60
|
参数之间区别的集合。
|
61
61
|
|
62
|
-
:param
|
63
|
-
:type
|
62
|
+
:param differences: The differences of this CheckStarrocksParamsResponse.
|
63
|
+
:type differences: list[:class:`huaweicloudsdkgaussdb.v3.ParamGroupParameterDifferences`]
|
64
64
|
"""
|
65
|
-
self.
|
65
|
+
self._differences = differences
|
66
66
|
|
67
67
|
def to_dict(self):
|
68
68
|
"""Returns the model properties as a dict"""
|
@@ -30,7 +30,8 @@ class StarRocksCreateRequest:
|
|
30
30
|
'be_volume': 'StarRocksCreateRequestBeVolume',
|
31
31
|
'az_code': 'str',
|
32
32
|
'time_zone': 'str',
|
33
|
-
'tags_info': 'StarRocksCreateRequestTagsInfo'
|
33
|
+
'tags_info': 'StarRocksCreateRequestTagsInfo',
|
34
|
+
'security_group_id': 'str'
|
34
35
|
}
|
35
36
|
|
36
37
|
attribute_map = {
|
@@ -47,10 +48,11 @@ class StarRocksCreateRequest:
|
|
47
48
|
'be_volume': 'be_volume',
|
48
49
|
'az_code': 'az_code',
|
49
50
|
'time_zone': 'time_zone',
|
50
|
-
'tags_info': 'tags_info'
|
51
|
+
'tags_info': 'tags_info',
|
52
|
+
'security_group_id': 'security_group_id'
|
51
53
|
}
|
52
54
|
|
53
|
-
def __init__(self, name=None, engine=None, ha=None, fe_flavor_id=None, be_flavor_id=None, db_root_pwd=None, fe_count=None, be_count=None, az_mode=None, fe_volume=None, be_volume=None, az_code=None, time_zone=None, tags_info=None):
|
55
|
+
def __init__(self, name=None, engine=None, ha=None, fe_flavor_id=None, be_flavor_id=None, db_root_pwd=None, fe_count=None, be_count=None, az_mode=None, fe_volume=None, be_volume=None, az_code=None, time_zone=None, tags_info=None, security_group_id=None):
|
54
56
|
"""StarRocksCreateRequest
|
55
57
|
|
56
58
|
The model defined in huaweicloud sdk
|
@@ -83,6 +85,8 @@ class StarRocksCreateRequest:
|
|
83
85
|
:type time_zone: str
|
84
86
|
:param tags_info:
|
85
87
|
:type tags_info: :class:`huaweicloudsdkgaussdb.v3.StarRocksCreateRequestTagsInfo`
|
88
|
+
:param security_group_id: 实例安全组ID。默认与Taurus安全组ID一致。
|
89
|
+
:type security_group_id: str
|
86
90
|
"""
|
87
91
|
|
88
92
|
|
@@ -101,6 +105,7 @@ class StarRocksCreateRequest:
|
|
101
105
|
self._az_code = None
|
102
106
|
self._time_zone = None
|
103
107
|
self._tags_info = None
|
108
|
+
self._security_group_id = None
|
104
109
|
self.discriminator = None
|
105
110
|
|
106
111
|
self.name = name
|
@@ -118,6 +123,8 @@ class StarRocksCreateRequest:
|
|
118
123
|
if time_zone is not None:
|
119
124
|
self.time_zone = time_zone
|
120
125
|
self.tags_info = tags_info
|
126
|
+
if security_group_id is not None:
|
127
|
+
self.security_group_id = security_group_id
|
121
128
|
|
122
129
|
@property
|
123
130
|
def name(self):
|
@@ -407,6 +414,28 @@ class StarRocksCreateRequest:
|
|
407
414
|
"""
|
408
415
|
self._tags_info = tags_info
|
409
416
|
|
417
|
+
@property
|
418
|
+
def security_group_id(self):
|
419
|
+
"""Gets the security_group_id of this StarRocksCreateRequest.
|
420
|
+
|
421
|
+
实例安全组ID。默认与Taurus安全组ID一致。
|
422
|
+
|
423
|
+
:return: The security_group_id of this StarRocksCreateRequest.
|
424
|
+
:rtype: str
|
425
|
+
"""
|
426
|
+
return self._security_group_id
|
427
|
+
|
428
|
+
@security_group_id.setter
|
429
|
+
def security_group_id(self, security_group_id):
|
430
|
+
"""Sets the security_group_id of this StarRocksCreateRequest.
|
431
|
+
|
432
|
+
实例安全组ID。默认与Taurus安全组ID一致。
|
433
|
+
|
434
|
+
:param security_group_id: The security_group_id of this StarRocksCreateRequest.
|
435
|
+
:type security_group_id: str
|
436
|
+
"""
|
437
|
+
self._security_group_id = security_group_id
|
438
|
+
|
410
439
|
def to_dict(self):
|
411
440
|
"""Returns the model properties as a dict"""
|
412
441
|
result = {}
|
{huaweicloudsdkgaussdb-3.1.116.dist-info → huaweicloudsdkgaussdb-3.1.118.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkgaussdb
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.118
|
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.
|
25
|
+
Requires-Dist: huaweicloudsdkcore>=3.1.118
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
@@ -63,7 +63,7 @@ huaweicloudsdkgaussdb/v3/model/check_star_rocks_resource_request.py,sha256=kIlsw
|
|
63
63
|
huaweicloudsdkgaussdb/v3/model/check_star_rocks_resource_response.py,sha256=kvpRfL9wt_IBo1g9RN6I5dOvXbVVkKDmwRanRDjThQw,3241
|
64
64
|
huaweicloudsdkgaussdb/v3/model/check_starrocks_params_request.py,sha256=E36wsXiaf0ZchwW8vKK0N20sVF_kNK_pvKGllAb9GSM,4237
|
65
65
|
huaweicloudsdkgaussdb/v3/model/check_starrocks_params_request_body.py,sha256=6WofQoea-ci6LezFxtro8mOtHDhQfN79JJpsUu42FFM,3676
|
66
|
-
huaweicloudsdkgaussdb/v3/model/check_starrocks_params_response.py,sha256=
|
66
|
+
huaweicloudsdkgaussdb/v3/model/check_starrocks_params_response.py,sha256=XFWtP-TkC7XBW1iGl4UjEmJ21g7wZmWxUOTisE26NQk,3615
|
67
67
|
huaweicloudsdkgaussdb/v3/model/check_table_config_request.py,sha256=bfsjiUrl3Qm1Y9IYwI2rx15QfqtCQRsrjxtkFu3R8kc,5029
|
68
68
|
huaweicloudsdkgaussdb/v3/model/check_table_config_response.py,sha256=ctGvgH2tY8t3B-DJQeRuWIMJNWu2aoQi8QRwqVK_sAo,6861
|
69
69
|
huaweicloudsdkgaussdb/v3/model/click_house_database_user_info.py,sha256=TfNVj2acZ5dNzFwJv4KUMKzk6fmdg4OrBy5nxrbqoMA,6717
|
@@ -564,7 +564,7 @@ huaweicloudsdkgaussdb/v3/model/sr_create_instance_rsp_instance_tags_info.py,sha2
|
|
564
564
|
huaweicloudsdkgaussdb/v3/model/sr_create_instance_rsp_instance_tags_info_sys_tags.py,sha256=X5MeDHTN-RlJXm92_mDpcg_sH5sY18zFmc5w1tvhV38,3902
|
565
565
|
huaweicloudsdkgaussdb/v3/model/sr_data_stores_datastores.py,sha256=YDM5G9wXI_-DSeC1EM3hIWXbmlWOTSu81TxjcRMsjVQ,4929
|
566
566
|
huaweicloudsdkgaussdb/v3/model/sr_flavor_resize_req.py,sha256=5FzO_-eVUs8CsgjzqxZf_YNRMOaDquKm1E1Em7RnPjI,4475
|
567
|
-
huaweicloudsdkgaussdb/v3/model/star_rocks_create_request.py,sha256=
|
567
|
+
huaweicloudsdkgaussdb/v3/model/star_rocks_create_request.py,sha256=oszjgwK9g-H34Krj57e2BDnPExbxL84eTh9ChbvnBCU,17193
|
568
568
|
huaweicloudsdkgaussdb/v3/model/star_rocks_create_request_be_volume.py,sha256=1_azjJdx9vX1Oau99yDEhXoULUzuwkPirz0qy9PzvFk,4257
|
569
569
|
huaweicloudsdkgaussdb/v3/model/star_rocks_create_request_engine.py,sha256=NHEI_mI2wS6_-lBidfeR_NU7b0pvhOY7KG7oTxVLOYQ,3850
|
570
570
|
huaweicloudsdkgaussdb/v3/model/star_rocks_create_request_fe_volume.py,sha256=N2LC6Otxi4s0rZlBI25GfIqViFDTNkMOd-XT8s0nzd4,4257
|
@@ -705,8 +705,8 @@ huaweicloudsdkgaussdb/v3/model/upgrade_proxy_version_response.py,sha256=j-sLDpdK
|
|
705
705
|
huaweicloudsdkgaussdb/v3/model/user_sync_req.py,sha256=_jObFGs0zxCcpg4K4j2Yh6Vwx1cBu4lt5Lwr650ryVw,2991
|
706
706
|
huaweicloudsdkgaussdb/v3/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
707
707
|
huaweicloudsdkgaussdb/v3/region/gaussdb_region.py,sha256=0rDyLMMfLinl1jkIMxONjoC6ad0olH_QAWuzYDrCDlc,2994
|
708
|
-
huaweicloudsdkgaussdb-3.1.
|
709
|
-
huaweicloudsdkgaussdb-3.1.
|
710
|
-
huaweicloudsdkgaussdb-3.1.
|
711
|
-
huaweicloudsdkgaussdb-3.1.
|
712
|
-
huaweicloudsdkgaussdb-3.1.
|
708
|
+
huaweicloudsdkgaussdb-3.1.118.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
709
|
+
huaweicloudsdkgaussdb-3.1.118.dist-info/METADATA,sha256=HEbP2qWgClk_KyE7psMAHDOvtv8WpEUyVJ8U6pBW2fU,1147
|
710
|
+
huaweicloudsdkgaussdb-3.1.118.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
|
711
|
+
huaweicloudsdkgaussdb-3.1.118.dist-info/top_level.txt,sha256=_exDbngu-ivLzntD1UgfR3aRI7WoXQUaayhgYshbpyA,22
|
712
|
+
huaweicloudsdkgaussdb-3.1.118.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{huaweicloudsdkgaussdb-3.1.116.dist-info → huaweicloudsdkgaussdb-3.1.118.dist-info}/top_level.txt
RENAMED
File without changes
|