tencentcloud-sdk-python 3.0.1416__py2.py3-none-any.whl → 3.0.1418__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 (27) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/ai3d/__init__.py +0 -0
  3. tencentcloud/ai3d/v20250513/__init__.py +0 -0
  4. tencentcloud/ai3d/v20250513/ai3d_client.py +74 -0
  5. tencentcloud/ai3d/v20250513/errorcodes.py +15 -0
  6. tencentcloud/ai3d/v20250513/models.py +461 -0
  7. tencentcloud/ccc/v20200210/models.py +15 -0
  8. tencentcloud/cdb/v20170320/cdb_client.py +2 -2
  9. tencentcloud/cdb/v20170320/models.py +46 -36
  10. tencentcloud/cvm/v20170312/models.py +156 -0
  11. tencentcloud/cwp/v20180228/models.py +197 -2
  12. tencentcloud/dlc/v20210125/dlc_client.py +23 -0
  13. tencentcloud/dlc/v20210125/models.py +84 -0
  14. tencentcloud/emr/v20190103/errorcodes.py +3 -0
  15. tencentcloud/emr/v20190103/models.py +30 -0
  16. tencentcloud/gs/v20191118/gs_client.py +1 -1
  17. tencentcloud/gs/v20191118/models.py +169 -23
  18. tencentcloud/ioa/v20220601/ioa_client.py +23 -0
  19. tencentcloud/ioa/v20220601/models.py +297 -0
  20. tencentcloud/mariadb/v20170312/models.py +45 -0
  21. tencentcloud/ocr/v20181119/models.py +55 -0
  22. tencentcloud/wedata/v20210820/models.py +17 -0
  23. {tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1418.dist-info}/METADATA +1 -1
  24. {tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1418.dist-info}/RECORD +27 -22
  25. {tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1418.dist-info}/LICENSE +0 -0
  26. {tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1418.dist-info}/WHEEL +0 -0
  27. {tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1418.dist-info}/top_level.txt +0 -0
@@ -1377,9 +1377,9 @@ class AssociateSecurityGroupsRequest(AbstractModel):
1377
1377
 
1378
1378
  def __init__(self):
1379
1379
  r"""
1380
- :param _SecurityGroupId: 安全组 ID
1380
+ :param _SecurityGroupId: 安全组 ID。可通过 [DescribeDBSecurityGroups](https://cloud.tencent.com/document/api/236/15854) 接口获取。
1381
1381
  :type SecurityGroupId: str
1382
- :param _InstanceIds: 实例 ID 列表,一个或者多个实例 ID 组成的数组。
1382
+ :param _InstanceIds: 实例 ID 列表,一个或者多个实例 ID 组成的数组。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
1383
1383
  :type InstanceIds: list of str
1384
1384
  :param _ForReadonlyInstance: 当传入只读实例ID时,默认操作的是对应只读组的安全组。如果需要操作只读实例ID的安全组, 需要将该入参置为True
1385
1385
  :type ForReadonlyInstance: bool
@@ -1390,7 +1390,7 @@ class AssociateSecurityGroupsRequest(AbstractModel):
1390
1390
 
1391
1391
  @property
1392
1392
  def SecurityGroupId(self):
1393
- """安全组 ID
1393
+ """安全组 ID。可通过 [DescribeDBSecurityGroups](https://cloud.tencent.com/document/api/236/15854) 接口获取。
1394
1394
  :rtype: str
1395
1395
  """
1396
1396
  return self._SecurityGroupId
@@ -1401,7 +1401,7 @@ class AssociateSecurityGroupsRequest(AbstractModel):
1401
1401
 
1402
1402
  @property
1403
1403
  def InstanceIds(self):
1404
- """实例 ID 列表,一个或者多个实例 ID 组成的数组。
1404
+ """实例 ID 列表,一个或者多个实例 ID 组成的数组。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
1405
1405
  :rtype: list of str
