alibabacloud-quotas20200510 1.2.0__py3-none-any.whl → 1.2.1__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.
- alibabacloud_quotas20200510/__init__.py +1 -1
- alibabacloud_quotas20200510/models.py +12 -0
- {alibabacloud_quotas20200510-1.2.0.dist-info → alibabacloud_quotas20200510-1.2.1.dist-info}/METADATA +6 -7
- alibabacloud_quotas20200510-1.2.1.dist-info/RECORD +8 -0
- {alibabacloud_quotas20200510-1.2.0.dist-info → alibabacloud_quotas20200510-1.2.1.dist-info}/WHEEL +1 -1
- alibabacloud_quotas20200510-1.2.0.dist-info/RECORD +0 -8
- {alibabacloud_quotas20200510-1.2.0.dist-info → alibabacloud_quotas20200510-1.2.1.dist-info}/LICENSE +0 -0
- {alibabacloud_quotas20200510-1.2.0.dist-info → alibabacloud_quotas20200510-1.2.1.dist-info}/top_level.txt +0 -0
@@ -1 +1 @@
|
|
1
|
-
__version__ = '1.2.
|
1
|
+
__version__ = '1.2.1'
|
@@ -2444,6 +2444,7 @@ class GetQuotaApplicationResponseBodyQuotaApplication(TeaModel):
|
|
2444
2444
|
product_code: str = None,
|
2445
2445
|
quota_action_code: str = None,
|
2446
2446
|
quota_arn: str = None,
|
2447
|
+
quota_category: str = None,
|
2447
2448
|
quota_description: str = None,
|
2448
2449
|
quota_name: str = None,
|
2449
2450
|
quota_unit: str = None,
|
@@ -2480,6 +2481,7 @@ class GetQuotaApplicationResponseBodyQuotaApplication(TeaModel):
|
|
2480
2481
|
self.quota_action_code = quota_action_code
|
2481
2482
|
# The Alibaba Cloud Resource Name (ARN) of the quota.
|
2482
2483
|
self.quota_arn = quota_arn
|
2484
|
+
self.quota_category = quota_category
|
2483
2485
|
# The description of the quota.
|
2484
2486
|
self.quota_description = quota_description
|
2485
2487
|
# The name of the quota.
|
@@ -2529,6 +2531,8 @@ class GetQuotaApplicationResponseBodyQuotaApplication(TeaModel):
|
|
2529
2531
|
result['QuotaActionCode'] = self.quota_action_code
|
2530
2532
|
if self.quota_arn is not None:
|
2531
2533
|
result['QuotaArn'] = self.quota_arn
|
2534
|
+
if self.quota_category is not None:
|
2535
|
+
result['QuotaCategory'] = self.quota_category
|
2532
2536
|
if self.quota_description is not None:
|
2533
2537
|
result['QuotaDescription'] = self.quota_description
|
2534
2538
|
if self.quota_name is not None:
|
@@ -2567,6 +2571,8 @@ class GetQuotaApplicationResponseBodyQuotaApplication(TeaModel):
|
|
2567
2571
|
self.quota_action_code = m.get('QuotaActionCode')
|
2568
2572
|
if m.get('QuotaArn') is not None:
|
2569
2573
|
self.quota_arn = m.get('QuotaArn')
|
2574
|
+
if m.get('QuotaCategory') is not None:
|
2575
|
+
self.quota_category = m.get('QuotaCategory')
|
2570
2576
|
if m.get('QuotaDescription') is not None:
|
2571
2577
|
self.quota_description = m.get('QuotaDescription')
|
2572
2578
|
if m.get('QuotaName') is not None:
|
@@ -5890,6 +5896,7 @@ class ListQuotaApplicationsResponseBodyQuotaApplications(TeaModel):
|
|
5890
5896
|
product_code: str = None,
|
5891
5897
|
quota_action_code: str = None,
|
5892
5898
|
quota_arn: str = None,
|
5899
|
+
quota_category: str = None,
|
5893
5900
|
quota_description: str = None,
|
5894
5901
|
quota_name: str = None,
|
5895
5902
|
quota_unit: str = None,
|
@@ -5927,6 +5934,7 @@ class ListQuotaApplicationsResponseBodyQuotaApplications(TeaModel):
|
|
5927
5934
|
self.quota_action_code = quota_action_code
|
5928
5935
|
# The Alibaba Cloud Resource Name (ARN) of the quota.
|
5929
5936
|
self.quota_arn = quota_arn
|
5937
|
+
self.quota_category = quota_category
|
5930
5938
|
# The description of the quota.
|
5931
5939
|
self.quota_description = quota_description
|
5932
5940
|
# The name of the quota.
|
@@ -5981,6 +5989,8 @@ class ListQuotaApplicationsResponseBodyQuotaApplications(TeaModel):
|
|
5981
5989
|
result['QuotaActionCode'] = self.quota_action_code
|
5982
5990
|
if self.quota_arn is not None:
|
5983
5991
|
result['QuotaArn'] = self.quota_arn
|
5992
|
+
if self.quota_category is not None:
|
5993
|
+
result['QuotaCategory'] = self.quota_category
|
5984
5994
|
if self.quota_description is not None:
|
5985
5995
|
result['QuotaDescription'] = self.quota_description
|
5986
5996
|
if self.quota_name is not None:
|
@@ -6024,6 +6034,8 @@ class ListQuotaApplicationsResponseBodyQuotaApplications(TeaModel):
|
|
6024
6034
|
self.quota_action_code = m.get('QuotaActionCode')
|
6025
6035
|
if m.get('QuotaArn') is not None:
|
6026
6036
|
self.quota_arn = m.get('QuotaArn')
|
6037
|
+
if m.get('QuotaCategory') is not None:
|
6038
|
+
self.quota_category = m.get('QuotaCategory')
|
6027
6039
|
if m.get('QuotaDescription') is not None:
|
6028
6040
|
self.quota_description = m.get('QuotaDescription')
|
6029
6041
|
if m.get('QuotaName') is not None:
|
{alibabacloud_quotas20200510-1.2.0.dist-info → alibabacloud_quotas20200510-1.2.1.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: alibabacloud-quotas20200510
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.1
|
4
4
|
Summary: Alibaba Cloud quotas (20200510) SDK Library for Python
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
6
6
|
Author: Alibaba Cloud SDK
|
@@ -20,10 +20,11 @@ Classifier: Programming Language :: Python :: 3.9
|
|
20
20
|
Classifier: Topic :: Software Development
|
21
21
|
Requires-Python: >=3.6
|
22
22
|
Description-Content-Type: text/markdown
|
23
|
-
|
24
|
-
Requires-Dist: alibabacloud-
|
25
|
-
Requires-Dist: alibabacloud-openapi-util <1.0.0,>=0.2.1
|
26
|
-
Requires-Dist: alibabacloud-
|
23
|
+
License-File: LICENSE
|
24
|
+
Requires-Dist: alibabacloud-endpoint-util (<1.0.0,>=0.0.3)
|
25
|
+
Requires-Dist: alibabacloud-openapi-util (<1.0.0,>=0.2.1)
|
26
|
+
Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.3.11)
|
27
|
+
Requires-Dist: alibabacloud-tea-util (<1.0.0,>=0.3.13)
|
27
28
|
|
28
29
|
English | [简体中文](README-CN.md)
|
29
30
|

