alibabacloud-vpc20160428 6.15.0__py3-none-any.whl → 7.0.0__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.
Files changed (29) hide show
  1. alibabacloud_vpc20160428/__init__.py +1 -1
  2. alibabacloud_vpc20160428/client.py +8 -466
  3. alibabacloud_vpc20160428/models/__init__.py +0 -30
  4. alibabacloud_vpc20160428/models/_create_full_nat_entry_request.py +8 -2
  5. alibabacloud_vpc20160428/models/_describe_physical_connection_loaresponse_body.py +8 -0
  6. alibabacloud_vpc20160428/models/_describe_virtual_border_routers_for_physical_connection_response_body.py +8 -0
  7. alibabacloud_vpc20160428/models/_describe_vpn_gateway_available_zones_request.py +8 -0
  8. alibabacloud_vpc20160428/models/_list_full_nat_entries_response_body.py +16 -0
  9. alibabacloud_vpc20160428/models/_modify_full_nat_entry_attribute_request.py +8 -0
  10. {alibabacloud_vpc20160428-6.15.0.dist-info → alibabacloud_vpc20160428-7.0.0.dist-info}/METADATA +1 -1
  11. {alibabacloud_vpc20160428-6.15.0.dist-info → alibabacloud_vpc20160428-7.0.0.dist-info}/RECORD +14 -29
  12. alibabacloud_vpc20160428/models/_convert_bandwidth_package_request.py +0 -80
  13. alibabacloud_vpc20160428/models/_convert_bandwidth_package_response.py +0 -54
  14. alibabacloud_vpc20160428/models/_convert_bandwidth_package_response_body.py +0 -43
  15. alibabacloud_vpc20160428/models/_disable_nat_gateway_ecs_metric_request.py +0 -60
  16. alibabacloud_vpc20160428/models/_disable_nat_gateway_ecs_metric_response.py +0 -54
  17. alibabacloud_vpc20160428/models/_disable_nat_gateway_ecs_metric_response_body.py +0 -34
  18. alibabacloud_vpc20160428/models/_enable_nat_gateway_ecs_metric_request.py +0 -60
  19. alibabacloud_vpc20160428/models/_enable_nat_gateway_ecs_metric_response.py +0 -54
  20. alibabacloud_vpc20160428/models/_enable_nat_gateway_ecs_metric_response_body.py +0 -34
  21. alibabacloud_vpc20160428/models/_get_nat_ip_attribute_request.py +0 -99
  22. alibabacloud_vpc20160428/models/_get_nat_ip_attribute_response.py +0 -54
  23. alibabacloud_vpc20160428/models/_get_nat_ip_attribute_response_body.py +0 -109
  24. alibabacloud_vpc20160428/models/_get_nat_ip_cidr_attribute_request.py +0 -111
  25. alibabacloud_vpc20160428/models/_get_nat_ip_cidr_attribute_response.py +0 -54
  26. alibabacloud_vpc20160428/models/_get_nat_ip_cidr_attribute_response_body.py +0 -91
  27. {alibabacloud_vpc20160428-6.15.0.dist-info → alibabacloud_vpc20160428-7.0.0.dist-info}/LICENSE +0 -0
  28. {alibabacloud_vpc20160428-6.15.0.dist-info → alibabacloud_vpc20160428-7.0.0.dist-info}/WHEEL +0 -0
  29. {alibabacloud_vpc20160428-6.15.0.dist-info → alibabacloud_vpc20160428-7.0.0.dist-info}/top_level.txt +0 -0
@@ -1,91 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # This file is auto-generated, don't edit it. Thanks.
3
- from __future__ import annotations
4
-
5
- from darabonba.model import DaraModel
6
-
7
- class GetNatIpCidrAttributeResponseBody(DaraModel):
8
- def __init__(
9
- self,
10
- nat_gateway_id: str = None,
11
- nat_ip_cidr: str = None,
12
- nat_ip_cidr_description: str = None,
13
- nat_ip_cidr_id: str = None,
14
- nat_ip_cidr_name: str = None,
15
- nat_ip_cidr_status: str = None,
16
- request_id: str = None,
17
- ):
18
- # The ID of the VPC NAT gateway instance to which the queried NAT IP address range belongs.
19
- self.nat_gateway_id = nat_gateway_id
20
- # The queried NAT IP address range.
21
- self.nat_ip_cidr = nat_ip_cidr
22
- # Description of the queried NAT IP address range.
23
- self.nat_ip_cidr_description = nat_ip_cidr_description
24
- # The instance ID of the queried NAT IP address range.
25
- self.nat_ip_cidr_id = nat_ip_cidr_id
26
- # The name of the queried NAT IP address range.
27
- self.nat_ip_cidr_name = nat_ip_cidr_name
28
- # The status of the queried NAT IP address segment. Values:
29
- # - Available: Available status.
30
- # - Deleting: In the process of being deleted.
31
- # - Creating: In the process of being created.
32
- self.nat_ip_cidr_status = nat_ip_cidr_status
33
- # Request ID.
34
- self.request_id = request_id
35
-
36
- def validate(self):
37
- pass
38
-
39
- def to_map(self):
40
- result = dict()
41
- _map = super().to_map()
42
- if _map is not None:
43
- result = _map
44
- if self.nat_gateway_id is not None:
45
- result['NatGatewayId'] = self.nat_gateway_id
46
-
47
- if self.nat_ip_cidr is not None:
48
- result['NatIpCidr'] = self.nat_ip_cidr
49
-
50
- if self.nat_ip_cidr_description is not None:
51
- result['NatIpCidrDescription'] = self.nat_ip_cidr_description
52
-
53
- if self.nat_ip_cidr_id is not None:
54
- result['NatIpCidrId'] = self.nat_ip_cidr_id
55
-
56
- if self.nat_ip_cidr_name is not None:
57
- result['NatIpCidrName'] = self.nat_ip_cidr_name
58
-
59
- if self.nat_ip_cidr_status is not None:
60
- result['NatIpCidrStatus'] = self.nat_ip_cidr_status
61
-
62
- if self.request_id is not None:
63
- result['RequestId'] = self.request_id
64
-
65
- return result
66
-
67
- def from_map(self, m: dict = None):
68
- m = m or dict()
69
- if m.get('NatGatewayId') is not None:
70
- self.nat_gateway_id = m.get('NatGatewayId')
71
-
72
- if m.get('NatIpCidr') is not None:
73
- self.nat_ip_cidr = m.get('NatIpCidr')
74
-
75
- if m.get('NatIpCidrDescription') is not None:
76
- self.nat_ip_cidr_description = m.get('NatIpCidrDescription')
77
-
78
- if m.get('NatIpCidrId') is not None:
79
- self.nat_ip_cidr_id = m.get('NatIpCidrId')
80
-
81
- if m.get('NatIpCidrName') is not None:
82
- self.nat_ip_cidr_name = m.get('NatIpCidrName')
83
-
84
- if m.get('NatIpCidrStatus') is not None:
85
- self.nat_ip_cidr_status = m.get('NatIpCidrStatus')
86
-
87
- if m.get('RequestId') is not None:
88
- self.request_id = m.get('RequestId')
89
-
90
- return self
91
-