tencentcloud-sdk-python-intl-en 3.0.1085__py2.py3-none-any.whl → 3.0.1087__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/car/v20220110/models.py +2 -2
- tencentcloud/cbs/v20170312/models.py +2 -2
- tencentcloud/cdc/__init__.py +0 -0
- tencentcloud/cdc/v20201214/__init__.py +0 -0
- tencentcloud/cdc/v20201214/cdc_client.py +486 -0
- tencentcloud/cdc/v20201214/errorcodes.py +78 -0
- tencentcloud/cdc/v20201214/models.py +6084 -0
- tencentcloud/ciam/v20210420/errorcodes.py +2 -2
- tencentcloud/ciam/v20210420/models.py +2 -2
- tencentcloud/ckafka/v20190819/models.py +2 -2
- tencentcloud/cloudaudit/v20190319/errorcodes.py +3 -0
- tencentcloud/cloudaudit/v20190319/models.py +2 -2
- tencentcloud/cls/v20201016/models.py +177 -0
- tencentcloud/cmq/v20190304/models.py +74 -74
- tencentcloud/cvm/v20170312/errorcodes.py +6 -0
- tencentcloud/dnspod/v20210323/errorcodes.py +9 -0
- tencentcloud/dnspod/v20210323/models.py +2 -2
- tencentcloud/eb/v20210416/models.py +47 -2
- tencentcloud/ecm/v20190719/models.py +2 -2
- tencentcloud/es/v20180416/models.py +2 -2
- tencentcloud/gme/v20180711/errorcodes.py +1 -1
- tencentcloud/gme/v20180711/models.py +2 -2
- tencentcloud/omics/v20221128/models.py +4 -0
- tencentcloud/organization/v20210331/errorcodes.py +96 -0
- tencentcloud/organization/v20210331/models.py +2110 -269
- tencentcloud/organization/v20210331/organization_client.py +417 -3
- tencentcloud/privatedns/v20201028/models.py +159 -35
- tencentcloud/privatedns/v20201028/privatedns_client.py +1 -1
- tencentcloud/sms/v20210111/errorcodes.py +4 -1
- tencentcloud/sqlserver/v20180328/errorcodes.py +3 -0
- tencentcloud/sqlserver/v20180328/models.py +2370 -1230
- tencentcloud/sqlserver/v20180328/sqlserver_client.py +96 -4
- tencentcloud/tat/v20201028/errorcodes.py +12 -0
- tencentcloud/tat/v20201028/models.py +38 -38
- tencentcloud/tchd/v20230306/models.py +2 -2
- tencentcloud/tdmq/v20200217/models.py +2 -2
- tencentcloud/tem/v20210701/models.py +2 -2
- tencentcloud/tiw/v20190919/errorcodes.py +3 -0
- tencentcloud/tiw/v20190919/models.py +102 -102
- tencentcloud/tke/v20180525/errorcodes.py +2 -2
- tencentcloud/vm/v20201229/errorcodes.py +14 -14
- tencentcloud/vm/v20201229/models.py +17 -2
- tencentcloud/vm/v20210922/models.py +2 -2
- tencentcloud/vod/v20180717/models.py +128 -11
- tencentcloud/waf/v20180125/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +1680 -720
- tencentcloud/waf/v20180125/waf_client.py +83 -45
- tencentcloud/wedata/v20210820/models.py +6 -6
- {tencentcloud_sdk_python_intl_en-3.0.1085.dist-info → tencentcloud_sdk_python_intl_en-3.0.1087.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1085.dist-info → tencentcloud_sdk_python_intl_en-3.0.1087.dist-info}/RECORD +53 -48
- {tencentcloud_sdk_python_intl_en-3.0.1085.dist-info → tencentcloud_sdk_python_intl_en-3.0.1087.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1085.dist-info → tencentcloud_sdk_python_intl_en-3.0.1087.dist-info}/top_level.txt +0 -0
|
@@ -2393,11 +2393,11 @@ class DescribePrivateZoneListRequest(AbstractModel):
|
|
|
2393
2393
|
|
|
2394
2394
|
def __init__(self):
|
|
2395
2395
|
r"""
|
|
2396
|
-
:param _Offset: Pagination offset, starting from 0
|
|
2396
|
+
:param _Offset: Pagination offset, starting from 0.
|
|
2397
2397
|
:type Offset: int
|
|
2398
|
-
:param _Limit:
|
|
2398
|
+
:param _Limit: Pagination limit. Maximum value: 100. Default value: 20.
|
|
2399
2399
|
:type Limit: int
|
|
2400
|
-
:param _Filters: Filter
|
|
2400
|
+
:param _Filters: Filter parameters.
|
|
2401
2401
|
:type Filters: list of Filter
|
|
2402
2402
|
"""
|
|
2403
2403
|
self._Offset = None
|
|
@@ -2406,7 +2406,7 @@ class DescribePrivateZoneListRequest(AbstractModel):
|
|
|
2406
2406
|
|
|
2407
2407
|
@property
|
|
2408
2408
|
def Offset(self):
|
|
2409
|
-
"""Pagination offset, starting from 0
|
|
2409
|
+
"""Pagination offset, starting from 0.
|
|
2410
2410
|
:rtype: int
|
|
2411
2411
|
"""
|
|
2412
2412
|
return self._Offset
|
|
@@ -2417,7 +2417,7 @@ class DescribePrivateZoneListRequest(AbstractModel):
|
|
|
2417
2417
|
|
|
2418
2418
|
@property
|
|
2419
2419
|
def Limit(self):
|
|
2420
|
-
"""
|
|
2420
|
+
"""Pagination limit. Maximum value: 100. Default value: 20.
|
|
2421
2421
|
:rtype: int
|
|
2422
2422
|
"""
|
|
2423
2423
|
return self._Limit
|
|
@@ -2428,7 +2428,7 @@ class DescribePrivateZoneListRequest(AbstractModel):
|
|
|
2428
2428
|
|
|
2429
2429
|
@property
|
|
2430
2430
|
def Filters(self):
|
|
2431
|
-
"""Filter
|
|
2431
|
+
"""Filter parameters.
|
|
2432
2432
|
:rtype: list of Filter
|
|
2433
2433
|
"""
|
|
2434
2434
|
return self._Filters
|
|
@@ -2464,9 +2464,9 @@ class DescribePrivateZoneListResponse(AbstractModel):
|
|
|
2464
2464
|
|
|
2465
2465
|
def __init__(self):
|
|
2466
2466
|
r"""
|
|
2467
|
-
:param _TotalCount: Number of private domains
|
|
2467
|
+
:param _TotalCount: Number of private domains.
|
|
2468
2468
|
:type TotalCount: int
|
|
2469
|
-
:param _PrivateZoneSet:
|
|
2469
|
+
:param _PrivateZoneSet: Private domain list.
|
|
2470
2470
|
:type PrivateZoneSet: list of PrivateZone
|
|
2471
2471
|
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2472
2472
|
:type RequestId: str
|
|
@@ -2477,7 +2477,7 @@ class DescribePrivateZoneListResponse(AbstractModel):
|
|
|
2477
2477
|
|
|
2478
2478
|
@property
|
|
2479
2479
|
def TotalCount(self):
|
|
2480
|
-
"""Number of private domains
|
|
2480
|
+
"""Number of private domains.
|
|
2481
2481
|
:rtype: int
|
|
2482
2482
|
"""
|
|
2483
2483
|
return self._TotalCount
|
|
@@ -2488,7 +2488,7 @@ class DescribePrivateZoneListResponse(AbstractModel):
|
|
|
2488
2488
|
|
|
2489
2489
|
@property
|
|
2490
2490
|
def PrivateZoneSet(self):
|
|
2491
|
-
"""
|
|
2491
|
+
"""Private domain list.
|
|
2492
2492
|
:rtype: list of PrivateZone
|
|
2493
2493
|
"""
|
|
2494
2494
|
return self._PrivateZoneSet
|
|
@@ -4086,38 +4086,59 @@ class PrivateDNSAccount(AbstractModel):
|
|
|
4086
4086
|
|
|
4087
4087
|
|
|
4088
4088
|
class PrivateZone(AbstractModel):
|
|
4089
|
-
"""Private domain information
|
|
4089
|
+
"""Private domain information.
|
|
4090
4090
|
|
|
4091
4091
|
"""
|
|
4092
4092
|
|
|
4093
4093
|
def __init__(self):
|
|
4094
4094
|
r"""
|
|
4095
|
-
:param _ZoneId: Private domain ID
|
|
4095
|
+
:param _ZoneId: Private domain ID, which is in zone-xxxxxxxx format.
|
|
4096
4096
|
:type ZoneId: str
|
|
4097
|
-
:param _OwnerUin:
|
|
4097
|
+
:param _OwnerUin: UIN of the domain name owner.
|
|
4098
4098
|
:type OwnerUin: int
|
|
4099
|
-
:param _Domain: Private domain
|
|
4099
|
+
:param _Domain: Private domain name.
|
|
4100
4100
|
:type Domain: str
|
|
4101
4101
|
:param _CreatedOn: Creation time
|
|
4102
4102
|
:type CreatedOn: str
|
|
4103
4103
|
:param _UpdatedOn: Modification time
|
|
4104
4104
|
:type UpdatedOn: str
|
|
4105
|
-
:param _RecordCount: Number of
|
|
4105
|
+
:param _RecordCount: Number of records.
|
|
4106
4106
|
:type RecordCount: int
|
|
4107
|
-
:param _Remark: Remarks
|
|
4108
|
-
Note:
|
|
4107
|
+
:param _Remark: Remarks.
|
|
4108
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4109
4109
|
:type Remark: str
|
|
4110
|
-
:param _VpcSet: List of bound VPCs
|
|
4110
|
+
:param _VpcSet: List of bound VPCs.
|
|
4111
4111
|
:type VpcSet: list of VpcInfo
|
|
4112
|
-
:param _Status:
|
|
4112
|
+
:param _Status: Status of the VPC bound with the private domain. SUSPEND: The VPC is not associated; ENABLED: the VPC has been associated.
|
|
4113
|
+
, FAILED: the VPC fails to be associated.
|
|
4113
4114
|
:type Status: str
|
|
4114
|
-
:param _DnsForwardStatus:
|
|
4115
|
+
:param _DnsForwardStatus: Recursive resolution status of the domain name. ENABLED: enabled; DISABLED: disabled.
|
|
4115
4116
|
:type DnsForwardStatus: str
|
|
4116
|
-
:param _Tags:
|
|
4117
|
+
:param _Tags: Tag key-value pair collection.
|
|
4117
4118
|
:type Tags: list of TagInfo
|
|
4118
|
-
:param _AccountVpcSet: List of
|
|
4119
|
-
Note:
|
|
4119
|
+
:param _AccountVpcSet: List of bound VPCs of the associated account.
|
|
4120
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4120
4121
|
:type AccountVpcSet: list of AccountVpcInfoOutput
|
|
4122
|
+
:param _IsCustomTld: Whether the TLD is a custom one.
|
|
4123
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4124
|
+
:type IsCustomTld: bool
|
|
4125
|
+
:param _CnameSpeedupStatus: CNAME acceleration status. ENABLED: enabled; DISABLED: disabled.
|
|
4126
|
+
:type CnameSpeedupStatus: str
|
|
4127
|
+
:param _ForwardRuleName: Forwarding rule name.
|
|
4128
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4129
|
+
:type ForwardRuleName: str
|
|
4130
|
+
:param _ForwardRuleType: Forwarding rule type. DOWN: from cloud to off-cloud; UP: from off-cloud to cloud. Currently, only DOWN is supported.
|
|
4131
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4132
|
+
:type ForwardRuleType: str
|
|
4133
|
+
:param _ForwardAddress: Forwarding address.
|
|
4134
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4135
|
+
:type ForwardAddress: str
|
|
4136
|
+
:param _EndPointName: Endpoint name.
|
|
4137
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4138
|
+
:type EndPointName: str
|
|
4139
|
+
:param _DeletedVpcSet: Deleted VPC.
|
|
4140
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4141
|
+
:type DeletedVpcSet: list of VpcInfo
|
|
4121
4142
|
"""
|
|
4122
4143
|
self._ZoneId = None
|
|
4123
4144
|
self._OwnerUin = None
|
|
@@ -4131,10 +4152,17 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
4131
4152
|
self._DnsForwardStatus = None
|
|
4132
4153
|
self._Tags = None
|
|
4133
4154
|
self._AccountVpcSet = None
|
|
4155
|
+
self._IsCustomTld = None
|
|
4156
|
+
self._CnameSpeedupStatus = None
|
|
4157
|
+
self._ForwardRuleName = None
|
|
4158
|
+
self._ForwardRuleType = None
|
|
4159
|
+
self._ForwardAddress = None
|
|
4160
|
+
self._EndPointName = None
|
|
4161
|
+
self._DeletedVpcSet = None
|
|
4134
4162
|
|
|
4135
4163
|
@property
|
|
4136
4164
|
def ZoneId(self):
|
|
4137
|
-
"""Private domain ID
|
|
4165
|
+
"""Private domain ID, which is in zone-xxxxxxxx format.
|
|
4138
4166
|
:rtype: str
|
|
4139
4167
|
"""
|
|
4140
4168
|
return self._ZoneId
|
|
@@ -4145,7 +4173,7 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
4145
4173
|
|
|
4146
4174
|
@property
|
|
4147
4175
|
def OwnerUin(self):
|
|
4148
|
-
"""
|
|
4176
|
+
"""UIN of the domain name owner.
|
|
4149
4177
|
:rtype: int
|
|
4150
4178
|
"""
|
|
4151
4179
|
return self._OwnerUin
|
|
@@ -4156,7 +4184,7 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
4156
4184
|
|
|
4157
4185
|
@property
|
|
4158
4186
|
def Domain(self):
|
|
4159
|
-
"""Private domain
|
|
4187
|
+
"""Private domain name.
|
|
4160
4188
|
:rtype: str
|
|
4161
4189
|
"""
|
|
4162
4190
|
return self._Domain
|
|
@@ -4189,7 +4217,7 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
4189
4217
|
|
|
4190
4218
|
@property
|
|
4191
4219
|
def RecordCount(self):
|
|
4192
|
-
"""Number of
|
|
4220
|
+
"""Number of records.
|
|
4193
4221
|
:rtype: int
|
|
4194
4222
|
"""
|
|
4195
4223
|
return self._RecordCount
|
|
@@ -4200,8 +4228,8 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
4200
4228
|
|
|
4201
4229
|
@property
|
|
4202
4230
|
def Remark(self):
|
|
4203
|
-
"""Remarks
|
|
4204
|
-
Note:
|
|
4231
|
+
"""Remarks.
|
|
4232
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4205
4233
|
:rtype: str
|
|
4206
4234
|
"""
|
|
4207
4235
|
return self._Remark
|
|
@@ -4212,7 +4240,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
4212
4240
|
|
|
4213
4241
|
@property
|
|
4214
4242
|
def VpcSet(self):
|
|
4215
|
-
"""List of bound VPCs
|
|
4243
|
+
"""List of bound VPCs.
|
|
4216
4244
|
:rtype: list of VpcInfo
|
|
4217
4245
|
"""
|
|
4218
4246
|
return self._VpcSet
|
|
@@ -4223,7 +4251,8 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
4223
4251
|
|
|
4224
4252
|
@property
|
|
4225
4253
|
def Status(self):
|
|
4226
|
-
"""
|
|
4254
|
+
"""Status of the VPC bound with the private domain. SUSPEND: The VPC is not associated; ENABLED: the VPC has been associated.
|
|
4255
|
+
, FAILED: the VPC fails to be associated.
|
|
4227
4256
|
:rtype: str
|
|
4228
4257
|
"""
|
|
4229
4258
|
return self._Status
|
|
@@ -4234,7 +4263,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
4234
4263
|
|
|
4235
4264
|
@property
|
|
4236
4265
|
def DnsForwardStatus(self):
|
|
4237
|
-
"""
|
|
4266
|
+
"""Recursive resolution status of the domain name. ENABLED: enabled; DISABLED: disabled.
|
|
4238
4267
|
:rtype: str
|
|
4239
4268
|
"""
|
|
4240
4269
|
return self._DnsForwardStatus
|
|
@@ -4245,7 +4274,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
4245
4274
|
|
|
4246
4275
|
@property
|
|
4247
4276
|
def Tags(self):
|
|
4248
|
-
"""
|
|
4277
|
+
"""Tag key-value pair collection.
|
|
4249
4278
|
:rtype: list of TagInfo
|
|
4250
4279
|
"""
|
|
4251
4280
|
return self._Tags
|
|
@@ -4256,8 +4285,8 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
4256
4285
|
|
|
4257
4286
|
@property
|
|
4258
4287
|
def AccountVpcSet(self):
|
|
4259
|
-
"""List of
|
|
4260
|
-
Note:
|
|
4288
|
+
"""List of bound VPCs of the associated account.
|
|
4289
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4261
4290
|
:rtype: list of AccountVpcInfoOutput
|
|
4262
4291
|
"""
|
|
4263
4292
|
return self._AccountVpcSet
|
|
@@ -4266,6 +4295,89 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
4266
4295
|
def AccountVpcSet(self, AccountVpcSet):
|
|
4267
4296
|
self._AccountVpcSet = AccountVpcSet
|
|
4268
4297
|
|
|
4298
|
+
@property
|
|
4299
|
+
def IsCustomTld(self):
|
|
4300
|
+
"""Whether the TLD is a custom one.
|
|
4301
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4302
|
+
:rtype: bool
|
|
4303
|
+
"""
|
|
4304
|
+
return self._IsCustomTld
|
|
4305
|
+
|
|
4306
|
+
@IsCustomTld.setter
|
|
4307
|
+
def IsCustomTld(self, IsCustomTld):
|
|
4308
|
+
self._IsCustomTld = IsCustomTld
|
|
4309
|
+
|
|
4310
|
+
@property
|
|
4311
|
+
def CnameSpeedupStatus(self):
|
|
4312
|
+
"""CNAME acceleration status. ENABLED: enabled; DISABLED: disabled.
|
|
4313
|
+
:rtype: str
|
|
4314
|
+
"""
|
|
4315
|
+
return self._CnameSpeedupStatus
|
|
4316
|
+
|
|
4317
|
+
@CnameSpeedupStatus.setter
|
|
4318
|
+
def CnameSpeedupStatus(self, CnameSpeedupStatus):
|
|
4319
|
+
self._CnameSpeedupStatus = CnameSpeedupStatus
|
|
4320
|
+
|
|
4321
|
+
@property
|
|
4322
|
+
def ForwardRuleName(self):
|
|
4323
|
+
"""Forwarding rule name.
|
|
4324
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4325
|
+
:rtype: str
|
|
4326
|
+
"""
|
|
4327
|
+
return self._ForwardRuleName
|
|
4328
|
+
|
|
4329
|
+
@ForwardRuleName.setter
|
|
4330
|
+
def ForwardRuleName(self, ForwardRuleName):
|
|
4331
|
+
self._ForwardRuleName = ForwardRuleName
|
|
4332
|
+
|
|
4333
|
+
@property
|
|
4334
|
+
def ForwardRuleType(self):
|
|
4335
|
+
"""Forwarding rule type. DOWN: from cloud to off-cloud; UP: from off-cloud to cloud. Currently, only DOWN is supported.
|
|
4336
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4337
|
+
:rtype: str
|
|
4338
|
+
"""
|
|
4339
|
+
return self._ForwardRuleType
|
|
4340
|
+
|
|
4341
|
+
@ForwardRuleType.setter
|
|
4342
|
+
def ForwardRuleType(self, ForwardRuleType):
|
|
4343
|
+
self._ForwardRuleType = ForwardRuleType
|
|
4344
|
+
|
|
4345
|
+
@property
|
|
4346
|
+
def ForwardAddress(self):
|
|
4347
|
+
"""Forwarding address.
|
|
4348
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4349
|
+
:rtype: str
|
|
4350
|
+
"""
|
|
4351
|
+
return self._ForwardAddress
|
|
4352
|
+
|
|
4353
|
+
@ForwardAddress.setter
|
|
4354
|
+
def ForwardAddress(self, ForwardAddress):
|
|
4355
|
+
self._ForwardAddress = ForwardAddress
|
|
4356
|
+
|
|
4357
|
+
@property
|
|
4358
|
+
def EndPointName(self):
|
|
4359
|
+
"""Endpoint name.
|
|
4360
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4361
|
+
:rtype: str
|
|
4362
|
+
"""
|
|
4363
|
+
return self._EndPointName
|
|
4364
|
+
|
|
4365
|
+
@EndPointName.setter
|
|
4366
|
+
def EndPointName(self, EndPointName):
|
|
4367
|
+
self._EndPointName = EndPointName
|
|
4368
|
+
|
|
4369
|
+
@property
|
|
4370
|
+
def DeletedVpcSet(self):
|
|
4371
|
+
"""Deleted VPC.
|
|
4372
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4373
|
+
:rtype: list of VpcInfo
|
|
4374
|
+
"""
|
|
4375
|
+
return self._DeletedVpcSet
|
|
4376
|
+
|
|
4377
|
+
@DeletedVpcSet.setter
|
|
4378
|
+
def DeletedVpcSet(self, DeletedVpcSet):
|
|
4379
|
+
self._DeletedVpcSet = DeletedVpcSet
|
|
4380
|
+
|
|
4269
4381
|
|
|
4270
4382
|
def _deserialize(self, params):
|
|
4271
4383
|
self._ZoneId = params.get("ZoneId")
|
|
@@ -4295,6 +4407,18 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
4295
4407
|
obj = AccountVpcInfoOutput()
|
|
4296
4408
|
obj._deserialize(item)
|
|
4297
4409
|
self._AccountVpcSet.append(obj)
|
|
4410
|
+
self._IsCustomTld = params.get("IsCustomTld")
|
|
4411
|
+
self._CnameSpeedupStatus = params.get("CnameSpeedupStatus")
|
|
4412
|
+
self._ForwardRuleName = params.get("ForwardRuleName")
|
|
4413
|
+
self._ForwardRuleType = params.get("ForwardRuleType")
|
|
4414
|
+
self._ForwardAddress = params.get("ForwardAddress")
|
|
4415
|
+
self._EndPointName = params.get("EndPointName")
|
|
4416
|
+
if params.get("DeletedVpcSet") is not None:
|
|
4417
|
+
self._DeletedVpcSet = []
|
|
4418
|
+
for item in params.get("DeletedVpcSet"):
|
|
4419
|
+
obj = VpcInfo()
|
|
4420
|
+
obj._deserialize(item)
|
|
4421
|
+
self._DeletedVpcSet.append(obj)
|
|
4298
4422
|
memeber_set = set(params.keys())
|
|
4299
4423
|
for name, value in vars(self).items():
|
|
4300
4424
|
property_name = name[1:]
|
|
@@ -326,7 +326,7 @@ class PrivatednsClient(AbstractClient):
|
|
|
326
326
|
|
|
327
327
|
|
|
328
328
|
def DescribePrivateZoneList(self, request):
|
|
329
|
-
"""This API is used to
|
|
329
|
+
"""This API is used to obtain the private domain list.
|
|
330
330
|
|
|
331
331
|
:param request: Request instance for DescribePrivateZoneList.
|
|
332
332
|
:type request: :class:`tencentcloud.privatedns.v20201028.models.DescribePrivateZoneListRequest`
|
|
@@ -266,6 +266,9 @@ UNAUTHORIZEDOPERATION_SERVICESUSPENDDUETOARREARS = 'UnauthorizedOperation.Servic
|
|
|
266
266
|
# Failed to verify `SmsSdkAppId`. Please check whether [SmsSdkAppId](https://console.cloud.tencent.com/smsv2/app-manage) is under the account associated with the [TencentCloud API key](https://console.cloud.tencent.com/cam/capi).
|
|
267
267
|
UNAUTHORIZEDOPERATION_SMSSDKAPPIDVERIFYFAIL = 'UnauthorizedOperation.SmsSdkAppIdVerifyFail'
|
|
268
268
|
|
|
269
|
+
#
|
|
270
|
+
UNSUPPORTEDOPERATION = 'UnsupportedOperation'
|
|
271
|
+
|
|
269
272
|
# The request is not supported.
|
|
270
273
|
UNSUPPORTEDOPERATION_ = 'UnsupportedOperation.'
|
|
271
274
|
|
|
@@ -278,5 +281,5 @@ UNSUPPORTEDOPERATION_CONTAINDOMESTICANDINTERNATIONALPHONENUMBER = 'UnsupportedOp
|
|
|
278
281
|
# A Global SMS template cannot be used to sent messages to Chinese mainland numbers. Please use a Chinese Mainland SMS template instead.
|
|
279
282
|
UNSUPPORTEDOPERATION_GLOBALTEMPLATETOCHINESEMAINLANDPHONE = 'UnsupportedOperation.GlobalTemplateToChineseMainlandPhone'
|
|
280
283
|
|
|
281
|
-
#
|
|
284
|
+
# Not supported in this area.
|
|
282
285
|
UNSUPPORTEDOPERATION_UNSUPPORTEDREGION = 'UnsupportedOperation.UnsupportedRegion'
|
|
@@ -194,6 +194,9 @@ INVALIDPARAMETERVALUE_SECURITYGROUPIDISILLEGAL = 'InvalidParameterValue.Security
|
|
|
194
194
|
# The database limit is exceeded.
|
|
195
195
|
LIMITEXCEEDED_TOOMANYDB = 'LimitExceeded.TooManyDB'
|
|
196
196
|
|
|
197
|
+
# Error of missing parameters.
|
|
198
|
+
MISSINGPARAMETER = 'MissingParameter'
|
|
199
|
+
|
|
197
200
|
# An incremental backup import task to be started already exists.
|
|
198
201
|
RESOURCEINUSE_INCREMENTALMIGRATIONEXIST = 'ResourceInUse.IncrementalMigrationExist'
|
|
199
202
|
|