pulumi-alicloud 3.74.0a1737782319__py3-none-any.whl → 3.75.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.
Potentially problematic release.
This version of pulumi-alicloud might be problematic. Click here for more details.
- pulumi_alicloud/__init__.py +310 -0
- pulumi_alicloud/_inputs.py +33 -0
- pulumi_alicloud/_utilities.py +8 -4
- pulumi_alicloud/ackone/__init__.py +1 -0
- pulumi_alicloud/ackone/cluster.py +73 -8
- pulumi_alicloud/ackone/membership_attachment.py +223 -0
- pulumi_alicloud/alb/__init__.py +1 -0
- pulumi_alicloud/alb/_inputs.py +1109 -246
- pulumi_alicloud/alb/get_server_groups.py +55 -25
- pulumi_alicloud/alb/listener.py +269 -174
- pulumi_alicloud/alb/load_balancer.py +211 -118
- pulumi_alicloud/alb/load_balancer_security_group_attachment.py +69 -22
- pulumi_alicloud/alb/load_balancer_zone_shifted_attachment.py +303 -0
- pulumi_alicloud/alb/outputs.py +856 -220
- pulumi_alicloud/alb/server_group.py +661 -96
- pulumi_alicloud/aligreen/audit_callback.py +2 -2
- pulumi_alicloud/aligreen/biz_type.py +2 -2
- pulumi_alicloud/aligreen/callback.py +2 -2
- pulumi_alicloud/aligreen/image_lib.py +2 -2
- pulumi_alicloud/aligreen/keyword_lib.py +2 -2
- pulumi_alicloud/aligreen/oss_stock_task.py +77 -14
- pulumi_alicloud/apigateway/instance.py +51 -4
- pulumi_alicloud/cen/_inputs.py +34 -0
- pulumi_alicloud/cen/outputs.py +37 -0
- pulumi_alicloud/cen/transit_router_multicast_domain.py +123 -36
- pulumi_alicloud/cfg/aggregate_compliance_pack.py +6 -4
- pulumi_alicloud/cfg/aggregate_config_rule.py +6 -4
- pulumi_alicloud/cfg/aggregator.py +6 -4
- pulumi_alicloud/cloudcontrol/get_prices.py +2 -2
- pulumi_alicloud/cloudcontrol/get_products.py +2 -2
- pulumi_alicloud/cloudcontrol/get_resource_types.py +2 -2
- pulumi_alicloud/cloudcontrol/resource.py +2 -2
- pulumi_alicloud/cloudfirewall/__init__.py +2 -0
- pulumi_alicloud/cloudfirewall/get_nat_firewalls.py +315 -0
- pulumi_alicloud/cloudfirewall/get_vpc_cen_tr_firewalls.py +569 -0
- pulumi_alicloud/cloudfirewall/outputs.py +362 -0
- pulumi_alicloud/cloudphone/__init__.py +12 -0
- pulumi_alicloud/cloudphone/_inputs.py +175 -0
- pulumi_alicloud/cloudphone/image.py +323 -0
- pulumi_alicloud/cloudphone/key_pair.py +294 -0
- pulumi_alicloud/cloudphone/outputs.py +138 -0
- pulumi_alicloud/cloudphone/policy.py +522 -0
- pulumi_alicloud/cloudphoneinstance/__init__.py +9 -0
- pulumi_alicloud/cloudphoneinstance/cloud_phone_instance.py +209 -0
- pulumi_alicloud/cloudphoneinstance/group.py +961 -0
- pulumi_alicloud/cms/get_site_monitors.py +2 -2
- pulumi_alicloud/config/outputs.py +20 -0
- pulumi_alicloud/cs/_inputs.py +358 -10
- pulumi_alicloud/cs/get_kubernetes_clusters.py +5 -4
- pulumi_alicloud/cs/get_managed_kubernetes_clusters.py +5 -4
- pulumi_alicloud/cs/get_serverless_kubernetes_clusters.py +5 -4
- pulumi_alicloud/cs/kubernetes.py +15 -15
- pulumi_alicloud/cs/managed_kubernetes.py +47 -35
- pulumi_alicloud/cs/node_pool.py +126 -23
- pulumi_alicloud/cs/outputs.py +271 -7
- pulumi_alicloud/ddos/ddos_bgp_instance.py +0 -4
- pulumi_alicloud/dfs/file_system.py +62 -23
- pulumi_alicloud/dfs/mount_point.py +48 -22
- pulumi_alicloud/dfs/vsc_mount_point.py +28 -28
- pulumi_alicloud/dns/ddos_bgp_instance.py +0 -4
- pulumi_alicloud/ebs/replica_group_drill.py +2 -2
- pulumi_alicloud/ebs/replica_pair_drill.py +2 -2
- pulumi_alicloud/ecs/ecs_deployment_set.py +89 -67
- pulumi_alicloud/ecs/eip.py +1 -1
- pulumi_alicloud/ecs/eip_address.py +1 -1
- pulumi_alicloud/ecs/instance.py +43 -30
- pulumi_alicloud/eds/command.py +10 -2
- pulumi_alicloud/emrv2/__init__.py +1 -0
- pulumi_alicloud/emrv2/_inputs.py +47 -7
- pulumi_alicloud/emrv2/get_cluster_instances.py +537 -0
- pulumi_alicloud/emrv2/outputs.py +195 -5
- pulumi_alicloud/ens/instance_security_group_attachment.py +8 -4
- pulumi_alicloud/ens/nat_gateway.py +6 -6
- pulumi_alicloud/ens/vswitch.py +36 -36
- pulumi_alicloud/esa/__init__.py +22 -0
- pulumi_alicloud/esa/_inputs.py +512 -0
- pulumi_alicloud/esa/cache_rule.py +1405 -0
- pulumi_alicloud/esa/certificate.py +724 -0
- pulumi_alicloud/esa/client_ca_certificate.py +388 -0
- pulumi_alicloud/esa/client_certificate.py +452 -0
- pulumi_alicloud/esa/compression_rule.py +582 -0
- pulumi_alicloud/esa/get_sites.py +421 -0
- pulumi_alicloud/esa/http_request_header_modification_rule.py +531 -0
- pulumi_alicloud/esa/http_response_header_modification_rule.py +560 -0
- pulumi_alicloud/esa/https_application_configuration.py +925 -0
- pulumi_alicloud/esa/https_basic_configuration.py +1027 -0
- pulumi_alicloud/esa/image_transform.py +484 -0
- pulumi_alicloud/esa/kv_namespace.py +276 -0
- pulumi_alicloud/esa/list.py +361 -0
- pulumi_alicloud/esa/network_optimization.py +750 -0
- pulumi_alicloud/esa/origin_pool.py +485 -0
- pulumi_alicloud/esa/origin_rule.py +768 -0
- pulumi_alicloud/esa/outputs.py +473 -0
- pulumi_alicloud/esa/page.py +376 -0
- pulumi_alicloud/esa/rate_plan_instance.py +63 -7
- pulumi_alicloud/esa/record.py +2 -2
- pulumi_alicloud/esa/redirect_rule.py +734 -0
- pulumi_alicloud/esa/rewrite_url_rule.py +702 -0
- pulumi_alicloud/esa/site.py +307 -2
- pulumi_alicloud/esa/waiting_room.py +1257 -0
- pulumi_alicloud/esa/waiting_room_event.py +1392 -0
- pulumi_alicloud/esa/waiting_room_rule.py +504 -0
- pulumi_alicloud/ess/get_scaling_groups.py +64 -10
- pulumi_alicloud/ess/get_scaling_rules.py +74 -10
- pulumi_alicloud/ess/outputs.py +357 -17
- pulumi_alicloud/ess/scaling_configuration.py +7 -7
- pulumi_alicloud/eventbridge/get_service.py +2 -6
- pulumi_alicloud/expressconnect/ec_failover_test_job.py +0 -2
- pulumi_alicloud/expressconnect/vbr_pconn_association.py +2 -2
- pulumi_alicloud/fc/_inputs.py +75 -75
- pulumi_alicloud/fc/outputs.py +50 -50
- pulumi_alicloud/fc/v3_function.py +53 -6
- pulumi_alicloud/ga/get_basic_accelerators.py +31 -9
- pulumi_alicloud/ga/outputs.py +10 -4
- pulumi_alicloud/gpdb/db_resource_group.py +6 -6
- pulumi_alicloud/gpdb/external_data_service.py +6 -6
- pulumi_alicloud/gpdb/streaming_data_service.py +2 -2
- pulumi_alicloud/hbr/policy.py +67 -6
- pulumi_alicloud/hbr/vault.py +210 -9
- pulumi_alicloud/kms/__init__.py +1 -0
- pulumi_alicloud/kms/get_instances.py +160 -0
- pulumi_alicloud/kms/get_keys.py +10 -0
- pulumi_alicloud/kms/instance.py +0 -60
- pulumi_alicloud/kms/outputs.py +19 -0
- pulumi_alicloud/maxcompute/__init__.py +5 -0
- pulumi_alicloud/maxcompute/_inputs.py +615 -42
- pulumi_alicloud/maxcompute/outputs.py +486 -28
- pulumi_alicloud/maxcompute/project.py +63 -31
- pulumi_alicloud/maxcompute/quota_plan.py +412 -0
- pulumi_alicloud/maxcompute/quota_schedule.py +260 -0
- pulumi_alicloud/maxcompute/role.py +423 -0
- pulumi_alicloud/maxcompute/role_user_attachment.py +368 -0
- pulumi_alicloud/maxcompute/tunnel_quota_timer.py +287 -0
- pulumi_alicloud/message/__init__.py +3 -0
- pulumi_alicloud/message/_inputs.py +149 -0
- pulumi_alicloud/message/outputs.py +112 -0
- pulumi_alicloud/message/service_endpoint.py +218 -0
- pulumi_alicloud/message/service_endpoint_acl.py +306 -0
- pulumi_alicloud/message/service_queue.py +49 -0
- pulumi_alicloud/message/service_subscription.py +91 -14
- pulumi_alicloud/mse/nacos_config.py +4 -0
- pulumi_alicloud/nlb/_inputs.py +114 -24
- pulumi_alicloud/nlb/listener.py +87 -20
- pulumi_alicloud/nlb/outputs.py +93 -16
- pulumi_alicloud/nlb/server_group.py +55 -20
- pulumi_alicloud/ots/_inputs.py +3 -3
- pulumi_alicloud/ots/outputs.py +2 -2
- pulumi_alicloud/pai/workspace_code_source.py +2 -2
- pulumi_alicloud/pai/workspace_dataset.py +2 -2
- pulumi_alicloud/pai/workspace_datasetversion.py +2 -4
- pulumi_alicloud/pai/workspace_experiment.py +2 -2
- pulumi_alicloud/pai/workspace_run.py +2 -2
- pulumi_alicloud/pai/workspace_workspace.py +2 -2
- pulumi_alicloud/privatelink/get_vpc_endpoints.py +21 -1
- pulumi_alicloud/privatelink/outputs.py +11 -0
- pulumi_alicloud/privatelink/vpc_endpoint.py +1 -1
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/access_key.py +20 -4
- pulumi_alicloud/ram/user.py +10 -2
- pulumi_alicloud/rds/instance.py +75 -0
- pulumi_alicloud/simpleapplicationserver/get_server_plans.py +7 -7
- pulumi_alicloud/simpleapplicationserver/outputs.py +3 -3
- pulumi_alicloud/tag/__init__.py +1 -0
- pulumi_alicloud/tag/associated_rule.py +306 -0
- pulumi_alicloud/tag/policy.py +27 -36
- pulumi_alicloud/vpc/__init__.py +2 -0
- pulumi_alicloud/vpc/common_bandwith_package.py +107 -44
- pulumi_alicloud/vpc/common_bandwith_package_attachment.py +2 -2
- pulumi_alicloud/vpc/flow_log.py +184 -49
- pulumi_alicloud/vpc/forward_entry.py +8 -4
- pulumi_alicloud/vpc/get_enhanced_nat_available_zones.py +38 -2
- pulumi_alicloud/vpc/get_forward_entries.py +2 -2
- pulumi_alicloud/vpc/get_ipsec_servers.py +14 -2
- pulumi_alicloud/vpc/get_nat_gateways.py +48 -2
- pulumi_alicloud/vpc/get_prefix_lists.py +11 -2
- pulumi_alicloud/vpc/get_snat_entries.py +5 -2
- pulumi_alicloud/vpc/get_traffic_mirror_filters.py +14 -2
- pulumi_alicloud/vpc/ipam_ipam.py +2 -9
- pulumi_alicloud/vpc/ipam_ipam_pool.py +49 -30
- pulumi_alicloud/vpc/ipam_ipam_pool_allocation.py +6 -16
- pulumi_alicloud/vpc/ipam_ipam_pool_cidr.py +2 -2
- pulumi_alicloud/vpc/ipam_ipam_resource_discovery.py +489 -0
- pulumi_alicloud/vpc/ipam_ipam_scope.py +49 -9
- pulumi_alicloud/vpc/ipam_service.py +144 -0
- pulumi_alicloud/vpc/ipv4_cidr_block.py +162 -51
- pulumi_alicloud/vpc/nat_gateway.py +8 -0
- pulumi_alicloud/vpc/outputs.py +12 -2
- pulumi_alicloud/vpc/router_interface_connection.py +4 -4
- pulumi_alicloud/vpc/traffic_mirror_filter.py +2 -2
- pulumi_alicloud/vpn/get_gateway_vco_routes.py +11 -2
- pulumi_alicloud/vpn/get_gateway_vpn_attachments.py +11 -2
- pulumi_alicloud/vpn/get_gateways.py +21 -1
- pulumi_alicloud/vpn/outputs.py +23 -12
- {pulumi_alicloud-3.74.0a1737782319.dist-info → pulumi_alicloud-3.75.0.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.74.0a1737782319.dist-info → pulumi_alicloud-3.75.0.dist-info}/RECORD +197 -149
- {pulumi_alicloud-3.74.0a1737782319.dist-info → pulumi_alicloud-3.75.0.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.74.0a1737782319.dist-info → pulumi_alicloud-3.75.0.dist-info}/top_level.txt +0 -0
|
@@ -19,77 +19,136 @@ __all__ = ['Ipv4CidrBlockArgs', 'Ipv4CidrBlock']
|
|
|
19
19
|
@pulumi.input_type
|
|
20
20
|
class Ipv4CidrBlockArgs:
|
|
21
21
|
def __init__(__self__, *,
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
vpc_id: pulumi.Input[str],
|
|
23
|
+
ipv4_ipam_pool_id: Optional[pulumi.Input[str]] = None,
|
|
24
|
+
secondary_cidr_block: Optional[pulumi.Input[str]] = None,
|
|
25
|
+
secondary_cidr_mask: Optional[pulumi.Input[int]] = None):
|
|
24
26
|
"""
|
|
25
27
|
The set of arguments for constructing a Ipv4CidrBlock resource.
|
|
26
|
-
:param pulumi.Input[str] secondary_cidr_block: The IPv4 CIDR block. Take note of the following requirements:
|
|
27
|
-
* You can specify one of the following standard IPv4 CIDR blocks or their subnets as the secondary IPv4 CIDR block: 192.168.0.0/16, 172.16.0.0/12, and 10.0.0.0/8.
|
|
28
|
-
* You can also use a custom CIDR block other than 100.64.0.0/10, 224.0.0.0/4, 127.0.0.0/8, 169.254.0.0/16, or their subnets as the secondary IPv4 CIDR block of the VPC.
|
|
29
|
-
* The CIDR block cannot start with 0. The subnet mask must be 8 to 28 bits in length.
|
|
30
|
-
* The secondary CIDR block cannot overlap with the primary CIDR block or an existing secondary CIDR block.
|
|
31
28
|
:param pulumi.Input[str] vpc_id: The ID of the VPC.
|
|
29
|
+
:param pulumi.Input[str] ipv4_ipam_pool_id: The ID of the IP Address Manager (IPAM) pool that contains IPv4 addresses.
|
|
30
|
+
:param pulumi.Input[str] secondary_cidr_block: Additional network segment information.
|
|
31
|
+
:param pulumi.Input[int] secondary_cidr_mask: Add an additional CIDR block from the IPAM address pool to the VPC by entering a mask.
|
|
32
|
+
|
|
33
|
+
> **NOTE:** Specify the IPAM address pool to add an additional CIDR block to the VPC. Enter at least one of the SecondaryCidrBlock or SecondaryCidrMask parameters.
|
|
32
34
|
"""
|
|
33
|
-
pulumi.set(__self__, "secondary_cidr_block", secondary_cidr_block)
|
|
34
35
|
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
36
|
+
if ipv4_ipam_pool_id is not None:
|
|
37
|
+
pulumi.set(__self__, "ipv4_ipam_pool_id", ipv4_ipam_pool_id)
|
|
38
|
+
if secondary_cidr_block is not None:
|
|
39
|
+
pulumi.set(__self__, "secondary_cidr_block", secondary_cidr_block)
|
|
40
|
+
if secondary_cidr_mask is not None:
|
|
41
|
+
pulumi.set(__self__, "secondary_cidr_mask", secondary_cidr_mask)
|
|
42
|
+
|
|
43
|
+
@property
|
|
44
|
+
@pulumi.getter(name="vpcId")
|
|
45
|
+
def vpc_id(self) -> pulumi.Input[str]:
|
|
46
|
+
"""
|
|
47
|
+
The ID of the VPC.
|
|
48
|
+
"""
|
|
49
|
+
return pulumi.get(self, "vpc_id")
|
|
50
|
+
|
|
51
|
+
@vpc_id.setter
|
|
52
|
+
def vpc_id(self, value: pulumi.Input[str]):
|
|
53
|
+
pulumi.set(self, "vpc_id", value)
|
|
54
|
+
|
|
55
|
+
@property
|
|
56
|
+
@pulumi.getter(name="ipv4IpamPoolId")
|
|
57
|
+
def ipv4_ipam_pool_id(self) -> Optional[pulumi.Input[str]]:
|
|
58
|
+
"""
|
|
59
|
+
The ID of the IP Address Manager (IPAM) pool that contains IPv4 addresses.
|
|
60
|
+
"""
|
|
61
|
+
return pulumi.get(self, "ipv4_ipam_pool_id")
|
|
62
|
+
|
|
63
|
+
@ipv4_ipam_pool_id.setter
|
|
64
|
+
def ipv4_ipam_pool_id(self, value: Optional[pulumi.Input[str]]):
|
|
65
|
+
pulumi.set(self, "ipv4_ipam_pool_id", value)
|
|
35
66
|
|
|
36
67
|
@property
|
|
37
68
|
@pulumi.getter(name="secondaryCidrBlock")
|
|
38
|
-
def secondary_cidr_block(self) -> pulumi.Input[str]:
|
|
69
|
+
def secondary_cidr_block(self) -> Optional[pulumi.Input[str]]:
|
|
39
70
|
"""
|
|
40
|
-
|
|
41
|
-
* You can specify one of the following standard IPv4 CIDR blocks or their subnets as the secondary IPv4 CIDR block: 192.168.0.0/16, 172.16.0.0/12, and 10.0.0.0/8.
|
|
42
|
-
* You can also use a custom CIDR block other than 100.64.0.0/10, 224.0.0.0/4, 127.0.0.0/8, 169.254.0.0/16, or their subnets as the secondary IPv4 CIDR block of the VPC.
|
|
43
|
-
* The CIDR block cannot start with 0. The subnet mask must be 8 to 28 bits in length.
|
|
44
|
-
* The secondary CIDR block cannot overlap with the primary CIDR block or an existing secondary CIDR block.
|
|
71
|
+
Additional network segment information.
|
|
45
72
|
"""
|
|
46
73
|
return pulumi.get(self, "secondary_cidr_block")
|
|
47
74
|
|
|
48
75
|
@secondary_cidr_block.setter
|
|
49
|
-
def secondary_cidr_block(self, value: pulumi.Input[str]):
|
|
76
|
+
def secondary_cidr_block(self, value: Optional[pulumi.Input[str]]):
|
|
50
77
|
pulumi.set(self, "secondary_cidr_block", value)
|
|
51
78
|
|
|
52
79
|
@property
|
|
53
|
-
@pulumi.getter(name="
|
|
54
|
-
def
|
|
80
|
+
@pulumi.getter(name="secondaryCidrMask")
|
|
81
|
+
def secondary_cidr_mask(self) -> Optional[pulumi.Input[int]]:
|
|
55
82
|
"""
|
|
56
|
-
|
|
83
|
+
Add an additional CIDR block from the IPAM address pool to the VPC by entering a mask.
|
|
84
|
+
|
|
85
|
+
> **NOTE:** Specify the IPAM address pool to add an additional CIDR block to the VPC. Enter at least one of the SecondaryCidrBlock or SecondaryCidrMask parameters.
|
|
57
86
|
"""
|
|
58
|
-
return pulumi.get(self, "
|
|
87
|
+
return pulumi.get(self, "secondary_cidr_mask")
|
|
59
88
|
|
|
60
|
-
@
|
|
61
|
-
def
|
|
62
|
-
pulumi.set(self, "
|
|
89
|
+
@secondary_cidr_mask.setter
|
|
90
|
+
def secondary_cidr_mask(self, value: Optional[pulumi.Input[int]]):
|
|
91
|
+
pulumi.set(self, "secondary_cidr_mask", value)
|
|
63
92
|
|
|
64
93
|
|
|
65
94
|
@pulumi.input_type
|
|
66
95
|
class _Ipv4CidrBlockState:
|
|
67
96
|
def __init__(__self__, *,
|
|
97
|
+
ipv4_ipam_pool_id: Optional[pulumi.Input[str]] = None,
|
|
98
|
+
region_id: Optional[pulumi.Input[str]] = None,
|
|
68
99
|
secondary_cidr_block: Optional[pulumi.Input[str]] = None,
|
|
100
|
+
secondary_cidr_mask: Optional[pulumi.Input[int]] = None,
|
|
69
101
|
vpc_id: Optional[pulumi.Input[str]] = None):
|
|
70
102
|
"""
|
|
71
103
|
Input properties used for looking up and filtering Ipv4CidrBlock resources.
|
|
72
|
-
:param pulumi.Input[str]
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
104
|
+
:param pulumi.Input[str] ipv4_ipam_pool_id: The ID of the IP Address Manager (IPAM) pool that contains IPv4 addresses.
|
|
105
|
+
:param pulumi.Input[str] region_id: The ID of the region where the VPC resides.
|
|
106
|
+
:param pulumi.Input[str] secondary_cidr_block: Additional network segment information.
|
|
107
|
+
:param pulumi.Input[int] secondary_cidr_mask: Add an additional CIDR block from the IPAM address pool to the VPC by entering a mask.
|
|
108
|
+
|
|
109
|
+
> **NOTE:** Specify the IPAM address pool to add an additional CIDR block to the VPC. Enter at least one of the SecondaryCidrBlock or SecondaryCidrMask parameters.
|
|
77
110
|
:param pulumi.Input[str] vpc_id: The ID of the VPC.
|
|
78
111
|
"""
|
|
112
|
+
if ipv4_ipam_pool_id is not None:
|
|
113
|
+
pulumi.set(__self__, "ipv4_ipam_pool_id", ipv4_ipam_pool_id)
|
|
114
|
+
if region_id is not None:
|
|
115
|
+
pulumi.set(__self__, "region_id", region_id)
|
|
79
116
|
if secondary_cidr_block is not None:
|
|
80
117
|
pulumi.set(__self__, "secondary_cidr_block", secondary_cidr_block)
|
|
118
|
+
if secondary_cidr_mask is not None:
|
|
119
|
+
pulumi.set(__self__, "secondary_cidr_mask", secondary_cidr_mask)
|
|
81
120
|
if vpc_id is not None:
|
|
82
121
|
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
83
122
|
|
|
123
|
+
@property
|
|
124
|
+
@pulumi.getter(name="ipv4IpamPoolId")
|
|
125
|
+
def ipv4_ipam_pool_id(self) -> Optional[pulumi.Input[str]]:
|
|
126
|
+
"""
|
|
127
|
+
The ID of the IP Address Manager (IPAM) pool that contains IPv4 addresses.
|
|
128
|
+
"""
|
|
129
|
+
return pulumi.get(self, "ipv4_ipam_pool_id")
|
|
130
|
+
|
|
131
|
+
@ipv4_ipam_pool_id.setter
|
|
132
|
+
def ipv4_ipam_pool_id(self, value: Optional[pulumi.Input[str]]):
|
|
133
|
+
pulumi.set(self, "ipv4_ipam_pool_id", value)
|
|
134
|
+
|
|
135
|
+
@property
|
|
136
|
+
@pulumi.getter(name="regionId")
|
|
137
|
+
def region_id(self) -> Optional[pulumi.Input[str]]:
|
|
138
|
+
"""
|
|
139
|
+
The ID of the region where the VPC resides.
|
|
140
|
+
"""
|
|
141
|
+
return pulumi.get(self, "region_id")
|
|
142
|
+
|
|
143
|
+
@region_id.setter
|
|
144
|
+
def region_id(self, value: Optional[pulumi.Input[str]]):
|
|
145
|
+
pulumi.set(self, "region_id", value)
|
|
146
|
+
|
|
84
147
|
@property
|
|
85
148
|
@pulumi.getter(name="secondaryCidrBlock")
|
|
86
149
|
def secondary_cidr_block(self) -> Optional[pulumi.Input[str]]:
|
|
87
150
|
"""
|
|
88
|
-
|
|
89
|
-
* You can specify one of the following standard IPv4 CIDR blocks or their subnets as the secondary IPv4 CIDR block: 192.168.0.0/16, 172.16.0.0/12, and 10.0.0.0/8.
|
|
90
|
-
* You can also use a custom CIDR block other than 100.64.0.0/10, 224.0.0.0/4, 127.0.0.0/8, 169.254.0.0/16, or their subnets as the secondary IPv4 CIDR block of the VPC.
|
|
91
|
-
* The CIDR block cannot start with 0. The subnet mask must be 8 to 28 bits in length.
|
|
92
|
-
* The secondary CIDR block cannot overlap with the primary CIDR block or an existing secondary CIDR block.
|
|
151
|
+
Additional network segment information.
|
|
93
152
|
"""
|
|
94
153
|
return pulumi.get(self, "secondary_cidr_block")
|
|
95
154
|
|
|
@@ -97,6 +156,20 @@ class _Ipv4CidrBlockState:
|
|
|
97
156
|
def secondary_cidr_block(self, value: Optional[pulumi.Input[str]]):
|
|
98
157
|
pulumi.set(self, "secondary_cidr_block", value)
|
|
99
158
|
|
|
159
|
+
@property
|
|
160
|
+
@pulumi.getter(name="secondaryCidrMask")
|
|
161
|
+
def secondary_cidr_mask(self) -> Optional[pulumi.Input[int]]:
|
|
162
|
+
"""
|
|
163
|
+
Add an additional CIDR block from the IPAM address pool to the VPC by entering a mask.
|
|
164
|
+
|
|
165
|
+
> **NOTE:** Specify the IPAM address pool to add an additional CIDR block to the VPC. Enter at least one of the SecondaryCidrBlock or SecondaryCidrMask parameters.
|
|
166
|
+
"""
|
|
167
|
+
return pulumi.get(self, "secondary_cidr_mask")
|
|
168
|
+
|
|
169
|
+
@secondary_cidr_mask.setter
|
|
170
|
+
def secondary_cidr_mask(self, value: Optional[pulumi.Input[int]]):
|
|
171
|
+
pulumi.set(self, "secondary_cidr_mask", value)
|
|
172
|
+
|
|
100
173
|
@property
|
|
101
174
|
@pulumi.getter(name="vpcId")
|
|
102
175
|
def vpc_id(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -115,11 +188,15 @@ class Ipv4CidrBlock(pulumi.CustomResource):
|
|
|
115
188
|
def __init__(__self__,
|
|
116
189
|
resource_name: str,
|
|
117
190
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
191
|
+
ipv4_ipam_pool_id: Optional[pulumi.Input[str]] = None,
|
|
118
192
|
secondary_cidr_block: Optional[pulumi.Input[str]] = None,
|
|
193
|
+
secondary_cidr_mask: Optional[pulumi.Input[int]] = None,
|
|
119
194
|
vpc_id: Optional[pulumi.Input[str]] = None,
|
|
120
195
|
__props__=None):
|
|
121
196
|
"""
|
|
122
|
-
Provides a VPC Ipv4 Cidr Block resource.
|
|
197
|
+
Provides a VPC Ipv4 Cidr Block resource.
|
|
198
|
+
|
|
199
|
+
VPC IPv4 additional network segment.
|
|
123
200
|
|
|
124
201
|
For information about VPC Ipv4 Cidr Block and how to use it, see [What is Ipv4 Cidr Block](https://www.alibabacloud.com/help/en/virtual-private-cloud/latest/associatevpccidrblock).
|
|
125
202
|
|
|
@@ -153,11 +230,11 @@ class Ipv4CidrBlock(pulumi.CustomResource):
|
|
|
153
230
|
|
|
154
231
|
:param str resource_name: The name of the resource.
|
|
155
232
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
156
|
-
:param pulumi.Input[str]
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
233
|
+
:param pulumi.Input[str] ipv4_ipam_pool_id: The ID of the IP Address Manager (IPAM) pool that contains IPv4 addresses.
|
|
234
|
+
:param pulumi.Input[str] secondary_cidr_block: Additional network segment information.
|
|
235
|
+
:param pulumi.Input[int] secondary_cidr_mask: Add an additional CIDR block from the IPAM address pool to the VPC by entering a mask.
|
|
236
|
+
|
|
237
|
+
> **NOTE:** Specify the IPAM address pool to add an additional CIDR block to the VPC. Enter at least one of the SecondaryCidrBlock or SecondaryCidrMask parameters.
|
|
161
238
|
:param pulumi.Input[str] vpc_id: The ID of the VPC.
|
|
162
239
|
"""
|
|
163
240
|
...
|
|
@@ -167,7 +244,9 @@ class Ipv4CidrBlock(pulumi.CustomResource):
|
|
|
167
244
|
args: Ipv4CidrBlockArgs,
|
|
168
245
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
169
246
|
"""
|
|
170
|
-
Provides a VPC Ipv4 Cidr Block resource.
|
|
247
|
+
Provides a VPC Ipv4 Cidr Block resource.
|
|
248
|
+
|
|
249
|
+
VPC IPv4 additional network segment.
|
|
171
250
|
|
|
172
251
|
For information about VPC Ipv4 Cidr Block and how to use it, see [What is Ipv4 Cidr Block](https://www.alibabacloud.com/help/en/virtual-private-cloud/latest/associatevpccidrblock).
|
|
173
252
|
|
|
@@ -214,7 +293,9 @@ class Ipv4CidrBlock(pulumi.CustomResource):
|
|
|
214
293
|
def _internal_init(__self__,
|
|
215
294
|
resource_name: str,
|
|
216
295
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
296
|
+
ipv4_ipam_pool_id: Optional[pulumi.Input[str]] = None,
|
|
217
297
|
secondary_cidr_block: Optional[pulumi.Input[str]] = None,
|
|
298
|
+
secondary_cidr_mask: Optional[pulumi.Input[int]] = None,
|
|
218
299
|
vpc_id: Optional[pulumi.Input[str]] = None,
|
|
219
300
|
__props__=None):
|
|
220
301
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -225,12 +306,13 @@ class Ipv4CidrBlock(pulumi.CustomResource):
|
|
|
225
306
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
226
307
|
__props__ = Ipv4CidrBlockArgs.__new__(Ipv4CidrBlockArgs)
|
|
227
308
|
|
|
228
|
-
|
|
229
|
-
raise TypeError("Missing required property 'secondary_cidr_block'")
|
|
309
|
+
__props__.__dict__["ipv4_ipam_pool_id"] = ipv4_ipam_pool_id
|
|
230
310
|
__props__.__dict__["secondary_cidr_block"] = secondary_cidr_block
|
|
311
|
+
__props__.__dict__["secondary_cidr_mask"] = secondary_cidr_mask
|
|
231
312
|
if vpc_id is None and not opts.urn:
|
|
232
313
|
raise TypeError("Missing required property 'vpc_id'")
|
|
233
314
|
__props__.__dict__["vpc_id"] = vpc_id
|
|
315
|
+
__props__.__dict__["region_id"] = None
|
|
234
316
|
super(Ipv4CidrBlock, __self__).__init__(
|
|
235
317
|
'alicloud:vpc/ipv4CidrBlock:Ipv4CidrBlock',
|
|
236
318
|
resource_name,
|
|
@@ -241,7 +323,10 @@ class Ipv4CidrBlock(pulumi.CustomResource):
|
|
|
241
323
|
def get(resource_name: str,
|
|
242
324
|
id: pulumi.Input[str],
|
|
243
325
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
326
|
+
ipv4_ipam_pool_id: Optional[pulumi.Input[str]] = None,
|
|
327
|
+
region_id: Optional[pulumi.Input[str]] = None,
|
|
244
328
|
secondary_cidr_block: Optional[pulumi.Input[str]] = None,
|
|
329
|
+
secondary_cidr_mask: Optional[pulumi.Input[int]] = None,
|
|
245
330
|
vpc_id: Optional[pulumi.Input[str]] = None) -> 'Ipv4CidrBlock':
|
|
246
331
|
"""
|
|
247
332
|
Get an existing Ipv4CidrBlock resource's state with the given name, id, and optional extra
|
|
@@ -250,33 +335,59 @@ class Ipv4CidrBlock(pulumi.CustomResource):
|
|
|
250
335
|
:param str resource_name: The unique name of the resulting resource.
|
|
251
336
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
252
337
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
253
|
-
:param pulumi.Input[str]
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
338
|
+
:param pulumi.Input[str] ipv4_ipam_pool_id: The ID of the IP Address Manager (IPAM) pool that contains IPv4 addresses.
|
|
339
|
+
:param pulumi.Input[str] region_id: The ID of the region where the VPC resides.
|
|
340
|
+
:param pulumi.Input[str] secondary_cidr_block: Additional network segment information.
|
|
341
|
+
:param pulumi.Input[int] secondary_cidr_mask: Add an additional CIDR block from the IPAM address pool to the VPC by entering a mask.
|
|
342
|
+
|
|
343
|
+
> **NOTE:** Specify the IPAM address pool to add an additional CIDR block to the VPC. Enter at least one of the SecondaryCidrBlock or SecondaryCidrMask parameters.
|
|
258
344
|
:param pulumi.Input[str] vpc_id: The ID of the VPC.
|
|
259
345
|
"""
|
|
260
346
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
261
347
|
|
|
262
348
|
__props__ = _Ipv4CidrBlockState.__new__(_Ipv4CidrBlockState)
|
|
263
349
|
|
|
350
|
+
__props__.__dict__["ipv4_ipam_pool_id"] = ipv4_ipam_pool_id
|
|
351
|
+
__props__.__dict__["region_id"] = region_id
|
|
264
352
|
__props__.__dict__["secondary_cidr_block"] = secondary_cidr_block
|
|
353
|
+
__props__.__dict__["secondary_cidr_mask"] = secondary_cidr_mask
|
|
265
354
|
__props__.__dict__["vpc_id"] = vpc_id
|
|
266
355
|
return Ipv4CidrBlock(resource_name, opts=opts, __props__=__props__)
|
|
267
356
|
|
|
357
|
+
@property
|
|
358
|
+
@pulumi.getter(name="ipv4IpamPoolId")
|
|
359
|
+
def ipv4_ipam_pool_id(self) -> pulumi.Output[Optional[str]]:
|
|
360
|
+
"""
|
|
361
|
+
The ID of the IP Address Manager (IPAM) pool that contains IPv4 addresses.
|
|
362
|
+
"""
|
|
363
|
+
return pulumi.get(self, "ipv4_ipam_pool_id")
|
|
364
|
+
|
|
365
|
+
@property
|
|
366
|
+
@pulumi.getter(name="regionId")
|
|
367
|
+
def region_id(self) -> pulumi.Output[str]:
|
|
368
|
+
"""
|
|
369
|
+
The ID of the region where the VPC resides.
|
|
370
|
+
"""
|
|
371
|
+
return pulumi.get(self, "region_id")
|
|
372
|
+
|
|
268
373
|
@property
|
|
269
374
|
@pulumi.getter(name="secondaryCidrBlock")
|
|
270
375
|
def secondary_cidr_block(self) -> pulumi.Output[str]:
|
|
271
376
|
"""
|
|
272
|
-
|
|
273
|
-
* You can specify one of the following standard IPv4 CIDR blocks or their subnets as the secondary IPv4 CIDR block: 192.168.0.0/16, 172.16.0.0/12, and 10.0.0.0/8.
|
|
274
|
-
* You can also use a custom CIDR block other than 100.64.0.0/10, 224.0.0.0/4, 127.0.0.0/8, 169.254.0.0/16, or their subnets as the secondary IPv4 CIDR block of the VPC.
|
|
275
|
-
* The CIDR block cannot start with 0. The subnet mask must be 8 to 28 bits in length.
|
|
276
|
-
* The secondary CIDR block cannot overlap with the primary CIDR block or an existing secondary CIDR block.
|
|
377
|
+
Additional network segment information.
|
|
277
378
|
"""
|
|
278
379
|
return pulumi.get(self, "secondary_cidr_block")
|
|
279
380
|
|
|
381
|
+
@property
|
|
382
|
+
@pulumi.getter(name="secondaryCidrMask")
|
|
383
|
+
def secondary_cidr_mask(self) -> pulumi.Output[Optional[int]]:
|
|
384
|
+
"""
|
|
385
|
+
Add an additional CIDR block from the IPAM address pool to the VPC by entering a mask.
|
|
386
|
+
|
|
387
|
+
> **NOTE:** Specify the IPAM address pool to add an additional CIDR block to the VPC. Enter at least one of the SecondaryCidrBlock or SecondaryCidrMask parameters.
|
|
388
|
+
"""
|
|
389
|
+
return pulumi.get(self, "secondary_cidr_mask")
|
|
390
|
+
|
|
280
391
|
@property
|
|
281
392
|
@pulumi.getter(name="vpcId")
|
|
282
393
|
def vpc_id(self) -> pulumi.Output[str]:
|
|
@@ -793,6 +793,10 @@ class NatGateway(pulumi.CustomResource):
|
|
|
793
793
|
> **NOTE:** From version 1.7.1, this resource has deprecated bandwidth packages.
|
|
794
794
|
But, in order to manage stock bandwidth packages, version 1.13.0 re-support configuring 'bandwidth_packages'.
|
|
795
795
|
|
|
796
|
+
> **NOTE:** When you create an enhanced NAT gateway for the first time, the system automatically creates the service-linked role AliyunServiceRoleForNatgw. Then, the system attaches the permission policy AliyunServiceRolePolicyForNatgw to the role. This allows the NAT gateway to access other resources on Alibaba Cloud. For more information, see Service-linked roles.
|
|
797
|
+
|
|
798
|
+
> **NOTE:** After you create an enhanced Internet NAT gateway, a route entry is automatically added to the route table of the VPC. The destination CIDR block of the route entry is 0.0.0.0/0 and the next hop is the NAT gateway. This ensures that traffic is routed to the NAT gateway.
|
|
799
|
+
|
|
796
800
|
> **NOTE:** Available since v1.37.0.
|
|
797
801
|
|
|
798
802
|
## Example Usage
|
|
@@ -905,6 +909,10 @@ class NatGateway(pulumi.CustomResource):
|
|
|
905
909
|
> **NOTE:** From version 1.7.1, this resource has deprecated bandwidth packages.
|
|
906
910
|
But, in order to manage stock bandwidth packages, version 1.13.0 re-support configuring 'bandwidth_packages'.
|
|
907
911
|
|
|
912
|
+
> **NOTE:** When you create an enhanced NAT gateway for the first time, the system automatically creates the service-linked role AliyunServiceRoleForNatgw. Then, the system attaches the permission policy AliyunServiceRolePolicyForNatgw to the role. This allows the NAT gateway to access other resources on Alibaba Cloud. For more information, see Service-linked roles.
|
|
913
|
+
|
|
914
|
+
> **NOTE:** After you create an enhanced Internet NAT gateway, a route entry is automatically added to the route table of the VPC. The destination CIDR block of the route entry is 0.0.0.0/0 and the next hop is the NAT gateway. This ensures that traffic is routed to the NAT gateway.
|
|
915
|
+
|
|
908
916
|
> **NOTE:** Available since v1.37.0.
|
|
909
917
|
|
|
910
918
|
## Example Usage
|
pulumi_alicloud/vpc/outputs.py
CHANGED
|
@@ -1956,17 +1956,27 @@ class GetEnhancedNatAvailableZonesZoneResult(dict):
|
|
|
1956
1956
|
def __init__(__self__, *,
|
|
1957
1957
|
local_name: str,
|
|
1958
1958
|
zone_id: str):
|
|
1959
|
+
"""
|
|
1960
|
+
:param str local_name: Name of the available zone.
|
|
1961
|
+
:param str zone_id: The ID of the available zone.
|
|
1962
|
+
"""
|
|
1959
1963
|
pulumi.set(__self__, "local_name", local_name)
|
|
1960
1964
|
pulumi.set(__self__, "zone_id", zone_id)
|
|
1961
1965
|
|
|
1962
1966
|
@property
|
|
1963
1967
|
@pulumi.getter(name="localName")
|
|
1964
1968
|
def local_name(self) -> str:
|
|
1969
|
+
"""
|
|
1970
|
+
Name of the available zone.
|
|
1971
|
+
"""
|
|
1965
1972
|
return pulumi.get(self, "local_name")
|
|
1966
1973
|
|
|
1967
1974
|
@property
|
|
1968
1975
|
@pulumi.getter(name="zoneId")
|
|
1969
1976
|
def zone_id(self) -> str:
|
|
1977
|
+
"""
|
|
1978
|
+
The ID of the available zone.
|
|
1979
|
+
"""
|
|
1970
1980
|
return pulumi.get(self, "zone_id")
|
|
1971
1981
|
|
|
1972
1982
|
|
|
@@ -6629,7 +6639,7 @@ class GetTrafficMirrorFiltersFilterResult(dict):
|
|
|
6629
6639
|
:param str status: The state of the filter. Valid values:`Creating`, `Created`, `Modifying` and `Deleting`. `Creating`: The filter is being created. `Created`: The filter is created. `Modifying`: The filter is being modified. `Deleting`: The filter is being deleted.
|
|
6630
6640
|
:param str traffic_mirror_filter_description: The description of the filter.
|
|
6631
6641
|
:param str traffic_mirror_filter_id: The ID of the filter.
|
|
6632
|
-
:param str traffic_mirror_filter_name: The name of the filter.
|
|
6642
|
+
:param str traffic_mirror_filter_name: The name of the filter. The name must be `2` to `128` characters in length, and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
6633
6643
|
"""
|
|
6634
6644
|
pulumi.set(__self__, "id", id)
|
|
6635
6645
|
pulumi.set(__self__, "status", status)
|
|
@@ -6673,7 +6683,7 @@ class GetTrafficMirrorFiltersFilterResult(dict):
|
|
|
6673
6683
|
@pulumi.getter(name="trafficMirrorFilterName")
|
|
6674
6684
|
def traffic_mirror_filter_name(self) -> str:
|
|
6675
6685
|
"""
|
|
6676
|
-
The name of the filter.
|
|
6686
|
+
The name of the filter. The name must be `2` to `128` characters in length, and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
6677
6687
|
"""
|
|
6678
6688
|
return pulumi.get(self, "traffic_mirror_filter_name")
|
|
6679
6689
|
|
|
@@ -210,11 +210,11 @@ class RouterInterfaceConnection(pulumi.CustomResource):
|
|
|
210
210
|
opposite_router_type: Optional[pulumi.Input[str]] = None,
|
|
211
211
|
__props__=None):
|
|
212
212
|
"""
|
|
213
|
+
> **DEPRECATED:** This resource has been deprecated from version `1.199.0`. Please use new resource alicloud_express_connect_router_interface.
|
|
214
|
+
|
|
213
215
|
Provides a VPC router interface connection resource to connect two router interfaces which are in two different VPCs.
|
|
214
216
|
After that, all of the two router interfaces will be active.
|
|
215
217
|
|
|
216
|
-
> **DEPRECATED:** This resource has been deprecated from version `1.199.0`. Please use new resource alicloud_express_connect_router_interface.
|
|
217
|
-
|
|
218
218
|
> **NOTE:** At present, Router interface does not support changing opposite router interface, the connection delete action is only deactivating it to inactive, not modifying the connection to empty.
|
|
219
219
|
|
|
220
220
|
> **NOTE:** If you want to changing opposite router interface, you can delete router interface and re-build them.
|
|
@@ -294,11 +294,11 @@ class RouterInterfaceConnection(pulumi.CustomResource):
|
|
|
294
294
|
args: RouterInterfaceConnectionArgs,
|
|
295
295
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
296
296
|
"""
|
|
297
|
+
> **DEPRECATED:** This resource has been deprecated from version `1.199.0`. Please use new resource alicloud_express_connect_router_interface.
|
|
298
|
+
|
|
297
299
|
Provides a VPC router interface connection resource to connect two router interfaces which are in two different VPCs.
|
|
298
300
|
After that, all of the two router interfaces will be active.
|
|
299
301
|
|
|
300
|
-
> **DEPRECATED:** This resource has been deprecated from version `1.199.0`. Please use new resource alicloud_express_connect_router_interface.
|
|
301
|
-
|
|
302
302
|
> **NOTE:** At present, Router interface does not support changing opposite router interface, the connection delete action is only deactivating it to inactive, not modifying the connection to empty.
|
|
303
303
|
|
|
304
304
|
> **NOTE:** If you want to changing opposite router interface, you can delete router interface and re-build them.
|
|
@@ -300,7 +300,7 @@ class TrafficMirrorFilter(pulumi.CustomResource):
|
|
|
300
300
|
|
|
301
301
|
For information about VPC Traffic Mirror Filter and how to use it, see [What is Traffic Mirror Filter](https://www.alibabacloud.com/help/doc-detail/207513.htm).
|
|
302
302
|
|
|
303
|
-
> **NOTE:** Available
|
|
303
|
+
> **NOTE:** Available since v1.140.0.
|
|
304
304
|
|
|
305
305
|
## Example Usage
|
|
306
306
|
|
|
@@ -375,7 +375,7 @@ class TrafficMirrorFilter(pulumi.CustomResource):
|
|
|
375
375
|
|
|
376
376
|
For information about VPC Traffic Mirror Filter and how to use it, see [What is Traffic Mirror Filter](https://www.alibabacloud.com/help/doc-detail/207513.htm).
|
|
377
377
|
|
|
378
|
-
> **NOTE:** Available
|
|
378
|
+
> **NOTE:** Available since v1.140.0.
|
|
379
379
|
|
|
380
380
|
## Example Usage
|
|
381
381
|
|
|
@@ -92,16 +92,25 @@ class GetGatewayVcoRoutesResult:
|
|
|
92
92
|
@property
|
|
93
93
|
@pulumi.getter
|
|
94
94
|
def routes(self) -> Sequence['outputs.GetGatewayVcoRoutesRouteResult']:
|
|
95
|
+
"""
|
|
96
|
+
A list of Vpn Gateway Vco Routes. Each element contains the following attributes:
|
|
97
|
+
"""
|
|
95
98
|
return pulumi.get(self, "routes")
|
|
96
99
|
|
|
97
100
|
@property
|
|
98
101
|
@pulumi.getter
|
|
99
102
|
def status(self) -> Optional[str]:
|
|
103
|
+
"""
|
|
104
|
+
The status of the vpn route entry.
|
|
105
|
+
"""
|
|
100
106
|
return pulumi.get(self, "status")
|
|
101
107
|
|
|
102
108
|
@property
|
|
103
109
|
@pulumi.getter(name="vpnConnectionId")
|
|
104
110
|
def vpn_connection_id(self) -> str:
|
|
111
|
+
"""
|
|
112
|
+
The id of the vpn connection.
|
|
113
|
+
"""
|
|
105
114
|
return pulumi.get(self, "vpn_connection_id")
|
|
106
115
|
|
|
107
116
|
|
|
@@ -133,7 +142,7 @@ def get_gateway_vco_routes(ids: Optional[Sequence[str]] = None,
|
|
|
133
142
|
"""
|
|
134
143
|
This data source provides the Vpn Gateway Vco Routes of the current Alibaba Cloud user.
|
|
135
144
|
|
|
136
|
-
> **NOTE:** Available
|
|
145
|
+
> **NOTE:** Available since v1.183.0.
|
|
137
146
|
|
|
138
147
|
## Example Usage
|
|
139
148
|
|
|
@@ -252,7 +261,7 @@ def get_gateway_vco_routes_output(ids: Optional[pulumi.Input[Optional[Sequence[s
|
|
|
252
261
|
"""
|
|
253
262
|
This data source provides the Vpn Gateway Vco Routes of the current Alibaba Cloud user.
|
|
254
263
|
|
|
255
|
-
> **NOTE:** Available
|
|
264
|
+
> **NOTE:** Available since v1.183.0.
|
|
256
265
|
|
|
257
266
|
## Example Usage
|
|
258
267
|
|
|
@@ -62,6 +62,9 @@ class GetGatewayVpnAttachmentsResult:
|
|
|
62
62
|
@property
|
|
63
63
|
@pulumi.getter
|
|
64
64
|
def attachments(self) -> Sequence['outputs.GetGatewayVpnAttachmentsAttachmentResult']:
|
|
65
|
+
"""
|
|
66
|
+
A list of Vpn Gateway Vpn Attachments. Each element contains the following attributes:
|
|
67
|
+
"""
|
|
65
68
|
return pulumi.get(self, "attachments")
|
|
66
69
|
|
|
67
70
|
@property
|
|
@@ -85,6 +88,9 @@ class GetGatewayVpnAttachmentsResult:
|
|
|
85
88
|
@property
|
|
86
89
|
@pulumi.getter
|
|
87
90
|
def names(self) -> Sequence[str]:
|
|
91
|
+
"""
|
|
92
|
+
A list of Vpn Attachment names.
|
|
93
|
+
"""
|
|
88
94
|
return pulumi.get(self, "names")
|
|
89
95
|
|
|
90
96
|
@property
|
|
@@ -105,6 +111,9 @@ class GetGatewayVpnAttachmentsResult:
|
|
|
105
111
|
@property
|
|
106
112
|
@pulumi.getter
|
|
107
113
|
def status(self) -> Optional[str]:
|
|
114
|
+
"""
|
|
115
|
+
The status of the resource.
|
|
116
|
+
"""
|
|
108
117
|
return pulumi.get(self, "status")
|
|
109
118
|
|
|
110
119
|
@property
|
|
@@ -143,7 +152,7 @@ def get_gateway_vpn_attachments(ids: Optional[Sequence[str]] = None,
|
|
|
143
152
|
"""
|
|
144
153
|
This data source provides the Vpn Gateway Vpn Attachments of the current Alibaba Cloud user.
|
|
145
154
|
|
|
146
|
-
> **NOTE:** Available
|
|
155
|
+
> **NOTE:** Available since v1.181.0+.
|
|
147
156
|
|
|
148
157
|
## Example Usage
|
|
149
158
|
|
|
@@ -201,7 +210,7 @@ def get_gateway_vpn_attachments_output(ids: Optional[pulumi.Input[Optional[Seque
|
|
|
201
210
|
"""
|
|
202
211
|
This data source provides the Vpn Gateway Vpn Attachments of the current Alibaba Cloud user.
|
|
203
212
|
|
|
204
|
-
> **NOTE:** Available
|
|
213
|
+
> **NOTE:** Available since v1.181.0+.
|
|
205
214
|
|
|
206
215
|
## Example Usage
|
|
207
216
|
|