alibabacloud-fc20230330 4.1.6__py3-none-any.whl → 4.1.7__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_fc20230330/__init__.py +1 -1
- alibabacloud_fc20230330/client.py +1060 -424
- alibabacloud_fc20230330/models.py +97 -0
- {alibabacloud_fc20230330-4.1.6.dist-info → alibabacloud_fc20230330-4.1.7.dist-info}/METADATA +1 -1
- alibabacloud_fc20230330-4.1.7.dist-info/RECORD +8 -0
- alibabacloud_fc20230330-4.1.6.dist-info/RECORD +0 -8
- {alibabacloud_fc20230330-4.1.6.dist-info → alibabacloud_fc20230330-4.1.7.dist-info}/LICENSE +0 -0
- {alibabacloud_fc20230330-4.1.6.dist-info → alibabacloud_fc20230330-4.1.7.dist-info}/WHEEL +0 -0
- {alibabacloud_fc20230330-4.1.6.dist-info → alibabacloud_fc20230330-4.1.7.dist-info}/top_level.txt +0 -0
@@ -5926,6 +5926,103 @@ class UpdateTriggerInput(TeaModel):
|
|
5926
5926
|
return self
|
5927
5927
|
|
5928
5928
|
|
5929
|
+
class OpenStructDescribeRegionsOutputRegionsRegion(TeaModel):
|
5930
|
+
def __init__(
|
5931
|
+
self,
|
5932
|
+
local_name: str = None,
|
5933
|
+
region_id: str = None,
|
5934
|
+
):
|
5935
|
+
self.local_name = local_name
|
5936
|
+
self.region_id = region_id
|
5937
|
+
|
5938
|
+
def validate(self):
|
5939
|
+
pass
|
5940
|
+
|
5941
|
+
def to_map(self):
|
5942
|
+
_map = super().to_map()
|
5943
|
+
if _map is not None:
|
5944
|
+
return _map
|
5945
|
+
|
5946
|
+
result = dict()
|
5947
|
+
if self.local_name is not None:
|
5948
|
+
result['LocalName'] = self.local_name
|
5949
|
+
if self.region_id is not None:
|
5950
|
+
result['RegionId'] = self.region_id
|
5951
|
+
return result
|
5952
|
+
|
5953
|
+
def from_map(self, m: dict = None):
|
5954
|
+
m = m or dict()
|
5955
|
+
if m.get('LocalName') is not None:
|
5956
|
+
self.local_name = m.get('LocalName')
|
5957
|
+
if m.get('RegionId') is not None:
|
5958
|
+
self.region_id = m.get('RegionId')
|
5959
|
+
return self
|
5960
|
+
|
5961
|
+
|
5962
|
+
class OpenStructDescribeRegionsOutputRegions(TeaModel):
|
5963
|
+
def __init__(
|
5964
|
+
self,
|
5965
|
+
region: List[OpenStructDescribeRegionsOutputRegionsRegion] = None,
|
5966
|
+
):
|
5967
|
+
self.region = region
|
5968
|
+
|
5969
|
+
def validate(self):
|
5970
|
+
if self.region:
|
5971
|
+
for k in self.region:
|
5972
|
+
if k:
|
5973
|
+
k.validate()
|
5974
|
+
|
5975
|
+
def to_map(self):
|
5976
|
+
_map = super().to_map()
|
5977
|
+
if _map is not None:
|
5978
|
+
return _map
|
5979
|
+
|
5980
|
+
result = dict()
|
5981
|
+
result['Region'] = []
|
5982
|
+
if self.region is not None:
|
5983
|
+
for k in self.region:
|
5984
|
+
result['Region'].append(k.to_map() if k else None)
|
5985
|
+
return result
|
5986
|
+
|
5987
|
+
def from_map(self, m: dict = None):
|
5988
|
+
m = m or dict()
|
5989
|
+
self.region = []
|
5990
|
+
if m.get('Region') is not None:
|
5991
|
+
for k in m.get('Region'):
|
5992
|
+
temp_model = OpenStructDescribeRegionsOutputRegionsRegion()
|
5993
|
+
self.region.append(temp_model.from_map(k))
|
5994
|
+
return self
|
5995
|
+
|
5996
|
+
|
5997
|
+
class OpenStructDescribeRegionsOutput(TeaModel):
|
5998
|
+
def __init__(
|
5999
|
+
self,
|
6000
|
+
regions: OpenStructDescribeRegionsOutputRegions = None,
|
6001
|
+
):
|
6002
|
+
self.regions = regions
|
6003
|
+
|
6004
|
+
def validate(self):
|
6005
|
+
if self.regions:
|
6006
|
+
self.regions.validate()
|
6007
|
+
|
6008
|
+
def to_map(self):
|
6009
|
+
_map = super().to_map()
|
6010
|
+
if _map is not None:
|
6011
|
+
return _map
|
6012
|
+
|
6013
|
+
result = dict()
|
6014
|
+
if self.regions is not None:
|
6015
|
+
result['Regions'] = self.regions.to_map()
|
6016
|
+
return result
|
6017
|
+
|
6018
|
+
def from_map(self, m: dict = None):
|
6019
|
+
m = m or dict()
|
6020
|
+
if m.get('Regions') is not None:
|
6021
|
+
temp_model = OpenStructDescribeRegionsOutputRegions()
|
6022
|
+
self.regions = temp_model.from_map(m['Regions'])
|
6023
|
+
return self
|
6024
|
+
|
6025
|
+
|
5929
6026
|
class CreateAliasRequest(TeaModel):
|
5930
6027
|
def __init__(
|
5931
6028
|
self,
|
@@ -0,0 +1,8 @@
|
|
1
|
+
alibabacloud_fc20230330/__init__.py,sha256=B4ESOekrGxSxxkpgqOs0xMWV6rvGwUn2h-3eIQhRnDU,21
|
2
|
+
alibabacloud_fc20230330/client.py,sha256=_nzY33AzTFtKebsCcEaB-I-Cbe8Hf26-0PtW8SbCcP8,247661
|
3
|
+
alibabacloud_fc20230330/models.py,sha256=dT3THeRwxmjAe9UYHk6Wu23b7hqgHrqOFsymqqKzytM,313057
|
4
|
+
alibabacloud_fc20230330-4.1.7.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
5
|
+
alibabacloud_fc20230330-4.1.7.dist-info/METADATA,sha256=_1hpHgytVS1mSmpMOUpksUIWuoA7DtpCbrrIj4p6Vgk,2319
|
6
|
+
alibabacloud_fc20230330-4.1.7.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
7
|
+
alibabacloud_fc20230330-4.1.7.dist-info/top_level.txt,sha256=baV3-L5IvxdXABZELkVnoxSffqdCcj44u4zGA8yQ-Ek,24
|
8
|
+
alibabacloud_fc20230330-4.1.7.dist-info/RECORD,,
|
@@ -1,8 +0,0 @@
|
|
1
|
-
alibabacloud_fc20230330/__init__.py,sha256=9wzlrxFApPQPuwvU-BiNEMEXX9YzxVeky11wjowNPV0,21
|
2
|
-
alibabacloud_fc20230330/client.py,sha256=Yf-6IP78aGc0D18JCoXDPfOxJCnJfhvi0UZk0gM_oTg,213863
|
3
|
-
alibabacloud_fc20230330/models.py,sha256=fWFU0X2m89tMNlmgvV9ziRbAM_JdHKiqO7DPWkkzA_I,310429
|
4
|
-
alibabacloud_fc20230330-4.1.6.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
5
|
-
alibabacloud_fc20230330-4.1.6.dist-info/METADATA,sha256=0KMXudVkbHzDtVJ1ElY9xRTw5FCt8PBjyz68QDw-ikE,2319
|
6
|
-
alibabacloud_fc20230330-4.1.6.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
7
|
-
alibabacloud_fc20230330-4.1.6.dist-info/top_level.txt,sha256=baV3-L5IvxdXABZELkVnoxSffqdCcj44u4zGA8yQ-Ek,24
|
8
|
-
alibabacloud_fc20230330-4.1.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{alibabacloud_fc20230330-4.1.6.dist-info → alibabacloud_fc20230330-4.1.7.dist-info}/top_level.txt
RENAMED
File without changes
|