tencentcloud-sdk-python 3.0.1369__py2.py3-none-any.whl → 3.0.1371__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ams/v20201229/ams_client.py +17 -6
- tencentcloud/ams/v20201229/models.py +8 -6
- tencentcloud/bi/v20220105/models.py +15 -0
- tencentcloud/cdb/v20170320/cdb_client.py +2 -2
- tencentcloud/cdb/v20170320/models.py +10 -10
- tencentcloud/cdn/v20180606/cdn_client.py +25 -9
- tencentcloud/cdn/v20180606/models.py +4 -4
- tencentcloud/cdwch/v20200915/errorcodes.py +15 -0
- tencentcloud/chc/v20230418/models.py +15 -0
- tencentcloud/ckafka/v20190819/models.py +0 -8
- tencentcloud/cynosdb/v20190107/models.py +0 -6
- tencentcloud/dc/v20180410/models.py +25 -12
- tencentcloud/domain/v20180808/models.py +330 -34
- tencentcloud/dsgc/v20190723/models.py +15 -0
- tencentcloud/dts/v20211206/models.py +0 -15
- tencentcloud/ecdn/v20191012/ecdn_client.py +18 -6
- tencentcloud/gs/v20191118/models.py +51 -6
- tencentcloud/gwlb/v20240906/models.py +0 -24
- tencentcloud/hai/v20230812/errorcodes.py +6 -0
- tencentcloud/hai/v20230812/hai_client.py +23 -0
- tencentcloud/hai/v20230812/models.py +109 -0
- tencentcloud/ims/v20201229/models.py +25 -4
- tencentcloud/iss/v20230517/errorcodes.py +6 -0
- tencentcloud/iss/v20230517/iss_client.py +115 -0
- tencentcloud/iss/v20230517/models.py +1095 -12
- tencentcloud/lighthouse/v20200324/models.py +2 -0
- tencentcloud/lke/v20231130/models.py +70 -4
- tencentcloud/lkeap/v20240522/models.py +191 -0
- tencentcloud/ocr/v20181119/models.py +15 -0
- tencentcloud/postgres/v20170312/models.py +36 -106
- tencentcloud/postgres/v20170312/postgres_client.py +15 -5
- tencentcloud/ses/v20201002/models.py +15 -0
- tencentcloud/soe/v20180724/models.py +4 -2
- tencentcloud/tione/v20211111/models.py +84 -0
- tencentcloud/tione/v20211111/tione_client.py +23 -0
- tencentcloud/trtc/v20190722/models.py +0 -4
- tencentcloud/tse/v20201207/models.py +45 -0
- tencentcloud/tts/v20190823/tts_client.py +2 -2
- tencentcloud/vm/v20210922/models.py +2 -2
- tencentcloud/vm/v20210922/vm_client.py +16 -8
- tencentcloud/vod/v20180717/models.py +12 -0
- tencentcloud/vpc/v20170312/models.py +0 -2
- tencentcloud/wedata/v20210820/models.py +69 -26
- {tencentcloud_sdk_python-3.0.1369.dist-info → tencentcloud_sdk_python-3.0.1371.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1369.dist-info → tencentcloud_sdk_python-3.0.1371.dist-info}/RECORD +49 -49
- {tencentcloud_sdk_python-3.0.1369.dist-info → tencentcloud_sdk_python-3.0.1371.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1369.dist-info → tencentcloud_sdk_python-3.0.1371.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1369.dist-info → tencentcloud_sdk_python-3.0.1371.dist-info}/top_level.txt +0 -0
@@ -2935,6 +2935,8 @@ KeyId创建获取相关参考[开启透明数据加密](https://cloud.tencent.co
|
|
2935
2935
|
:param _KMSRegion: 使用KMS服务的地域,KMSRegion为空默认使用本地域的KMS,本地域不支持的情况下需自选其他KMS支持的地域。
|
2936
2936
|
KMSRegion相关介绍参考[开启透明数据加密](https://cloud.tencent.com/document/product/409/71749)
|
2937
2937
|
:type KMSRegion: str
|
2938
|
+
:param _KMSClusterId: 指定KMS服务的集群,KMSClusterId为空使用默认集群的KMS,若选择指定KMS集群,则需要传入KMSClusterId。 KMSClusterId相关介绍参考开启透明数据加密
|
2939
|
+
:type KMSClusterId: str
|
2938
2940
|
:param _DBEngine: 数据库引擎,支持:
|
2939
2941
|
<li>postgresql:云数据库PostgreSQL</li>
|
2940
2942
|
<li>mssql_compatible:MSSQL兼容-云数据库PostgreSQL</li>
|
@@ -2987,6 +2989,7 @@ mssql_compatible引擎:
|
|
2987
2989
|
self._NeedSupportTDE = None
|
2988
2990
|
self._KMSKeyId = None
|
2989
2991
|
self._KMSRegion = None
|
2992
|
+
self._KMSClusterId = None
|
2990
2993
|
self._DBEngine = None
|
2991
2994
|
self._DBEngineConfig = None
|
2992
2995
|
self._SyncMode = None
|
@@ -3313,6 +3316,17 @@ KMSRegion相关介绍参考[开启透明数据加密](https://cloud.tencent.com/
|
|
3313
3316
|
def KMSRegion(self, KMSRegion):
|
3314
3317
|
self._KMSRegion = KMSRegion
|
3315
3318
|
|
3319
|
+
@property
|
3320
|
+
def KMSClusterId(self):
|
3321
|
+
"""指定KMS服务的集群,KMSClusterId为空使用默认集群的KMS,若选择指定KMS集群,则需要传入KMSClusterId。 KMSClusterId相关介绍参考开启透明数据加密
|
3322
|
+
:rtype: str
|
3323
|
+
"""
|
3324
|
+
return self._KMSClusterId
|
3325
|
+
|
3326
|
+
@KMSClusterId.setter
|
3327
|
+
def KMSClusterId(self, KMSClusterId):
|
3328
|
+
self._KMSClusterId = KMSClusterId
|
3329
|
+
|
3316
3330
|
@property
|
3317
3331
|
def DBEngine(self):
|
3318
3332
|
"""数据库引擎,支持:
|
@@ -3412,6 +3426,7 @@ mssql_compatible引擎:
|
|
3412
3426
|
self._NeedSupportTDE = params.get("NeedSupportTDE")
|
3413
3427
|
self._KMSKeyId = params.get("KMSKeyId")
|
3414
3428
|
self._KMSRegion = params.get("KMSRegion")
|
3429
|
+
self._KMSClusterId = params.get("KMSClusterId")
|
3415
3430
|
self._DBEngine = params.get("DBEngine")
|
3416
3431
|
self._DBEngineConfig = params.get("DBEngineConfig")
|
3417
3432
|
self._SyncMode = params.get("SyncMode")
|
@@ -4869,12 +4884,10 @@ class DBInstance(AbstractModel):
|
|
4869
4884
|
:param _DBInstanceClass: 售卖规格ID
|
4870
4885
|
:type DBInstanceClass: str
|
4871
4886
|
:param _DBMajorVersion: PostgreSQL大版本号,版本信息可从[DescribeDBVersions](https://cloud.tencent.com/document/api/409/89018)获取,目前支持10,11,12,13,14,15这几个大版本。
|
4872
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4873
4887
|
:type DBMajorVersion: str
|
4874
4888
|
:param _DBVersion: PostgreSQL社区大版本+小版本号,如12.4,版本信息可从[DescribeDBVersions](https://cloud.tencent.com/document/api/409/89018)获取。
|
4875
4889
|
:type DBVersion: str
|
4876
4890
|
:param _DBKernelVersion: PostgreSQL内核版本号,如v12.7_r1.8,版本信息可从[DescribeDBVersions](https://cloud.tencent.com/document/api/409/89018)获取。
|
4877
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4878
4891
|
:type DBKernelVersion: str
|
4879
4892
|
:param _DBInstanceType: 实例类型,类型有:
|
4880
4893
|
<li>primary:主实例</li>
|
@@ -4916,19 +4929,14 @@ class DBInstance(AbstractModel):
|
|
4916
4929
|
:param _ProjectId: 项目ID。
|
4917
4930
|
:type ProjectId: int
|
4918
4931
|
:param _TagList: 实例绑定的标签信息。
|
4919
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4920
4932
|
:type TagList: list of Tag
|
4921
4933
|
:param _MasterDBInstanceId: 主实例信息,仅在实例为只读实例时返回。
|
4922
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4923
4934
|
:type MasterDBInstanceId: str
|
4924
4935
|
:param _ReadOnlyInstanceNum: 只读实例数量。
|
4925
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4926
4936
|
:type ReadOnlyInstanceNum: int
|
4927
4937
|
:param _StatusInReadonlyGroup: 只读实例在只读组中的状态。
|
4928
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4929
4938
|
:type StatusInReadonlyGroup: str
|
4930
4939
|
:param _OfflineTime: 下线时间。
|
4931
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4932
4940
|
:type OfflineTime: str
|
4933
4941
|
:param _DBNodeSet: 实例的节点信息。
|
4934
4942
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -4938,13 +4946,11 @@ class DBInstance(AbstractModel):
|
|
4938
4946
|
<li>1:支持</li>
|
4939
4947
|
默认值:0
|
4940
4948
|
TDE数据加密可参考[数据透明加密概述](https://cloud.tencent.com/document/product/409/71748)
|
4941
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4942
4949
|
:type IsSupportTDE: int
|
4943
4950
|
:param _DBEngine: 数据库引擎,支持:
|
4944
4951
|
<li>postgresql:云数据库PostgreSQL</li>
|
4945
4952
|
<li>mssql_compatible:MSSQL兼容-云数据库PostgreSQL</li>
|
4946
4953
|
默认值:postgresql
|
4947
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4948
4954
|
:type DBEngine: str
|
4949
4955
|
:param _DBEngineConfig: 数据库引擎的配置信息,配置格式如下:
|
4950
4956
|
{"$key1":"$value1", "$key2":"$value2"}
|
@@ -4954,7 +4960,6 @@ mssql_compatible引擎:
|
|
4954
4960
|
<li>defaultLocale:排序区域规则,可选参数,在初始化后不可修改,默认为en_US,可选值如下:
|
4955
4961
|
"af_ZA", "sq_AL", "ar_DZ", "ar_BH", "ar_EG", "ar_IQ", "ar_JO", "ar_KW", "ar_LB", "ar_LY", "ar_MA", "ar_OM", "ar_QA", "ar_SA", "ar_SY", "ar_TN", "ar_AE", "ar_YE", "hy_AM", "az_Cyrl_AZ", "az_Latn_AZ", "eu_ES", "be_BY", "bg_BG", "ca_ES", "zh_HK", "zh_MO", "zh_CN", "zh_SG", "zh_TW", "hr_HR", "cs_CZ", "da_DK", "nl_BE", "nl_NL", "en_AU", "en_BZ", "en_CA", "en_IE", "en_JM", "en_NZ", "en_PH", "en_ZA", "en_TT", "en_GB", "en_US", "en_ZW", "et_EE", "fo_FO", "fa_IR", "fi_FI", "fr_BE", "fr_CA", "fr_FR", "fr_LU", "fr_MC", "fr_CH", "mk_MK", "ka_GE", "de_AT", "de_DE", "de_LI", "de_LU", "de_CH", "el_GR", "gu_IN", "he_IL", "hi_IN", "hu_HU", "is_IS", "id_ID", "it_IT", "it_CH", "ja_JP", "kn_IN", "kok_IN", "ko_KR", "ky_KG", "lv_LV", "lt_LT", "ms_BN", "ms_MY", "mr_IN", "mn_MN", "nb_NO", "nn_NO", "pl_PL", "pt_BR", "pt_PT", "pa_IN", "ro_RO", "ru_RU", "sa_IN", "sr_Cyrl_RS", "sr_Latn_RS", "sk_SK", "sl_SI", "es_AR", "es_BO", "es_CL", "es_CO", "es_CR", "es_DO", "es_EC", "es_SV", "es_GT", "es_HN", "es_MX", "es_NI", "es_PA", "es_PY","es_PE", "es_PR", "es_ES", "es_TRADITIONAL", "es_UY", "es_VE", "sw_KE", "sv_FI", "sv_SE", "tt_RU", "te_IN", "th_TH", "tr_TR", "uk_UA", "ur_IN", "ur_PK", "uz_Cyrl_UZ", "uz_Latn_UZ", "vi_VN"。</li>
|
4956
4962
|
<li>serverCollationName:排序规则名称,可选参数,在初始化后不可修改,默认为sql_latin1_general_cp1_ci_as,可选值如下:"bbf_unicode_general_ci_as", "bbf_unicode_cp1_ci_as", "bbf_unicode_CP1250_ci_as", "bbf_unicode_CP1251_ci_as", "bbf_unicode_cp1253_ci_as", "bbf_unicode_cp1254_ci_as", "bbf_unicode_cp1255_ci_as", "bbf_unicode_cp1256_ci_as", "bbf_unicode_cp1257_ci_as", "bbf_unicode_cp1258_ci_as", "bbf_unicode_cp874_ci_as", "sql_latin1_general_cp1250_ci_as", "sql_latin1_general_cp1251_ci_as", "sql_latin1_general_cp1_ci_as", "sql_latin1_general_cp1253_ci_as", "sql_latin1_general_cp1254_ci_as", "sql_latin1_general_cp1255_ci_as","sql_latin1_general_cp1256_ci_as", "sql_latin1_general_cp1257_ci_as", "sql_latin1_general_cp1258_ci_as", "chinese_prc_ci_as", "cyrillic_general_ci_as", "finnish_swedish_ci_as", "french_ci_as", "japanese_ci_as", "korean_wansung_ci_as", "latin1_general_ci_as", "modern_spanish_ci_as", "polish_ci_as", "thai_ci_as", "traditional_spanish_ci_as", "turkish_ci_as", "ukrainian_ci_as", "vietnamese_ci_as"。</li>
|
4957
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4958
4963
|
:type DBEngineConfig: str
|
4959
4964
|
:param _NetworkAccessList: 实例网络信息列表(此字段已废弃)
|
4960
4965
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -5129,7 +5134,6 @@ mssql_compatible引擎:
|
|
5129
5134
|
@property
|
5130
5135
|
def DBMajorVersion(self):
|
5131
5136
|
"""PostgreSQL大版本号,版本信息可从[DescribeDBVersions](https://cloud.tencent.com/document/api/409/89018)获取,目前支持10,11,12,13,14,15这几个大版本。
|
5132
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5133
5137
|
:rtype: str
|
5134
5138
|
"""
|
5135
5139
|
return self._DBMajorVersion
|
@@ -5152,7 +5156,6 @@ mssql_compatible引擎:
|
|
5152
5156
|
@property
|
5153
5157
|
def DBKernelVersion(self):
|
5154
5158
|
"""PostgreSQL内核版本号,如v12.7_r1.8,版本信息可从[DescribeDBVersions](https://cloud.tencent.com/document/api/409/89018)获取。
|
5155
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5156
5159
|
:rtype: str
|
5157
5160
|
"""
|
5158
5161
|
return self._DBKernelVersion
|
@@ -5329,7 +5332,6 @@ mssql_compatible引擎:
|
|
5329
5332
|
@property
|
5330
5333
|
def TagList(self):
|
5331
5334
|
"""实例绑定的标签信息。
|
5332
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5333
5335
|
:rtype: list of Tag
|
5334
5336
|
"""
|
5335
5337
|
return self._TagList
|
@@ -5341,7 +5343,6 @@ mssql_compatible引擎:
|
|
5341
5343
|
@property
|
5342
5344
|
def MasterDBInstanceId(self):
|
5343
5345
|
"""主实例信息,仅在实例为只读实例时返回。
|
5344
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5345
5346
|
:rtype: str
|
5346
5347
|
"""
|
5347
5348
|
return self._MasterDBInstanceId
|
@@ -5353,7 +5354,6 @@ mssql_compatible引擎:
|
|
5353
5354
|
@property
|
5354
5355
|
def ReadOnlyInstanceNum(self):
|
5355
5356
|
"""只读实例数量。
|
5356
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5357
5357
|
:rtype: int
|
5358
5358
|
"""
|
5359
5359
|
return self._ReadOnlyInstanceNum
|
@@ -5365,7 +5365,6 @@ mssql_compatible引擎:
|
|
5365
5365
|
@property
|
5366
5366
|
def StatusInReadonlyGroup(self):
|
5367
5367
|
"""只读实例在只读组中的状态。
|
5368
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5369
5368
|
:rtype: str
|
5370
5369
|
"""
|
5371
5370
|
return self._StatusInReadonlyGroup
|
@@ -5377,7 +5376,6 @@ mssql_compatible引擎:
|
|
5377
5376
|
@property
|
5378
5377
|
def OfflineTime(self):
|
5379
5378
|
"""下线时间。
|
5380
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5381
5379
|
:rtype: str
|
5382
5380
|
"""
|
5383
5381
|
return self._OfflineTime
|
@@ -5405,7 +5403,6 @@ mssql_compatible引擎:
|
|
5405
5403
|
<li>1:支持</li>
|
5406
5404
|
默认值:0
|
5407
5405
|
TDE数据加密可参考[数据透明加密概述](https://cloud.tencent.com/document/product/409/71748)
|
5408
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5409
5406
|
:rtype: int
|
5410
5407
|
"""
|
5411
5408
|
return self._IsSupportTDE
|
@@ -5420,7 +5417,6 @@ TDE数据加密可参考[数据透明加密概述](https://cloud.tencent.com/doc
|
|
5420
5417
|
<li>postgresql:云数据库PostgreSQL</li>
|
5421
5418
|
<li>mssql_compatible:MSSQL兼容-云数据库PostgreSQL</li>
|
5422
5419
|
默认值:postgresql
|
5423
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5424
5420
|
:rtype: str
|
5425
5421
|
"""
|
5426
5422
|
return self._DBEngine
|
@@ -5439,7 +5435,6 @@ mssql_compatible引擎:
|
|
5439
5435
|
<li>defaultLocale:排序区域规则,可选参数,在初始化后不可修改,默认为en_US,可选值如下:
|
5440
5436
|
"af_ZA", "sq_AL", "ar_DZ", "ar_BH", "ar_EG", "ar_IQ", "ar_JO", "ar_KW", "ar_LB", "ar_LY", "ar_MA", "ar_OM", "ar_QA", "ar_SA", "ar_SY", "ar_TN", "ar_AE", "ar_YE", "hy_AM", "az_Cyrl_AZ", "az_Latn_AZ", "eu_ES", "be_BY", "bg_BG", "ca_ES", "zh_HK", "zh_MO", "zh_CN", "zh_SG", "zh_TW", "hr_HR", "cs_CZ", "da_DK", "nl_BE", "nl_NL", "en_AU", "en_BZ", "en_CA", "en_IE", "en_JM", "en_NZ", "en_PH", "en_ZA", "en_TT", "en_GB", "en_US", "en_ZW", "et_EE", "fo_FO", "fa_IR", "fi_FI", "fr_BE", "fr_CA", "fr_FR", "fr_LU", "fr_MC", "fr_CH", "mk_MK", "ka_GE", "de_AT", "de_DE", "de_LI", "de_LU", "de_CH", "el_GR", "gu_IN", "he_IL", "hi_IN", "hu_HU", "is_IS", "id_ID", "it_IT", "it_CH", "ja_JP", "kn_IN", "kok_IN", "ko_KR", "ky_KG", "lv_LV", "lt_LT", "ms_BN", "ms_MY", "mr_IN", "mn_MN", "nb_NO", "nn_NO", "pl_PL", "pt_BR", "pt_PT", "pa_IN", "ro_RO", "ru_RU", "sa_IN", "sr_Cyrl_RS", "sr_Latn_RS", "sk_SK", "sl_SI", "es_AR", "es_BO", "es_CL", "es_CO", "es_CR", "es_DO", "es_EC", "es_SV", "es_GT", "es_HN", "es_MX", "es_NI", "es_PA", "es_PY","es_PE", "es_PR", "es_ES", "es_TRADITIONAL", "es_UY", "es_VE", "sw_KE", "sv_FI", "sv_SE", "tt_RU", "te_IN", "th_TH", "tr_TR", "uk_UA", "ur_IN", "ur_PK", "uz_Cyrl_UZ", "uz_Latn_UZ", "vi_VN"。</li>
|
5441
5437
|
<li>serverCollationName:排序规则名称,可选参数,在初始化后不可修改,默认为sql_latin1_general_cp1_ci_as,可选值如下:"bbf_unicode_general_ci_as", "bbf_unicode_cp1_ci_as", "bbf_unicode_CP1250_ci_as", "bbf_unicode_CP1251_ci_as", "bbf_unicode_cp1253_ci_as", "bbf_unicode_cp1254_ci_as", "bbf_unicode_cp1255_ci_as", "bbf_unicode_cp1256_ci_as", "bbf_unicode_cp1257_ci_as", "bbf_unicode_cp1258_ci_as", "bbf_unicode_cp874_ci_as", "sql_latin1_general_cp1250_ci_as", "sql_latin1_general_cp1251_ci_as", "sql_latin1_general_cp1_ci_as", "sql_latin1_general_cp1253_ci_as", "sql_latin1_general_cp1254_ci_as", "sql_latin1_general_cp1255_ci_as","sql_latin1_general_cp1256_ci_as", "sql_latin1_general_cp1257_ci_as", "sql_latin1_general_cp1258_ci_as", "chinese_prc_ci_as", "cyrillic_general_ci_as", "finnish_swedish_ci_as", "french_ci_as", "japanese_ci_as", "korean_wansung_ci_as", "latin1_general_ci_as", "modern_spanish_ci_as", "polish_ci_as", "thai_ci_as", "traditional_spanish_ci_as", "turkish_ci_as", "ukrainian_ci_as", "vietnamese_ci_as"。</li>
|
5442
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5443
5438
|
:rtype: str
|
5444
5439
|
"""
|
5445
5440
|
return self._DBEngineConfig
|
@@ -10175,7 +10170,6 @@ class DescribeDatabaseObjectsResponse(AbstractModel):
|
|
10175
10170
|
注意:此字段可能返回 null,表示取不到有效值。
|
10176
10171
|
:type ObjectSet: list of str
|
10177
10172
|
:param _TotalCount: 查询对象总数量
|
10178
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10179
10173
|
:type TotalCount: int
|
10180
10174
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10181
10175
|
:type RequestId: str
|
@@ -10199,7 +10193,6 @@ class DescribeDatabaseObjectsResponse(AbstractModel):
|
|
10199
10193
|
@property
|
10200
10194
|
def TotalCount(self):
|
10201
10195
|
"""查询对象总数量
|
10202
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10203
10196
|
:rtype: int
|
10204
10197
|
"""
|
10205
10198
|
return self._TotalCount
|
@@ -11148,25 +11141,19 @@ class DescribeParameterTemplateAttributesResponse(AbstractModel):
|
|
11148
11141
|
def __init__(self):
|
11149
11142
|
r"""
|
11150
11143
|
:param _TemplateId: 参数模板ID
|
11151
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11152
11144
|
:type TemplateId: str
|
11153
11145
|
:param _TotalCount: 参数模板包含的参数个数
|
11154
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11155
11146
|
:type TotalCount: int
|
11156
11147
|
:param _ParamInfoSet: 参数模板包含的参数信息
|
11157
11148
|
注意:此字段可能返回 null,表示取不到有效值。
|
11158
11149
|
:type ParamInfoSet: list of ParamInfo
|
11159
11150
|
:param _TemplateName: 参数模板名称
|
11160
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11161
11151
|
:type TemplateName: str
|
11162
11152
|
:param _DBMajorVersion: 参数模板适用的数据库版本
|
11163
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11164
11153
|
:type DBMajorVersion: str
|
11165
11154
|
:param _DBEngine: 参数模板适用的数据库引擎
|
11166
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11167
11155
|
:type DBEngine: str
|
11168
11156
|
:param _TemplateDescription: 参数模板描述
|
11169
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11170
11157
|
:type TemplateDescription: str
|
11171
11158
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11172
11159
|
:type RequestId: str
|
@@ -11183,7 +11170,6 @@ class DescribeParameterTemplateAttributesResponse(AbstractModel):
|
|
11183
11170
|
@property
|
11184
11171
|
def TemplateId(self):
|
11185
11172
|
"""参数模板ID
|
11186
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11187
11173
|
:rtype: str
|
11188
11174
|
"""
|
11189
11175
|
return self._TemplateId
|
@@ -11195,7 +11181,6 @@ class DescribeParameterTemplateAttributesResponse(AbstractModel):
|
|
11195
11181
|
@property
|
11196
11182
|
def TotalCount(self):
|
11197
11183
|
"""参数模板包含的参数个数
|
11198
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11199
11184
|
:rtype: int
|
11200
11185
|
"""
|
11201
11186
|
return self._TotalCount
|
@@ -11219,7 +11204,6 @@ class DescribeParameterTemplateAttributesResponse(AbstractModel):
|
|
11219
11204
|
@property
|
11220
11205
|
def TemplateName(self):
|
11221
11206
|
"""参数模板名称
|
11222
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11223
11207
|
:rtype: str
|
11224
11208
|
"""
|
11225
11209
|
return self._TemplateName
|
@@ -11231,7 +11215,6 @@ class DescribeParameterTemplateAttributesResponse(AbstractModel):
|
|
11231
11215
|
@property
|
11232
11216
|
def DBMajorVersion(self):
|
11233
11217
|
"""参数模板适用的数据库版本
|
11234
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11235
11218
|
:rtype: str
|
11236
11219
|
"""
|
11237
11220
|
return self._DBMajorVersion
|
@@ -11243,7 +11226,6 @@ class DescribeParameterTemplateAttributesResponse(AbstractModel):
|
|
11243
11226
|
@property
|
11244
11227
|
def DBEngine(self):
|
11245
11228
|
"""参数模板适用的数据库引擎
|
11246
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11247
11229
|
:rtype: str
|
11248
11230
|
"""
|
11249
11231
|
return self._DBEngine
|
@@ -11255,7 +11237,6 @@ class DescribeParameterTemplateAttributesResponse(AbstractModel):
|
|
11255
11237
|
@property
|
11256
11238
|
def TemplateDescription(self):
|
11257
11239
|
"""参数模板描述
|
11258
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11259
11240
|
:rtype: str
|
11260
11241
|
"""
|
11261
11242
|
return self._TemplateDescription
|
@@ -13080,6 +13061,8 @@ class EncryptionKey(AbstractModel):
|
|
13080
13061
|
:type KeyRegion: str
|
13081
13062
|
:param _CreateTime: DEK密钥创建时间。
|
13082
13063
|
:type CreateTime: str
|
13064
|
+
:param _KMSClusterId: 密钥所在的KMS服务集群Id,为空表示密钥在默认的KMS集群中,不为空表示在指定的KMS服务集群中
|
13065
|
+
:type KMSClusterId: str
|
13083
13066
|
"""
|
13084
13067
|
self._KeyId = None
|
13085
13068
|
self._KeyAlias = None
|
@@ -13087,6 +13070,7 @@ class EncryptionKey(AbstractModel):
|
|
13087
13070
|
self._IsEnabled = None
|
13088
13071
|
self._KeyRegion = None
|
13089
13072
|
self._CreateTime = None
|
13073
|
+
self._KMSClusterId = None
|
13090
13074
|
|
13091
13075
|
@property
|
13092
13076
|
def KeyId(self):
|
@@ -13154,6 +13138,17 @@ class EncryptionKey(AbstractModel):
|
|
13154
13138
|
def CreateTime(self, CreateTime):
|
13155
13139
|
self._CreateTime = CreateTime
|
13156
13140
|
|
13141
|
+
@property
|
13142
|
+
def KMSClusterId(self):
|
13143
|
+
"""密钥所在的KMS服务集群Id,为空表示密钥在默认的KMS集群中,不为空表示在指定的KMS服务集群中
|
13144
|
+
:rtype: str
|
13145
|
+
"""
|
13146
|
+
return self._KMSClusterId
|
13147
|
+
|
13148
|
+
@KMSClusterId.setter
|
13149
|
+
def KMSClusterId(self, KMSClusterId):
|
13150
|
+
self._KMSClusterId = KMSClusterId
|
13151
|
+
|
13157
13152
|
|
13158
13153
|
def _deserialize(self, params):
|
13159
13154
|
self._KeyId = params.get("KeyId")
|
@@ -13162,6 +13157,7 @@ class EncryptionKey(AbstractModel):
|
|
13162
13157
|
self._IsEnabled = params.get("IsEnabled")
|
13163
13158
|
self._KeyRegion = params.get("KeyRegion")
|
13164
13159
|
self._CreateTime = params.get("CreateTime")
|
13160
|
+
self._KMSClusterId = params.get("KMSClusterId")
|
13165
13161
|
memeber_set = set(params.keys())
|
13166
13162
|
for name, value in vars(self).items():
|
13167
13163
|
property_name = name[1:]
|
@@ -14691,10 +14687,12 @@ class ModifyBackupDownloadRestrictionRequest(AbstractModel):
|
|
14691
14687
|
:param _VpcRestrictionEffect: vpc限制效力,ALLOW 允许;DENY 拒绝。
|
14692
14688
|
:type VpcRestrictionEffect: str
|
14693
14689
|
:param _VpcIdSet: 允许或拒绝下载备份文件的vpcId列表。
|
14690
|
+
**注意:**该入参会全量替换存量已有集合,非增量更新。修改需传入预期的全量集合。
|
14694
14691
|
:type VpcIdSet: list of str
|
14695
14692
|
:param _IpRestrictionEffect: ip限制效力,ALLOW 允许;DENY 拒绝。
|
14696
14693
|
:type IpRestrictionEffect: str
|
14697
14694
|
:param _IpSet: 允许或拒绝下载备份文件的ip列表。
|
14695
|
+
**注意:**该入参会全量替换存量已有集合,非增量更新。修改需传入预期的全量集合。
|
14698
14696
|
:type IpSet: list of str
|
14699
14697
|
"""
|
14700
14698
|
self._RestrictionType = None
|
@@ -14728,6 +14726,7 @@ class ModifyBackupDownloadRestrictionRequest(AbstractModel):
|
|
14728
14726
|
@property
|
14729
14727
|
def VpcIdSet(self):
|
14730
14728
|
"""允许或拒绝下载备份文件的vpcId列表。
|
14729
|
+
**注意:**该入参会全量替换存量已有集合,非增量更新。修改需传入预期的全量集合。
|
14731
14730
|
:rtype: list of str
|
14732
14731
|
"""
|
14733
14732
|
return self._VpcIdSet
|
@@ -14750,6 +14749,7 @@ class ModifyBackupDownloadRestrictionRequest(AbstractModel):
|
|
14750
14749
|
@property
|
14751
14750
|
def IpSet(self):
|
14752
14751
|
"""允许或拒绝下载备份文件的ip列表。
|
14752
|
+
**注意:**该入参会全量替换存量已有集合,非增量更新。修改需传入预期的全量集合。
|
14753
14753
|
:rtype: list of str
|
14754
14754
|
"""
|
14755
14755
|
return self._IpSet
|
@@ -15923,7 +15923,7 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
|
|
15923
15923
|
r"""
|
15924
15924
|
:param _SecurityGroupIdSet: 实例或只读组要绑定的安全组列表。
|
15925
15925
|
安全组信息可以通过调用 [DescribeSecurityGroups](https://cloud.tencent.com/document/api/215/15808) 的返回值中的sgId字段来查询。
|
15926
|
-
|
15926
|
+
**注意:**该入参会全量替换存量已有集合,非增量更新。修改需传入预期的全量集合。
|
15927
15927
|
:type SecurityGroupIdSet: list of str
|
15928
15928
|
:param _DBInstanceId: 实例ID,DBInstanceId和ReadOnlyGroupId至少传一个;如果都传,忽略ReadOnlyGroupId
|
15929
15929
|
:type DBInstanceId: str
|
@@ -15938,7 +15938,7 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
|
|
15938
15938
|
def SecurityGroupIdSet(self):
|
15939
15939
|
"""实例或只读组要绑定的安全组列表。
|
15940
15940
|
安全组信息可以通过调用 [DescribeSecurityGroups](https://cloud.tencent.com/document/api/215/15808) 的返回值中的sgId字段来查询。
|
15941
|
-
|
15941
|
+
**注意:**该入参会全量替换存量已有集合,非增量更新。修改需传入预期的全量集合。
|
15942
15942
|
:rtype: list of str
|
15943
15943
|
"""
|
15944
15944
|
return self._SecurityGroupIdSet
|
@@ -17716,61 +17716,44 @@ class ParamInfo(AbstractModel):
|
|
17716
17716
|
def __init__(self):
|
17717
17717
|
r"""
|
17718
17718
|
:param _ID: 参数ID
|
17719
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17720
17719
|
:type ID: int
|
17721
17720
|
:param _Name: 参数名
|
17722
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17723
17721
|
:type Name: str
|
17724
17722
|
:param _ParamValueType: 参数值类型:integer(整型)、real(浮点型)、bool(布尔型)、enum(枚举类型)、mutil_enum(枚举类型、支持多选)。
|
17725
17723
|
当参数类型为integer(整型)、real(浮点型)时,参数的取值范围根据返回值的Max、Min确定;
|
17726
17724
|
当参数类型为bool(布尔型)时,参数设置值取值范围是true | false;
|
17727
17725
|
当参数类型为enum(枚举类型)、mutil_enum(多枚举类型)时,参数的取值范围由返回值中的EnumValue确定。
|
17728
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17729
17726
|
:type ParamValueType: str
|
17730
17727
|
:param _Unit: 参数值 单位。参数没有单位时,该字段返回空
|
17731
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17732
17728
|
:type Unit: str
|
17733
17729
|
:param _DefaultValue: 参数默认值。以字符串形式返回
|
17734
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17735
17730
|
:type DefaultValue: str
|
17736
17731
|
:param _CurrentValue: 参数当前运行值。以字符串形式返回
|
17737
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17738
17732
|
:type CurrentValue: str
|
17739
17733
|
:param _Max: 数值类型(integer、real)参数,取值下界
|
17740
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17741
17734
|
:type Max: float
|
17742
17735
|
:param _EnumValue: 枚举类型参数,取值范围
|
17743
17736
|
注意:此字段可能返回 null,表示取不到有效值。
|
17744
17737
|
:type EnumValue: list of str
|
17745
17738
|
:param _Min: 数值类型(integer、real)参数,取值上界
|
17746
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17747
17739
|
:type Min: float
|
17748
17740
|
:param _ParamDescriptionCH: 参数中文描述
|
17749
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17750
17741
|
:type ParamDescriptionCH: str
|
17751
17742
|
:param _ParamDescriptionEN: 参数英文描述
|
17752
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17753
17743
|
:type ParamDescriptionEN: str
|
17754
17744
|
:param _NeedReboot: 参数修改,是否重启生效。(true为需要,false为不需要)
|
17755
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17756
17745
|
:type NeedReboot: bool
|
17757
17746
|
:param _ClassificationCN: 参数中文分类
|
17758
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17759
17747
|
:type ClassificationCN: str
|
17760
17748
|
:param _ClassificationEN: 参数英文分类
|
17761
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17762
17749
|
:type ClassificationEN: str
|
17763
17750
|
:param _SpecRelated: 是否和规格相关。(true为相关,false为不想关)
|
17764
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17765
17751
|
:type SpecRelated: bool
|
17766
17752
|
:param _Advanced: 是否为重点参数。(true为重点参数,修改是需要重点关注,可能会影响实例性能)
|
17767
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17768
17753
|
:type Advanced: bool
|
17769
17754
|
:param _LastModifyTime: 参数最后一次修改时间
|
17770
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17771
17755
|
:type LastModifyTime: str
|
17772
17756
|
:param _StandbyRelated: 参数主备制约,0:无主备制约关系,1:备机参数值需比主机大,2:主机参数值需比备机大
|
17773
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17774
17757
|
:type StandbyRelated: int
|
17775
17758
|
:param _VersionRelationSet: 参数版本关联信息,内容为相应内核版本下的参数详细信息
|
17776
17759
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -17803,7 +17786,6 @@ class ParamInfo(AbstractModel):
|
|
17803
17786
|
@property
|
17804
17787
|
def ID(self):
|
17805
17788
|
"""参数ID
|
17806
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17807
17789
|
:rtype: int
|
17808
17790
|
"""
|
17809
17791
|
return self._ID
|
@@ -17815,7 +17797,6 @@ class ParamInfo(AbstractModel):
|
|
17815
17797
|
@property
|
17816
17798
|
def Name(self):
|
17817
17799
|
"""参数名
|
17818
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17819
17800
|
:rtype: str
|
17820
17801
|
"""
|
17821
17802
|
return self._Name
|
@@ -17830,7 +17811,6 @@ class ParamInfo(AbstractModel):
|
|
17830
17811
|
当参数类型为integer(整型)、real(浮点型)时,参数的取值范围根据返回值的Max、Min确定;
|
17831
17812
|
当参数类型为bool(布尔型)时,参数设置值取值范围是true | false;
|
17832
17813
|
当参数类型为enum(枚举类型)、mutil_enum(多枚举类型)时,参数的取值范围由返回值中的EnumValue确定。
|
17833
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17834
17814
|
:rtype: str
|
17835
17815
|
"""
|
17836
17816
|
return self._ParamValueType
|
@@ -17842,7 +17822,6 @@ class ParamInfo(AbstractModel):
|
|
17842
17822
|
@property
|
17843
17823
|
def Unit(self):
|
17844
17824
|
"""参数值 单位。参数没有单位时,该字段返回空
|
17845
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17846
17825
|
:rtype: str
|
17847
17826
|
"""
|
17848
17827
|
return self._Unit
|
@@ -17854,7 +17833,6 @@ class ParamInfo(AbstractModel):
|
|
17854
17833
|
@property
|
17855
17834
|
def DefaultValue(self):
|
17856
17835
|
"""参数默认值。以字符串形式返回
|
17857
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17858
17836
|
:rtype: str
|
17859
17837
|
"""
|
17860
17838
|
return self._DefaultValue
|
@@ -17866,7 +17844,6 @@ class ParamInfo(AbstractModel):
|
|
17866
17844
|
@property
|
17867
17845
|
def CurrentValue(self):
|
17868
17846
|
"""参数当前运行值。以字符串形式返回
|
17869
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17870
17847
|
:rtype: str
|
17871
17848
|
"""
|
17872
17849
|
return self._CurrentValue
|
@@ -17878,7 +17855,6 @@ class ParamInfo(AbstractModel):
|
|
17878
17855
|
@property
|
17879
17856
|
def Max(self):
|
17880
17857
|
"""数值类型(integer、real)参数,取值下界
|
17881
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17882
17858
|
:rtype: float
|
17883
17859
|
"""
|
17884
17860
|
return self._Max
|
@@ -17902,7 +17878,6 @@ class ParamInfo(AbstractModel):
|
|
17902
17878
|
@property
|
17903
17879
|
def Min(self):
|
17904
17880
|
"""数值类型(integer、real)参数,取值上界
|
17905
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17906
17881
|
:rtype: float
|
17907
17882
|
"""
|
17908
17883
|
return self._Min
|
@@ -17914,7 +17889,6 @@ class ParamInfo(AbstractModel):
|
|
17914
17889
|
@property
|
17915
17890
|
def ParamDescriptionCH(self):
|
17916
17891
|
"""参数中文描述
|
17917
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17918
17892
|
:rtype: str
|
17919
17893
|
"""
|
17920
17894
|
return self._ParamDescriptionCH
|
@@ -17926,7 +17900,6 @@ class ParamInfo(AbstractModel):
|
|
17926
17900
|
@property
|
17927
17901
|
def ParamDescriptionEN(self):
|
17928
17902
|
"""参数英文描述
|
17929
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17930
17903
|
:rtype: str
|
17931
17904
|
"""
|
17932
17905
|
return self._ParamDescriptionEN
|
@@ -17938,7 +17911,6 @@ class ParamInfo(AbstractModel):
|
|
17938
17911
|
@property
|
17939
17912
|
def NeedReboot(self):
|
17940
17913
|
"""参数修改,是否重启生效。(true为需要,false为不需要)
|
17941
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17942
17914
|
:rtype: bool
|
17943
17915
|
"""
|
17944
17916
|
return self._NeedReboot
|
@@ -17950,7 +17922,6 @@ class ParamInfo(AbstractModel):
|
|
17950
17922
|
@property
|
17951
17923
|
def ClassificationCN(self):
|
17952
17924
|
"""参数中文分类
|
17953
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17954
17925
|
:rtype: str
|
17955
17926
|
"""
|
17956
17927
|
return self._ClassificationCN
|
@@ -17962,7 +17933,6 @@ class ParamInfo(AbstractModel):
|
|
17962
17933
|
@property
|
17963
17934
|
def ClassificationEN(self):
|
17964
17935
|
"""参数英文分类
|
17965
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17966
17936
|
:rtype: str
|
17967
17937
|
"""
|
17968
17938
|
return self._ClassificationEN
|
@@ -17974,7 +17944,6 @@ class ParamInfo(AbstractModel):
|
|
17974
17944
|
@property
|
17975
17945
|
def SpecRelated(self):
|
17976
17946
|
"""是否和规格相关。(true为相关,false为不想关)
|
17977
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17978
17947
|
:rtype: bool
|
17979
17948
|
"""
|
17980
17949
|
return self._SpecRelated
|
@@ -17986,7 +17955,6 @@ class ParamInfo(AbstractModel):
|
|
17986
17955
|
@property
|
17987
17956
|
def Advanced(self):
|
17988
17957
|
"""是否为重点参数。(true为重点参数,修改是需要重点关注,可能会影响实例性能)
|
17989
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17990
17958
|
:rtype: bool
|
17991
17959
|
"""
|
17992
17960
|
return self._Advanced
|
@@ -17998,7 +17966,6 @@ class ParamInfo(AbstractModel):
|
|
17998
17966
|
@property
|
17999
17967
|
def LastModifyTime(self):
|
18000
17968
|
"""参数最后一次修改时间
|
18001
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18002
17969
|
:rtype: str
|
18003
17970
|
"""
|
18004
17971
|
return self._LastModifyTime
|
@@ -18010,7 +17977,6 @@ class ParamInfo(AbstractModel):
|
|
18010
17977
|
@property
|
18011
17978
|
def StandbyRelated(self):
|
18012
17979
|
"""参数主备制约,0:无主备制约关系,1:备机参数值需比主机大,2:主机参数值需比备机大
|
18013
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18014
17980
|
:rtype: int
|
18015
17981
|
"""
|
18016
17982
|
return self._StandbyRelated
|
@@ -18093,22 +18059,16 @@ class ParamSpecRelation(AbstractModel):
|
|
18093
18059
|
def __init__(self):
|
18094
18060
|
r"""
|
18095
18061
|
:param _Name: 参数名称
|
18096
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18097
18062
|
:type Name: str
|
18098
18063
|
:param _Memory: 参数信息所属规格
|
18099
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18100
18064
|
:type Memory: str
|
18101
18065
|
:param _Value: 参数在该规格下的默认值
|
18102
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18103
18066
|
:type Value: str
|
18104
18067
|
:param _Unit: 参数值单位。参数没有单位时,该字段返回空
|
18105
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18106
18068
|
:type Unit: str
|
18107
18069
|
:param _Max: 数值类型(integer、real)参数,取值上界
|
18108
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18109
18070
|
:type Max: float
|
18110
18071
|
:param _Min: 数值类型(integer、real)参数,取值下界
|
18111
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18112
18072
|
:type Min: float
|
18113
18073
|
:param _EnumValue: 枚举类型参数,取值范围
|
18114
18074
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -18125,7 +18085,6 @@ class ParamSpecRelation(AbstractModel):
|
|
18125
18085
|
@property
|
18126
18086
|
def Name(self):
|
18127
18087
|
"""参数名称
|
18128
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18129
18088
|
:rtype: str
|
18130
18089
|
"""
|
18131
18090
|
return self._Name
|
@@ -18137,7 +18096,6 @@ class ParamSpecRelation(AbstractModel):
|
|
18137
18096
|
@property
|
18138
18097
|
def Memory(self):
|
18139
18098
|
"""参数信息所属规格
|
18140
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18141
18099
|
:rtype: str
|
18142
18100
|
"""
|
18143
18101
|
return self._Memory
|
@@ -18149,7 +18107,6 @@ class ParamSpecRelation(AbstractModel):
|
|
18149
18107
|
@property
|
18150
18108
|
def Value(self):
|
18151
18109
|
"""参数在该规格下的默认值
|
18152
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18153
18110
|
:rtype: str
|
18154
18111
|
"""
|
18155
18112
|
return self._Value
|
@@ -18161,7 +18118,6 @@ class ParamSpecRelation(AbstractModel):
|
|
18161
18118
|
@property
|
18162
18119
|
def Unit(self):
|
18163
18120
|
"""参数值单位。参数没有单位时,该字段返回空
|
18164
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18165
18121
|
:rtype: str
|
18166
18122
|
"""
|
18167
18123
|
return self._Unit
|
@@ -18173,7 +18129,6 @@ class ParamSpecRelation(AbstractModel):
|
|
18173
18129
|
@property
|
18174
18130
|
def Max(self):
|
18175
18131
|
"""数值类型(integer、real)参数,取值上界
|
18176
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18177
18132
|
:rtype: float
|
18178
18133
|
"""
|
18179
18134
|
return self._Max
|
@@ -18185,7 +18140,6 @@ class ParamSpecRelation(AbstractModel):
|
|
18185
18140
|
@property
|
18186
18141
|
def Min(self):
|
18187
18142
|
"""数值类型(integer、real)参数,取值下界
|
18188
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18189
18143
|
:rtype: float
|
18190
18144
|
"""
|
18191
18145
|
return self._Min
|
@@ -18233,22 +18187,16 @@ class ParamVersionRelation(AbstractModel):
|
|
18233
18187
|
def __init__(self):
|
18234
18188
|
r"""
|
18235
18189
|
:param _Name: 参数名称
|
18236
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18237
18190
|
:type Name: str
|
18238
18191
|
:param _DBKernelVersion: 参数信息所属内核版本
|
18239
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18240
18192
|
:type DBKernelVersion: str
|
18241
18193
|
:param _Value: 参数在该版本该规格下的默认值
|
18242
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18243
18194
|
:type Value: str
|
18244
18195
|
:param _Unit: 参数值单位。参数没有单位时,该字段返回空
|
18245
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18246
18196
|
:type Unit: str
|
18247
18197
|
:param _Max: 数值类型(integer、real)参数,取值上界
|
18248
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18249
18198
|
:type Max: float
|
18250
18199
|
:param _Min: 数值类型(integer、real)参数,取值下界
|
18251
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18252
18200
|
:type Min: float
|
18253
18201
|
:param _EnumValue: 枚举类型参数,取值范围
|
18254
18202
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -18265,7 +18213,6 @@ class ParamVersionRelation(AbstractModel):
|
|
18265
18213
|
@property
|
18266
18214
|
def Name(self):
|
18267
18215
|
"""参数名称
|
18268
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18269
18216
|
:rtype: str
|
18270
18217
|
"""
|
18271
18218
|
return self._Name
|
@@ -18277,7 +18224,6 @@ class ParamVersionRelation(AbstractModel):
|
|
18277
18224
|
@property
|
18278
18225
|
def DBKernelVersion(self):
|
18279
18226
|
"""参数信息所属内核版本
|
18280
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18281
18227
|
:rtype: str
|
18282
18228
|
"""
|
18283
18229
|
return self._DBKernelVersion
|
@@ -18289,7 +18235,6 @@ class ParamVersionRelation(AbstractModel):
|
|
18289
18235
|
@property
|
18290
18236
|
def Value(self):
|
18291
18237
|
"""参数在该版本该规格下的默认值
|
18292
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18293
18238
|
:rtype: str
|
18294
18239
|
"""
|
18295
18240
|
return self._Value
|
@@ -18301,7 +18246,6 @@ class ParamVersionRelation(AbstractModel):
|
|
18301
18246
|
@property
|
18302
18247
|
def Unit(self):
|
18303
18248
|
"""参数值单位。参数没有单位时,该字段返回空
|
18304
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18305
18249
|
:rtype: str
|
18306
18250
|
"""
|
18307
18251
|
return self._Unit
|
@@ -18313,7 +18257,6 @@ class ParamVersionRelation(AbstractModel):
|
|
18313
18257
|
@property
|
18314
18258
|
def Max(self):
|
18315
18259
|
"""数值类型(integer、real)参数,取值上界
|
18316
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18317
18260
|
:rtype: float
|
18318
18261
|
"""
|
18319
18262
|
return self._Max
|
@@ -18325,7 +18268,6 @@ class ParamVersionRelation(AbstractModel):
|
|
18325
18268
|
@property
|
18326
18269
|
def Min(self):
|
18327
18270
|
"""数值类型(integer、real)参数,取值下界
|
18328
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18329
18271
|
:rtype: float
|
18330
18272
|
"""
|
18331
18273
|
return self._Min
|
@@ -18787,19 +18729,14 @@ class ReadOnlyGroup(AbstractModel):
|
|
18787
18729
|
def __init__(self):
|
18788
18730
|
r"""
|
18789
18731
|
:param _ReadOnlyGroupId: 只读组标识
|
18790
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18791
18732
|
:type ReadOnlyGroupId: str
|
18792
18733
|
:param _ReadOnlyGroupName: 只读组名字
|
18793
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18794
18734
|
:type ReadOnlyGroupName: str
|
18795
18735
|
:param _ProjectId: 项目id
|
18796
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18797
18736
|
:type ProjectId: int
|
18798
18737
|
:param _MasterDBInstanceId: 主实例id
|
18799
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18800
18738
|
:type MasterDBInstanceId: str
|
18801
18739
|
:param _MinDelayEliminateReserve: 最小保留实例数
|
18802
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18803
18740
|
:type MinDelayEliminateReserve: int
|
18804
18741
|
:param _MaxReplayLatency: 延迟空间大小阈值
|
18805
18742
|
:type MaxReplayLatency: int
|
@@ -18812,7 +18749,6 @@ class ReadOnlyGroup(AbstractModel):
|
|
18812
18749
|
:param _VpcId: 虚拟网络id
|
18813
18750
|
:type VpcId: str
|
18814
18751
|
:param _SubnetId: 子网id
|
18815
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18816
18752
|
:type SubnetId: str
|
18817
18753
|
:param _Region: 地域id
|
18818
18754
|
:type Region: str
|
@@ -18852,7 +18788,6 @@ class ReadOnlyGroup(AbstractModel):
|
|
18852
18788
|
@property
|
18853
18789
|
def ReadOnlyGroupId(self):
|
18854
18790
|
"""只读组标识
|
18855
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18856
18791
|
:rtype: str
|
18857
18792
|
"""
|
18858
18793
|
return self._ReadOnlyGroupId
|
@@ -18864,7 +18799,6 @@ class ReadOnlyGroup(AbstractModel):
|
|
18864
18799
|
@property
|
18865
18800
|
def ReadOnlyGroupName(self):
|
18866
18801
|
"""只读组名字
|
18867
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18868
18802
|
:rtype: str
|
18869
18803
|
"""
|
18870
18804
|
return self._ReadOnlyGroupName
|
@@ -18876,7 +18810,6 @@ class ReadOnlyGroup(AbstractModel):
|
|
18876
18810
|
@property
|
18877
18811
|
def ProjectId(self):
|
18878
18812
|
"""项目id
|
18879
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18880
18813
|
:rtype: int
|
18881
18814
|
"""
|
18882
18815
|
return self._ProjectId
|
@@ -18888,7 +18821,6 @@ class ReadOnlyGroup(AbstractModel):
|
|
18888
18821
|
@property
|
18889
18822
|
def MasterDBInstanceId(self):
|
18890
18823
|
"""主实例id
|
18891
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18892
18824
|
:rtype: str
|
18893
18825
|
"""
|
18894
18826
|
return self._MasterDBInstanceId
|
@@ -18900,7 +18832,6 @@ class ReadOnlyGroup(AbstractModel):
|
|
18900
18832
|
@property
|
18901
18833
|
def MinDelayEliminateReserve(self):
|
18902
18834
|
"""最小保留实例数
|
18903
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18904
18835
|
:rtype: int
|
18905
18836
|
"""
|
18906
18837
|
return self._MinDelayEliminateReserve
|
@@ -18967,7 +18898,6 @@ class ReadOnlyGroup(AbstractModel):
|
|
18967
18898
|
@property
|
18968
18899
|
def SubnetId(self):
|
18969
18900
|
"""子网id
|
18970
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18971
18901
|
:rtype: str
|
18972
18902
|
"""
|
18973
18903
|
return self._SubnetId
|