alibabacloud-r-kvstore20150101 3.0.0__tar.gz → 3.0.1__tar.gz
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.
- {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/ChangeLog.md +9 -0
- {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/PKG-INFO +1 -1
- alibabacloud_r-kvstore20150101-3.0.1/alibabacloud_r_kvstore20150101/__init__.py +1 -0
- {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/alibabacloud_r_kvstore20150101/models.py +9 -1
- {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/alibabacloud_r_kvstore20150101.egg-info/PKG-INFO +1 -1
- {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/setup.py +1 -1
- alibabacloud_r-kvstore20150101-3.0.0/alibabacloud_r_kvstore20150101/__init__.py +0 -1
- {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/LICENSE +0 -0
- {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/MANIFEST.in +0 -0
- {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/README-CN.md +0 -0
- {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/README.md +0 -0
- {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/alibabacloud_r_kvstore20150101/client.py +0 -0
- {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/alibabacloud_r_kvstore20150101.egg-info/SOURCES.txt +0 -0
- {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/alibabacloud_r_kvstore20150101.egg-info/dependency_links.txt +0 -0
- {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/alibabacloud_r_kvstore20150101.egg-info/requires.txt +0 -0
- {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/alibabacloud_r_kvstore20150101.egg-info/top_level.txt +0 -0
- {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/setup.cfg +0 -0
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
2024-03-30 Version: 3.0.0
|
|
2
|
+
- Update API DescribeBackupTasks: update response param.
|
|
3
|
+
- Update API DescribeBackups: update param BackupId.
|
|
4
|
+
- Update API DescribeBackups: update param BackupJobId.
|
|
5
|
+
- Update API DescribeClusterBackupList: update param ClusterBackupId.
|
|
6
|
+
- Update API DescribePrice: update response param.
|
|
7
|
+
- Update API ModifyInstanceSpec: add param NodeType.
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
2024-02-28 Version: 2.25.6
|
|
2
11
|
- Update API DescribeClusterBackupList: update param ClusterBackupId.
|
|
3
12
|
- Update API DescribePrice: update response param.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '3.0.1'
|
|
@@ -16626,6 +16626,7 @@ class DescribePriceResponseBodySubOrdersSubOrderDepreciateInfo(TeaModel):
|
|
|
16626
16626
|
list_price: int = None,
|
|
16627
16627
|
month_price: int = None,
|
|
16628
16628
|
original_stand_amount: int = None,
|
|
16629
|
+
start_time: str = None,
|
|
16629
16630
|
):
|
|
16630
16631
|
self.cheap_rate = cheap_rate
|
|
16631
16632
|
self.cheap_stand_amount = cheap_stand_amount
|
|
@@ -16636,6 +16637,7 @@ class DescribePriceResponseBodySubOrdersSubOrderDepreciateInfo(TeaModel):
|
|
|
16636
16637
|
self.list_price = list_price
|
|
16637
16638
|
self.month_price = month_price
|
|
16638
16639
|
self.original_stand_amount = original_stand_amount
|
|
16640
|
+
self.start_time = start_time
|
|
16639
16641
|
|
|
16640
16642
|
def validate(self):
|
|
16641
16643
|
if self.contract_activity:
|
|
@@ -16665,6 +16667,8 @@ class DescribePriceResponseBodySubOrdersSubOrderDepreciateInfo(TeaModel):
|
|
|
16665
16667
|
result['MonthPrice'] = self.month_price
|
|
16666
16668
|
if self.original_stand_amount is not None:
|
|
16667
16669
|
result['OriginalStandAmount'] = self.original_stand_amount
|
|
16670
|
+
if self.start_time is not None:
|
|
16671
|
+
result['StartTime'] = self.start_time
|
|
16668
16672
|
return result
|
|
16669
16673
|
|
|
16670
16674
|
def from_map(self, m: dict = None):
|
|
@@ -16688,6 +16692,8 @@ class DescribePriceResponseBodySubOrdersSubOrderDepreciateInfo(TeaModel):
|
|
|
16688
16692
|
self.month_price = m.get('MonthPrice')
|
|
16689
16693
|
if m.get('OriginalStandAmount') is not None:
|
|
16690
16694
|
self.original_stand_amount = m.get('OriginalStandAmount')
|
|
16695
|
+
if m.get('StartTime') is not None:
|
|
16696
|
+
self.start_time = m.get('StartTime')
|
|
16691
16697
|
return self
|
|
16692
16698
|
|
|
16693
16699
|
|
|
@@ -21108,6 +21114,8 @@ class MigrateToOtherZoneRequest(TeaModel):
|
|
|
21108
21114
|
#
|
|
21109
21115
|
# * **Immediately**: immediately switched after the data is migrated.
|
|
21110
21116
|
# * **MaintainTime**: switched within the maintenance window.
|
|
21117
|
+
# * **0**: immediately switched after the data is migrated.
|
|
21118
|
+
# * **1**: switched within the maintenance window.
|
|
21111
21119
|
#
|
|
21112
21120
|
# > Default value: **Immediately**.
|
|
21113
21121
|
self.effective_time = effective_time
|
|
@@ -26801,7 +26809,7 @@ class SwitchNetworkRequest(TeaModel):
|
|
|
26801
26809
|
# > This parameter is available only when the network type of the instance is classic network.
|
|
26802
26810
|
self.retain_classic = retain_classic
|
|
26803
26811
|
self.security_token = security_token
|
|
26804
|
-
# The network type to which you want to switch. Set the value to **VPC**.
|
|
26812
|
+
# The network type to which you want to switch. If you want to switch to VPC network, Set the value to **VPC**.
|
|
26805
26813
|
self.target_network_type = target_network_type
|
|
26806
26814
|
# The ID of the vSwitch that belongs to the VPC to which you want to switch. You can call the [DescribeVpcs](~~35739~~) operation to query the VPC ID.
|
|
26807
26815
|
#
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '3.0.0'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|