1406
1406
  """
1407
1407
  return self._InstanceIds
@@ -8448,9 +8448,10 @@ class CreateDBInstanceHourRequest(AbstractModel):
8448
8448
  说明:创建非集群版实例时,请根据需要指定实例版本(推荐5.7或8.0),若此参数不填,则默认值为5.6;若创建的是集群版实例,则此参数仅能指定为5.7或8.0。
8449
8449
  :type EngineVersion: str
8450
8450
  :param _UniqVpcId: 私有网络 ID,请使用 [查询私有网络列表](/document/api/215/15778)。
8451
- 说明:如果创建的是集群版实例,此参数为必填且为私有网络类型。
8451
+ 说明:如果创建的是集群版实例,此参数为必填且为私有网络类型。若此项不填,则系统会选择默认的 VPC。
8452
8452
  :type UniqVpcId: str
8453
8453
  :param _UniqSubnetId: 私有网络下的子网 ID,如果设置了 UniqVpcId,则 UniqSubnetId 必填,请使用 [查询子网列表](/document/api/215/15784)。
8454
+ 说明:若此项不填,则系统会选择默认 VPC 下的默认子网。
8454
8455
  :type UniqSubnetId: str
8455
8456
  :param _ProjectId: 项目 ID,不填为默认项目。
8456
8457
  :type ProjectId: int
@@ -8460,11 +8461,12 @@ class CreateDBInstanceHourRequest(AbstractModel):
8460
8461
  :param _MasterInstanceId: 实例 ID,购买只读实例或者灾备实例时必填,该字段表示只读实例或者灾备实例的主实例 ID,请使用 [查询实例列表](https://cloud.tencent.com/document/api/236/15872) 接口查询云数据库实例 ID。
8461
8462
  :type MasterInstanceId: str
8462
8463
  :param _InstanceRole: 实例类型,支持值包括:master - 表示主实例,dr - 表示灾备实例,ro - 表示只读实例。
8463
- 说明:必填项。
8464
+ 说明:请选择实例类型,不填会默认选择 master。
8464
8465
  :type InstanceRole: str
8465
8466
  :param _MasterRegion: 主实例地域信息,购买灾备、RO实例时,该字段必填。
8466
8467
  :type MasterRegion: str
8467
- :param _Port: 自定义端口,端口支持范围:[ 1024-65535 ]
8468
+ :param _Port: 自定义端口,端口支持范围:[1024 - 65535]。
8469
+ 说明:不填则默认为3306。
8468
8470
  :type Port: int
8469
8471
  :param _Password: 设置 root 账号密码,密码规则:8 - 64 个字符,至少包含字母、数字、字符(支持的字符:_+-&=!@#$%^*())中的两种,购买主实例时可指定该参数,购买只读实例或者灾备实例时指定该参数无意义。
8470
8472
  :type Password: str
@@ -8622,7 +8624,7 @@ class CreateDBInstanceHourRequest(AbstractModel):
8622
8624
  @property
8623
8625
  def UniqVpcId(self):
8624
8626
  """私有网络 ID,请使用 [查询私有网络列表](/document/api/215/15778)。
8625
- 说明:如果创建的是集群版实例,此参数为必填且为私有网络类型。
8627
+ 说明:如果创建的是集群版实例,此参数为必填且为私有网络类型。若此项不填,则系统会选择默认的 VPC。
8626
8628
  :rtype: str
8627
8629
  """
8628
8630
  return self._UniqVpcId
@@ -8634,6 +8636,7 @@ class CreateDBInstanceHourRequest(AbstractModel):
8634
8636
  @property
8635
8637
  def UniqSubnetId(self):
8636
8638
  """私有网络下的子网 ID,如果设置了 UniqVpcId,则 UniqSubnetId 必填,请使用 [查询子网列表](/document/api/215/15784)。
8639
+ 说明:若此项不填,则系统会选择默认 VPC 下的默认子网。
8637
8640
  :rtype: str
8638
8641
  """
8639
8642
  return self._UniqSubnetId
@@ -8679,7 +8682,7 @@ class CreateDBInstanceHourRequest(AbstractModel):
8679
8682
  @property
8680
8683
  def InstanceRole(self):
8681
8684
  """实例类型,支持值包括:master - 表示主实例,dr - 表示灾备实例,ro - 表示只读实例。
8682
- 说明:必填项。
8685
+ 说明:请选择实例类型,不填会默认选择 master。
8683
8686
  :rtype: str
8684
8687
  """
8685
8688
  return self._InstanceRole
@@ -8701,7 +8704,8 @@ class CreateDBInstanceHourRequest(AbstractModel):
8701
8704
 
8702
8705
  @property
8703
8706
  def Port(self):
8704
- """自定义端口,端口支持范围:[ 1024-65535 ]
8707
+ """自定义端口,端口支持范围:[1024 - 65535]。
8708
+ 说明:不填则默认为3306。
8705
8709
  :rtype: int
8706
8710
  """
8707
8711
  return self._Port
