pulumi-alicloud 3.75.0a1741238153__py3-none-any.whl → 3.75.0a1741376340__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 +230 -0
- pulumi_alicloud/_inputs.py +33 -0
- 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/_inputs.py +217 -17
- pulumi_alicloud/alb/load_balancer.py +7 -35
- pulumi_alicloud/alb/load_balancer_security_group_attachment.py +69 -22
- pulumi_alicloud/alb/outputs.py +150 -12
- pulumi_alicloud/alb/server_group.py +197 -42
- 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/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 +9 -9
- 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/managed_kubernetes.py +47 -35
- pulumi_alicloud/cs/node_pool.py +49 -21
- pulumi_alicloud/cs/outputs.py +6 -6
- pulumi_alicloud/ddos/ddos_bgp_instance.py +0 -4
- 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 +19 -0
- pulumi_alicloud/esa/_inputs.py +431 -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 +2 -2
- 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 +2 -2
- 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 +425 -0
- pulumi_alicloud/esa/page.py +2 -2
- pulumi_alicloud/esa/rate_plan_instance.py +2 -2
- 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/scaling_configuration.py +7 -7
- pulumi_alicloud/expressconnect/ec_failover_test_job.py +0 -2
- pulumi_alicloud/expressconnect/vbr_pconn_association.py +2 -2
- 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/get_keys.py +10 -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 +7 -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 +1 -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 +2 -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 +2 -9
- 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.75.0a1741238153.dist-info → pulumi_alicloud-3.75.0a1741376340.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.75.0a1741238153.dist-info → pulumi_alicloud-3.75.0a1741376340.dist-info}/RECORD +164 -127
- {pulumi_alicloud-3.75.0a1741238153.dist-info → pulumi_alicloud-3.75.0a1741376340.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.75.0a1741238153.dist-info → pulumi_alicloud-3.75.0a1741376340.dist-info}/top_level.txt +0 -0
|
@@ -29,7 +29,6 @@ class IpamIpamScopeArgs:
|
|
|
29
29
|
The set of arguments for constructing a IpamIpamScope resource.
|
|
30
30
|
:param pulumi.Input[str] ipam_id: The id of the Ipam instance.
|
|
31
31
|
:param pulumi.Input[str] ipam_scope_description: The description of the IPAM's scope of action.
|
|
32
|
-
|
|
33
32
|
It must be 2 to 256 characters in length and must start with a lowercase letter, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
34
33
|
:param pulumi.Input[str] ipam_scope_name: The name of the resource.
|
|
35
34
|
:param pulumi.Input[str] ipam_scope_type: IPAM scope of action type:
|
|
@@ -69,7 +68,6 @@ class IpamIpamScopeArgs:
|
|
|
69
68
|
def ipam_scope_description(self) -> Optional[pulumi.Input[str]]:
|
|
70
69
|
"""
|
|
71
70
|
The description of the IPAM's scope of action.
|
|
72
|
-
|
|
73
71
|
It must be 2 to 256 characters in length and must start with a lowercase letter, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
74
72
|
"""
|
|
75
73
|
return pulumi.get(self, "ipam_scope_description")
|
|
@@ -148,7 +146,6 @@ class _IpamIpamScopeState:
|
|
|
148
146
|
:param pulumi.Input[str] create_time: The creation time of the resource.
|
|
149
147
|
:param pulumi.Input[str] ipam_id: The id of the Ipam instance.
|
|
150
148
|
:param pulumi.Input[str] ipam_scope_description: The description of the IPAM's scope of action.
|
|
151
|
-
|
|
152
149
|
It must be 2 to 256 characters in length and must start with a lowercase letter, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
153
150
|
:param pulumi.Input[str] ipam_scope_name: The name of the resource.
|
|
154
151
|
:param pulumi.Input[str] ipam_scope_type: IPAM scope of action type:
|
|
@@ -209,7 +206,6 @@ class _IpamIpamScopeState:
|
|
|
209
206
|
def ipam_scope_description(self) -> Optional[pulumi.Input[str]]:
|
|
210
207
|
"""
|
|
211
208
|
The description of the IPAM's scope of action.
|
|
212
|
-
|
|
213
209
|
It must be 2 to 256 characters in length and must start with a lowercase letter, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
214
210
|
"""
|
|
215
211
|
return pulumi.get(self, "ipam_scope_description")
|
|
@@ -312,7 +308,7 @@ class IpamIpamScope(pulumi.CustomResource):
|
|
|
312
308
|
|
|
313
309
|
IP Address Management Scope.
|
|
314
310
|
|
|
315
|
-
For information about Vpc Ipam Ipam Scope and how to use it, see [What is Ipam Scope](https://
|
|
311
|
+
For information about Vpc Ipam Ipam Scope and how to use it, see [What is Ipam Scope](https://next.api.alibabacloud.com/document/VpcIpam/2023-02-28/CreateIpamScope).
|
|
316
312
|
|
|
317
313
|
> **NOTE:** Available since v1.234.0.
|
|
318
314
|
|
|
@@ -350,7 +346,6 @@ class IpamIpamScope(pulumi.CustomResource):
|
|
|
350
346
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
351
347
|
:param pulumi.Input[str] ipam_id: The id of the Ipam instance.
|
|
352
348
|
:param pulumi.Input[str] ipam_scope_description: The description of the IPAM's scope of action.
|
|
353
|
-
|
|
354
349
|
It must be 2 to 256 characters in length and must start with a lowercase letter, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
355
350
|
:param pulumi.Input[str] ipam_scope_name: The name of the resource.
|
|
356
351
|
:param pulumi.Input[str] ipam_scope_type: IPAM scope of action type:
|
|
@@ -372,7 +367,7 @@ class IpamIpamScope(pulumi.CustomResource):
|
|
|
372
367
|
|
|
373
368
|
IP Address Management Scope.
|
|
374
369
|
|
|
375
|
-
For information about Vpc Ipam Ipam Scope and how to use it, see [What is Ipam Scope](https://
|
|
370
|
+
For information about Vpc Ipam Ipam Scope and how to use it, see [What is Ipam Scope](https://next.api.alibabacloud.com/document/VpcIpam/2023-02-28/CreateIpamScope).
|
|
376
371
|
|
|
377
372
|
> **NOTE:** Available since v1.234.0.
|
|
378
373
|
|
|
@@ -476,7 +471,6 @@ class IpamIpamScope(pulumi.CustomResource):
|
|
|
476
471
|
:param pulumi.Input[str] create_time: The creation time of the resource.
|
|
477
472
|
:param pulumi.Input[str] ipam_id: The id of the Ipam instance.
|
|
478
473
|
:param pulumi.Input[str] ipam_scope_description: The description of the IPAM's scope of action.
|
|
479
|
-
|
|
480
474
|
It must be 2 to 256 characters in length and must start with a lowercase letter, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
481
475
|
:param pulumi.Input[str] ipam_scope_name: The name of the resource.
|
|
482
476
|
:param pulumi.Input[str] ipam_scope_type: IPAM scope of action type:
|
|
@@ -525,7 +519,6 @@ class IpamIpamScope(pulumi.CustomResource):
|
|
|
525
519
|
def ipam_scope_description(self) -> pulumi.Output[Optional[str]]:
|
|
526
520
|
"""
|
|
527
521
|
The description of the IPAM's scope of action.
|
|
528
|
-
|
|
529
522
|
It must be 2 to 256 characters in length and must start with a lowercase letter, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
530
523
|
"""
|
|
531
524
|
return pulumi.get(self, "ipam_scope_description")
|
|
@@ -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
|
|
|
@@ -27,7 +27,7 @@ class GetGatewaysResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getGateways.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, business_status=None, enable_ipsec=None, gateways=None, id=None, ids=None, include_reservation_data=None, name_regex=None, names=None, output_file=None, status=None, vpc_id=None):
|
|
30
|
+
def __init__(__self__, business_status=None, enable_ipsec=None, gateways=None, id=None, ids=None, include_reservation_data=None, name_regex=None, names=None, output_file=None, ssl_vpn=None, status=None, vpc_id=None):
|
|
31
31
|
if business_status and not isinstance(business_status, str):
|
|
32
32
|
raise TypeError("Expected argument 'business_status' to be a str")
|
|
33
33
|
pulumi.set(__self__, "business_status", business_status)
|
|
@@ -55,6 +55,9 @@ class GetGatewaysResult:
|
|
|
55
55
|
if output_file and not isinstance(output_file, str):
|
|
56
56
|
raise TypeError("Expected argument 'output_file' to be a str")
|
|
57
57
|
pulumi.set(__self__, "output_file", output_file)
|
|
58
|
+
if ssl_vpn and not isinstance(ssl_vpn, str):
|
|
59
|
+
raise TypeError("Expected argument 'ssl_vpn' to be a str")
|
|
60
|
+
pulumi.set(__self__, "ssl_vpn", ssl_vpn)
|
|
58
61
|
if status and not isinstance(status, str):
|
|
59
62
|
raise TypeError("Expected argument 'status' to be a str")
|
|
60
63
|
pulumi.set(__self__, "status", status)
|
|
@@ -126,6 +129,14 @@ class GetGatewaysResult:
|
|
|
126
129
|
def output_file(self) -> Optional[str]:
|
|
127
130
|
return pulumi.get(self, "output_file")
|
|
128
131
|
|
|
132
|
+
@property
|
|
133
|
+
@pulumi.getter(name="sslVpn")
|
|
134
|
+
def ssl_vpn(self) -> Optional[str]:
|
|
135
|
+
"""
|
|
136
|
+
Whether the ssl function is enabled.
|
|
137
|
+
"""
|
|
138
|
+
return pulumi.get(self, "ssl_vpn")
|
|
139
|
+
|
|
129
140
|
@property
|
|
130
141
|
@pulumi.getter
|
|
131
142
|
def status(self) -> Optional[str]:
|
|
@@ -158,6 +169,7 @@ class AwaitableGetGatewaysResult(GetGatewaysResult):
|
|
|
158
169
|
name_regex=self.name_regex,
|
|
159
170
|
names=self.names,
|
|
160
171
|
output_file=self.output_file,
|
|
172
|
+
ssl_vpn=self.ssl_vpn,
|
|
161
173
|
status=self.status,
|
|
162
174
|
vpc_id=self.vpc_id)
|
|
163
175
|
|
|
@@ -168,6 +180,7 @@ def get_gateways(business_status: Optional[str] = None,
|
|
|
168
180
|
include_reservation_data: Optional[bool] = None,
|
|
169
181
|
name_regex: Optional[str] = None,
|
|
170
182
|
output_file: Optional[str] = None,
|
|
183
|
+
ssl_vpn: Optional[str] = None,
|
|
171
184
|
status: Optional[str] = None,
|
|
172
185
|
vpc_id: Optional[str] = None,
|
|
173
186
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetGatewaysResult:
|
|
@@ -183,6 +196,7 @@ def get_gateways(business_status: Optional[str] = None,
|
|
|
183
196
|
:param bool include_reservation_data: Include ineffective ordering data.
|
|
184
197
|
:param str name_regex: A regex string of VPN name.
|
|
185
198
|
:param str output_file: Save the result to the file.
|
|
199
|
+
:param str ssl_vpn: Indicates whether the SSL-VPN feature is enabled. Valid value is `enable`, `disable`.
|
|
186
200
|
:param str status: Limit search to specific status - valid value is "Init", "Provisioning", "Active", "Updating", "Deleting".
|
|
187
201
|
:param str vpc_id: Use the VPC ID as the search key.
|
|
188
202
|
"""
|
|
@@ -193,6 +207,7 @@ def get_gateways(business_status: Optional[str] = None,
|
|
|
193
207
|
__args__['includeReservationData'] = include_reservation_data
|
|
194
208
|
__args__['nameRegex'] = name_regex
|
|
195
209
|
__args__['outputFile'] = output_file
|
|
210
|
+
__args__['sslVpn'] = ssl_vpn
|
|
196
211
|
__args__['status'] = status
|
|
197
212
|
__args__['vpcId'] = vpc_id
|
|
198
213
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
@@ -208,6 +223,7 @@ def get_gateways(business_status: Optional[str] = None,
|
|
|
208
223
|
name_regex=pulumi.get(__ret__, 'name_regex'),
|
|
209
224
|
names=pulumi.get(__ret__, 'names'),
|
|
210
225
|
output_file=pulumi.get(__ret__, 'output_file'),
|
|
226
|
+
ssl_vpn=pulumi.get(__ret__, 'ssl_vpn'),
|
|
211
227
|
status=pulumi.get(__ret__, 'status'),
|
|
212
228
|
vpc_id=pulumi.get(__ret__, 'vpc_id'))
|
|
213
229
|
def get_gateways_output(business_status: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -216,6 +232,7 @@ def get_gateways_output(business_status: Optional[pulumi.Input[Optional[str]]] =
|
|
|
216
232
|
include_reservation_data: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
217
233
|
name_regex: Optional[pulumi.Input[Optional[str]]] = None,
|
|
218
234
|
output_file: Optional[pulumi.Input[Optional[str]]] = None,
|
|
235
|
+
ssl_vpn: Optional[pulumi.Input[Optional[str]]] = None,
|
|
219
236
|
status: Optional[pulumi.Input[Optional[str]]] = None,
|
|
220
237
|
vpc_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
221
238
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetGatewaysResult]:
|
|
@@ -231,6 +248,7 @@ def get_gateways_output(business_status: Optional[pulumi.Input[Optional[str]]] =
|
|
|
231
248
|
:param bool include_reservation_data: Include ineffective ordering data.
|
|
232
249
|
:param str name_regex: A regex string of VPN name.
|
|
233
250
|
:param str output_file: Save the result to the file.
|
|
251
|
+
:param str ssl_vpn: Indicates whether the SSL-VPN feature is enabled. Valid value is `enable`, `disable`.
|
|
234
252
|
:param str status: Limit search to specific status - valid value is "Init", "Provisioning", "Active", "Updating", "Deleting".
|
|
235
253
|
:param str vpc_id: Use the VPC ID as the search key.
|
|
236
254
|
"""
|
|
@@ -241,6 +259,7 @@ def get_gateways_output(business_status: Optional[pulumi.Input[Optional[str]]] =
|
|
|
241
259
|
__args__['includeReservationData'] = include_reservation_data
|
|
242
260
|
__args__['nameRegex'] = name_regex
|
|
243
261
|
__args__['outputFile'] = output_file
|
|
262
|
+
__args__['sslVpn'] = ssl_vpn
|
|
244
263
|
__args__['status'] = status
|
|
245
264
|
__args__['vpcId'] = vpc_id
|
|
246
265
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
@@ -255,5 +274,6 @@ def get_gateways_output(business_status: Optional[pulumi.Input[Optional[str]]] =
|
|
|
255
274
|
name_regex=pulumi.get(__response__, 'name_regex'),
|
|
256
275
|
names=pulumi.get(__response__, 'names'),
|
|
257
276
|
output_file=pulumi.get(__response__, 'output_file'),
|
|
277
|
+
ssl_vpn=pulumi.get(__response__, 'ssl_vpn'),
|
|
258
278
|
status=pulumi.get(__response__, 'status'),
|
|
259
279
|
vpc_id=pulumi.get(__response__, 'vpc_id')))
|
pulumi_alicloud/vpn/outputs.py
CHANGED
|
@@ -2459,7 +2459,7 @@ class GetGatewayVcoRoutesRouteResult(dict):
|
|
|
2459
2459
|
:param str next_hop: The next hop of the destination route.
|
|
2460
2460
|
:param str route_dest: The destination network segment of the destination route.
|
|
2461
2461
|
:param str source: The source CIDR block of the destination route.
|
|
2462
|
-
:param str status: The status of the vpn route entry.
|
|
2462
|
+
:param str status: The status of the vpn route entry. Valid values: `normal`, `published`.
|
|
2463
2463
|
:param str vpn_connection_id: The id of the vpn connection.
|
|
2464
2464
|
:param int weight: The weight value of the destination route.
|
|
2465
2465
|
"""
|
|
@@ -2525,7 +2525,7 @@ class GetGatewayVcoRoutesRouteResult(dict):
|
|
|
2525
2525
|
@pulumi.getter
|
|
2526
2526
|
def status(self) -> str:
|
|
2527
2527
|
"""
|
|
2528
|
-
The status of the vpn route entry.
|
|
2528
|
+
The status of the vpn route entry. Valid values: `normal`, `published`.
|
|
2529
2529
|
"""
|
|
2530
2530
|
return pulumi.get(self, "status")
|
|
2531
2531
|
|
|
@@ -2579,7 +2579,7 @@ class GetGatewayVpnAttachmentsAttachmentResult(dict):
|
|
|
2579
2579
|
:param str local_subnet: The CIDR block of the virtual private cloud (VPC).
|
|
2580
2580
|
:param str network_type: The network type.
|
|
2581
2581
|
:param str remote_subnet: The CIDR block of the on-premises data center.
|
|
2582
|
-
:param str status: The status of the resource.
|
|
2582
|
+
:param str status: The status of the resource. Valid values: `init`, `active`, `attaching`, `attached`, `detaching`, `financialLocked`, `provisioning`, `updating`, `upgrading`, `deleted`.
|
|
2583
2583
|
:param str vpn_attachment_name: The name of the IPsec-VPN connection.
|
|
2584
2584
|
:param str vpn_connection_id: The first ID of the resource.
|
|
2585
2585
|
"""
|
|
@@ -2708,7 +2708,7 @@ class GetGatewayVpnAttachmentsAttachmentResult(dict):
|
|
|
2708
2708
|
@pulumi.getter
|
|
2709
2709
|
def status(self) -> str:
|
|
2710
2710
|
"""
|
|
2711
|
-
The status of the resource.
|
|
2711
|
+
The status of the resource. Valid values: `init`, `active`, `attaching`, `attached`, `detaching`, `financialLocked`, `provisioning`, `updating`, `upgrading`, `deleted`.
|
|
2712
2712
|
"""
|
|
2713
2713
|
return pulumi.get(self, "status")
|
|
2714
2714
|
|
|
@@ -2739,7 +2739,7 @@ class GetGatewayVpnAttachmentsAttachmentBgpConfigResult(dict):
|
|
|
2739
2739
|
"""
|
|
2740
2740
|
:param str local_asn: The ASN on the Alibaba Cloud side.
|
|
2741
2741
|
:param str local_bgp_ip: The BGP IP address on the Alibaba Cloud side.
|
|
2742
|
-
:param str status: The
|
|
2742
|
+
:param str status: The status of the resource. Valid values: `init`, `active`, `attaching`, `attached`, `detaching`, `financialLocked`, `provisioning`, `updating`, `upgrading`, `deleted`.
|
|
2743
2743
|
:param str tunnel_cidr: The CIDR block of the IPsec tunnel. The CIDR block belongs to 169.254.0.0/16. The mask of the CIDR block is 30 bits in length.
|
|
2744
2744
|
"""
|
|
2745
2745
|
pulumi.set(__self__, "local_asn", local_asn)
|
|
@@ -2767,7 +2767,7 @@ class GetGatewayVpnAttachmentsAttachmentBgpConfigResult(dict):
|
|
|
2767
2767
|
@pulumi.getter
|
|
2768
2768
|
def status(self) -> str:
|
|
2769
2769
|
"""
|
|
2770
|
-
The
|
|
2770
|
+
The status of the resource. Valid values: `init`, `active`, `attaching`, `attached`, `detaching`, `financialLocked`, `provisioning`, `updating`, `upgrading`, `deleted`.
|
|
2771
2771
|
"""
|
|
2772
2772
|
return pulumi.get(self, "status")
|
|
2773
2773
|
|
|
@@ -2794,10 +2794,10 @@ class GetGatewayVpnAttachmentsAttachmentHealthCheckConfigResult(dict):
|
|
|
2794
2794
|
:param str dip: The destination IP address.
|
|
2795
2795
|
:param bool enable: Specifies whether to enable health checks.
|
|
2796
2796
|
:param int interval: The interval between two consecutive health checks. Unit: seconds.
|
|
2797
|
-
:param str policy: Whether to revoke the published route when the health check fails.
|
|
2797
|
+
:param str policy: (Optional) Whether to revoke the published route when the health check fails.
|
|
2798
2798
|
:param int retry: The maximum number of health check retries.
|
|
2799
2799
|
:param str sip: The source IP address.
|
|
2800
|
-
:param str status: The status of the
|
|
2800
|
+
:param str status: The status of the resource. Valid values: `init`, `active`, `attaching`, `attached`, `detaching`, `financialLocked`, `provisioning`, `updating`, `upgrading`, `deleted`.
|
|
2801
2801
|
"""
|
|
2802
2802
|
pulumi.set(__self__, "dip", dip)
|
|
2803
2803
|
pulumi.set(__self__, "enable", enable)
|
|
@@ -2835,7 +2835,7 @@ class GetGatewayVpnAttachmentsAttachmentHealthCheckConfigResult(dict):
|
|
|
2835
2835
|
@pulumi.getter
|
|
2836
2836
|
def policy(self) -> str:
|
|
2837
2837
|
"""
|
|
2838
|
-
Whether to revoke the published route when the health check fails.
|
|
2838
|
+
(Optional) Whether to revoke the published route when the health check fails.
|
|
2839
2839
|
"""
|
|
2840
2840
|
return pulumi.get(self, "policy")
|
|
2841
2841
|
|
|
@@ -2859,7 +2859,7 @@ class GetGatewayVpnAttachmentsAttachmentHealthCheckConfigResult(dict):
|
|
|
2859
2859
|
@pulumi.getter
|
|
2860
2860
|
def status(self) -> str:
|
|
2861
2861
|
"""
|
|
2862
|
-
The status of the
|
|
2862
|
+
The status of the resource. Valid values: `init`, `active`, `attaching`, `attached`, `detaching`, `financialLocked`, `provisioning`, `updating`, `upgrading`, `deleted`.
|
|
2863
2863
|
"""
|
|
2864
2864
|
return pulumi.get(self, "status")
|
|
2865
2865
|
|
|
@@ -3070,6 +3070,7 @@ class GetGatewaysGatewayResult(dict):
|
|
|
3070
3070
|
resource_group_id: str,
|
|
3071
3071
|
specification: str,
|
|
3072
3072
|
ssl_connections: int,
|
|
3073
|
+
ssl_vpn: str,
|
|
3073
3074
|
ssl_vpn_internet_ip: str,
|
|
3074
3075
|
status: str,
|
|
3075
3076
|
tags: Mapping[str, str],
|
|
@@ -3084,7 +3085,7 @@ class GetGatewaysGatewayResult(dict):
|
|
|
3084
3085
|
:param str disaster_recovery_internet_ip: The backup public IP address of the VPN gateway. The second IP address assigned by the system to create an IPsec-VPN connection. This parameter is returned only when the VPN gateway supports the dual-tunnel mode.
|
|
3085
3086
|
:param str disaster_recovery_vswitch_id: - The ID of the backup vSwitch to which the VPN gateway is attached.
|
|
3086
3087
|
:param str enable_ipsec: Indicates whether the IPsec-VPN feature is enabled.
|
|
3087
|
-
:param str enable_ssl: Whether the ssl function is enabled.
|
|
3088
|
+
:param str enable_ssl: Whether the ssl function is enabled. It has been deprecated from provider version 1.243.0, and using `ssl_vpn` instead.
|
|
3088
3089
|
:param str end_time: The expiration time of the VPN gateway.
|
|
3089
3090
|
:param str id: ID of the VPN.
|
|
3090
3091
|
:param str instance_charge_type: The charge type of the VPN gateway.
|
|
@@ -3094,6 +3095,7 @@ class GetGatewaysGatewayResult(dict):
|
|
|
3094
3095
|
:param str resource_group_id: The ID of the resource group.
|
|
3095
3096
|
:param str specification: The Specification of the VPN
|
|
3096
3097
|
:param int ssl_connections: Total count of ssl vpn connections.
|
|
3098
|
+
:param str ssl_vpn: Indicates whether the SSL-VPN feature is enabled. Valid value is `enable`, `disable`.
|
|
3097
3099
|
:param str ssl_vpn_internet_ip: The IP address of the SSL-VPN connection. This parameter is returned only when the VPN gateway is a public VPN gateway and supports only the single-tunnel mode. In addition, the VPN gateway must have the SSL-VPN feature enabled.
|
|
3098
3100
|
:param str status: Limit search to specific status - valid value is "Init", "Provisioning", "Active", "Updating", "Deleting".
|
|
3099
3101
|
:param Mapping[str, str] tags: The Tag of.
|
|
@@ -3118,6 +3120,7 @@ class GetGatewaysGatewayResult(dict):
|
|
|
3118
3120
|
pulumi.set(__self__, "resource_group_id", resource_group_id)
|
|
3119
3121
|
pulumi.set(__self__, "specification", specification)
|
|
3120
3122
|
pulumi.set(__self__, "ssl_connections", ssl_connections)
|
|
3123
|
+
pulumi.set(__self__, "ssl_vpn", ssl_vpn)
|
|
3121
3124
|
pulumi.set(__self__, "ssl_vpn_internet_ip", ssl_vpn_internet_ip)
|
|
3122
3125
|
pulumi.set(__self__, "status", status)
|
|
3123
3126
|
pulumi.set(__self__, "tags", tags)
|
|
@@ -3185,7 +3188,7 @@ class GetGatewaysGatewayResult(dict):
|
|
|
3185
3188
|
@pulumi.getter(name="enableSsl")
|
|
3186
3189
|
def enable_ssl(self) -> str:
|
|
3187
3190
|
"""
|
|
3188
|
-
Whether the ssl function is enabled.
|
|
3191
|
+
Whether the ssl function is enabled. It has been deprecated from provider version 1.243.0, and using `ssl_vpn` instead.
|
|
3189
3192
|
"""
|
|
3190
3193
|
return pulumi.get(self, "enable_ssl")
|
|
3191
3194
|
|
|
@@ -3261,6 +3264,14 @@ class GetGatewaysGatewayResult(dict):
|
|
|
3261
3264
|
"""
|
|
3262
3265
|
return pulumi.get(self, "ssl_connections")
|
|
3263
3266
|
|
|
3267
|
+
@property
|
|
3268
|
+
@pulumi.getter(name="sslVpn")
|
|
3269
|
+
def ssl_vpn(self) -> str:
|
|
3270
|
+
"""
|
|
3271
|
+
Indicates whether the SSL-VPN feature is enabled. Valid value is `enable`, `disable`.
|
|
3272
|
+
"""
|
|
3273
|
+
return pulumi.get(self, "ssl_vpn")
|
|
3274
|
+
|
|
3264
3275
|
@property
|
|
3265
3276
|
@pulumi.getter(name="sslVpnInternetIp")
|
|
3266
3277
|
def ssl_vpn_internet_ip(self) -> str:
|