tencentcloud-sdk-python 3.0.1293__py2.py3-none-any.whl → 3.0.1295__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/aca/v20210323/models.py +2 -12
- tencentcloud/cbs/v20170312/models.py +15 -0
- tencentcloud/cdwdoris/v20211228/models.py +39 -4
- tencentcloud/ckafka/v20190819/models.py +17 -0
- tencentcloud/cls/v20201016/models.py +34 -8
- tencentcloud/cvm/v20170312/models.py +2 -2
- tencentcloud/cwp/v20180228/models.py +2 -2
- tencentcloud/dts/v20211206/models.py +15 -0
- tencentcloud/emr/v20190103/models.py +15 -720
- tencentcloud/ess/v20201111/models.py +12 -10
- tencentcloud/essbasic/v20210526/models.py +12 -10
- tencentcloud/gwlb/v20240906/models.py +0 -14
- tencentcloud/hunyuan/v20230901/models.py +2 -2
- tencentcloud/iotexplorer/v20190423/models.py +2 -2
- tencentcloud/mna/v20210119/models.py +0 -18
- tencentcloud/ocr/v20181119/errorcodes.py +0 -6
- tencentcloud/ocr/v20181119/models.py +15 -328
- tencentcloud/ocr/v20181119/ocr_client.py +3 -28
- tencentcloud/pts/v20210728/models.py +2 -2
- tencentcloud/scf/v20180416/models.py +121 -92
- tencentcloud/scf/v20180416/scf_client.py +23 -0
- tencentcloud/sqlserver/v20180328/models.py +47 -2
- tencentcloud/tcb/v20180608/models.py +0 -12
- tencentcloud/tcr/v20190924/models.py +19 -2
- tencentcloud/thpc/v20211109/models.py +12 -28
- tencentcloud/thpc/v20220401/models.py +12 -28
- tencentcloud/thpc/v20230321/models.py +18 -28
- tencentcloud/tke/v20180525/models.py +10 -10
- tencentcloud/vpc/v20170312/models.py +50 -76
- {tencentcloud_sdk_python-3.0.1293.dist-info → tencentcloud_sdk_python-3.0.1295.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1293.dist-info → tencentcloud_sdk_python-3.0.1295.dist-info}/RECORD +35 -35
- {tencentcloud_sdk_python-3.0.1293.dist-info → tencentcloud_sdk_python-3.0.1295.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1293.dist-info → tencentcloud_sdk_python-3.0.1295.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1293.dist-info → tencentcloud_sdk_python-3.0.1295.dist-info}/top_level.txt +0 -0
@@ -240,6 +240,29 @@ class ScfClient(AbstractClient):
|
|
240
240
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
241
241
|
|
242
242
|
|
243
|
+
def DeleteFunctionVersion(self, request):
|
244
|
+
"""该接口根据传入参数删除函数的指定版本。
|
245
|
+
|
246
|
+
:param request: Request instance for DeleteFunctionVersion.
|
247
|
+
:type request: :class:`tencentcloud.scf.v20180416.models.DeleteFunctionVersionRequest`
|
248
|
+
:rtype: :class:`tencentcloud.scf.v20180416.models.DeleteFunctionVersionResponse`
|
249
|
+
|
250
|
+
"""
|
251
|
+
try:
|
252
|
+
params = request._serialize()
|
253
|
+
headers = request.headers
|
254
|
+
body = self.call("DeleteFunctionVersion", params, headers=headers)
|
255
|
+
response = json.loads(body)
|
256
|
+
model = models.DeleteFunctionVersionResponse()
|
257
|
+
model._deserialize(response["Response"])
|
258
|
+
return model
|
259
|
+
except Exception as e:
|
260
|
+
if isinstance(e, TencentCloudSDKException):
|
261
|
+
raise
|
262
|
+
else:
|
263
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
264
|
+
|
265
|
+
|
243
266
|
def DeleteLayerVersion(self, request):
|
244
267
|
"""删除指定层的指定版本,被删除的版本无法再关联到函数上,但不会影响正在引用这个层的函数。
|
245
268
|
|
@@ -20002,11 +20002,13 @@ class InquiryPriceCreateDBInstancesRequest(AbstractModel):
|
|
20002
20002
|
:type DBVersion: str
|
20003
20003
|
:param _Cpu: 预购买实例的CPU核心数
|
20004
20004
|
:type Cpu: int
|
20005
|
-
:param _InstanceType: 购买实例的类型 HA-高可用型(包括双机高可用,alwaysOn集群),RO-只读副本型,SI-单节点型,cvmHA-虚拟机双机高可用,cvmRO
|
20005
|
+
:param _InstanceType: 购买实例的类型 HA-高可用型(包括双机高可用,alwaysOn集群),RO-只读副本型,SI-单节点型,cvmHA-虚拟机双机高可用,cvmRO-虚拟机只读,MultiHA-多节点,cvmMultiHA-云盘
|
20006
20006
|
:type InstanceType: str
|
20007
20007
|
:param _MachineType: 购买实例的宿主机类型,PM-物理机, CLOUD_PREMIUM-虚拟机高性能云盘,CLOUD_SSD-虚拟机SSD云盘,
|
20008
20008
|
CLOUD_HSSD-虚拟机加强型SSD云盘,CLOUD_TSSD-虚拟机极速型SSD云盘,CLOUD_BSSD-虚拟机通用型SSD云盘
|
20009
20009
|
:type MachineType: str
|
20010
|
+
:param _DrZones: 备节点可用区,默认为空。如果是多节点架构时必传,并且备机可用区集合最小为2个,最大不超过5个。
|
20011
|
+
:type DrZones: list of str
|
20010
20012
|
"""
|
20011
20013
|
self._Zone = None
|
20012
20014
|
self._Memory = None
|
@@ -20018,6 +20020,7 @@ CLOUD_HSSD-虚拟机加强型SSD云盘,CLOUD_TSSD-虚拟机极速型SSD云盘
|
|
20018
20020
|
self._Cpu = None
|
20019
20021
|
self._InstanceType = None
|
20020
20022
|
self._MachineType = None
|
20023
|
+
self._DrZones = None
|
20021
20024
|
|
20022
20025
|
@property
|
20023
20026
|
def Zone(self):
|
@@ -20109,7 +20112,7 @@ CLOUD_HSSD-虚拟机加强型SSD云盘,CLOUD_TSSD-虚拟机极速型SSD云盘
|
|
20109
20112
|
|
20110
20113
|
@property
|
20111
20114
|
def InstanceType(self):
|
20112
|
-
"""购买实例的类型 HA-高可用型(包括双机高可用,alwaysOn集群),RO-只读副本型,SI-单节点型,cvmHA-虚拟机双机高可用,cvmRO
|
20115
|
+
"""购买实例的类型 HA-高可用型(包括双机高可用,alwaysOn集群),RO-只读副本型,SI-单节点型,cvmHA-虚拟机双机高可用,cvmRO-虚拟机只读,MultiHA-多节点,cvmMultiHA-云盘
|
20113
20116
|
:rtype: str
|
20114
20117
|
"""
|
20115
20118
|
return self._InstanceType
|
@@ -20130,6 +20133,17 @@ CLOUD_HSSD-虚拟机加强型SSD云盘,CLOUD_TSSD-虚拟机极速型SSD云盘
|
|
20130
20133
|
def MachineType(self, MachineType):
|
20131
20134
|
self._MachineType = MachineType
|
20132
20135
|
|
20136
|
+
@property
|
20137
|
+
def DrZones(self):
|
20138
|
+
"""备节点可用区,默认为空。如果是多节点架构时必传,并且备机可用区集合最小为2个,最大不超过5个。
|
20139
|
+
:rtype: list of str
|
20140
|
+
"""
|
20141
|
+
return self._DrZones
|
20142
|
+
|
20143
|
+
@DrZones.setter
|
20144
|
+
def DrZones(self, DrZones):
|
20145
|
+
self._DrZones = DrZones
|
20146
|
+
|
20133
20147
|
|
20134
20148
|
def _deserialize(self, params):
|
20135
20149
|
self._Zone = params.get("Zone")
|
@@ -20142,6 +20156,7 @@ CLOUD_HSSD-虚拟机加强型SSD云盘,CLOUD_TSSD-虚拟机极速型SSD云盘
|
|
20142
20156
|
self._Cpu = params.get("Cpu")
|
20143
20157
|
self._InstanceType = params.get("InstanceType")
|
20144
20158
|
self._MachineType = params.get("MachineType")
|
20159
|
+
self._DrZones = params.get("DrZones")
|
20145
20160
|
memeber_set = set(params.keys())
|
20146
20161
|
for name, value in vars(self).items():
|
20147
20162
|
property_name = name[1:]
|
@@ -26846,6 +26861,10 @@ class ReadOnlyGroup(AbstractModel):
|
|
26846
26861
|
:type DnsPodDomain: str
|
26847
26862
|
:param _TgwWanVPort: RO组外网地址端口
|
26848
26863
|
:type TgwWanVPort: int
|
26864
|
+
:param _ReadOnlyGroupType: RO只读组类型,1-按照一个实例一个只读组的方式发货,2-新建只读组后发货的所有实例都在这个只读组下面, 3-发货的所有实例都在已有的只读组下面
|
26865
|
+
:type ReadOnlyGroupType: int
|
26866
|
+
:param _ReadOnlyGroupForcedUpgrade: 部署RO副本模式,0-默认不升级主实例,1-强制升级主实例完成RO部署
|
26867
|
+
:type ReadOnlyGroupForcedUpgrade: int
|
26849
26868
|
"""
|
26850
26869
|
self._ReadOnlyGroupId = None
|
26851
26870
|
self._ReadOnlyGroupName = None
|
@@ -26863,6 +26882,8 @@ class ReadOnlyGroup(AbstractModel):
|
|
26863
26882
|
self._ReadOnlyInstanceSet = None
|
26864
26883
|
self._DnsPodDomain = None
|
26865
26884
|
self._TgwWanVPort = None
|
26885
|
+
self._ReadOnlyGroupType = None
|
26886
|
+
self._ReadOnlyGroupForcedUpgrade = None
|
26866
26887
|
|
26867
26888
|
@property
|
26868
26889
|
def ReadOnlyGroupId(self):
|
@@ -27040,6 +27061,28 @@ class ReadOnlyGroup(AbstractModel):
|
|
27040
27061
|
def TgwWanVPort(self, TgwWanVPort):
|
27041
27062
|
self._TgwWanVPort = TgwWanVPort
|
27042
27063
|
|
27064
|
+
@property
|
27065
|
+
def ReadOnlyGroupType(self):
|
27066
|
+
"""RO只读组类型,1-按照一个实例一个只读组的方式发货,2-新建只读组后发货的所有实例都在这个只读组下面, 3-发货的所有实例都在已有的只读组下面
|
27067
|
+
:rtype: int
|
27068
|
+
"""
|
27069
|
+
return self._ReadOnlyGroupType
|
27070
|
+
|
27071
|
+
@ReadOnlyGroupType.setter
|
27072
|
+
def ReadOnlyGroupType(self, ReadOnlyGroupType):
|
27073
|
+
self._ReadOnlyGroupType = ReadOnlyGroupType
|
27074
|
+
|
27075
|
+
@property
|
27076
|
+
def ReadOnlyGroupForcedUpgrade(self):
|
27077
|
+
"""部署RO副本模式,0-默认不升级主实例,1-强制升级主实例完成RO部署
|
27078
|
+
:rtype: int
|
27079
|
+
"""
|
27080
|
+
return self._ReadOnlyGroupForcedUpgrade
|
27081
|
+
|
27082
|
+
@ReadOnlyGroupForcedUpgrade.setter
|
27083
|
+
def ReadOnlyGroupForcedUpgrade(self, ReadOnlyGroupForcedUpgrade):
|
27084
|
+
self._ReadOnlyGroupForcedUpgrade = ReadOnlyGroupForcedUpgrade
|
27085
|
+
|
27043
27086
|
|
27044
27087
|
def _deserialize(self, params):
|
27045
27088
|
self._ReadOnlyGroupId = params.get("ReadOnlyGroupId")
|
@@ -27063,6 +27106,8 @@ class ReadOnlyGroup(AbstractModel):
|
|
27063
27106
|
self._ReadOnlyInstanceSet.append(obj)
|
27064
27107
|
self._DnsPodDomain = params.get("DnsPodDomain")
|
27065
27108
|
self._TgwWanVPort = params.get("TgwWanVPort")
|
27109
|
+
self._ReadOnlyGroupType = params.get("ReadOnlyGroupType")
|
27110
|
+
self._ReadOnlyGroupForcedUpgrade = params.get("ReadOnlyGroupForcedUpgrade")
|
27066
27111
|
memeber_set = set(params.keys())
|
27067
27112
|
for name, value in vars(self).items():
|
27068
27113
|
property_name = name[1:]
|
@@ -13099,7 +13099,6 @@ class DescribeEndUserLoginStatisticResponse(AbstractModel):
|
|
13099
13099
|
def __init__(self):
|
13100
13100
|
r"""
|
13101
13101
|
:param _LoginStatistics: 环境终端用户新增与登录统计
|
13102
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13103
13102
|
:type LoginStatistics: list of LoginStatistic
|
13104
13103
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13105
13104
|
:type RequestId: str
|
@@ -13110,7 +13109,6 @@ class DescribeEndUserLoginStatisticResponse(AbstractModel):
|
|
13110
13109
|
@property
|
13111
13110
|
def LoginStatistics(self):
|
13112
13111
|
"""环境终端用户新增与登录统计
|
13113
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13114
13112
|
:rtype: list of LoginStatistic
|
13115
13113
|
"""
|
13116
13114
|
return self._LoginStatistics
|
@@ -13185,7 +13183,6 @@ class DescribeEndUserStatisticResponse(AbstractModel):
|
|
13185
13183
|
def __init__(self):
|
13186
13184
|
r"""
|
13187
13185
|
:param _PlatformStatistics: 终端用户各平台统计
|
13188
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13189
13186
|
:type PlatformStatistics: list of PlatformStatistic
|
13190
13187
|
:param _TotalCount: 终端用户总数
|
13191
13188
|
:type TotalCount: int
|
@@ -13199,7 +13196,6 @@ class DescribeEndUserStatisticResponse(AbstractModel):
|
|
13199
13196
|
@property
|
13200
13197
|
def PlatformStatistics(self):
|
13201
13198
|
"""终端用户各平台统计
|
13202
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13203
13199
|
:rtype: list of PlatformStatistic
|
13204
13200
|
"""
|
13205
13201
|
return self._PlatformStatistics
|
@@ -19874,16 +19870,12 @@ class LoginStatistic(AbstractModel):
|
|
19874
19870
|
def __init__(self):
|
19875
19871
|
r"""
|
19876
19872
|
:param _StatisticalType: 统计类型 新增NEWUSER 和登录 LOGIN
|
19877
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19878
19873
|
:type StatisticalType: str
|
19879
19874
|
:param _StatisticalCycle: 统计周期:日DAY,周WEEK,月MONTH
|
19880
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19881
19875
|
:type StatisticalCycle: str
|
19882
19876
|
:param _Count: 统计总量
|
19883
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19884
19877
|
:type Count: int
|
19885
19878
|
:param _UpdateTime: 更新时间
|
19886
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19887
19879
|
:type UpdateTime: str
|
19888
19880
|
"""
|
19889
19881
|
self._StatisticalType = None
|
@@ -19894,7 +19886,6 @@ class LoginStatistic(AbstractModel):
|
|
19894
19886
|
@property
|
19895
19887
|
def StatisticalType(self):
|
19896
19888
|
"""统计类型 新增NEWUSER 和登录 LOGIN
|
19897
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19898
19889
|
:rtype: str
|
19899
19890
|
"""
|
19900
19891
|
return self._StatisticalType
|
@@ -19906,7 +19897,6 @@ class LoginStatistic(AbstractModel):
|
|
19906
19897
|
@property
|
19907
19898
|
def StatisticalCycle(self):
|
19908
19899
|
"""统计周期:日DAY,周WEEK,月MONTH
|
19909
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19910
19900
|
:rtype: str
|
19911
19901
|
"""
|
19912
19902
|
return self._StatisticalCycle
|
@@ -19918,7 +19908,6 @@ class LoginStatistic(AbstractModel):
|
|
19918
19908
|
@property
|
19919
19909
|
def Count(self):
|
19920
19910
|
"""统计总量
|
19921
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19922
19911
|
:rtype: int
|
19923
19912
|
"""
|
19924
19913
|
return self._Count
|
@@ -19930,7 +19919,6 @@ class LoginStatistic(AbstractModel):
|
|
19930
19919
|
@property
|
19931
19920
|
def UpdateTime(self):
|
19932
19921
|
"""更新时间
|
19933
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19934
19922
|
:rtype: str
|
19935
19923
|
"""
|
19936
19924
|
return self._UpdateTime
|
@@ -9298,7 +9298,7 @@ class DescribeServiceAccountsRequest(AbstractModel):
|
|
9298
9298
|
:type All: bool
|
9299
9299
|
:param _EmbedPermission: 是否填充权限信息
|
9300
9300
|
:type EmbedPermission: bool
|
9301
|
-
:param _Filters:
|
9301
|
+
:param _Filters: 过滤条件,key 目前只支持ServiceAccountName
|
9302
9302
|
:type Filters: list of Filter
|
9303
9303
|
:param _Offset: 偏移量,默认0
|
9304
9304
|
:type Offset: int
|
@@ -9347,7 +9347,7 @@ class DescribeServiceAccountsRequest(AbstractModel):
|
|
9347
9347
|
|
9348
9348
|
@property
|
9349
9349
|
def Filters(self):
|
9350
|
-
"""
|
9350
|
+
"""过滤条件,key 目前只支持ServiceAccountName
|
9351
9351
|
:rtype: list of Filter
|
9352
9352
|
"""
|
9353
9353
|
return self._Filters
|
@@ -18440,6 +18440,9 @@ class WebhookTrigger(AbstractModel):
|
|
18440
18440
|
:type Description: str
|
18441
18441
|
:param _NamespaceId: 触发器所属命名空间 Id
|
18442
18442
|
:type NamespaceId: int
|
18443
|
+
:param _NamespaceName: 触发器所属命名空间名称
|
18444
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
18445
|
+
:type NamespaceName: str
|
18443
18446
|
"""
|
18444
18447
|
self._Name = None
|
18445
18448
|
self._Targets = None
|
@@ -18449,6 +18452,7 @@ class WebhookTrigger(AbstractModel):
|
|
18449
18452
|
self._Id = None
|
18450
18453
|
self._Description = None
|
18451
18454
|
self._NamespaceId = None
|
18455
|
+
self._NamespaceName = None
|
18452
18456
|
|
18453
18457
|
@property
|
18454
18458
|
def Name(self):
|
@@ -18538,6 +18542,18 @@ class WebhookTrigger(AbstractModel):
|
|
18538
18542
|
def NamespaceId(self, NamespaceId):
|
18539
18543
|
self._NamespaceId = NamespaceId
|
18540
18544
|
|
18545
|
+
@property
|
18546
|
+
def NamespaceName(self):
|
18547
|
+
"""触发器所属命名空间名称
|
18548
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
18549
|
+
:rtype: str
|
18550
|
+
"""
|
18551
|
+
return self._NamespaceName
|
18552
|
+
|
18553
|
+
@NamespaceName.setter
|
18554
|
+
def NamespaceName(self, NamespaceName):
|
18555
|
+
self._NamespaceName = NamespaceName
|
18556
|
+
|
18541
18557
|
|
18542
18558
|
def _deserialize(self, params):
|
18543
18559
|
self._Name = params.get("Name")
|
@@ -18553,6 +18569,7 @@ class WebhookTrigger(AbstractModel):
|
|
18553
18569
|
self._Id = params.get("Id")
|
18554
18570
|
self._Description = params.get("Description")
|
18555
18571
|
self._NamespaceId = params.get("NamespaceId")
|
18572
|
+
self._NamespaceName = params.get("NamespaceName")
|
18556
18573
|
memeber_set = set(params.keys())
|
18557
18574
|
for name, value in vars(self).items():
|
18558
18575
|
property_name = name[1:]
|
@@ -1505,12 +1505,11 @@ class LoginNode(AbstractModel):
|
|
1505
1505
|
|
1506
1506
|
def __init__(self):
|
1507
1507
|
r"""
|
1508
|
-
:param _InstanceChargeType: 节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID
|
1508
|
+
:param _InstanceChargeType: 节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID:预付费,即包年包月</li><br><li>POSTPAID_BY_HOUR:按小时后付费</li><br><li>SPOTPAID:竞价付费<br>默认值:POSTPAID_BY_HOUR。</li>
|
1509
1509
|
:type InstanceChargeType: str
|
1510
1510
|
:param _InstanceChargePrepaid: 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月节点的购买时长、是否设置自动续费等属性。若指定节点的付费模式为预付费则该参数必传。
|
1511
1511
|
:type InstanceChargePrepaid: :class:`tencentcloud.thpc.v20211109.models.InstanceChargePrepaid`
|
1512
|
-
:param _InstanceType: 节点机型。不同实例机型指定了不同的资源规格。
|
1513
|
-
<br><li>具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。
|
1512
|
+
:param _InstanceType: 节点机型。不同实例机型指定了不同的资源规格。 <br><li>具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。</li>
|
1514
1513
|
:type InstanceType: str
|
1515
1514
|
:param _SystemDisk: 节点系统盘配置信息。若不指定该参数,则按照系统默认值进行分配。
|
1516
1515
|
:type SystemDisk: list of SystemDisk
|
@@ -1518,9 +1517,7 @@ class LoginNode(AbstractModel):
|
|
1518
1517
|
:type DataDisks: list of DataDisk
|
1519
1518
|
:param _InternetAccessible: 公网带宽相关信息设置。若不指定该参数,则默认公网带宽为0Mbps。
|
1520
1519
|
:type InternetAccessible: list of InternetAccessible
|
1521
|
-
:param _InstanceName: 节点显示名称。<br><li>
|
1522
|
-
不指定节点显示名称则默认显示‘未命名’。
|
1523
|
-
最多支持60个字符。
|
1520
|
+
:param _InstanceName: 节点显示名称。<br><li> 不指定节点显示名称则默认显示‘未命名’。 最多支持60个字符。</li>
|
1524
1521
|
:type InstanceName: str
|
1525
1522
|
"""
|
1526
1523
|
self._InstanceChargeType = None
|
@@ -1533,7 +1530,7 @@ class LoginNode(AbstractModel):
|
|
1533
1530
|
|
1534
1531
|
@property
|
1535
1532
|
def InstanceChargeType(self):
|
1536
|
-
"""节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID
|
1533
|
+
"""节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID:预付费,即包年包月</li><br><li>POSTPAID_BY_HOUR:按小时后付费</li><br><li>SPOTPAID:竞价付费<br>默认值:POSTPAID_BY_HOUR。</li>
|
1537
1534
|
:rtype: str
|
1538
1535
|
"""
|
1539
1536
|
return self._InstanceChargeType
|
@@ -1555,8 +1552,7 @@ class LoginNode(AbstractModel):
|
|
1555
1552
|
|
1556
1553
|
@property
|
1557
1554
|
def InstanceType(self):
|
1558
|
-
"""节点机型。不同实例机型指定了不同的资源规格。
|
1559
|
-
<br><li>具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。
|
1555
|
+
"""节点机型。不同实例机型指定了不同的资源规格。 <br><li>具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。</li>
|
1560
1556
|
:rtype: str
|
1561
1557
|
"""
|
1562
1558
|
return self._InstanceType
|
@@ -1600,9 +1596,7 @@ class LoginNode(AbstractModel):
|
|
1600
1596
|
|
1601
1597
|
@property
|
1602
1598
|
def InstanceName(self):
|
1603
|
-
"""节点显示名称。<br><li>
|
1604
|
-
不指定节点显示名称则默认显示‘未命名’。
|
1605
|
-
最多支持60个字符。
|
1599
|
+
"""节点显示名称。<br><li> 不指定节点显示名称则默认显示‘未命名’。 最多支持60个字符。</li>
|
1606
1600
|
:rtype: str
|
1607
1601
|
"""
|
1608
1602
|
return self._InstanceName
|
@@ -1726,12 +1720,11 @@ class ManagerNode(AbstractModel):
|
|
1726
1720
|
|
1727
1721
|
def __init__(self):
|
1728
1722
|
r"""
|
1729
|
-
:param _InstanceChargeType: 节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID
|
1723
|
+
:param _InstanceChargeType: 节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID:预付费,即包年包月</li><br><li>POSTPAID_BY_HOUR:按小时后付费</li><br><li>SPOTPAID:竞价付费<br>默认值:POSTPAID_BY_HOUR。</li>
|
1730
1724
|
:type InstanceChargeType: str
|
1731
1725
|
:param _InstanceChargePrepaid: 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月节点的购买时长、是否设置自动续费等属性。若指定节点的付费模式为预付费则该参数必传。
|
1732
1726
|
:type InstanceChargePrepaid: :class:`tencentcloud.thpc.v20211109.models.InstanceChargePrepaid`
|
1733
|
-
:param _InstanceType: 节点机型。不同实例机型指定了不同的资源规格。
|
1734
|
-
<br><li>对于付费模式为PREPAID或POSTPAID\_BY\_HOUR的实例创建,具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。
|
1727
|
+
:param _InstanceType: 节点机型。不同实例机型指定了不同的资源规格。 <br><li>具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。</li>
|
1735
1728
|
:type InstanceType: str
|
1736
1729
|
:param _SystemDisk: 节点系统盘配置信息。若不指定该参数,则按照系统默认值进行分配。
|
1737
1730
|
:type SystemDisk: :class:`tencentcloud.thpc.v20211109.models.SystemDisk`
|
@@ -1739,11 +1732,7 @@ class ManagerNode(AbstractModel):
|
|
1739
1732
|
:type DataDisks: list of DataDisk
|
1740
1733
|
:param _InternetAccessible: 公网带宽相关信息设置。若不指定该参数,则默认公网带宽为0Mbps。
|
1741
1734
|
:type InternetAccessible: :class:`tencentcloud.thpc.v20211109.models.InternetAccessible`
|
1742
|
-
:param _InstanceName: 节点显示名称。<br><li>
|
1743
|
-
不指定节点显示名称则默认显示‘未命名’。
|
1744
|
-
</li><li>购买多个节点,如果指定模式串`{R:x}`,表示生成数字[`[x, x+n-1]`,其中`n`表示购买节点的数量,例如`server_{R:3}`,购买1个时,节点显示名称为`server_3`;购买2个时,节点显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。
|
1745
|
-
购买多个节点,如果不指定模式串,则在节点显示名称添加后缀`1、2...n`,其中`n`表示购买节点的数量,例如`server_`,购买2个时,节点显示名称分别为`server_1`,`server_2`。</li><li>
|
1746
|
-
最多支持60个字符(包含模式串)。
|
1735
|
+
:param _InstanceName: 节点显示名称。<br><li> 不指定节点显示名称则默认显示‘未命名’。 </li><li>购买多个节点,如果指定模式串`{R:x}`,表示生成数字[`[x, x+n-1]`,其中`n`表示购买节点的数量,例如`server_{R:3}`,购买1个时,节点显示名称为`server_3`;购买2个时,节点显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。 购买多个节点,如果不指定模式串,则在节点显示名称添加后缀`1、2...n`,其中`n`表示购买节点的数量,例如`server_`,购买2个时,节点显示名称分别为`server_1`,`server_2`。</li><li> 最多支持60个字符(包含模式串)。</li>
|
1747
1736
|
:type InstanceName: str
|
1748
1737
|
"""
|
1749
1738
|
self._InstanceChargeType = None
|
@@ -1756,7 +1745,7 @@ class ManagerNode(AbstractModel):
|
|
1756
1745
|
|
1757
1746
|
@property
|
1758
1747
|
def InstanceChargeType(self):
|
1759
|
-
"""节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID
|
1748
|
+
"""节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID:预付费,即包年包月</li><br><li>POSTPAID_BY_HOUR:按小时后付费</li><br><li>SPOTPAID:竞价付费<br>默认值:POSTPAID_BY_HOUR。</li>
|
1760
1749
|
:rtype: str
|
1761
1750
|
"""
|
1762
1751
|
return self._InstanceChargeType
|
@@ -1778,8 +1767,7 @@ class ManagerNode(AbstractModel):
|
|
1778
1767
|
|
1779
1768
|
@property
|
1780
1769
|
def InstanceType(self):
|
1781
|
-
"""节点机型。不同实例机型指定了不同的资源规格。
|
1782
|
-
<br><li>对于付费模式为PREPAID或POSTPAID\_BY\_HOUR的实例创建,具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。
|
1770
|
+
"""节点机型。不同实例机型指定了不同的资源规格。 <br><li>具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。</li>
|
1783
1771
|
:rtype: str
|
1784
1772
|
"""
|
1785
1773
|
return self._InstanceType
|
@@ -1823,11 +1811,7 @@ class ManagerNode(AbstractModel):
|
|
1823
1811
|
|
1824
1812
|
@property
|
1825
1813
|
def InstanceName(self):
|
1826
|
-
"""节点显示名称。<br><li>
|
1827
|
-
不指定节点显示名称则默认显示‘未命名’。
|
1828
|
-
</li><li>购买多个节点,如果指定模式串`{R:x}`,表示生成数字[`[x, x+n-1]`,其中`n`表示购买节点的数量,例如`server_{R:3}`,购买1个时,节点显示名称为`server_3`;购买2个时,节点显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。
|
1829
|
-
购买多个节点,如果不指定模式串,则在节点显示名称添加后缀`1、2...n`,其中`n`表示购买节点的数量,例如`server_`,购买2个时,节点显示名称分别为`server_1`,`server_2`。</li><li>
|
1830
|
-
最多支持60个字符(包含模式串)。
|
1814
|
+
"""节点显示名称。<br><li> 不指定节点显示名称则默认显示‘未命名’。 </li><li>购买多个节点,如果指定模式串`{R:x}`,表示生成数字[`[x, x+n-1]`,其中`n`表示购买节点的数量,例如`server_{R:3}`,购买1个时,节点显示名称为`server_3`;购买2个时,节点显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。 购买多个节点,如果不指定模式串,则在节点显示名称添加后缀`1、2...n`,其中`n`表示购买节点的数量,例如`server_`,购买2个时,节点显示名称分别为`server_1`,`server_2`。</li><li> 最多支持60个字符(包含模式串)。</li>
|
1831
1815
|
:rtype: str
|
1832
1816
|
"""
|
1833
1817
|
return self._InstanceName
|
@@ -3604,12 +3604,11 @@ class LoginNode(AbstractModel):
|
|
3604
3604
|
|
3605
3605
|
def __init__(self):
|
3606
3606
|
r"""
|
3607
|
-
:param _InstanceChargeType: 节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID
|
3607
|
+
:param _InstanceChargeType: 节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID:预付费,即包年包月</li><br><li>POSTPAID_BY_HOUR:按小时后付费</li><br><li>SPOTPAID:竞价付费<br>默认值:POSTPAID_BY_HOUR。</li>
|
3608
3608
|
:type InstanceChargeType: str
|
3609
3609
|
:param _InstanceChargePrepaid: 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月节点的购买时长、是否设置自动续费等属性。若指定节点的付费模式为预付费则该参数必传。
|
3610
3610
|
:type InstanceChargePrepaid: :class:`tencentcloud.thpc.v20220401.models.InstanceChargePrepaid`
|
3611
|
-
:param _InstanceType: 节点机型。不同实例机型指定了不同的资源规格。
|
3612
|
-
<br><li>具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。
|
3611
|
+
:param _InstanceType: 节点机型。不同实例机型指定了不同的资源规格。 <br><li>具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。</li>
|
3613
3612
|
:type InstanceType: str
|
3614
3613
|
:param _SystemDisk: 节点系统盘配置信息。若不指定该参数,则按照系统默认值进行分配。
|
3615
3614
|
:type SystemDisk: list of SystemDisk
|
@@ -3617,9 +3616,7 @@ class LoginNode(AbstractModel):
|
|
3617
3616
|
:type DataDisks: list of DataDisk
|
3618
3617
|
:param _InternetAccessible: 公网带宽相关信息设置。若不指定该参数,则默认公网带宽为0Mbps。
|
3619
3618
|
:type InternetAccessible: list of InternetAccessible
|
3620
|
-
:param _InstanceName: 节点显示名称。<br><li>
|
3621
|
-
不指定节点显示名称则默认显示‘未命名’。
|
3622
|
-
最多支持60个字符。
|
3619
|
+
:param _InstanceName: 节点显示名称。<br><li> 不指定节点显示名称则默认显示‘未命名’。 最多支持60个字符。</li>
|
3623
3620
|
:type InstanceName: str
|
3624
3621
|
"""
|
3625
3622
|
self._InstanceChargeType = None
|
@@ -3632,7 +3629,7 @@ class LoginNode(AbstractModel):
|
|
3632
3629
|
|
3633
3630
|
@property
|
3634
3631
|
def InstanceChargeType(self):
|
3635
|
-
"""节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID
|
3632
|
+
"""节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID:预付费,即包年包月</li><br><li>POSTPAID_BY_HOUR:按小时后付费</li><br><li>SPOTPAID:竞价付费<br>默认值:POSTPAID_BY_HOUR。</li>
|
3636
3633
|
:rtype: str
|
3637
3634
|
"""
|
3638
3635
|
return self._InstanceChargeType
|
@@ -3654,8 +3651,7 @@ class LoginNode(AbstractModel):
|
|
3654
3651
|
|
3655
3652
|
@property
|
3656
3653
|
def InstanceType(self):
|
3657
|
-
"""节点机型。不同实例机型指定了不同的资源规格。
|
3658
|
-
<br><li>具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。
|
3654
|
+
"""节点机型。不同实例机型指定了不同的资源规格。 <br><li>具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。</li>
|
3659
3655
|
:rtype: str
|
3660
3656
|
"""
|
3661
3657
|
return self._InstanceType
|
@@ -3699,9 +3695,7 @@ class LoginNode(AbstractModel):
|
|
3699
3695
|
|
3700
3696
|
@property
|
3701
3697
|
def InstanceName(self):
|
3702
|
-
"""节点显示名称。<br><li>
|
3703
|
-
不指定节点显示名称则默认显示‘未命名’。
|
3704
|
-
最多支持60个字符。
|
3698
|
+
"""节点显示名称。<br><li> 不指定节点显示名称则默认显示‘未命名’。 最多支持60个字符。</li>
|
3705
3699
|
:rtype: str
|
3706
3700
|
"""
|
3707
3701
|
return self._InstanceName
|
@@ -3825,12 +3819,11 @@ class ManagerNode(AbstractModel):
|
|
3825
3819
|
|
3826
3820
|
def __init__(self):
|
3827
3821
|
r"""
|
3828
|
-
:param _InstanceChargeType: 节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID
|
3822
|
+
:param _InstanceChargeType: 节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID:预付费,即包年包月</li><br><li>POSTPAID_BY_HOUR:按小时后付费</li><br><li>SPOTPAID:竞价付费<br>默认值:POSTPAID_BY_HOUR。</li>
|
3829
3823
|
:type InstanceChargeType: str
|
3830
3824
|
:param _InstanceChargePrepaid: 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月节点的购买时长、是否设置自动续费等属性。若指定节点的付费模式为预付费则该参数必传。
|
3831
3825
|
:type InstanceChargePrepaid: :class:`tencentcloud.thpc.v20220401.models.InstanceChargePrepaid`
|
3832
|
-
:param _InstanceType: 节点机型。不同实例机型指定了不同的资源规格。
|
3833
|
-
<br><li>对于付费模式为PREPAID或POSTPAID\_BY\_HOUR的实例创建,具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。
|
3826
|
+
:param _InstanceType: 节点机型。不同实例机型指定了不同的资源规格。 <br><li>具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。</li>
|
3834
3827
|
:type InstanceType: str
|
3835
3828
|
:param _SystemDisk: 节点系统盘配置信息。若不指定该参数,则按照系统默认值进行分配。
|
3836
3829
|
:type SystemDisk: :class:`tencentcloud.thpc.v20220401.models.SystemDisk`
|
@@ -3838,11 +3831,7 @@ class ManagerNode(AbstractModel):
|
|
3838
3831
|
:type DataDisks: list of DataDisk
|
3839
3832
|
:param _InternetAccessible: 公网带宽相关信息设置。若不指定该参数,则默认公网带宽为0Mbps。
|
3840
3833
|
:type InternetAccessible: :class:`tencentcloud.thpc.v20220401.models.InternetAccessible`
|
3841
|
-
:param _InstanceName: 节点显示名称。<br><li>
|
3842
|
-
不指定节点显示名称则默认显示‘未命名’。
|
3843
|
-
</li><li>购买多个节点,如果指定模式串`{R:x}`,表示生成数字[`[x, x+n-1]`,其中`n`表示购买节点的数量,例如`server_{R:3}`,购买1个时,节点显示名称为`server_3`;购买2个时,节点显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。
|
3844
|
-
购买多个节点,如果不指定模式串,则在节点显示名称添加后缀`1、2...n`,其中`n`表示购买节点的数量,例如`server_`,购买2个时,节点显示名称分别为`server_1`,`server_2`。</li><li>
|
3845
|
-
最多支持60个字符(包含模式串)。
|
3834
|
+
:param _InstanceName: 节点显示名称。<br><li> 不指定节点显示名称则默认显示‘未命名’。 </li><li>购买多个节点,如果指定模式串`{R:x}`,表示生成数字[`[x, x+n-1]`,其中`n`表示购买节点的数量,例如`server_{R:3}`,购买1个时,节点显示名称为`server_3`;购买2个时,节点显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。 购买多个节点,如果不指定模式串,则在节点显示名称添加后缀`1、2...n`,其中`n`表示购买节点的数量,例如`server_`,购买2个时,节点显示名称分别为`server_1`,`server_2`。</li><li> 最多支持60个字符(包含模式串)。</li>
|
3846
3835
|
:type InstanceName: str
|
3847
3836
|
"""
|
3848
3837
|
self._InstanceChargeType = None
|
@@ -3855,7 +3844,7 @@ class ManagerNode(AbstractModel):
|
|
3855
3844
|
|
3856
3845
|
@property
|
3857
3846
|
def InstanceChargeType(self):
|
3858
|
-
"""节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID
|
3847
|
+
"""节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID:预付费,即包年包月</li><br><li>POSTPAID_BY_HOUR:按小时后付费</li><br><li>SPOTPAID:竞价付费<br>默认值:POSTPAID_BY_HOUR。</li>
|
3859
3848
|
:rtype: str
|
3860
3849
|
"""
|
3861
3850
|
return self._InstanceChargeType
|
@@ -3877,8 +3866,7 @@ class ManagerNode(AbstractModel):
|
|
3877
3866
|
|
3878
3867
|
@property
|
3879
3868
|
def InstanceType(self):
|
3880
|
-
"""节点机型。不同实例机型指定了不同的资源规格。
|
3881
|
-
<br><li>对于付费模式为PREPAID或POSTPAID\_BY\_HOUR的实例创建,具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。
|
3869
|
+
"""节点机型。不同实例机型指定了不同的资源规格。 <br><li>具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。</li>
|
3882
3870
|
:rtype: str
|
3883
3871
|
"""
|
3884
3872
|
return self._InstanceType
|
@@ -3922,11 +3910,7 @@ class ManagerNode(AbstractModel):
|
|
3922
3910
|
|
3923
3911
|
@property
|
3924
3912
|
def InstanceName(self):
|
3925
|
-
"""节点显示名称。<br><li>
|
3926
|
-
不指定节点显示名称则默认显示‘未命名’。
|
3927
|
-
</li><li>购买多个节点,如果指定模式串`{R:x}`,表示生成数字[`[x, x+n-1]`,其中`n`表示购买节点的数量,例如`server_{R:3}`,购买1个时,节点显示名称为`server_3`;购买2个时,节点显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。
|
3928
|
-
购买多个节点,如果不指定模式串,则在节点显示名称添加后缀`1、2...n`,其中`n`表示购买节点的数量,例如`server_`,购买2个时,节点显示名称分别为`server_1`,`server_2`。</li><li>
|
3929
|
-
最多支持60个字符(包含模式串)。
|
3913
|
+
"""节点显示名称。<br><li> 不指定节点显示名称则默认显示‘未命名’。 </li><li>购买多个节点,如果指定模式串`{R:x}`,表示生成数字[`[x, x+n-1]`,其中`n`表示购买节点的数量,例如`server_{R:3}`,购买1个时,节点显示名称为`server_3`;购买2个时,节点显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。 购买多个节点,如果不指定模式串,则在节点显示名称添加后缀`1、2...n`,其中`n`表示购买节点的数量,例如`server_`,购买2个时,节点显示名称分别为`server_1`,`server_2`。</li><li> 最多支持60个字符(包含模式串)。</li>
|
3930
3914
|
:rtype: str
|
3931
3915
|
"""
|
3932
3916
|
return self._InstanceName
|