@@ -9180,18 +9184,20 @@ class CreateDBInstanceRequest(AbstractModel):
9180
9184
  说明:若您创建单节点、双节点、三节点实例,此参数为必填项,请指定可用区,若不指定可用区,则系统会自动选择一个可用区(可能不是您希望部署的可用区);若您创建集群版实例,此参数不填,请通过参数 ClusterTopology 进行读写节点和只读节点的可用区配置。
9181
9185
  :type Zone: str
9182
9186
  :param _UniqVpcId: 私有网络 ID,请使用 [查询私有网络列表](/document/api/215/15778)。
9183
- 说明:如果创建的是集群版实例,此参数为必填且为私有网络类型。
9187
+ 说明:如果创建的是集群版实例,此参数为必填且为私有网络类型。若此项不填,则系统会选择默认的 VPC。
9184
9188
  :type UniqVpcId: str
9185
9189
  :param _UniqSubnetId: 私有网络下的子网 ID,如果设置了 UniqVpcId,则 UniqSubnetId 必填,请使用 [查询子网列表](/document/api/215/15784)。
9190
+ 说明:若此项不填,则系统会选择默认 VPC 下的默认子网。
9186
9191
  :type UniqSubnetId: str
9187
9192
  :param _ProjectId: 项目 ID,不填为默认项目。购买只读实例和灾备实例时,项目 ID 默认和主实例保持一致。
9188
9193
  :type ProjectId: int
9189
9194
  :param _Port: 自定义端口,端口支持范围:[ 1024-65535 ]。
9195
+ 说明:若此项不填,则默认为3306。
9190
9196
  :type Port: int
9191
9197
  :param _InstanceRole: 实例类型,支持值包括:master - 表示主实例,dr - 表示灾备实例,ro - 表示只读实例。
9192
- 说明:必填项。
9198
+ 说明:请选择实例类型,不填会默认选择 master。
9193
9199
  :type InstanceRole: str
