alibabacloud-vpc20160428 6.14.0__py3-none-any.whl → 6.14.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_vpc20160428/__init__.py +1 -1
- alibabacloud_vpc20160428/client.py +4 -0
- alibabacloud_vpc20160428/models/_get_route_target_group_response_body.py +9 -1
- alibabacloud_vpc20160428/models/_list_nat_ips_request.py +8 -0
- {alibabacloud_vpc20160428-6.14.0.dist-info → alibabacloud_vpc20160428-6.14.1.dist-info}/METADATA +1 -1
- {alibabacloud_vpc20160428-6.14.0.dist-info → alibabacloud_vpc20160428-6.14.1.dist-info}/RECORD +9 -9
- {alibabacloud_vpc20160428-6.14.0.dist-info → alibabacloud_vpc20160428-6.14.1.dist-info}/LICENSE +0 -0
- {alibabacloud_vpc20160428-6.14.0.dist-info → alibabacloud_vpc20160428-6.14.1.dist-info}/WHEEL +0 -0
- {alibabacloud_vpc20160428-6.14.0.dist-info → alibabacloud_vpc20160428-6.14.1.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '6.14.
|
|
1
|
+
__version__ = '6.14.1'
|
|
@@ -29208,6 +29208,8 @@ class Client(OpenApiClient):
|
|
|
29208
29208
|
query['DryRun'] = request.dry_run
|
|
29209
29209
|
if not DaraCore.is_null(request.ip_origin):
|
|
29210
29210
|
query['IpOrigin'] = request.ip_origin
|
|
29211
|
+
if not DaraCore.is_null(request.ipv_4prefix):
|
|
29212
|
+
query['Ipv4Prefix'] = request.ipv_4prefix
|
|
29211
29213
|
if not DaraCore.is_null(request.max_results):
|
|
29212
29214
|
query['MaxResults'] = request.max_results
|
|
29213
29215
|
if not DaraCore.is_null(request.nat_gateway_id):
|
|
@@ -29266,6 +29268,8 @@ class Client(OpenApiClient):
|
|
|
29266
29268
|
query['DryRun'] = request.dry_run
|
|
29267
29269
|
if not DaraCore.is_null(request.ip_origin):
|
|
29268
29270
|
query['IpOrigin'] = request.ip_origin
|
|
29271
|
+
if not DaraCore.is_null(request.ipv_4prefix):
|
|
29272
|
+
query['Ipv4Prefix'] = request.ipv_4prefix
|
|
29269
29273
|
if not DaraCore.is_null(request.max_results):
|
|
29270
29274
|
query['MaxResults'] = request.max_results
|
|
29271
29275
|
if not DaraCore.is_null(request.nat_gateway_id):
|
|
@@ -43,7 +43,15 @@ class GetRouteTargetGroupResponseBody(DaraModel):
|
|
|
43
43
|
self.route_target_group_name = route_target_group_name
|
|
44
44
|
# List of members in the route target group.
|
|
45
45
|
self.route_target_member_list = route_target_member_list
|
|
46
|
-
#
|
|
46
|
+
# The status of the route target group. Values:
|
|
47
|
+
# - **Recovering**: In the process of switching back to the primary
|
|
48
|
+
# - **Switched**: The primary and secondary have been switched
|
|
49
|
+
# - **Available**: Available
|
|
50
|
+
# - **Abnormal**: Secondary instance is abnormal
|
|
51
|
+
# - **Pending**: In the process of being created
|
|
52
|
+
# - **Switching**: In the process of switching between primary and secondary
|
|
53
|
+
# - **Deleting**: In the process of being deleted
|
|
54
|
+
# - **Unavailable**: Both primary and secondary instances are abnormal
|
|
47
55
|
self.status = status
|
|
48
56
|
# Tags of the route target group.
|
|
49
57
|
self.tags = tags
|
|
@@ -12,6 +12,7 @@ class ListNatIpsRequest(DaraModel):
|
|
|
12
12
|
client_token: str = None,
|
|
13
13
|
dry_run: bool = None,
|
|
14
14
|
ip_origin: str = None,
|
|
15
|
+
ipv_4prefix: str = None,
|
|
15
16
|
max_results: str = None,
|
|
16
17
|
nat_gateway_id: str = None,
|
|
17
18
|
nat_ip_cidr: str = None,
|
|
@@ -37,6 +38,7 @@ class ListNatIpsRequest(DaraModel):
|
|
|
37
38
|
# * **false** (default): sends the request. If the request passes the precheck, a 2xx HTTP status code is returned and the operation is performed.
|
|
38
39
|
self.dry_run = dry_run
|
|
39
40
|
self.ip_origin = ip_origin
|
|
41
|
+
self.ipv_4prefix = ipv_4prefix
|
|
40
42
|
# The number of entries to return on each page. Valid values: **1** to **100**. Default value: **20**.
|
|
41
43
|
self.max_results = max_results
|
|
42
44
|
# The ID of the NAT gateway.
|
|
@@ -88,6 +90,9 @@ class ListNatIpsRequest(DaraModel):
|
|
|
88
90
|
if self.ip_origin is not None:
|
|
89
91
|
result['IpOrigin'] = self.ip_origin
|
|
90
92
|
|
|
93
|
+
if self.ipv_4prefix is not None:
|
|
94
|
+
result['Ipv4Prefix'] = self.ipv_4prefix
|
|
95
|
+
|
|
91
96
|
if self.max_results is not None:
|
|
92
97
|
result['MaxResults'] = self.max_results
|
|
93
98
|
|
|
@@ -137,6 +142,9 @@ class ListNatIpsRequest(DaraModel):
|
|
|
137
142
|
if m.get('IpOrigin') is not None:
|
|
138
143
|
self.ip_origin = m.get('IpOrigin')
|
|
139
144
|
|
|
145
|
+
if m.get('Ipv4Prefix') is not None:
|
|
146
|
+
self.ipv_4prefix = m.get('Ipv4Prefix')
|
|
147
|
+
|
|
140
148
|
if m.get('MaxResults') is not None:
|
|
141
149
|
self.max_results = m.get('MaxResults')
|
|
142
150
|
|
{alibabacloud_vpc20160428-6.14.0.dist-info → alibabacloud_vpc20160428-6.14.1.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
alibabacloud_vpc20160428/__init__.py,sha256=
|
|
2
|
-
alibabacloud_vpc20160428/client.py,sha256=
|
|
1
|
+
alibabacloud_vpc20160428/__init__.py,sha256=LfgA-kZ7YQwGtOkDqT08eV5fkp50mDQdm1lErTz70Kg,22
|
|
2
|
+
alibabacloud_vpc20160428/client.py,sha256=5b_UZTyCGYhqOHZsidPS_6I-_M4EmIVCvksVbZ5PR1c,1887164
|
|
3
3
|
alibabacloud_vpc20160428/models/__init__.py,sha256=4l8XBrA2yBCjKeYftE2dYCYD3SmILNGvEQItAMGDF1I,241021
|
|
4
4
|
alibabacloud_vpc20160428/models/_activate_router_interface_request.py,sha256=RVaEhmMlEZQGumY5PQXMEszhjfR-gGE5slipXlUqriA,2347
|
|
5
5
|
alibabacloud_vpc20160428/models/_activate_router_interface_response.py,sha256=0DdFpClGckP_MsUgxlwOKycDdI3EGfcU-WJxq8jGXhI,1501
|
|
@@ -757,7 +757,7 @@ alibabacloud_vpc20160428/models/_get_public_ip_address_pool_service_status_respo
|
|
|
757
757
|
alibabacloud_vpc20160428/models/_get_public_ip_address_pool_service_status_response_body.py,sha256=s9qNvJuXvZnEyh_GJobU2hDP0W8So9hu9t6pNA4ATSE,1270
|
|
758
758
|
alibabacloud_vpc20160428/models/_get_route_target_group_request.py,sha256=izdFFNWecAOGsisJDWIn_NSxZ7YwoFiEeikuBoOtRDc,4119
|
|
759
759
|
alibabacloud_vpc20160428/models/_get_route_target_group_response.py,sha256=XbM4VKyNSehF3rcI3Ognl5HfgatPkkxkDMTc_8y_52k,1489
|
|
760
|
-
alibabacloud_vpc20160428/models/_get_route_target_group_response_body.py,sha256=
|
|
760
|
+
alibabacloud_vpc20160428/models/_get_route_target_group_response_body.py,sha256=MA739BadwCoY6dCqq0oWUMt5XaoFGzTOSQ8BCp5A78k,9845
|
|
761
761
|
alibabacloud_vpc20160428/models/_get_traffic_mirror_service_status_request.py,sha256=qP70jgiPxpol1ahzmQiFq_iPEvJpI2G5dv-6y_Bcv8U,2923
|
|
762
762
|
alibabacloud_vpc20160428/models/_get_traffic_mirror_service_status_response.py,sha256=YUcWIEvqUSNgzRNvmzanWn15D0i7ilWBhnPUxkHolxA,1519
|
|
763
763
|
alibabacloud_vpc20160428/models/_get_traffic_mirror_service_status_response_body.py,sha256=Z8RpYuCN51hm9W7V_4W0ueHYDuLvMX3Otij9kd7OMT8,1180
|
|
@@ -818,7 +818,7 @@ alibabacloud_vpc20160428/models/_list_ipv_4gateways_response_body.py,sha256=6VhD
|
|
|
818
818
|
alibabacloud_vpc20160428/models/_list_nat_ip_cidrs_request.py,sha256=C4-rPg3ZnFK-RkgV1DxFKnI8bHz1ewv5TpILMFl7vyA,6847
|
|
819
819
|
alibabacloud_vpc20160428/models/_list_nat_ip_cidrs_response.py,sha256=ddh-K3jPmNkqvbST5MXtm_a0gMJUPIuul3f6Lnbwmc4,1474
|
|
820
820
|
alibabacloud_vpc20160428/models/_list_nat_ip_cidrs_response_body.py,sha256=6TIhB0jhNyOHgbc6L0-SGfqADEuHLlBaD4CO8vb3LUk,5966
|
|
821
|
-
alibabacloud_vpc20160428/models/_list_nat_ips_request.py,sha256=
|
|
821
|
+
alibabacloud_vpc20160428/models/_list_nat_ips_request.py,sha256=0gil7epca_sJKLlEEelj-XvSmxQELRf4HLCB48MsysM,6986
|
|
822
822
|
alibabacloud_vpc20160428/models/_list_nat_ips_response.py,sha256=EdenvAOTQjzSxsHxmEGX-7fcTzQ7yeCT5dpRh13jLWQ,1462
|
|
823
823
|
alibabacloud_vpc20160428/models/_list_nat_ips_response_body.py,sha256=pCioAzeJBaAbgKkvRlfP8UK3a8tcRrAINXcLzG1-Fhk,6003
|
|
824
824
|
alibabacloud_vpc20160428/models/_list_physical_connection_features_request.py,sha256=SbFfFiROwgkh6lJLqFInDazfup4DH1crB3AngmIISms,3372
|
|
@@ -1204,8 +1204,8 @@ alibabacloud_vpc20160428/models/_vpc_describe_vpc_nat_gateway_network_interface_
|
|
|
1204
1204
|
alibabacloud_vpc20160428/models/_withdraw_vpc_published_route_entries_request.py,sha256=GpHh2iNrvEUqH7n_9Ks0WTe03doXZTihnMz-ST2Sjuo,5753
|
|
1205
1205
|
alibabacloud_vpc20160428/models/_withdraw_vpc_published_route_entries_response.py,sha256=VihHnKuXihBHZF7j0rZsnkj5Rv27G9ec1XSlMWuNjdU,1528
|
|
1206
1206
|
alibabacloud_vpc20160428/models/_withdraw_vpc_published_route_entries_response_body.py,sha256=y758cQVu54CwDn1NpTaBw83CDAH-3q1lzxoSswQPUY8,814
|
|
1207
|
-
alibabacloud_vpc20160428-6.14.
|
|
1208
|
-
alibabacloud_vpc20160428-6.14.
|
|
1209
|
-
alibabacloud_vpc20160428-6.14.
|
|
1210
|
-
alibabacloud_vpc20160428-6.14.
|
|
1211
|
-
alibabacloud_vpc20160428-6.14.
|
|
1207
|
+
alibabacloud_vpc20160428-6.14.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
1208
|
+
alibabacloud_vpc20160428-6.14.1.dist-info/METADATA,sha256=hu_8LK3Dy2UFLz8JFUGVkNtr68Tm7-kgNjE4JoUVI1c,2308
|
|
1209
|
+
alibabacloud_vpc20160428-6.14.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
1210
|
+
alibabacloud_vpc20160428-6.14.1.dist-info/top_level.txt,sha256=aF3N1qaLDlyXEHXQ7AIBXYBUVWa-5wNpQNKhEiij7uA,25
|
|
1211
|
+
alibabacloud_vpc20160428-6.14.1.dist-info/RECORD,,
|
{alibabacloud_vpc20160428-6.14.0.dist-info → alibabacloud_vpc20160428-6.14.1.dist-info}/LICENSE
RENAMED
|
File without changes
|
{alibabacloud_vpc20160428-6.14.0.dist-info → alibabacloud_vpc20160428-6.14.1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|