tencentcloud-sdk-python-intl-en 3.0.1260__py2.py3-none-any.whl → 3.0.1261__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/cvm/v20170312/models.py +150 -98
- {tencentcloud_sdk_python_intl_en-3.0.1260.dist-info → tencentcloud_sdk_python_intl_en-3.0.1261.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1260.dist-info → tencentcloud_sdk_python_intl_en-3.0.1261.dist-info}/RECORD +6 -6
- {tencentcloud_sdk_python_intl_en-3.0.1260.dist-info → tencentcloud_sdk_python_intl_en-3.0.1261.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1260.dist-info → tencentcloud_sdk_python_intl_en-3.0.1261.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -574,6 +574,81 @@ class ChcDeployExtraConfig(AbstractModel):
|
|
574
574
|
|
575
575
|
"""
|
576
576
|
|
577
|
+
def __init__(self):
|
578
|
+
r"""
|
579
|
+
:param _MiniOsType:
|
580
|
+
:type MiniOsType: str
|
581
|
+
:param _BootType:
|
582
|
+
:type BootType: str
|
583
|
+
:param _BootFile:
|
584
|
+
:type BootFile: str
|
585
|
+
:param _NextServerAddress:
|
586
|
+
:type NextServerAddress: str
|
587
|
+
"""
|
588
|
+
self._MiniOsType = None
|
589
|
+
self._BootType = None
|
590
|
+
self._BootFile = None
|
591
|
+
self._NextServerAddress = None
|
592
|
+
|
593
|
+
@property
|
594
|
+
def MiniOsType(self):
|
595
|
+
"""
|
596
|
+
:rtype: str
|
597
|
+
"""
|
598
|
+
return self._MiniOsType
|
599
|
+
|
600
|
+
@MiniOsType.setter
|
601
|
+
def MiniOsType(self, MiniOsType):
|
602
|
+
self._MiniOsType = MiniOsType
|
603
|
+
|
604
|
+
@property
|
605
|
+
def BootType(self):
|
606
|
+
"""
|
607
|
+
:rtype: str
|
608
|
+
"""
|
609
|
+
return self._BootType
|
610
|
+
|
611
|
+
@BootType.setter
|
612
|
+
def BootType(self, BootType):
|
613
|
+
self._BootType = BootType
|
614
|
+
|
615
|
+
@property
|
616
|
+
def BootFile(self):
|
617
|
+
"""
|
618
|
+
:rtype: str
|
619
|
+
"""
|
620
|
+
return self._BootFile
|
621
|
+
|
622
|
+
@BootFile.setter
|
623
|
+
def BootFile(self, BootFile):
|
624
|
+
self._BootFile = BootFile
|
625
|
+
|
626
|
+
@property
|
627
|
+
def NextServerAddress(self):
|
628
|
+
"""
|
629
|
+
:rtype: str
|
630
|
+
"""
|
631
|
+
return self._NextServerAddress
|
632
|
+
|
633
|
+
@NextServerAddress.setter
|
634
|
+
def NextServerAddress(self, NextServerAddress):
|
635
|
+
self._NextServerAddress = NextServerAddress
|
636
|
+
|
637
|
+
|
638
|
+
def _deserialize(self, params):
|
639
|
+
self._MiniOsType = params.get("MiniOsType")
|
640
|
+
self._BootType = params.get("BootType")
|
641
|
+
self._BootFile = params.get("BootFile")
|
642
|
+
self._NextServerAddress = params.get("NextServerAddress")
|
643
|
+
memeber_set = set(params.keys())
|
644
|
+
for name, value in vars(self).items():
|
645
|
+
property_name = name[1:]
|
646
|
+
if property_name in memeber_set:
|
647
|
+
memeber_set.remove(property_name)
|
648
|
+
if len(memeber_set) > 0:
|
649
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
650
|
+
|
651
|
+
|
577
652
|
|
578
653
|
class ChcHost(AbstractModel):
|
579
654
|
"""CHC host information
|
@@ -2112,6 +2187,8 @@ false (default): sends a normal request. after passing the check, creates an ins
|
|
2112
2187
|
:type InstanceChargePrepaid: :class:`tencentcloud.cvm.v20170312.models.InstanceChargePrepaid`
|
2113
2188
|
:param _DisableApiTermination: Instance destruction protection flag: indicates whether an instance is allowed to be deleted through an api. value ranges from: - **TRUE**: indicates that instance protection is enabled, deletion through apis is not allowed. - **FALSE**: indicates that instance protection is disabled, deletion through apis is allowed. default value: FALSE.
|
2114
2189
|
:type DisableApiTermination: bool
|
2190
|
+
:param _EnableJumboFrame:
|
2191
|
+
:type EnableJumboFrame: bool
|
2115
2192
|
:param _LaunchTemplateTagSpecification: Description list of tags. by specifying this parameter, tags can be bound to the instance launch template.
|
2116
2193
|
:type LaunchTemplateTagSpecification: list of TagSpecification
|
2117
2194
|
:param _Metadata: Custom metadata. specifies that custom metadata key-value pairs can be added when creating a CVM.
|
@@ -2151,6 +2228,7 @@ Note: this field is in beta test.
|
|
2151
2228
|
self._InstanceChargeType = None
|
2152
2229
|
self._InstanceChargePrepaid = None
|
2153
2230
|
self._DisableApiTermination = None
|
2231
|
+
self._EnableJumboFrame = None
|
2154
2232
|
self._LaunchTemplateTagSpecification = None
|
2155
2233
|
self._Metadata = None
|
2156
2234
|
self._TemplateDataModifyAction = None
|
@@ -2458,6 +2536,17 @@ false (default): sends a normal request. after passing the check, creates an ins
|
|
2458
2536
|
def DisableApiTermination(self, DisableApiTermination):
|
2459
2537
|
self._DisableApiTermination = DisableApiTermination
|
2460
2538
|
|
2539
|
+
@property
|
2540
|
+
def EnableJumboFrame(self):
|
2541
|
+
"""
|
2542
|
+
:rtype: bool
|
2543
|
+
"""
|
2544
|
+
return self._EnableJumboFrame
|
2545
|
+
|
2546
|
+
@EnableJumboFrame.setter
|
2547
|
+
def EnableJumboFrame(self, EnableJumboFrame):
|
2548
|
+
self._EnableJumboFrame = EnableJumboFrame
|
2549
|
+
|
2461
2550
|
@property
|
2462
2551
|
def LaunchTemplateTagSpecification(self):
|
2463
2552
|
"""Description list of tags. by specifying this parameter, tags can be bound to the instance launch template.
|
@@ -2553,6 +2642,7 @@ Note: this field is in beta test.
|
|
2553
2642
|
self._InstanceChargePrepaid = InstanceChargePrepaid()
|
2554
2643
|
self._InstanceChargePrepaid._deserialize(params.get("InstanceChargePrepaid"))
|
2555
2644
|
self._DisableApiTermination = params.get("DisableApiTermination")
|
2645
|
+
self._EnableJumboFrame = params.get("EnableJumboFrame")
|
2556
2646
|
if params.get("LaunchTemplateTagSpecification") is not None:
|
2557
2647
|
self._LaunchTemplateTagSpecification = []
|
2558
2648
|
for item in params.get("LaunchTemplateTagSpecification"):
|
@@ -3839,7 +3929,7 @@ class DescribeChcHostsRequest(AbstractModel):
|
|
3839
3929
|
:param _ChcIds: CHC host ID. Up to 100 instances per request is allowed. `ChcIds` and `Filters` cannot be specified at the same time.
|
3840
3930
|
:type ChcIds: list of str
|
3841
3931
|
:param _Filters: <li><strong>zone</strong></li>
|
3842
|
-
<p style="padding-left: 30px;">Filter by the <strong>availability zone</strong>, such as `ap-guangzhou-
|
3932
|
+
<p style="padding-left: 30px;">Filter by the <strong>availability zone</strong>, such as `ap-guangzhou-6`.</p><p style="padding-left: 30px;">Type: String</p><p style="padding-left: 30px;">Optional</p><p style="padding-left: 30px;">Valid values: See <a href="https://intl.cloud.tencent.com/document/product/213/6091?from_cn_redirect=1">Regions and Availability Zones</a></p>
|
3843
3933
|
<li><strong>instance-name</strong></li>
|
3844
3934
|
<p style="padding-left: 30px;">Filter by the <strong>instance name</strong>.</p><p style="padding-left: 30px;">Type: String</p><p style="padding-left: 30px;">Optional</p>
|
3845
3935
|
<li><strong>instance-state</strong></li>
|
@@ -3875,7 +3965,7 @@ class DescribeChcHostsRequest(AbstractModel):
|
|
3875
3965
|
@property
|
3876
3966
|
def Filters(self):
|
3877
3967
|
"""<li><strong>zone</strong></li>
|
3878
|
-
<p style="padding-left: 30px;">Filter by the <strong>availability zone</strong>, such as `ap-guangzhou-
|
3968
|
+
<p style="padding-left: 30px;">Filter by the <strong>availability zone</strong>, such as `ap-guangzhou-6`.</p><p style="padding-left: 30px;">Type: String</p><p style="padding-left: 30px;">Optional</p><p style="padding-left: 30px;">Valid values: See <a href="https://intl.cloud.tencent.com/document/product/213/6091?from_cn_redirect=1">Regions and Availability Zones</a></p>
|
3879
3969
|
<li><strong>instance-name</strong></li>
|
3880
3970
|
<p style="padding-left: 30px;">Filter by the <strong>instance name</strong>.</p><p style="padding-left: 30px;">Type: String</p><p style="padding-left: 30px;">Optional</p>
|
3881
3971
|
<li><strong>instance-state</strong></li>
|
@@ -4287,7 +4377,7 @@ class DescribeHostsRequest(AbstractModel):
|
|
4287
4377
|
def __init__(self):
|
4288
4378
|
r"""
|
4289
4379
|
:param _Filters: <li><strong>zone</strong></li>
|
4290
|
-
<p style="padding-left: 30px;">Filter by the availability zone, such as `ap-guangzhou-
|
4380
|
+
<p style="padding-left: 30px;">Filter by the availability zone, such as `ap-guangzhou-6`.</p><p style="padding-left: 30px;">Type: String</p><p style="padding-left: 30px;">Optional</p><p style="padding-left: 30px;">Valid values: See <a href="https://intl.cloud.tencent.com/document/product/213/6091?from_cn_redirect=1">Regions and Availability Zones</a></p>
|
4291
4381
|
<li><strong>project-id</strong></li>
|
4292
4382
|
<p style="padding-left: 30px;">Filter by the project ID. You can query the list of created projects by calling `DescribeProject` or logging in to the [CVM console](https://console.cloud.tencent.com/cvm/index). You can also call `AddProject` to create projects. The project ID is like 1002189. </p><p style="padding-left: 30px;">Type: Integer</p><p style="padding-left: 30px;">Optional</p>
|
4293
4383
|
<li><strong>host-id</strong></li>
|
@@ -4310,7 +4400,7 @@ Each request can have up to 10 `Filters` and 5 `Filter.Values`.
|
|
4310
4400
|
@property
|
4311
4401
|
def Filters(self):
|
4312
4402
|
"""<li><strong>zone</strong></li>
|
4313
|
-
<p style="padding-left: 30px;">Filter by the availability zone, such as `ap-guangzhou-
|
4403
|
+
<p style="padding-left: 30px;">Filter by the availability zone, such as `ap-guangzhou-6`.</p><p style="padding-left: 30px;">Type: String</p><p style="padding-left: 30px;">Optional</p><p style="padding-left: 30px;">Valid values: See <a href="https://intl.cloud.tencent.com/document/product/213/6091?from_cn_redirect=1">Regions and Availability Zones</a></p>
|
4314
4404
|
<li><strong>project-id</strong></li>
|
4315
4405
|
<p style="padding-left: 30px;">Filter by the project ID. You can query the list of created projects by calling `DescribeProject` or logging in to the [CVM console](https://console.cloud.tencent.com/cvm/index). You can also call `AddProject` to create projects. The project ID is like 1002189. </p><p style="padding-left: 30px;">Type: Integer</p><p style="padding-left: 30px;">Optional</p>
|
4316
4406
|
<li><strong>host-id</strong></li>
|
@@ -11488,71 +11578,52 @@ class ItemPrice(AbstractModel):
|
|
11488
11578
|
|
11489
11579
|
def __init__(self):
|
11490
11580
|
r"""
|
11491
|
-
:param _UnitPrice:
|
11492
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11581
|
+
:param _UnitPrice: Original price of subsequent total costs, postpaid billing mode usage, unit: usd. <li>if other time interval items are returned, such as UnitPriceSecondStep, this item represents the time interval (0, 96) hr. if no other time interval items are returned, this item represents the full period (0, ∞) hr.
|
11493
11582
|
:type UnitPrice: float
|
11494
|
-
:param _ChargeUnit: Billing unit for pay-as-you-go mode.
|
11495
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11583
|
+
:param _ChargeUnit: Billing unit for pay-as-you-go mode. valid values: <br><li>HOUR: billed on an hourly basis. it's used for hourly POSTPAID instances (`POSTPAID_BY_HOUR`). <br><li>GB: bill BY TRAFFIC in GB. it's used for POSTPAID products that are billed BY the hourly TRAFFIC (`TRAFFIC_POSTPAID_BY_HOUR`).
|
11496
11584
|
:type ChargeUnit: str
|
11497
|
-
:param _OriginalPrice:
|
11498
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11585
|
+
:param _OriginalPrice: Original price of total prepaid costs. measurement unit: usd.
|
11499
11586
|
:type OriginalPrice: float
|
11500
|
-
:param _DiscountPrice: Discount price of
|
11501
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11587
|
+
:param _DiscountPrice: Discount price of total prepaid costs. unit: usd.
|
11502
11588
|
:type DiscountPrice: float
|
11503
|
-
:param _Discount:
|
11504
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
11589
|
+
:param _Discount: Discount, such as 20.0 representing 80% off.
|
11505
11590
|
:type Discount: float
|
11506
|
-
:param _UnitPriceDiscount:
|
11507
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11591
|
+
:param _UnitPriceDiscount: Discounted price of subsequent total cost, postpaid billing mode usage, unit: usd <li>if other time interval items are returned, such as UnitPriceDiscountSecondStep, this item represents the time interval (0, 96) hr; if no other time interval items are returned, this item represents the full period (0, ∞) hr.
|
11508
11592
|
:type UnitPriceDiscount: float
|
11509
|
-
:param _UnitPriceSecondStep: Original
|
11510
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11593
|
+
:param _UnitPriceSecondStep: Original price of subsequent total costs for usage time range (96, 360) hr in postpaid billing mode. unit: usd.
|
11511
11594
|
:type UnitPriceSecondStep: float
|
11512
|
-
:param _UnitPriceDiscountSecondStep: Discounted
|
11513
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11595
|
+
:param _UnitPriceDiscountSecondStep: Discounted price of subsequent total cost for usage time interval (96, 360) hr in postpaid billing mode. unit: usd.
|
11514
11596
|
:type UnitPriceDiscountSecondStep: float
|
11515
|
-
:param _UnitPriceThirdStep:
|
11516
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11597
|
+
:param _UnitPriceThirdStep: Specifies the original price of subsequent total costs with a usage time interval exceeding 360 hr in postpaid billing mode. measurement unit: usd.
|
11517
11598
|
:type UnitPriceThirdStep: float
|
11518
|
-
:param _UnitPriceDiscountThirdStep: Discounted
|
11519
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11599
|
+
:param _UnitPriceDiscountThirdStep: Discounted price of subsequent total cost for usage time interval exceeding 360 hr in postpaid billing mode. measurement unit: usd.
|
11520
11600
|
:type UnitPriceDiscountThirdStep: float
|
11521
|
-
:param _OriginalPriceThreeYear:
|
11522
|
-
Note:
|
11523
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11601
|
+
:param _OriginalPriceThreeYear: Specifies the original price of total 3-year prepaid costs in prepaid billing mode. measurement unit: usd.
|
11602
|
+
Note: This field may return null, indicating that no valid value is found.
|
11524
11603
|
:type OriginalPriceThreeYear: float
|
11525
|
-
:param _DiscountPriceThreeYear:
|
11526
|
-
Note:
|
11527
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11604
|
+
:param _DiscountPriceThreeYear: Specifies the discount price for an advance payment of the total fee for three years, prepaid mode usage, measurement unit: usd.
|
11605
|
+
Note: This field may return null, indicating that no valid value is found.
|
11528
11606
|
:type DiscountPriceThreeYear: float
|
11529
|
-
:param _DiscountThreeYear:
|
11530
|
-
Note:
|
11531
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11607
|
+
:param _DiscountThreeYear: Specifies the discount for a 3-year advance payment, for example 20.0 represents 80% off.
|
11608
|
+
Note: This field may return null, indicating that no valid value is found.
|
11532
11609
|
:type DiscountThreeYear: float
|
11533
|
-
:param _OriginalPriceFiveYear:
|
11534
|
-
Note:
|
11535
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11610
|
+
:param _OriginalPriceFiveYear: Specifies the original price of the 5-year total cost with advance payment, using prepaid billing mode. measurement unit: usd.
|
11611
|
+
Note: This field may return null, indicating that no valid value is found.
|
11536
11612
|
:type OriginalPriceFiveYear: float
|
11537
|
-
:param _DiscountPriceFiveYear:
|
11538
|
-
Note:
|
11539
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11613
|
+
:param _DiscountPriceFiveYear: Prepaid 5-year total cost discount price, prepaid billing mode usage. unit: usd.
|
11614
|
+
Note: This field may return null, indicating that no valid value is found.
|
11540
11615
|
:type DiscountPriceFiveYear: float
|
11541
|
-
:param _DiscountFiveYear:
|
11542
|
-
Note:
|
11543
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11616
|
+
:param _DiscountFiveYear: Specifies the discount for 5-year advance payment, such as 20.0 for 80% off.
|
11617
|
+
Note: This field may return null, indicating that no valid value is found.
|
11544
11618
|
:type DiscountFiveYear: float
|
11545
|
-
:param _OriginalPriceOneYear: Original
|
11546
|
-
Note:
|
11547
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11619
|
+
:param _OriginalPriceOneYear: Original price of one-year advance payment total cost. prepaid mode usage. unit: usd.
|
11620
|
+
Note: This field may return null, indicating that no valid value is found.
|
11548
11621
|
:type OriginalPriceOneYear: float
|
11549
|
-
:param _DiscountPriceOneYear:
|
11550
|
-
Note:
|
11551
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11622
|
+
:param _DiscountPriceOneYear: Discount price for total advance payment for one year. specifies prepaid mode usage. measurement unit: usd.
|
11623
|
+
Note: This field may return null, indicating that no valid value is found.
|
11552
11624
|
:type DiscountPriceOneYear: float
|
11553
|
-
:param _DiscountOneYear:
|
11554
|
-
Note:
|
11555
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11625
|
+
:param _DiscountOneYear: Specifies the discount for a one-year advance payment, such as 20.0 for 80% off.
|
11626
|
+
Note: This field may return null, indicating that no valid value is found.
|
11556
11627
|
:type DiscountOneYear: float
|
11557
11628
|
"""
|
11558
11629
|
self._UnitPrice = None
|
@@ -11577,8 +11648,7 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
11577
11648
|
|
11578
11649
|
@property
|
11579
11650
|
def UnitPrice(self):
|
11580
|
-
"""
|
11581
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11651
|
+
"""Original price of subsequent total costs, postpaid billing mode usage, unit: usd. <li>if other time interval items are returned, such as UnitPriceSecondStep, this item represents the time interval (0, 96) hr. if no other time interval items are returned, this item represents the full period (0, ∞) hr.
|
11582
11652
|
:rtype: float
|
11583
11653
|
"""
|
11584
11654
|
return self._UnitPrice
|
@@ -11589,8 +11659,7 @@ Note: this field may return null, indicating that no valid value is obtained.
|
|
11589
11659
|
|
11590
11660
|
@property
|
11591
11661
|
def ChargeUnit(self):
|
11592
|
-
"""Billing unit for pay-as-you-go mode.
|
11593
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11662
|
+
"""Billing unit for pay-as-you-go mode. valid values: <br><li>HOUR: billed on an hourly basis. it's used for hourly POSTPAID instances (`POSTPAID_BY_HOUR`). <br><li>GB: bill BY TRAFFIC in GB. it's used for POSTPAID products that are billed BY the hourly TRAFFIC (`TRAFFIC_POSTPAID_BY_HOUR`).
|
11594
11663
|
:rtype: str
|
11595
11664
|
"""
|
11596
11665
|
return self._ChargeUnit
|
@@ -11601,8 +11670,7 @@ Note: this field may return null, indicating that no valid value is obtained.
|
|
11601
11670
|
|
11602
11671
|
@property
|
11603
11672
|
def OriginalPrice(self):
|
11604
|
-
"""
|
11605
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11673
|
+
"""Original price of total prepaid costs. measurement unit: usd.
|
11606
11674
|
:rtype: float
|
11607
11675
|
"""
|
11608
11676
|
return self._OriginalPrice
|
@@ -11613,8 +11681,7 @@ Note: this field may return null, indicating that no valid value is obtained.
|
|
11613
11681
|
|
11614
11682
|
@property
|
11615
11683
|
def DiscountPrice(self):
|
11616
|
-
"""Discount price of
|
11617
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11684
|
+
"""Discount price of total prepaid costs. unit: usd.
|
11618
11685
|
:rtype: float
|
11619
11686
|
"""
|
11620
11687
|
return self._DiscountPrice
|
@@ -11625,8 +11692,7 @@ Note: this field may return null, indicating that no valid value is obtained.
|
|
11625
11692
|
|
11626
11693
|
@property
|
11627
11694
|
def Discount(self):
|
11628
|
-
"""
|
11629
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
11695
|
+
"""Discount, such as 20.0 representing 80% off.
|
11630
11696
|
:rtype: float
|
11631
11697
|
"""
|
11632
11698
|
return self._Discount
|
@@ -11637,8 +11703,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
11637
11703
|
|
11638
11704
|
@property
|
11639
11705
|
def UnitPriceDiscount(self):
|
11640
|
-
"""
|
11641
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11706
|
+
"""Discounted price of subsequent total cost, postpaid billing mode usage, unit: usd <li>if other time interval items are returned, such as UnitPriceDiscountSecondStep, this item represents the time interval (0, 96) hr; if no other time interval items are returned, this item represents the full period (0, ∞) hr.
|
11642
11707
|
:rtype: float
|
11643
11708
|
"""
|
11644
11709
|
return self._UnitPriceDiscount
|
@@ -11649,8 +11714,7 @@ Note: this field may return null, indicating that no valid value is obtained.
|
|
11649
11714
|
|
11650
11715
|
@property
|
11651
11716
|
def UnitPriceSecondStep(self):
|
11652
|
-
"""Original
|
11653
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11717
|
+
"""Original price of subsequent total costs for usage time range (96, 360) hr in postpaid billing mode. unit: usd.
|
11654
11718
|
:rtype: float
|
11655
11719
|
"""
|
11656
11720
|
return self._UnitPriceSecondStep
|
@@ -11661,8 +11725,7 @@ Note: this field may return null, indicating that no valid value is obtained.
|
|
11661
11725
|
|
11662
11726
|
@property
|
11663
11727
|
def UnitPriceDiscountSecondStep(self):
|
11664
|
-
"""Discounted
|
11665
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11728
|
+
"""Discounted price of subsequent total cost for usage time interval (96, 360) hr in postpaid billing mode. unit: usd.
|
11666
11729
|
:rtype: float
|
11667
11730
|
"""
|
11668
11731
|
return self._UnitPriceDiscountSecondStep
|
@@ -11673,8 +11736,7 @@ Note: this field may return null, indicating that no valid value is obtained.
|
|
11673
11736
|
|
11674
11737
|
@property
|
11675
11738
|
def UnitPriceThirdStep(self):
|
11676
|
-
"""
|
11677
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11739
|
+
"""Specifies the original price of subsequent total costs with a usage time interval exceeding 360 hr in postpaid billing mode. measurement unit: usd.
|
11678
11740
|
:rtype: float
|
11679
11741
|
"""
|
11680
11742
|
return self._UnitPriceThirdStep
|
@@ -11685,8 +11747,7 @@ Note: this field may return null, indicating that no valid value is obtained.
|
|
11685
11747
|
|
11686
11748
|
@property
|
11687
11749
|
def UnitPriceDiscountThirdStep(self):
|
11688
|
-
"""Discounted
|
11689
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
11750
|
+
"""Discounted price of subsequent total cost for usage time interval exceeding 360 hr in postpaid billing mode. measurement unit: usd.
|
11690
11751
|
:rtype: float
|
11691
11752
|
"""
|
11692
11753
|
return self._UnitPriceDiscountThirdStep
|
@@ -11697,9 +11758,8 @@ Note: this field may return null, indicating that no valid value is obtained.
|
|
11697
11758
|
|
11698
11759
|
@property
|
11699
11760
|
def OriginalPriceThreeYear(self):
|
11700
|
-
"""
|
11701
|
-
Note:
|
11702
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11761
|
+
"""Specifies the original price of total 3-year prepaid costs in prepaid billing mode. measurement unit: usd.
|
11762
|
+
Note: This field may return null, indicating that no valid value is found.
|
11703
11763
|
:rtype: float
|
11704
11764
|
"""
|
11705
11765
|
return self._OriginalPriceThreeYear
|
@@ -11710,9 +11770,8 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
11710
11770
|
|
11711
11771
|
@property
|
11712
11772
|
def DiscountPriceThreeYear(self):
|
11713
|
-
"""
|
11714
|
-
Note:
|
11715
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11773
|
+
"""Specifies the discount price for an advance payment of the total fee for three years, prepaid mode usage, measurement unit: usd.
|
11774
|
+
Note: This field may return null, indicating that no valid value is found.
|
11716
11775
|
:rtype: float
|
11717
11776
|
"""
|
11718
11777
|
return self._DiscountPriceThreeYear
|
@@ -11723,9 +11782,8 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
11723
11782
|
|
11724
11783
|
@property
|
11725
11784
|
def DiscountThreeYear(self):
|
11726
|
-
"""
|
11727
|
-
Note:
|
11728
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11785
|
+
"""Specifies the discount for a 3-year advance payment, for example 20.0 represents 80% off.
|
11786
|
+
Note: This field may return null, indicating that no valid value is found.
|
11729
11787
|
:rtype: float
|
11730
11788
|
"""
|
11731
11789
|
return self._DiscountThreeYear
|
@@ -11736,9 +11794,8 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
11736
11794
|
|
11737
11795
|
@property
|
11738
11796
|
def OriginalPriceFiveYear(self):
|
11739
|
-
"""
|
11740
|
-
Note:
|
11741
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11797
|
+
"""Specifies the original price of the 5-year total cost with advance payment, using prepaid billing mode. measurement unit: usd.
|
11798
|
+
Note: This field may return null, indicating that no valid value is found.
|
11742
11799
|
:rtype: float
|
11743
11800
|
"""
|
11744
11801
|
return self._OriginalPriceFiveYear
|
@@ -11749,9 +11806,8 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
11749
11806
|
|
11750
11807
|
@property
|
11751
11808
|
def DiscountPriceFiveYear(self):
|
11752
|
-
"""
|
11753
|
-
Note:
|
11754
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11809
|
+
"""Prepaid 5-year total cost discount price, prepaid billing mode usage. unit: usd.
|
11810
|
+
Note: This field may return null, indicating that no valid value is found.
|
11755
11811
|
:rtype: float
|
11756
11812
|
"""
|
11757
11813
|
return self._DiscountPriceFiveYear
|
@@ -11762,9 +11818,8 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
11762
11818
|
|
11763
11819
|
@property
|
11764
11820
|
def DiscountFiveYear(self):
|
11765
|
-
"""
|
11766
|
-
Note:
|
11767
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11821
|
+
"""Specifies the discount for 5-year advance payment, such as 20.0 for 80% off.
|
11822
|
+
Note: This field may return null, indicating that no valid value is found.
|
11768
11823
|
:rtype: float
|
11769
11824
|
"""
|
11770
11825
|
return self._DiscountFiveYear
|
@@ -11775,9 +11830,8 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
11775
11830
|
|
11776
11831
|
@property
|
11777
11832
|
def OriginalPriceOneYear(self):
|
11778
|
-
"""Original
|
11779
|
-
Note:
|
11780
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11833
|
+
"""Original price of one-year advance payment total cost. prepaid mode usage. unit: usd.
|
11834
|
+
Note: This field may return null, indicating that no valid value is found.
|
11781
11835
|
:rtype: float
|
11782
11836
|
"""
|
11783
11837
|
return self._OriginalPriceOneYear
|
@@ -11788,9 +11842,8 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
11788
11842
|
|
11789
11843
|
@property
|
11790
11844
|
def DiscountPriceOneYear(self):
|
11791
|
-
"""
|
11792
|
-
Note:
|
11793
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11845
|
+
"""Discount price for total advance payment for one year. specifies prepaid mode usage. measurement unit: usd.
|
11846
|
+
Note: This field may return null, indicating that no valid value is found.
|
11794
11847
|
:rtype: float
|
11795
11848
|
"""
|
11796
11849
|
return self._DiscountPriceOneYear
|
@@ -11801,9 +11854,8 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
11801
11854
|
|
11802
11855
|
@property
|
11803
11856
|
def DiscountOneYear(self):
|
11804
|
-
"""
|
11805
|
-
Note:
|
11806
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
11857
|
+
"""Specifies the discount for a one-year advance payment, such as 20.0 for 80% off.
|
11858
|
+
Note: This field may return null, indicating that no valid value is found.
|
11807
11859
|
:rtype: float
|
11808
11860
|
"""
|
11809
11861
|
return self._DiscountOneYear
|
@@ -1,4 +1,4 @@
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
1
|
+
tencentcloud/__init__.py,sha256=FSZ4nZuMoU2q8iKbcvDLo9r6DdGSnltcruIrLVXGtco,630
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=fiBV7Nao68T0UJdOUt5BxEABWr7mG_J9NPJT2lXDdyw,2897
|
@@ -196,7 +196,7 @@ tencentcloud/cvm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
196
196
|
tencentcloud/cvm/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
197
197
|
tencentcloud/cvm/v20170312/cvm_client.py,sha256=5NBD6WjiWyGwR8sGUZFBQeIxVKSX0gbRtYKIo4lIaTE,96268
|
198
198
|
tencentcloud/cvm/v20170312/errorcodes.py,sha256=OWVQJFWIr88PFCGlx5kwiDQfD3yrdfGYvy9Tc6_5b3w,53534
|
199
|
-
tencentcloud/cvm/v20170312/models.py,sha256=
|
199
|
+
tencentcloud/cvm/v20170312/models.py,sha256=naFh0UlZtTPGv10Tu3ZmreJKHaJvbyufVwp1OAS3Cyo,795834
|
200
200
|
tencentcloud/cwp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
201
201
|
tencentcloud/cwp/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
202
202
|
tencentcloud/cwp/v20180228/cwp_client.py,sha256=4JrQ1BjTj7nCLEPbfPrStUDqzDoTtZl4TjqyKUwvl6I,444110
|
@@ -678,7 +678,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
678
678
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=g2ac3Fxgbof23WWhGj9VxvuLJZNshnB0Mg7jWUzTh24,3168
|
679
679
|
tencentcloud/yunjing/v20180228/models.py,sha256=vFpNnPGWiOLdTut0XPTpRRF5lobWUTkFUO1EHc9RkBk,330643
|
680
680
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=PqtaJz4gQ-rIxKXVMNtOKx7kFBQdUn-zKVuH2NcMFcA,67362
|
681
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
682
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
683
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
684
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
681
|
+
tencentcloud_sdk_python_intl_en-3.0.1261.dist-info/METADATA,sha256=kUMieBjfffJf6Ck0CpfVItjCQCc8QlnFf_Ea-YYuQKg,1628
|
682
|
+
tencentcloud_sdk_python_intl_en-3.0.1261.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
683
|
+
tencentcloud_sdk_python_intl_en-3.0.1261.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
684
|
+
tencentcloud_sdk_python_intl_en-3.0.1261.dist-info/RECORD,,
|
File without changes
|