9194
- :param _MasterInstanceId: 实例 ID,购买只读实例时必填,该字段表示只读实例的主实例 ID,请使用 [查询实例列表](https://cloud.tencent.com/document/api/236/15872) 接口查询云数据库实例 ID。
9200
+ :param _MasterInstanceId: 实例 ID,购买只读实例或灾备实例时必填,该字段表示只读实例或灾备实例的主实例 ID,请使用 [查询实例列表](https://cloud.tencent.com/document/api/236/15872) 接口查询云数据库实例 ID。
9195
9201
  :type MasterInstanceId: str
9196
9202
  :param _EngineVersion: MySQL 版本,值包括:5.5、5.6、5.7和8.0,请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/api/236/17229) 接口获取可创建的实例版本。
9197
9203
  说明:创建非集群版实例时,请根据需要指定实例版本(推荐5.7或8.0),若此参数不填,则默认值为5.6;若创建的是集群版实例,则此参数仅能指定为5.7或8.0。
@@ -9210,7 +9216,7 @@ class CreateDBInstanceRequest(AbstractModel):
9210
9216
  :type ParamList: list of ParamInfo
9211
9217
  :param _BackupZone: 备库 2 的可用区信息,默认为空,购买三节点主实例时可指定该参数。
9212
9218
  :type BackupZone: str
9213
- :param _AutoRenewFlag: 自动续费标记,可选值为:0 - 不自动续费;1 - 自动续费。
9219
+ :param _AutoRenewFlag: 自动续费标记,可选值为:0 - 不自动续费;1 - 自动续费。默认为0。
9214
9220
  :type AutoRenewFlag: int
9215
9221
  :param _MasterRegion: 主实例地域信息,购买灾备、RO实例时,该字段必填。
9216
9222
  :type MasterRegion: str
@@ -9364,7 +9370,7 @@ class CreateDBInstanceRequest(AbstractModel):
9364
9370
  @property
9365
9371
  def UniqVpcId(self):
9366
9372
  """私有网络 ID,请使用 [查询私有网络列表](/document/api/215/15778)。
9367
- 说明:如果创建的是集群版实例,此参数为必填且为私有网络类型。
9373
+ 说明:如果创建的是集群版实例,此参数为必填且为私有网络类型。若此项不填,则系统会选择默认的 VPC。
9368
9374
  :rtype: str
9369
9375
  """
9370
9376
  return self._UniqVpcId
@@ -9376,6 +9382,7 @@ class CreateDBInstanceRequest(AbstractModel):
9376
9382
  @property
9377
9383
  def UniqSubnetId(self):
9378
9384
  """私有网络下的子网 ID,如果设置了 UniqVpcId,则 UniqSubnetId 必填,请使用 [查询子网列表](/document/api/215/15784)。
9385
+ 说明:若此项不填,则系统会选择默认 VPC 下的默认子网。
9379
9386
  :rtype: str
9380
9387
  """
9381
9388
  return self._UniqSubnetId
@@ -9398,6 +9405,7 @@ class CreateDBInstanceRequest(AbstractModel):
9398
9405
  @property
9399
9406
  def Port(self):
9400
9407
  """自定义端口,端口支持范围:[ 1024-65535 ]。
9408
+ 说明:若此项不填,则默认为3306。
9401
9409
  :rtype: int
9402
9410
  """
9403
9411
  return self._Port
@@ -9409,7 +9417,7 @@ class CreateDBInstanceRequest(AbstractModel):
9409
9417
  @property
9410
9418
  def InstanceRole(self):
9411
9419
  """实例类型,支持值包括:master - 表示主实例,dr - 表示灾备实例,ro - 表示只读实例。
9412
- 说明:必填项。
9420
+ 说明:请选择实例类型,不填会默认选择 master。
9413
9421
  :rtype: str
9414
9422
  """
9415
9423
  return self._InstanceRole
@@ -9420,7 +9428,7 @@ class CreateDBInstanceRequest(AbstractModel):
9420
9428
 
9421
9429
  @property
9422
9430
  def MasterInstanceId(self):
9423
- """实例 ID,购买只读实例时必填,该字段表示只读实例的主实例 ID,请使用 [查询实例列表](https://cloud.tencent.com/document/api/236/15872) 接口查询云数据库实例 ID。
9431
+ """实例 ID,购买只读实例或灾备实例时必填,该字段表示只读实例或灾备实例的主实例 ID,请使用 [查询实例列表](https://cloud.tencent.com/document/api/236/15872) 接口查询云数据库实例 ID。
9424
9432
  :rtype: str
9425
9433
  """
9426
9434
  return self._MasterInstanceId
@@ -9511,7 +9519,7 @@ class CreateDBInstanceRequest(AbstractModel):
9511
9519
 
9512
9520
  @property
9513
9521
  def AutoRenewFlag(self):
9514
- """自动续费标记,可选值为:0 - 不自动续费;1 - 自动续费。
9522
+ """自动续费标记,可选值为:0 - 不自动续费;1 - 自动续费。默认为0。
9515
9523
  :rtype: int
9516
9524
  """
9517
9525
  return self._AutoRenewFlag
@@ -10551,7 +10559,7 @@ class CustomConfig(AbstractModel):
10551
10559
  :type Type: str
10552
10560
  :param _DeviceType: 设备类型
10553
10561
  :type DeviceType: str
10554
- :param _Memory: 内存
10562
+ :param _Memory: 内存,单位为MB
10555
10563
  :type Memory: int
10556
10564
  :param _Cpu: 核数
10557
10565
  :type Cpu: int
@@ -10597,7 +10605,7 @@ class CustomConfig(AbstractModel):
10597
10605
 
10598
10606
  @property
10599
10607
  def Memory(self):
10600
- """内存
10608
+ """内存,单位为MB
10601
10609
  :rtype: int
10602
10610
  """
10603
10611
  return self._Memory
@@ -15181,9 +15189,9 @@ class DescribeCdbProxyInfoRequest(AbstractModel):
15181
15189
 
15182
15190
  def __init__(self):
15183
15191
  r"""
15184
- :param _InstanceId: 实例ID
15192
+ :param _InstanceId: 实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
15185
15193
  :type InstanceId: str
15186
- :param _ProxyGroupId: 代理组ID
15194
+ :param _ProxyGroupId: 代理组 ID
15187
15195
  :type ProxyGroupId: str
15188
15196
  """
15189
15197
  self._InstanceId = None
@@ -15191,7 +15199,7 @@ class DescribeCdbProxyInfoRequest(AbstractModel):
15191
15199
 
15192
15200
  @property
15193
15201
  def InstanceId(self):
15194
- """实例ID
15202
+ """实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
15195
15203
  :rtype: str
15196
15204
  """
15197
15205
  return self._InstanceId
@@ -15202,7 +15210,7 @@ class DescribeCdbProxyInfoRequest(AbstractModel):
15202
15210
 
15203
15211
  @property
15204
15212
  def ProxyGroupId(self):
15205
- """代理组ID
15213
+ """代理组 ID
15206
15214
  :rtype: str
15207
15215
  """
15208
15216
  return self._ProxyGroupId
@@ -16512,14 +16520,16 @@ class DescribeDBInstanceInfoRequest(AbstractModel):
16512
16520
 
16513
16521
  def __init__(self):
16514
16522
  r"""
16515
- :param _InstanceId: 实例 ID
16523
+ :param _InstanceId: 实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
16524
+ 说明:仅主实例支持查询,此项仅支持输入主实例 ID。
16516
16525
  :type InstanceId: str
16517
16526
  """
16518
16527
  self._InstanceId = None
16519
16528
 
16520
16529
  @property
16521
16530
  def InstanceId(self):
16522
- """实例 ID
16531
+ """实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
16532
+ 说明:仅主实例支持查询,此项仅支持输入主实例 ID。
16523
16533
  :rtype: str
16524
16534
  """
16525
16535
  return self._InstanceId
@@ -20446,7 +20456,7 @@ class DescribeProxyCustomConfRequest(AbstractModel):
20446
20456
 
20447
20457
  def __init__(self):
20448
20458
  r"""
20449
- :param _InstanceId: 实例ID
20459
+ :param _InstanceId: 实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
20450
20460
  :type InstanceId: str
20451
20461
  :param _Offset: 分页
20452
20462
  :type Offset: int
@@ -20459,7 +20469,7 @@ class DescribeProxyCustomConfRequest(AbstractModel):
20459
20469
 
20460
20470
  @property
20461
20471
  def InstanceId(self):
20462
- """实例ID
20472
+ """实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
20463
20473
  :rtype: str
20464
20474
  """
20465
20475
  return self._InstanceId
@@ -21408,11 +21418,11 @@ class DescribeSSLStatusRequest(AbstractModel):
21408
21418
 
21409
21419
  def __init__(self):
21410
21420
  r"""
21411
- :param _InstanceId: 实例 ID
21412
- 说明:实例 ID 和实例组 ID 两个参数选其一填写即可。若要查询双节点、三节点实例 SSL 开通情况,请填写实例 ID 参数进行查询。单节点(云盘)、集群版实例不支持开启 SSL,因此不支持查询。
21421
+ :param _InstanceId: 实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
21422
+ 说明:实例 ID 和只读组 ID 两个参数选其一填写即可。若要查询双节点、三节点实例 SSL 开通情况,请填写实例 ID 参数进行查询。单节点(云盘)、云盘版实例不支持开启 SSL,因此不支持查询。
21413
21423
  :type InstanceId: str
21414
- :param _RoGroupId: 只读组 ID
21415
- 说明:实例 ID 和实例组 ID 两个参数选其一填写即可。若要查询只读实例或只读组 SSL 开通情况,请填写 RoGroupId 参数,并注意填写的都是只读组 ID。单节点(云盘)、集群版实例不支持开启 SSL,因此不支持查询。
21424
+ :param _RoGroupId: 只读组 ID。可通过 [DescribeRoGroups](https://cloud.tencent.com/document/api/236/40939) 接口获取。
21425
+ 说明:实例 ID 和只读组 ID 两个参数选其一填写即可。若要查询只读实例或只读组 SSL 开通情况,请填写 RoGroupId 参数,并注意填写的都是只读组 ID。单节点(云盘)、云盘版实例不支持开启 SSL,因此不支持查询。
21416
21426
  :type RoGroupId: str
21417
21427
  """
21418
21428
  self._InstanceId = None
@@ -21420,8 +21430,8 @@ class DescribeSSLStatusRequest(AbstractModel):
21420
21430
 
21421
21431
  @property
21422
21432
  def InstanceId(self):
21423
- """实例 ID
21424
- 说明:实例 ID 和实例组 ID 两个参数选其一填写即可。若要查询双节点、三节点实例 SSL 开通情况,请填写实例 ID 参数进行查询。单节点(云盘)、集群版实例不支持开启 SSL,因此不支持查询。
21433
+ """实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
21434
+ 说明:实例 ID 和只读组 ID 两个参数选其一填写即可。若要查询双节点、三节点实例 SSL 开通情况,请填写实例 ID 参数进行查询。单节点(云盘)、云盘版实例不支持开启 SSL,因此不支持查询。
21425
21435
  :rtype: str
21426
21436
  """
21427
21437
  return self._InstanceId
@@ -21432,8 +21442,8 @@ class DescribeSSLStatusRequest(AbstractModel):
21432
21442
 
21433
21443
  @property
21434
21444
  def RoGroupId(self):
21435
- """只读组 ID
21436
- 说明:实例 ID 和实例组 ID 两个参数选其一填写即可。若要查询只读实例或只读组 SSL 开通情况,请填写 RoGroupId 参数,并注意填写的都是只读组 ID。单节点(云盘)、集群版实例不支持开启 SSL,因此不支持查询。
21445
+ """只读组 ID。可通过 [DescribeRoGroups](https://cloud.tencent.com/document/api/236/40939) 接口获取。
21446
+ 说明:实例 ID 和只读组 ID 两个参数选其一填写即可。若要查询只读实例或只读组 SSL 开通情况,请填写 RoGroupId 参数,并注意填写的都是只读组 ID。单节点(云盘)、云盘版实例不支持开启 SSL,因此不支持查询。
21437
21447
  :rtype: str
21438
21448
  """
21439
21449
  return self._RoGroupId
@@ -13142,6 +13142,8 @@ class Instance(AbstractModel):
13142
13142
  :param _LatestOperationErrorMsg: 实例的最新操作错误信息。
13143
13143
  注意:此字段可能返回 null,表示取不到有效值。
13144
13144
  :type LatestOperationErrorMsg: str
13145
+ :param _PublicIPv6Addresses: 实例绑定的公网IPv6地址。
13146
+ :type PublicIPv6Addresses: list of str
13145
13147
  """
13146
13148
  self._Placement = None
13147
13149
  self._InstanceId = None
@@ -13184,6 +13186,7 @@ class Instance(AbstractModel):
13184
13186
  self._DefaultLoginUser = None
13185
13187
  self._DefaultLoginPort = None
13186
13188
  self._LatestOperationErrorMsg = None
13189
+ self._PublicIPv6Addresses = None
13187
13190
 
13188
13191
  @property
13189
13192
  def Placement(self):
@@ -13646,6 +13649,17 @@ class Instance(AbstractModel):
13646
13649
  def LatestOperationErrorMsg(self, LatestOperationErrorMsg):
13647
13650
  self._LatestOperationErrorMsg = LatestOperationErrorMsg
13648
13651
 
13652
+ @property
13653
+ def PublicIPv6Addresses(self):
13654
+ """实例绑定的公网IPv6地址。
13655
+ :rtype: list of str
13656
+ """
13657
+ return self._PublicIPv6Addresses
13658
+
13659
+ @PublicIPv6Addresses.setter
13660
+ def PublicIPv6Addresses(self, PublicIPv6Addresses):
13661
+ self._PublicIPv6Addresses = PublicIPv6Addresses
13662
+
13649
13663
 
13650
13664
  def _deserialize(self, params):
13651
13665
  if params.get("Placement") is not None:
@@ -13711,6 +13725,7 @@ class Instance(AbstractModel):
13711
13725
  self._DefaultLoginUser = params.get("DefaultLoginUser")
13712
13726
  self._DefaultLoginPort = params.get("DefaultLoginPort")
13713
13727
  self._LatestOperationErrorMsg = params.get("LatestOperationErrorMsg")
13728
+ self._PublicIPv6Addresses = params.get("PublicIPv6Addresses")
13714
13729
  memeber_set = set(params.keys())
13715
13730
  for name, value in vars(self).items():
13716
13731
  property_name = name[1:]
@@ -14648,11 +14663,53 @@ class InternetAccessible(AbstractModel):
14648
14663
  :type PublicIpAssigned: bool
14649
14664
  :param _BandwidthPackageId: 带宽包ID。可通过[ DescribeBandwidthPackages ](https://cloud.tencent.com/document/api/215/19209)接口返回值中的`BandwidthPackageId`获取。该参数仅在RunInstances接口中作为入参使用。
14650
14665
  :type BandwidthPackageId: str
14666
+ :param _InternetServiceProvider: 线路类型。各种线路类型详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:BGP。
14667
+
14668
+ - BGP:常规 BGP 线路
14669
+
14670
+ 已开通静态单线IP白名单的用户,可选值:
14671
+
14672
+ - CMCC:中国移动
14673
+ - CTCC:中国电信
14674
+ - CUCC:中国联通
14675
+
14676
+ 注意:仅部分地域支持静态单线IP。
14677
+ 示例值:BGP
14678
+ :type InternetServiceProvider: str
14679
+ :param _IPv4AddressType: 公网 IP 类型。
14680
+
14681
+ - WanIP:普通公网IP。
14682
+ - HighQualityEIP:精品 IP。仅新加坡和中国香港支持精品IP。
14683
+ - AntiDDoSEIP:高防 IP。仅部分地域支持高防IP,详情可见[弹性公网IP产品概述](https://cloud.tencent.com/document/product/1199/41646)。
14684
+
14685
+ 如需为资源分配公网IPv4地址,请指定公网IPv4地址类型。
14686
+
14687
+ 示例值:WanIP
14688
+
14689
+ 此功能仅部分地区灰度开发,如需使用[请提交工单咨询](https://console.cloud.tencent.com/workorder/category)
14690
+ :type IPv4AddressType: str
14691
+ :param _IPv6AddressType: 弹性公网 IPv6 类型。
14692
+ - EIPv6:弹性公网 IPv6。
14693
+ - HighQualityEIPv6:精品 IPv6。仅中国香港支持精品IPv6。
14694
+
14695
+ 如需为资源分配IPv6地址,请指定弹性公网IPv6类型。
14696
+ 示例值:EIPv6
14697
+
14698
+ 此功能仅部分地区灰度开发,如需使用[请提交工单咨询](https://console.cloud.tencent.com/workorder/category)
14699
+ :type IPv6AddressType: str
14700
+ :param _AntiDDoSPackageId: 高防包唯一ID,申请高防IP时,该字段必传。
14701
+ 示例值:bgp-12345678
14702
+
14703
+ :type AntiDDoSPackageId: str
14651
14704
  """
14652
14705
  self._InternetChargeType = None
14653
14706
  self._InternetMaxBandwidthOut = None
14654
14707
  self._PublicIpAssigned = None
14655
14708
  self._BandwidthPackageId = None
14709
+ self._InternetServiceProvider = None
14710
+ self._IPv4AddressType = None
14711
+ self._IPv6AddressType = None
14712
+ self._AntiDDoSPackageId = None
14656
14713
 
14657
14714
  @property
14658
14715
  def InternetChargeType(self):
@@ -14698,12 +14755,90 @@ class InternetAccessible(AbstractModel):
14698
14755
  def BandwidthPackageId(self, BandwidthPackageId):
14699
14756
  self._BandwidthPackageId = BandwidthPackageId
14700
14757
 
14758
+ @property
14759
+ def InternetServiceProvider(self):
14760
+ """线路类型。各种线路类型详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:BGP。
14761
+
14762
+ - BGP:常规 BGP 线路
14763
+
14764
+ 已开通静态单线IP白名单的用户,可选值:
14765
+
14766
+ - CMCC:中国移动
14767
+ - CTCC:中国电信
14768
+ - CUCC:中国联通
14769
+
14770
+ 注意:仅部分地域支持静态单线IP。
14771
+ 示例值:BGP
14772
+ :rtype: str
14773
+ """
14774
+ return self._InternetServiceProvider
14775
+
14776
+ @InternetServiceProvider.setter
14777
+ def InternetServiceProvider(self, InternetServiceProvider):
14778
+ self._InternetServiceProvider = InternetServiceProvider
14779
+
14780
+ @property
14781
+ def IPv4AddressType(self):
14782
+ """公网 IP 类型。
14783
+
14784
+ - WanIP:普通公网IP。
14785
+ - HighQualityEIP:精品 IP。仅新加坡和中国香港支持精品IP。
14786
+ - AntiDDoSEIP:高防 IP。仅部分地域支持高防IP,详情可见[弹性公网IP产品概述](https://cloud.tencent.com/document/product/1199/41646)。
14787
+
14788
+ 如需为资源分配公网IPv4地址,请指定公网IPv4地址类型。
14789
+
14790
+ 示例值:WanIP
14791
+
14792
+ 此功能仅部分地区灰度开发,如需使用[请提交工单咨询](https://console.cloud.tencent.com/workorder/category)
14793
+ :rtype: str
14794
+ """
14795
+ return self._IPv4AddressType
14796
+
14797
+ @IPv4AddressType.setter
14798
+ def IPv4AddressType(self, IPv4AddressType):
14799
+ self._IPv4AddressType = IPv4AddressType
14800
+
14801
+ @property
14802
+ def IPv6AddressType(self):
14803
+ """弹性公网 IPv6 类型。
14804
+ - EIPv6:弹性公网 IPv6。
14805
+ - HighQualityEIPv6:精品 IPv6。仅中国香港支持精品IPv6。
14806
+
14807
+ 如需为资源分配IPv6地址,请指定弹性公网IPv6类型。
14808
+ 示例值:EIPv6
14809
+
14810
+ 此功能仅部分地区灰度开发,如需使用[请提交工单咨询](https://console.cloud.tencent.com/workorder/category)
14811
+ :rtype: str
14812
+ """
14813
+ return self._IPv6AddressType
14814
+
14815
+ @IPv6AddressType.setter
14816
+ def IPv6AddressType(self, IPv6AddressType):
14817
+ self._IPv6AddressType = IPv6AddressType
14818
+
14819
+ @property
14820
+ def AntiDDoSPackageId(self):
14821
+ """高防包唯一ID,申请高防IP时,该字段必传。
14822
+ 示例值:bgp-12345678
14823
+
14824
+ :rtype: str
14825
+ """
14826
+ return self._AntiDDoSPackageId
14827
+
14828
+ @AntiDDoSPackageId.setter
14829
+ def AntiDDoSPackageId(self, AntiDDoSPackageId):
14830
+ self._AntiDDoSPackageId = AntiDDoSPackageId
14831
+
14701
14832
 
14702
14833
  def _deserialize(self, params):
14703
14834
  self._InternetChargeType = params.get("InternetChargeType")
14704
14835
  self._InternetMaxBandwidthOut = params.get("InternetMaxBandwidthOut")
14705
14836
  self._PublicIpAssigned = params.get("PublicIpAssigned")
14706
14837
  self._BandwidthPackageId = params.get("BandwidthPackageId")
14838
+ self._InternetServiceProvider = params.get("InternetServiceProvider")
14839
+ self._IPv4AddressType = params.get("IPv4AddressType")
14840
+ self._IPv6AddressType = params.get("IPv6AddressType")
14841
+ self._AntiDDoSPackageId = params.get("AntiDDoSPackageId")
14707
14842
  memeber_set = set(params.keys())
14708
14843
  for name, value in vars(self).items():
14709
14844
  property_name = name[1:]
@@ -22923,11 +23058,17 @@ class TerminateInstancesRequest(AbstractModel):
22923
23058
  r"""
22924
23059
  :param _InstanceIds: 一个或多个待操作的实例ID。可通过 [DescribeInstances](https://cloud.tencent.com/document/api/213/15728) 接口返回值中的`InstanceId`获取。每次请求批量实例的上限为100。
22925
23060
  :type InstanceIds: list of str
23061
+ :param _ReleaseAddress: 释放弹性IP。EIP2.0下,仅提供主网卡下首个EIP,EIP类型限定在HighQualityEIP、AntiDDoSEIP、EIPv6、HighQualityEIPv6这几种类型。默认行为不释放。
23062
+
23063
+ 示例值:true
23064
+ 默认值:false
23065
+ :type ReleaseAddress: bool
22926
23066
  :param _ReleasePrepaidDataDisks: 释放实例挂载的包年包月数据盘。true表示销毁实例同时释放包年包月数据盘,false表示只销毁实例。
22927
23067
  默认值:false
22928
23068
  :type ReleasePrepaidDataDisks: bool
22929
23069
  """
22930
23070
  self._InstanceIds = None
23071
+ self._ReleaseAddress = None
22931
23072
  self._ReleasePrepaidDataDisks = None
22932
23073
 
22933
23074
  @property
@@ -22941,6 +23082,20 @@ class TerminateInstancesRequest(AbstractModel):
22941
23082
  def InstanceIds(self, InstanceIds):
22942
23083
  self._InstanceIds = InstanceIds
22943
23084
 
23085
+ @property
23086
+ def ReleaseAddress(self):
23087
+ """释放弹性IP。EIP2.0下,仅提供主网卡下首个EIP,EIP类型限定在HighQualityEIP、AntiDDoSEIP、EIPv6、HighQualityEIPv6这几种类型。默认行为不释放。
23088
+
23089
+ 示例值:true
23090
+ 默认值:false
23091
+ :rtype: bool
23092
+ """
23093
+ return self._ReleaseAddress
23094
+
23095
+ @ReleaseAddress.setter
23096
+ def ReleaseAddress(self, ReleaseAddress):
23097
+ self._ReleaseAddress = ReleaseAddress
23098
+
22944
23099
  @property
22945
23100
  def ReleasePrepaidDataDisks(self):
22946
23101
  """释放实例挂载的包年包月数据盘。true表示销毁实例同时释放包年包月数据盘,false表示只销毁实例。
@@ -22956,6 +23111,7 @@ class TerminateInstancesRequest(AbstractModel):
22956
23111
 
22957
23112
  def _deserialize(self, params):
22958
23113
  self._InstanceIds = params.get("InstanceIds")
23114
+ self._ReleaseAddress = params.get("ReleaseAddress")
22959
23115
  self._ReleasePrepaidDataDisks = params.get("ReleasePrepaidDataDisks")
22960
23116
  memeber_set = set(params.keys())
22961
23117
  for name, value in vars(self).items():