|
@@ -66,5 +67,3 @@ Detailed changes for each release are documented in the [release notes](https://
|
|
66
67
|
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
|
67
68
|
|
68
69
|
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
69
|
-
|
70
|
-
|
@@ -0,0 +1,8 @@
|
|
1
|
+
alibabacloud_quotas20200510/__init__.py,sha256=VvDq5py76uDFeq6tv3EFMgTHX4rtDyt6nw0tPm3Wrkk,21
|
2
|
+
alibabacloud_quotas20200510/client.py,sha256=hxynau0EIP20qyNFda7rxeCZv8jFD-UwqeYF6CGDUFo,161623
|
3
|
+
alibabacloud_quotas20200510/models.py,sha256=oJLnEXMDvtZaw9_PrQB3qwgnkkcdA-4RbJli14Z4yUE,279515
|
4
|
+
alibabacloud_quotas20200510-1.2.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
5
|
+
alibabacloud_quotas20200510-1.2.1.dist-info/METADATA,sha256=tIk8DdE1P-u-MUAhItrS9OMZl81lrxz66JFaPxZJOHs,2333
|
6
|
+
alibabacloud_quotas20200510-1.2.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
7
|
+
alibabacloud_quotas20200510-1.2.1.dist-info/top_level.txt,sha256=HoBozDSuoMrEPqEnoflm-fG9So4HWWf8q287gTUOQYw,28
|
8
|
+
alibabacloud_quotas20200510-1.2.1.dist-info/RECORD,,
|
@@ -1,8 +0,0 @@
|
|
1
|
-
alibabacloud_quotas20200510/__init__.py,sha256=5GblYyMbk8JySosj59Rvi2uzLqfP-DAs77ikwTafXT4,21
|
2
|
-
alibabacloud_quotas20200510/client.py,sha256=hxynau0EIP20qyNFda7rxeCZv8jFD-UwqeYF6CGDUFo,161623
|
3
|
-
alibabacloud_quotas20200510/models.py,sha256=iggH7n1Dt9TXtaBwEic1_9PnFE-jO7cA5xmCQSQzeJE,278941
|
4
|
-
alibabacloud_quotas20200510-1.2.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
5
|
-
alibabacloud_quotas20200510-1.2.0.dist-info/METADATA,sha256=UNabXPL29ZcCq9RiwHPR5UOSNq8k_NZGFkaR3EX3Ab0,2305
|
6
|
-
alibabacloud_quotas20200510-1.2.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
7
|
-
alibabacloud_quotas20200510-1.2.0.dist-info/top_level.txt,sha256=HoBozDSuoMrEPqEnoflm-fG9So4HWWf8q287gTUOQYw,28
|
8
|
-
alibabacloud_quotas20200510-1.2.0.dist-info/RECORD,,
|
{alibabacloud_quotas20200510-1.2.0.dist-info → alibabacloud_quotas20200510-1.2.1.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|