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.
Files changed (17) hide show
  1. {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/ChangeLog.md +9 -0
  2. {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/PKG-INFO +1 -1
  3. alibabacloud_r-kvstore20150101-3.0.1/alibabacloud_r_kvstore20150101/__init__.py +1 -0
  4. {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/alibabacloud_r_kvstore20150101/models.py +9 -1
  5. {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/alibabacloud_r_kvstore20150101.egg-info/PKG-INFO +1 -1
  6. {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/setup.py +1 -1
  7. alibabacloud_r-kvstore20150101-3.0.0/alibabacloud_r_kvstore20150101/__init__.py +0 -1
  8. {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/LICENSE +0 -0
  9. {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/MANIFEST.in +0 -0
  10. {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/README-CN.md +0 -0
  11. {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/README.md +0 -0
  12. {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/alibabacloud_r_kvstore20150101/client.py +0 -0
  13. {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/alibabacloud_r_kvstore20150101.egg-info/SOURCES.txt +0 -0
  14. {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/alibabacloud_r_kvstore20150101.egg-info/dependency_links.txt +0 -0
  15. {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/alibabacloud_r_kvstore20150101.egg-info/requires.txt +0 -0
  16. {alibabacloud_r-kvstore20150101-3.0.0 → alibabacloud_r-kvstore20150101-3.0.1}/alibabacloud_r_kvstore20150101.egg-info/top_level.txt +0 -0
  17. {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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_r-kvstore20150101
3
- Version: 3.0.0
3
+ Version: 3.0.1
4
4
  Summary: Alibaba Cloud R-kvstore (20150101) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-r-kvstore20150101
3
- Version: 3.0.0
3
+ Version: 3.0.1
4
4
  Summary: Alibaba Cloud R-kvstore (20150101) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
24
24
  """
25
25
  setup module for alibabacloud_r-kvstore20150101.
26
26
 
27
- Created on 30/03/2024
27
+ Created on 07/04/2024
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """