alibabacloud-eiam20211201 2.6.0__py3-none-any.whl → 2.6.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_eiam20211201/__init__.py +1 -1
- alibabacloud_eiam20211201/models.py +24 -0
- {alibabacloud_eiam20211201-2.6.0.dist-info → alibabacloud_eiam20211201-2.6.1.dist-info}/METADATA +1 -1
- alibabacloud_eiam20211201-2.6.1.dist-info/RECORD +8 -0
- alibabacloud_eiam20211201-2.6.0.dist-info/RECORD +0 -8
- {alibabacloud_eiam20211201-2.6.0.dist-info → alibabacloud_eiam20211201-2.6.1.dist-info}/LICENSE +0 -0
- {alibabacloud_eiam20211201-2.6.0.dist-info → alibabacloud_eiam20211201-2.6.1.dist-info}/WHEEL +0 -0
- {alibabacloud_eiam20211201-2.6.0.dist-info → alibabacloud_eiam20211201-2.6.1.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '2.6.
|
|
1
|
+
__version__ = '2.6.1'
|
|
@@ -16979,6 +16979,8 @@ class GetInstanceResponseBodyInstance(TeaModel):
|
|
|
16979
16979
|
domain_config: GetInstanceResponseBodyInstanceDomainConfig = None,
|
|
16980
16980
|
egress_addresses: List[str] = None,
|
|
16981
16981
|
instance_id: str = None,
|
|
16982
|
+
managed_service_code: str = None,
|
|
16983
|
+
service_managed: bool = None,
|
|
16982
16984
|
status: str = None,
|
|
16983
16985
|
):
|
|
16984
16986
|
# The time when the instance was created. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
@@ -16993,6 +16995,8 @@ class GetInstanceResponseBodyInstance(TeaModel):
|
|
|
16993
16995
|
self.egress_addresses = egress_addresses
|
|
16994
16996
|
# The instance ID.
|
|
16995
16997
|
self.instance_id = instance_id
|
|
16998
|
+
self.managed_service_code = managed_service_code
|
|
16999
|
+
self.service_managed = service_managed
|
|
16996
17000
|
# The status of the instance. Valid values:
|
|
16997
17001
|
#
|
|
16998
17002
|
# * creating
|
|
@@ -17023,6 +17027,10 @@ class GetInstanceResponseBodyInstance(TeaModel):
|
|
|
17023
17027
|
result['EgressAddresses'] = self.egress_addresses
|
|
17024
17028
|
if self.instance_id is not None:
|
|
17025
17029
|
result['InstanceId'] = self.instance_id
|
|
17030
|
+
if self.managed_service_code is not None:
|
|
17031
|
+
result['ManagedServiceCode'] = self.managed_service_code
|
|
17032
|
+
if self.service_managed is not None:
|
|
17033
|
+
result['ServiceManaged'] = self.service_managed
|
|
17026
17034
|
if self.status is not None:
|
|
17027
17035
|
result['Status'] = self.status
|
|
17028
17036
|
return result
|
|
@@ -17043,6 +17051,10 @@ class GetInstanceResponseBodyInstance(TeaModel):
|
|
|
17043
17051
|
self.egress_addresses = m.get('EgressAddresses')
|
|
17044
17052
|
if m.get('InstanceId') is not None:
|
|
17045
17053
|
self.instance_id = m.get('InstanceId')
|
|
17054
|
+
if m.get('ManagedServiceCode') is not None:
|
|
17055
|
+
self.managed_service_code = m.get('ManagedServiceCode')
|
|
17056
|
+
if m.get('ServiceManaged') is not None:
|
|
17057
|
+
self.service_managed = m.get('ServiceManaged')
|
|
17046
17058
|
if m.get('Status') is not None:
|
|
17047
17059
|
self.status = m.get('Status')
|
|
17048
17060
|
return self
|
|
@@ -29377,6 +29389,8 @@ class ListInstancesResponseBodyInstances(TeaModel):
|
|
|
29377
29389
|
default_endpoint: ListInstancesResponseBodyInstancesDefaultEndpoint = None,
|
|
29378
29390
|
description: str = None,
|
|
29379
29391
|
instance_id: str = None,
|
|
29392
|
+
managed_service_code: str = None,
|
|
29393
|
+
service_managed: bool = None,
|
|
29380
29394
|
status: str = None,
|
|
29381
29395
|
):
|
|
29382
29396
|
# The time when the instance was created. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
@@ -29387,6 +29401,8 @@ class ListInstancesResponseBodyInstances(TeaModel):
|
|
|
29387
29401
|
self.description = description
|
|
29388
29402
|
# The instance ID.
|
|
29389
29403
|
self.instance_id = instance_id
|
|
29404
|
+
self.managed_service_code = managed_service_code
|
|
29405
|
+
self.service_managed = service_managed
|
|
29390
29406
|
# The status of the instance. Valid values:
|
|
29391
29407
|
#
|
|
29392
29408
|
# * creating
|
|
@@ -29411,6 +29427,10 @@ class ListInstancesResponseBodyInstances(TeaModel):
|
|
|
29411
29427
|
result['Description'] = self.description
|
|
29412
29428
|
if self.instance_id is not None:
|
|
29413
29429
|
result['InstanceId'] = self.instance_id
|
|
29430
|
+
if self.managed_service_code is not None:
|
|
29431
|
+
result['ManagedServiceCode'] = self.managed_service_code
|
|
29432
|
+
if self.service_managed is not None:
|
|
29433
|
+
result['ServiceManaged'] = self.service_managed
|
|
29414
29434
|
if self.status is not None:
|
|
29415
29435
|
result['Status'] = self.status
|
|
29416
29436
|
return result
|
|
@@ -29426,6 +29446,10 @@ class ListInstancesResponseBodyInstances(TeaModel):
|
|
|
29426
29446
|
self.description = m.get('Description')
|
|
29427
29447
|
if m.get('InstanceId') is not None:
|
|
29428
29448
|
self.instance_id = m.get('InstanceId')
|
|
29449
|
+
if m.get('ManagedServiceCode') is not None:
|
|
29450
|
+
self.managed_service_code = m.get('ManagedServiceCode')
|
|
29451
|
+
if m.get('ServiceManaged') is not None:
|
|
29452
|
+
self.service_managed = m.get('ServiceManaged')
|
|
29429
29453
|
if m.get('Status') is not None:
|
|
29430
29454
|
self.status = m.get('Status')
|
|
29431
29455
|
return self
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_eiam20211201/__init__.py,sha256=27kOhGQFq_GHJCVVHfzD1DHY7o7VYb-KeiHuCkQYWpA,21
|
|
2
|
+
alibabacloud_eiam20211201/client.py,sha256=yG3QKnC9DEfquF-PF-PZJbmF9GKoEGdFwp3xOLUuD3c,935428
|
|
3
|
+
alibabacloud_eiam20211201/models.py,sha256=5NzEXQqqYlG5o2zRRCJB9YaSvx9d_rLl2zXdYJI7-yg,1520449
|
|
4
|
+
alibabacloud_eiam20211201-2.6.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_eiam20211201-2.6.1.dist-info/METADATA,sha256=QCgTFtUG_Et0TbBsTA5Y7PVe04LpoyX3gMPWcX-dUNk,2319
|
|
6
|
+
alibabacloud_eiam20211201-2.6.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_eiam20211201-2.6.1.dist-info/top_level.txt,sha256=xKHBhu7RrmpWSYLSKKu2KBqRNZs1NsYQJN3isv5EYHU,26
|
|
8
|
+
alibabacloud_eiam20211201-2.6.1.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_eiam20211201/__init__.py,sha256=p2NjwW8_RHPuns-Z5Tmb9wei26Z7xZFZ8_wePBFgvc0,21
|
|
2
|
-
alibabacloud_eiam20211201/client.py,sha256=yG3QKnC9DEfquF-PF-PZJbmF9GKoEGdFwp3xOLUuD3c,935428
|
|
3
|
-
alibabacloud_eiam20211201/models.py,sha256=kpvd9HhxCBBZb26NwvbGmAVLJqwtUssK2C5Y4wbLGRQ,1519179
|
|
4
|
-
alibabacloud_eiam20211201-2.6.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_eiam20211201-2.6.0.dist-info/METADATA,sha256=eY0YhhiTm9U_yqzQQXHtewmxDHCCAdq_TYVwV3ce-K4,2319
|
|
6
|
-
alibabacloud_eiam20211201-2.6.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_eiam20211201-2.6.0.dist-info/top_level.txt,sha256=xKHBhu7RrmpWSYLSKKu2KBqRNZs1NsYQJN3isv5EYHU,26
|
|
8
|
-
alibabacloud_eiam20211201-2.6.0.dist-info/RECORD,,
|
{alibabacloud_eiam20211201-2.6.0.dist-info → alibabacloud_eiam20211201-2.6.1.dist-info}/LICENSE
RENAMED
|
File without changes
|
{alibabacloud_eiam20211201-2.6.0.dist-info → alibabacloud_eiam20211201-2.6.1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|