pulumi-alicloud 3.74.0a1737989015__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 +230 -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/_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.74.0a1737989015.dist-info → pulumi_alicloud-3.75.0.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.74.0a1737989015.dist-info → pulumi_alicloud-3.75.0.dist-info}/RECORD +165 -128
- {pulumi_alicloud-3.74.0a1737989015.dist-info → pulumi_alicloud-3.75.0.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.74.0a1737989015.dist-info → pulumi_alicloud-3.75.0.dist-info}/top_level.txt +0 -0
|
@@ -51,13 +51,9 @@ class LoadBalancerArgs:
|
|
|
51
51
|
- `IPv4`:IPv4 type.
|
|
52
52
|
- `DualStack`: the dual-stack type.
|
|
53
53
|
:param pulumi.Input[str] bandwidth_package_id: The ID of the EIP bandwidth plan which is associated with an ALB instance that uses a public IP address.
|
|
54
|
-
:param pulumi.Input['LoadBalancerDeletionProtectionConfigArgs'] deletion_protection_config:
|
|
54
|
+
:param pulumi.Input['LoadBalancerDeletionProtectionConfigArgs'] deletion_protection_config: The Protection Configuration See `deletion_protection_config` below.
|
|
55
55
|
:param pulumi.Input[bool] deletion_protection_enabled: Specifies whether to enable deletion protection. Default value: `false`. Valid values:
|
|
56
56
|
:param pulumi.Input[bool] dry_run: Whether to PreCheck only this request, value:
|
|
57
|
-
|
|
58
|
-
true: sends a check request and does not create a resource. Check items include whether required parameters are filled in, request format, and business restrictions. If the check fails, the corresponding error is returned. If the check passes, the error code DryRunOperation is returned.
|
|
59
|
-
|
|
60
|
-
false (default): Sends a normal request, returns the HTTP_2xx status code after the check, and directly performs the operation.
|
|
61
57
|
:param pulumi.Input[str] ipv6_address_type: The address type of Ipv6
|
|
62
58
|
:param pulumi.Input[str] load_balancer_name: The name of the resource
|
|
63
59
|
:param pulumi.Input['LoadBalancerModificationProtectionConfigArgs'] modification_protection_config: Modify the Protection Configuration See `modification_protection_config` below.
|
|
@@ -208,7 +204,7 @@ class LoadBalancerArgs:
|
|
|
208
204
|
@pulumi.getter(name="deletionProtectionConfig")
|
|
209
205
|
def deletion_protection_config(self) -> Optional[pulumi.Input['LoadBalancerDeletionProtectionConfigArgs']]:
|
|
210
206
|
"""
|
|
211
|
-
|
|
207
|
+
The Protection Configuration See `deletion_protection_config` below.
|
|
212
208
|
"""
|
|
213
209
|
return pulumi.get(self, "deletion_protection_config")
|
|
214
210
|
|
|
@@ -233,10 +229,6 @@ class LoadBalancerArgs:
|
|
|
233
229
|
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
234
230
|
"""
|
|
235
231
|
Whether to PreCheck only this request, value:
|
|
236
|
-
|
|
237
|
-
true: sends a check request and does not create a resource. Check items include whether required parameters are filled in, request format, and business restrictions. If the check fails, the corresponding error is returned. If the check passes, the error code DryRunOperation is returned.
|
|
238
|
-
|
|
239
|
-
false (default): Sends a normal request, returns the HTTP_2xx status code after the check, and directly performs the operation.
|
|
240
232
|
"""
|
|
241
233
|
return pulumi.get(self, "dry_run")
|
|
242
234
|
|
|
@@ -339,14 +331,10 @@ class _LoadBalancerState:
|
|
|
339
331
|
:param pulumi.Input[str] address_type: The type of IP address that the SLB instance uses to provide services.
|
|
340
332
|
:param pulumi.Input[str] bandwidth_package_id: The ID of the EIP bandwidth plan which is associated with an ALB instance that uses a public IP address.
|
|
341
333
|
:param pulumi.Input[str] create_time: The creation time of the resource
|
|
342
|
-
:param pulumi.Input['LoadBalancerDeletionProtectionConfigArgs'] deletion_protection_config:
|
|
334
|
+
:param pulumi.Input['LoadBalancerDeletionProtectionConfigArgs'] deletion_protection_config: The Protection Configuration See `deletion_protection_config` below.
|
|
343
335
|
:param pulumi.Input[bool] deletion_protection_enabled: Specifies whether to enable deletion protection. Default value: `false`. Valid values:
|
|
344
336
|
:param pulumi.Input[str] dns_name: DNS Domain Name
|
|
345
337
|
:param pulumi.Input[bool] dry_run: Whether to PreCheck only this request, value:
|
|
346
|
-
|
|
347
|
-
true: sends a check request and does not create a resource. Check items include whether required parameters are filled in, request format, and business restrictions. If the check fails, the corresponding error is returned. If the check passes, the error code DryRunOperation is returned.
|
|
348
|
-
|
|
349
|
-
false (default): Sends a normal request, returns the HTTP_2xx status code after the check, and directly performs the operation.
|
|
350
338
|
:param pulumi.Input[str] ipv6_address_type: The address type of Ipv6
|
|
351
339
|
:param pulumi.Input['LoadBalancerLoadBalancerBillingConfigArgs'] load_balancer_billing_config: The configuration of the billing method. See `load_balancer_billing_config` below.
|
|
352
340
|
:param pulumi.Input[str] load_balancer_edition: The edition of the ALB instance.
|
|
@@ -480,7 +468,7 @@ class _LoadBalancerState:
|
|
|
480
468
|
@pulumi.getter(name="deletionProtectionConfig")
|
|
481
469
|
def deletion_protection_config(self) -> Optional[pulumi.Input['LoadBalancerDeletionProtectionConfigArgs']]:
|
|
482
470
|
"""
|
|
483
|
-
|
|
471
|
+
The Protection Configuration See `deletion_protection_config` below.
|
|
484
472
|
"""
|
|
485
473
|
return pulumi.get(self, "deletion_protection_config")
|
|
486
474
|
|
|
@@ -517,10 +505,6 @@ class _LoadBalancerState:
|
|
|
517
505
|
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
518
506
|
"""
|
|
519
507
|
Whether to PreCheck only this request, value:
|
|
520
|
-
|
|
521
|
-
true: sends a check request and does not create a resource. Check items include whether required parameters are filled in, request format, and business restrictions. If the check fails, the corresponding error is returned. If the check passes, the error code DryRunOperation is returned.
|
|
522
|
-
|
|
523
|
-
false (default): Sends a normal request, returns the HTTP_2xx status code after the check, and directly performs the operation.
|
|
524
508
|
"""
|
|
525
509
|
return pulumi.get(self, "dry_run")
|
|
526
510
|
|
|
@@ -710,13 +694,9 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
710
694
|
- `DualStack`: the dual-stack type.
|
|
711
695
|
:param pulumi.Input[str] address_type: The type of IP address that the SLB instance uses to provide services.
|
|
712
696
|
:param pulumi.Input[str] bandwidth_package_id: The ID of the EIP bandwidth plan which is associated with an ALB instance that uses a public IP address.
|
|
713
|
-
:param pulumi.Input[Union['LoadBalancerDeletionProtectionConfigArgs', 'LoadBalancerDeletionProtectionConfigArgsDict']] deletion_protection_config:
|
|
697
|
+
:param pulumi.Input[Union['LoadBalancerDeletionProtectionConfigArgs', 'LoadBalancerDeletionProtectionConfigArgsDict']] deletion_protection_config: The Protection Configuration See `deletion_protection_config` below.
|
|
714
698
|
:param pulumi.Input[bool] deletion_protection_enabled: Specifies whether to enable deletion protection. Default value: `false`. Valid values:
|
|
715
699
|
:param pulumi.Input[bool] dry_run: Whether to PreCheck only this request, value:
|
|
716
|
-
|
|
717
|
-
true: sends a check request and does not create a resource. Check items include whether required parameters are filled in, request format, and business restrictions. If the check fails, the corresponding error is returned. If the check passes, the error code DryRunOperation is returned.
|
|
718
|
-
|
|
719
|
-
false (default): Sends a normal request, returns the HTTP_2xx status code after the check, and directly performs the operation.
|
|
720
700
|
:param pulumi.Input[str] ipv6_address_type: The address type of Ipv6
|
|
721
701
|
:param pulumi.Input[Union['LoadBalancerLoadBalancerBillingConfigArgs', 'LoadBalancerLoadBalancerBillingConfigArgsDict']] load_balancer_billing_config: The configuration of the billing method. See `load_balancer_billing_config` below.
|
|
722
702
|
:param pulumi.Input[str] load_balancer_edition: The edition of the ALB instance.
|
|
@@ -868,14 +848,10 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
868
848
|
:param pulumi.Input[str] address_type: The type of IP address that the SLB instance uses to provide services.
|
|
869
849
|
:param pulumi.Input[str] bandwidth_package_id: The ID of the EIP bandwidth plan which is associated with an ALB instance that uses a public IP address.
|
|
870
850
|
:param pulumi.Input[str] create_time: The creation time of the resource
|
|
871
|
-
:param pulumi.Input[Union['LoadBalancerDeletionProtectionConfigArgs', 'LoadBalancerDeletionProtectionConfigArgsDict']] deletion_protection_config:
|
|
851
|
+
:param pulumi.Input[Union['LoadBalancerDeletionProtectionConfigArgs', 'LoadBalancerDeletionProtectionConfigArgsDict']] deletion_protection_config: The Protection Configuration See `deletion_protection_config` below.
|
|
872
852
|
:param pulumi.Input[bool] deletion_protection_enabled: Specifies whether to enable deletion protection. Default value: `false`. Valid values:
|
|
873
853
|
:param pulumi.Input[str] dns_name: DNS Domain Name
|
|
874
854
|
:param pulumi.Input[bool] dry_run: Whether to PreCheck only this request, value:
|
|
875
|
-
|
|
876
|
-
true: sends a check request and does not create a resource. Check items include whether required parameters are filled in, request format, and business restrictions. If the check fails, the corresponding error is returned. If the check passes, the error code DryRunOperation is returned.
|
|
877
|
-
|
|
878
|
-
false (default): Sends a normal request, returns the HTTP_2xx status code after the check, and directly performs the operation.
|
|
879
855
|
:param pulumi.Input[str] ipv6_address_type: The address type of Ipv6
|
|
880
856
|
:param pulumi.Input[Union['LoadBalancerLoadBalancerBillingConfigArgs', 'LoadBalancerLoadBalancerBillingConfigArgsDict']] load_balancer_billing_config: The configuration of the billing method. See `load_balancer_billing_config` below.
|
|
881
857
|
:param pulumi.Input[str] load_balancer_edition: The edition of the ALB instance.
|
|
@@ -969,7 +945,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
969
945
|
@pulumi.getter(name="deletionProtectionConfig")
|
|
970
946
|
def deletion_protection_config(self) -> pulumi.Output['outputs.LoadBalancerDeletionProtectionConfig']:
|
|
971
947
|
"""
|
|
972
|
-
|
|
948
|
+
The Protection Configuration See `deletion_protection_config` below.
|
|
973
949
|
"""
|
|
974
950
|
return pulumi.get(self, "deletion_protection_config")
|
|
975
951
|
|
|
@@ -994,10 +970,6 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
994
970
|
def dry_run(self) -> pulumi.Output[Optional[bool]]:
|
|
995
971
|
"""
|
|
996
972
|
Whether to PreCheck only this request, value:
|
|
997
|
-
|
|
998
|
-
true: sends a check request and does not create a resource. Check items include whether required parameters are filled in, request format, and business restrictions. If the check fails, the corresponding error is returned. If the check passes, the error code DryRunOperation is returned.
|
|
999
|
-
|
|
1000
|
-
false (default): Sends a normal request, returns the HTTP_2xx status code after the check, and directly performs the operation.
|
|
1001
973
|
"""
|
|
1002
974
|
return pulumi.get(self, "dry_run")
|
|
1003
975
|
|
|
@@ -20,13 +20,17 @@ __all__ = ['LoadBalancerSecurityGroupAttachmentArgs', 'LoadBalancerSecurityGroup
|
|
|
20
20
|
class LoadBalancerSecurityGroupAttachmentArgs:
|
|
21
21
|
def __init__(__self__, *,
|
|
22
22
|
load_balancer_id: pulumi.Input[str],
|
|
23
|
+
dry_run: Optional[pulumi.Input[bool]] = None,
|
|
23
24
|
security_group_id: Optional[pulumi.Input[str]] = None):
|
|
24
25
|
"""
|
|
25
26
|
The set of arguments for constructing a LoadBalancerSecurityGroupAttachment resource.
|
|
26
|
-
:param pulumi.Input[str] load_balancer_id: The ID of the
|
|
27
|
-
:param pulumi.Input[
|
|
27
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the Application Load Balancer.
|
|
28
|
+
:param pulumi.Input[bool] dry_run: Whether to PreCheck only this request. Value:
|
|
29
|
+
:param pulumi.Input[str] security_group_id: The ID of the security group.
|
|
28
30
|
"""
|
|
29
31
|
pulumi.set(__self__, "load_balancer_id", load_balancer_id)
|
|
32
|
+
if dry_run is not None:
|
|
33
|
+
pulumi.set(__self__, "dry_run", dry_run)
|
|
30
34
|
if security_group_id is not None:
|
|
31
35
|
pulumi.set(__self__, "security_group_id", security_group_id)
|
|
32
36
|
|
|
@@ -34,7 +38,7 @@ class LoadBalancerSecurityGroupAttachmentArgs:
|
|
|
34
38
|
@pulumi.getter(name="loadBalancerId")
|
|
35
39
|
def load_balancer_id(self) -> pulumi.Input[str]:
|
|
36
40
|
"""
|
|
37
|
-
The ID of the
|
|
41
|
+
The ID of the Application Load Balancer.
|
|
38
42
|
"""
|
|
39
43
|
return pulumi.get(self, "load_balancer_id")
|
|
40
44
|
|
|
@@ -42,11 +46,23 @@ class LoadBalancerSecurityGroupAttachmentArgs:
|
|
|
42
46
|
def load_balancer_id(self, value: pulumi.Input[str]):
|
|
43
47
|
pulumi.set(self, "load_balancer_id", value)
|
|
44
48
|
|
|
49
|
+
@property
|
|
50
|
+
@pulumi.getter(name="dryRun")
|
|
51
|
+
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
52
|
+
"""
|
|
53
|
+
Whether to PreCheck only this request. Value:
|
|
54
|
+
"""
|
|
55
|
+
return pulumi.get(self, "dry_run")
|
|
56
|
+
|
|
57
|
+
@dry_run.setter
|
|
58
|
+
def dry_run(self, value: Optional[pulumi.Input[bool]]):
|
|
59
|
+
pulumi.set(self, "dry_run", value)
|
|
60
|
+
|
|
45
61
|
@property
|
|
46
62
|
@pulumi.getter(name="securityGroupId")
|
|
47
63
|
def security_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
48
64
|
"""
|
|
49
|
-
|
|
65
|
+
The ID of the security group.
|
|
50
66
|
"""
|
|
51
67
|
return pulumi.get(self, "security_group_id")
|
|
52
68
|
|
|
@@ -58,23 +74,39 @@ class LoadBalancerSecurityGroupAttachmentArgs:
|
|
|
58
74
|
@pulumi.input_type
|
|
59
75
|
class _LoadBalancerSecurityGroupAttachmentState:
|
|
60
76
|
def __init__(__self__, *,
|
|
77
|
+
dry_run: Optional[pulumi.Input[bool]] = None,
|
|
61
78
|
load_balancer_id: Optional[pulumi.Input[str]] = None,
|
|
62
79
|
security_group_id: Optional[pulumi.Input[str]] = None):
|
|
63
80
|
"""
|
|
64
81
|
Input properties used for looking up and filtering LoadBalancerSecurityGroupAttachment resources.
|
|
65
|
-
:param pulumi.Input[
|
|
66
|
-
:param pulumi.Input[str]
|
|
82
|
+
:param pulumi.Input[bool] dry_run: Whether to PreCheck only this request. Value:
|
|
83
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the Application Load Balancer.
|
|
84
|
+
:param pulumi.Input[str] security_group_id: The ID of the security group.
|
|
67
85
|
"""
|
|
86
|
+
if dry_run is not None:
|
|
87
|
+
pulumi.set(__self__, "dry_run", dry_run)
|
|
68
88
|
if load_balancer_id is not None:
|
|
69
89
|
pulumi.set(__self__, "load_balancer_id", load_balancer_id)
|
|
70
90
|
if security_group_id is not None:
|
|
71
91
|
pulumi.set(__self__, "security_group_id", security_group_id)
|
|
72
92
|
|
|
93
|
+
@property
|
|
94
|
+
@pulumi.getter(name="dryRun")
|
|
95
|
+
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
96
|
+
"""
|
|
97
|
+
Whether to PreCheck only this request. Value:
|
|
98
|
+
"""
|
|
99
|
+
return pulumi.get(self, "dry_run")
|
|
100
|
+
|
|
101
|
+
@dry_run.setter
|
|
102
|
+
def dry_run(self, value: Optional[pulumi.Input[bool]]):
|
|
103
|
+
pulumi.set(self, "dry_run", value)
|
|
104
|
+
|
|
73
105
|
@property
|
|
74
106
|
@pulumi.getter(name="loadBalancerId")
|
|
75
107
|
def load_balancer_id(self) -> Optional[pulumi.Input[str]]:
|
|
76
108
|
"""
|
|
77
|
-
The ID of the
|
|
109
|
+
The ID of the Application Load Balancer.
|
|
78
110
|
"""
|
|
79
111
|
return pulumi.get(self, "load_balancer_id")
|
|
80
112
|
|
|
@@ -86,7 +118,7 @@ class _LoadBalancerSecurityGroupAttachmentState:
|
|
|
86
118
|
@pulumi.getter(name="securityGroupId")
|
|
87
119
|
def security_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
88
120
|
"""
|
|
89
|
-
|
|
121
|
+
The ID of the security group.
|
|
90
122
|
"""
|
|
91
123
|
return pulumi.get(self, "security_group_id")
|
|
92
124
|
|
|
@@ -100,15 +132,16 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
100
132
|
def __init__(__self__,
|
|
101
133
|
resource_name: str,
|
|
102
134
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
135
|
+
dry_run: Optional[pulumi.Input[bool]] = None,
|
|
103
136
|
load_balancer_id: Optional[pulumi.Input[str]] = None,
|
|
104
137
|
security_group_id: Optional[pulumi.Input[str]] = None,
|
|
105
138
|
__props__=None):
|
|
106
139
|
"""
|
|
107
|
-
Provides a ALB Load Balancer Security Group Attachment resource.
|
|
140
|
+
Provides a Application Load Balancer (ALB) Load Balancer Security Group Attachment resource.
|
|
108
141
|
|
|
109
|
-
|
|
142
|
+
Attachment between Application Load Balancer and Security Group.
|
|
110
143
|
|
|
111
|
-
For information about ALB Load Balancer Security Group Attachment and how to use it, see [What is Load Balancer Security Group Attachment](https://
|
|
144
|
+
For information about Application Load Balancer (ALB) Load Balancer Security Group Attachment and how to use it, see [What is Load Balancer Security Group Attachment](https://next.api.alibabacloud.com/document/Alb/2020-06-16/LoadBalancerJoinSecurityGroup).
|
|
112
145
|
|
|
113
146
|
> **NOTE:** Available since v1.226.0.
|
|
114
147
|
|
|
@@ -167,7 +200,7 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
167
200
|
|
|
168
201
|
## Import
|
|
169
202
|
|
|
170
|
-
ALB Load Balancer Security Group Attachment can be imported using the id, e.g.
|
|
203
|
+
Application Load Balancer (ALB) Load Balancer Security Group Attachment can be imported using the id, e.g.
|
|
171
204
|
|
|
172
205
|
```sh
|
|
173
206
|
$ pulumi import alicloud:alb/loadBalancerSecurityGroupAttachment:LoadBalancerSecurityGroupAttachment example <load_balancer_id>:<security_group_id>
|
|
@@ -175,8 +208,9 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
175
208
|
|
|
176
209
|
:param str resource_name: The name of the resource.
|
|
177
210
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
178
|
-
:param pulumi.Input[
|
|
179
|
-
:param pulumi.Input[str]
|
|
211
|
+
:param pulumi.Input[bool] dry_run: Whether to PreCheck only this request. Value:
|
|
212
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the Application Load Balancer.
|
|
213
|
+
:param pulumi.Input[str] security_group_id: The ID of the security group.
|
|
180
214
|
"""
|
|
181
215
|
...
|
|
182
216
|
@overload
|
|
@@ -185,11 +219,11 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
185
219
|
args: LoadBalancerSecurityGroupAttachmentArgs,
|
|
186
220
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
187
221
|
"""
|
|
188
|
-
Provides a ALB Load Balancer Security Group Attachment resource.
|
|
222
|
+
Provides a Application Load Balancer (ALB) Load Balancer Security Group Attachment resource.
|
|
189
223
|
|
|
190
|
-
|
|
224
|
+
Attachment between Application Load Balancer and Security Group.
|
|
191
225
|
|
|
192
|
-
For information about ALB Load Balancer Security Group Attachment and how to use it, see [What is Load Balancer Security Group Attachment](https://
|
|
226
|
+
For information about Application Load Balancer (ALB) Load Balancer Security Group Attachment and how to use it, see [What is Load Balancer Security Group Attachment](https://next.api.alibabacloud.com/document/Alb/2020-06-16/LoadBalancerJoinSecurityGroup).
|
|
193
227
|
|
|
194
228
|
> **NOTE:** Available since v1.226.0.
|
|
195
229
|
|
|
@@ -248,7 +282,7 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
248
282
|
|
|
249
283
|
## Import
|
|
250
284
|
|
|
251
|
-
ALB Load Balancer Security Group Attachment can be imported using the id, e.g.
|
|
285
|
+
Application Load Balancer (ALB) Load Balancer Security Group Attachment can be imported using the id, e.g.
|
|
252
286
|
|
|
253
287
|
```sh
|
|
254
288
|
$ pulumi import alicloud:alb/loadBalancerSecurityGroupAttachment:LoadBalancerSecurityGroupAttachment example <load_balancer_id>:<security_group_id>
|
|
@@ -269,6 +303,7 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
269
303
|
def _internal_init(__self__,
|
|
270
304
|
resource_name: str,
|
|
271
305
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
306
|
+
dry_run: Optional[pulumi.Input[bool]] = None,
|
|
272
307
|
load_balancer_id: Optional[pulumi.Input[str]] = None,
|
|
273
308
|
security_group_id: Optional[pulumi.Input[str]] = None,
|
|
274
309
|
__props__=None):
|
|
@@ -280,6 +315,7 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
280
315
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
281
316
|
__props__ = LoadBalancerSecurityGroupAttachmentArgs.__new__(LoadBalancerSecurityGroupAttachmentArgs)
|
|
282
317
|
|
|
318
|
+
__props__.__dict__["dry_run"] = dry_run
|
|
283
319
|
if load_balancer_id is None and not opts.urn:
|
|
284
320
|
raise TypeError("Missing required property 'load_balancer_id'")
|
|
285
321
|
__props__.__dict__["load_balancer_id"] = load_balancer_id
|
|
@@ -294,6 +330,7 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
294
330
|
def get(resource_name: str,
|
|
295
331
|
id: pulumi.Input[str],
|
|
296
332
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
333
|
+
dry_run: Optional[pulumi.Input[bool]] = None,
|
|
297
334
|
load_balancer_id: Optional[pulumi.Input[str]] = None,
|
|
298
335
|
security_group_id: Optional[pulumi.Input[str]] = None) -> 'LoadBalancerSecurityGroupAttachment':
|
|
299
336
|
"""
|
|
@@ -303,22 +340,32 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
303
340
|
:param str resource_name: The unique name of the resulting resource.
|
|
304
341
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
305
342
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
306
|
-
:param pulumi.Input[
|
|
307
|
-
:param pulumi.Input[str]
|
|
343
|
+
:param pulumi.Input[bool] dry_run: Whether to PreCheck only this request. Value:
|
|
344
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the Application Load Balancer.
|
|
345
|
+
:param pulumi.Input[str] security_group_id: The ID of the security group.
|
|
308
346
|
"""
|
|
309
347
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
310
348
|
|
|
311
349
|
__props__ = _LoadBalancerSecurityGroupAttachmentState.__new__(_LoadBalancerSecurityGroupAttachmentState)
|
|
312
350
|
|
|
351
|
+
__props__.__dict__["dry_run"] = dry_run
|
|
313
352
|
__props__.__dict__["load_balancer_id"] = load_balancer_id
|
|
314
353
|
__props__.__dict__["security_group_id"] = security_group_id
|
|
315
354
|
return LoadBalancerSecurityGroupAttachment(resource_name, opts=opts, __props__=__props__)
|
|
316
355
|
|
|
356
|
+
@property
|
|
357
|
+
@pulumi.getter(name="dryRun")
|
|
358
|
+
def dry_run(self) -> pulumi.Output[Optional[bool]]:
|
|
359
|
+
"""
|
|
360
|
+
Whether to PreCheck only this request. Value:
|
|
361
|
+
"""
|
|
362
|
+
return pulumi.get(self, "dry_run")
|
|
363
|
+
|
|
317
364
|
@property
|
|
318
365
|
@pulumi.getter(name="loadBalancerId")
|
|
319
366
|
def load_balancer_id(self) -> pulumi.Output[str]:
|
|
320
367
|
"""
|
|
321
|
-
The ID of the
|
|
368
|
+
The ID of the Application Load Balancer.
|
|
322
369
|
"""
|
|
323
370
|
return pulumi.get(self, "load_balancer_id")
|
|
324
371
|
|
|
@@ -326,7 +373,7 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
326
373
|
@pulumi.getter(name="securityGroupId")
|
|
327
374
|
def security_group_id(self) -> pulumi.Output[str]:
|
|
328
375
|
"""
|
|
329
|
-
|
|
376
|
+
The ID of the security group.
|
|
330
377
|
"""
|
|
331
378
|
return pulumi.get(self, "security_group_id")
|
|
332
379
|
|
pulumi_alicloud/alb/outputs.py
CHANGED
|
@@ -1116,6 +1116,14 @@ class LoadBalancerZoneMapping(dict):
|
|
|
1116
1116
|
suggest = "vswitch_id"
|
|
1117
1117
|
elif key == "zoneId":
|
|
1118
1118
|
suggest = "zone_id"
|
|
1119
|
+
elif key == "allocationId":
|
|
1120
|
+
suggest = "allocation_id"
|
|
1121
|
+
elif key == "eipType":
|
|
1122
|
+
suggest = "eip_type"
|
|
1123
|
+
elif key == "intranetAddress":
|
|
1124
|
+
suggest = "intranet_address"
|
|
1125
|
+
elif key == "ipv6Address":
|
|
1126
|
+
suggest = "ipv6_address"
|
|
1119
1127
|
elif key == "loadBalancerAddresses":
|
|
1120
1128
|
suggest = "load_balancer_addresses"
|
|
1121
1129
|
|
|
@@ -1133,14 +1141,34 @@ class LoadBalancerZoneMapping(dict):
|
|
|
1133
1141
|
def __init__(__self__, *,
|
|
1134
1142
|
vswitch_id: str,
|
|
1135
1143
|
zone_id: str,
|
|
1144
|
+
address: Optional[str] = None,
|
|
1145
|
+
allocation_id: Optional[str] = None,
|
|
1146
|
+
eip_type: Optional[str] = None,
|
|
1147
|
+
intranet_address: Optional[str] = None,
|
|
1148
|
+
ipv6_address: Optional[str] = None,
|
|
1136
1149
|
load_balancer_addresses: Optional[Sequence['outputs.LoadBalancerZoneMappingLoadBalancerAddress']] = None):
|
|
1137
1150
|
"""
|
|
1138
1151
|
:param str vswitch_id: The ID of the vSwitch that corresponds to the zone. Each zone can use only one vSwitch and subnet.
|
|
1139
1152
|
:param str zone_id: The ID of the zone to which the SLB instance belongs.
|
|
1140
|
-
:param
|
|
1153
|
+
:param str address: An IP address of the IPv4 type.
|
|
1154
|
+
:param str allocation_id: The ID of the EIP instance.
|
|
1155
|
+
:param str eip_type: The type of the EIP instance.
|
|
1156
|
+
:param str intranet_address: IPv4 private network address.
|
|
1157
|
+
:param str ipv6_address: An IP address of the IPv6 type.
|
|
1158
|
+
:param Sequence['LoadBalancerZoneMappingLoadBalancerAddressArgs'] load_balancer_addresses: The instance address.
|
|
1141
1159
|
"""
|
|
1142
1160
|
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
1143
1161
|
pulumi.set(__self__, "zone_id", zone_id)
|
|
1162
|
+
if address is not None:
|
|
1163
|
+
pulumi.set(__self__, "address", address)
|
|
1164
|
+
if allocation_id is not None:
|
|
1165
|
+
pulumi.set(__self__, "allocation_id", allocation_id)
|
|
1166
|
+
if eip_type is not None:
|
|
1167
|
+
pulumi.set(__self__, "eip_type", eip_type)
|
|
1168
|
+
if intranet_address is not None:
|
|
1169
|
+
pulumi.set(__self__, "intranet_address", intranet_address)
|
|
1170
|
+
if ipv6_address is not None:
|
|
1171
|
+
pulumi.set(__self__, "ipv6_address", ipv6_address)
|
|
1144
1172
|
if load_balancer_addresses is not None:
|
|
1145
1173
|
pulumi.set(__self__, "load_balancer_addresses", load_balancer_addresses)
|
|
1146
1174
|
|
|
@@ -1160,11 +1188,51 @@ class LoadBalancerZoneMapping(dict):
|
|
|
1160
1188
|
"""
|
|
1161
1189
|
return pulumi.get(self, "zone_id")
|
|
1162
1190
|
|
|
1191
|
+
@property
|
|
1192
|
+
@pulumi.getter
|
|
1193
|
+
def address(self) -> Optional[str]:
|
|
1194
|
+
"""
|
|
1195
|
+
An IP address of the IPv4 type.
|
|
1196
|
+
"""
|
|
1197
|
+
return pulumi.get(self, "address")
|
|
1198
|
+
|
|
1199
|
+
@property
|
|
1200
|
+
@pulumi.getter(name="allocationId")
|
|
1201
|
+
def allocation_id(self) -> Optional[str]:
|
|
1202
|
+
"""
|
|
1203
|
+
The ID of the EIP instance.
|
|
1204
|
+
"""
|
|
1205
|
+
return pulumi.get(self, "allocation_id")
|
|
1206
|
+
|
|
1207
|
+
@property
|
|
1208
|
+
@pulumi.getter(name="eipType")
|
|
1209
|
+
def eip_type(self) -> Optional[str]:
|
|
1210
|
+
"""
|
|
1211
|
+
The type of the EIP instance.
|
|
1212
|
+
"""
|
|
1213
|
+
return pulumi.get(self, "eip_type")
|
|
1214
|
+
|
|
1215
|
+
@property
|
|
1216
|
+
@pulumi.getter(name="intranetAddress")
|
|
1217
|
+
def intranet_address(self) -> Optional[str]:
|
|
1218
|
+
"""
|
|
1219
|
+
IPv4 private network address.
|
|
1220
|
+
"""
|
|
1221
|
+
return pulumi.get(self, "intranet_address")
|
|
1222
|
+
|
|
1223
|
+
@property
|
|
1224
|
+
@pulumi.getter(name="ipv6Address")
|
|
1225
|
+
def ipv6_address(self) -> Optional[str]:
|
|
1226
|
+
"""
|
|
1227
|
+
An IP address of the IPv6 type.
|
|
1228
|
+
"""
|
|
1229
|
+
return pulumi.get(self, "ipv6_address")
|
|
1230
|
+
|
|
1163
1231
|
@property
|
|
1164
1232
|
@pulumi.getter(name="loadBalancerAddresses")
|
|
1165
1233
|
def load_balancer_addresses(self) -> Optional[Sequence['outputs.LoadBalancerZoneMappingLoadBalancerAddress']]:
|
|
1166
1234
|
"""
|
|
1167
|
-
The
|
|
1235
|
+
The instance address.
|
|
1168
1236
|
"""
|
|
1169
1237
|
return pulumi.get(self, "load_balancer_addresses")
|
|
1170
1238
|
|
|
@@ -1178,8 +1246,18 @@ class LoadBalancerZoneMappingLoadBalancerAddress(dict):
|
|
|
1178
1246
|
suggest = "allocation_id"
|
|
1179
1247
|
elif key == "eipType":
|
|
1180
1248
|
suggest = "eip_type"
|
|
1249
|
+
elif key == "intranetAddress":
|
|
1250
|
+
suggest = "intranet_address"
|
|
1251
|
+
elif key == "intranetAddressHcStatus":
|
|
1252
|
+
suggest = "intranet_address_hc_status"
|
|
1253
|
+
elif key == "ipv4LocalAddresses":
|
|
1254
|
+
suggest = "ipv4_local_addresses"
|
|
1181
1255
|
elif key == "ipv6Address":
|
|
1182
1256
|
suggest = "ipv6_address"
|
|
1257
|
+
elif key == "ipv6AddressHcStatus":
|
|
1258
|
+
suggest = "ipv6_address_hc_status"
|
|
1259
|
+
elif key == "ipv6LocalAddresses":
|
|
1260
|
+
suggest = "ipv6_local_addresses"
|
|
1183
1261
|
|
|
1184
1262
|
if suggest:
|
|
1185
1263
|
pulumi.log.warn(f"Key '{key}' not found in LoadBalancerZoneMappingLoadBalancerAddress. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -1196,12 +1274,22 @@ class LoadBalancerZoneMappingLoadBalancerAddress(dict):
|
|
|
1196
1274
|
address: Optional[str] = None,
|
|
1197
1275
|
allocation_id: Optional[str] = None,
|
|
1198
1276
|
eip_type: Optional[str] = None,
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1277
|
+
intranet_address: Optional[str] = None,
|
|
1278
|
+
intranet_address_hc_status: Optional[str] = None,
|
|
1279
|
+
ipv4_local_addresses: Optional[Sequence[str]] = None,
|
|
1280
|
+
ipv6_address: Optional[str] = None,
|
|
1281
|
+
ipv6_address_hc_status: Optional[str] = None,
|
|
1282
|
+
ipv6_local_addresses: Optional[Sequence[str]] = None):
|
|
1283
|
+
"""
|
|
1284
|
+
:param str address: An IP address of the IPv4 type.
|
|
1285
|
+
:param str allocation_id: The elastic IP identifier.
|
|
1286
|
+
:param str eip_type: The type of the public EIP. Value:
|
|
1287
|
+
:param str intranet_address: IPv4 private network address.
|
|
1288
|
+
:param str intranet_address_hc_status: The private network IPv4 address detection status of the application-oriented load balancing instance.
|
|
1289
|
+
:param Sequence[str] ipv4_local_addresses: IPv4 Local address list. The list of addresses used by ALB to interact with the backend service.
|
|
1290
|
+
:param str ipv6_address: An IP address of the IPv6 type.
|
|
1291
|
+
:param str ipv6_address_hc_status: The IPv6 address detection status of the application-based load balancing instance.
|
|
1292
|
+
:param Sequence[str] ipv6_local_addresses: IPv6 Local address list. The list of addresses used by ALB to interact with the backend service.
|
|
1205
1293
|
"""
|
|
1206
1294
|
if address is not None:
|
|
1207
1295
|
pulumi.set(__self__, "address", address)
|
|
@@ -1209,14 +1297,24 @@ class LoadBalancerZoneMappingLoadBalancerAddress(dict):
|
|
|
1209
1297
|
pulumi.set(__self__, "allocation_id", allocation_id)
|
|
1210
1298
|
if eip_type is not None:
|
|
1211
1299
|
pulumi.set(__self__, "eip_type", eip_type)
|
|
1300
|
+
if intranet_address is not None:
|
|
1301
|
+
pulumi.set(__self__, "intranet_address", intranet_address)
|
|
1302
|
+
if intranet_address_hc_status is not None:
|
|
1303
|
+
pulumi.set(__self__, "intranet_address_hc_status", intranet_address_hc_status)
|
|
1304
|
+
if ipv4_local_addresses is not None:
|
|
1305
|
+
pulumi.set(__self__, "ipv4_local_addresses", ipv4_local_addresses)
|
|
1212
1306
|
if ipv6_address is not None:
|
|
1213
1307
|
pulumi.set(__self__, "ipv6_address", ipv6_address)
|
|
1308
|
+
if ipv6_address_hc_status is not None:
|
|
1309
|
+
pulumi.set(__self__, "ipv6_address_hc_status", ipv6_address_hc_status)
|
|
1310
|
+
if ipv6_local_addresses is not None:
|
|
1311
|
+
pulumi.set(__self__, "ipv6_local_addresses", ipv6_local_addresses)
|
|
1214
1312
|
|
|
1215
1313
|
@property
|
|
1216
1314
|
@pulumi.getter
|
|
1217
1315
|
def address(self) -> Optional[str]:
|
|
1218
1316
|
"""
|
|
1219
|
-
|
|
1317
|
+
An IP address of the IPv4 type.
|
|
1220
1318
|
"""
|
|
1221
1319
|
return pulumi.get(self, "address")
|
|
1222
1320
|
|
|
@@ -1224,7 +1322,7 @@ class LoadBalancerZoneMappingLoadBalancerAddress(dict):
|
|
|
1224
1322
|
@pulumi.getter(name="allocationId")
|
|
1225
1323
|
def allocation_id(self) -> Optional[str]:
|
|
1226
1324
|
"""
|
|
1227
|
-
The
|
|
1325
|
+
The elastic IP identifier.
|
|
1228
1326
|
"""
|
|
1229
1327
|
return pulumi.get(self, "allocation_id")
|
|
1230
1328
|
|
|
@@ -1232,18 +1330,58 @@ class LoadBalancerZoneMappingLoadBalancerAddress(dict):
|
|
|
1232
1330
|
@pulumi.getter(name="eipType")
|
|
1233
1331
|
def eip_type(self) -> Optional[str]:
|
|
1234
1332
|
"""
|
|
1235
|
-
The type of the EIP
|
|
1333
|
+
The type of the public EIP. Value:
|
|
1236
1334
|
"""
|
|
1237
1335
|
return pulumi.get(self, "eip_type")
|
|
1238
1336
|
|
|
1337
|
+
@property
|
|
1338
|
+
@pulumi.getter(name="intranetAddress")
|
|
1339
|
+
def intranet_address(self) -> Optional[str]:
|
|
1340
|
+
"""
|
|
1341
|
+
IPv4 private network address.
|
|
1342
|
+
"""
|
|
1343
|
+
return pulumi.get(self, "intranet_address")
|
|
1344
|
+
|
|
1345
|
+
@property
|
|
1346
|
+
@pulumi.getter(name="intranetAddressHcStatus")
|
|
1347
|
+
def intranet_address_hc_status(self) -> Optional[str]:
|
|
1348
|
+
"""
|
|
1349
|
+
The private network IPv4 address detection status of the application-oriented load balancing instance.
|
|
1350
|
+
"""
|
|
1351
|
+
return pulumi.get(self, "intranet_address_hc_status")
|
|
1352
|
+
|
|
1353
|
+
@property
|
|
1354
|
+
@pulumi.getter(name="ipv4LocalAddresses")
|
|
1355
|
+
def ipv4_local_addresses(self) -> Optional[Sequence[str]]:
|
|
1356
|
+
"""
|
|
1357
|
+
IPv4 Local address list. The list of addresses used by ALB to interact with the backend service.
|
|
1358
|
+
"""
|
|
1359
|
+
return pulumi.get(self, "ipv4_local_addresses")
|
|
1360
|
+
|
|
1239
1361
|
@property
|
|
1240
1362
|
@pulumi.getter(name="ipv6Address")
|
|
1241
1363
|
def ipv6_address(self) -> Optional[str]:
|
|
1242
1364
|
"""
|
|
1243
|
-
|
|
1365
|
+
An IP address of the IPv6 type.
|
|
1244
1366
|
"""
|
|
1245
1367
|
return pulumi.get(self, "ipv6_address")
|
|
1246
1368
|
|
|
1369
|
+
@property
|
|
1370
|
+
@pulumi.getter(name="ipv6AddressHcStatus")
|
|
1371
|
+
def ipv6_address_hc_status(self) -> Optional[str]:
|
|
1372
|
+
"""
|
|
1373
|
+
The IPv6 address detection status of the application-based load balancing instance.
|
|
1374
|
+
"""
|
|
1375
|
+
return pulumi.get(self, "ipv6_address_hc_status")
|
|
1376
|
+
|
|
1377
|
+
@property
|
|
1378
|
+
@pulumi.getter(name="ipv6LocalAddresses")
|
|
1379
|
+
def ipv6_local_addresses(self) -> Optional[Sequence[str]]:
|
|
1380
|
+
"""
|
|
1381
|
+
IPv6 Local address list. The list of addresses used by ALB to interact with the backend service.
|
|
1382
|
+
"""
|
|
1383
|
+
return pulumi.get(self, "ipv6_local_addresses")
|
|
1384
|
+
|
|
1247
1385
|
|
|
1248
1386
|
@pulumi.output_type
|
|
1249
1387
|
class RuleRuleAction(dict):
|