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
|
@@ -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:
|