pulumi-alicloud 3.75.0a1741324537__py3-none-any.whl → 3.76.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 +501 -4
- pulumi_alicloud/_inputs.py +53 -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/actiontrail/global_events_storage_region.py +2 -2
- pulumi_alicloud/adb/db_cluster_lake_version.py +458 -49
- pulumi_alicloud/alb/_inputs.py +217 -17
- pulumi_alicloud/alb/load_balancer.py +7 -35
- pulumi_alicloud/alb/load_balancer_access_log_config_attachment.py +2 -2
- pulumi_alicloud/alb/load_balancer_security_group_attachment.py +69 -22
- pulumi_alicloud/alb/outputs.py +150 -12
- pulumi_alicloud/alb/server_group.py +199 -44
- 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/alikafka/sasl_acl.py +7 -7
- pulumi_alicloud/apigateway/_inputs.py +134 -0
- pulumi_alicloud/apigateway/group.py +117 -5
- pulumi_alicloud/apigateway/instance.py +199 -11
- pulumi_alicloud/apigateway/outputs.py +107 -0
- pulumi_alicloud/arms/alert_contact.py +2 -2
- pulumi_alicloud/arms/alert_contact_group.py +2 -2
- pulumi_alicloud/arms/get_prometheus.py +2 -6
- pulumi_alicloud/arms/grafana_workspace.py +511 -69
- pulumi_alicloud/arms/outputs.py +18 -18
- pulumi_alicloud/arms/prometheus_alert_rule.py +2 -2
- pulumi_alicloud/arms/prometheus_monitoring.py +2 -2
- pulumi_alicloud/cdn/domain_new.py +2 -2
- pulumi_alicloud/cen/_inputs.py +6 -3
- pulumi_alicloud/cen/get_transit_router_vpn_attachments.py +131 -19
- pulumi_alicloud/cen/instance.py +101 -59
- pulumi_alicloud/cen/inter_region_traffic_qos_policy.py +126 -81
- pulumi_alicloud/cen/inter_region_traffic_qos_queue.py +93 -47
- pulumi_alicloud/cen/outputs.py +69 -26
- pulumi_alicloud/cen/transit_route_table_aggregation.py +171 -55
- pulumi_alicloud/cen/transit_router.py +127 -53
- pulumi_alicloud/cen/transit_router_cidr.py +53 -35
- pulumi_alicloud/cen/transit_router_ecr_attachment.py +2 -2
- pulumi_alicloud/cen/transit_router_peer_attachment.py +360 -143
- pulumi_alicloud/cen/transit_router_route_table_association.py +33 -43
- pulumi_alicloud/cen/transit_router_vpn_attachment.py +438 -109
- 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/clickhouse/db_cluster.py +179 -6
- pulumi_alicloud/clickhouseenterprisedbcluster/__init__.py +14 -0
- pulumi_alicloud/clickhouseenterprisedbcluster/_inputs.py +167 -0
- pulumi_alicloud/clickhouseenterprisedbcluster/account.py +554 -0
- pulumi_alicloud/clickhouseenterprisedbcluster/backup_policy.py +407 -0
- pulumi_alicloud/clickhouseenterprisedbcluster/click_house_enterprise_db_cluster.py +641 -0
- pulumi_alicloud/clickhouseenterprisedbcluster/outputs.py +147 -0
- pulumi_alicloud/clickhouseenterprisedbcluster/public_endpoint.py +364 -0
- pulumi_alicloud/clickhouseenterprisedbcluster/security_ip.py +357 -0
- 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/cloudsso/scim_server_credential.py +178 -11
- pulumi_alicloud/cms/get_site_monitors.py +2 -2
- pulumi_alicloud/config/outputs.py +32 -0
- pulumi_alicloud/cs/__init__.py +1 -0
- pulumi_alicloud/cs/_inputs.py +9 -9
- pulumi_alicloud/cs/get_kubernetes_clusters.py +5 -4
- pulumi_alicloud/cs/get_kubernetes_node_pools.py +147 -0
- 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 +174 -59
- pulumi_alicloud/cs/node_pool.py +91 -63
- pulumi_alicloud/cs/outputs.py +1991 -213
- pulumi_alicloud/databasefilesystem/service_linked_role.py +2 -2
- pulumi_alicloud/dataworks/data_source.py +2 -2
- pulumi_alicloud/dataworks/data_source_shared_rule.py +2 -2
- pulumi_alicloud/dataworks/di_alarm_rule.py +2 -2
- pulumi_alicloud/dataworks/di_job.py +2 -2
- pulumi_alicloud/dataworks/dw_resource_group.py +2 -2
- pulumi_alicloud/dataworks/network.py +2 -2
- pulumi_alicloud/dataworks/project.py +2 -2
- pulumi_alicloud/dataworks/project_member.py +2 -2
- pulumi_alicloud/dbs/backup_plan.py +2 -2
- pulumi_alicloud/ddos/bgp_policy.py +2 -2
- 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/eais/__init__.py +2 -0
- pulumi_alicloud/eais/_inputs.py +75 -0
- pulumi_alicloud/eais/client_instance_attachment.py +408 -0
- pulumi_alicloud/eais/instance.py +365 -118
- pulumi_alicloud/eais/outputs.py +32 -0
- pulumi_alicloud/ebs/disk_replica_group.py +512 -30
- pulumi_alicloud/ebs/disk_replica_pair.py +443 -113
- pulumi_alicloud/ebs/enterprise_snapshot_policy.py +2 -2
- pulumi_alicloud/ebs/enterprise_snapshot_policy_attachment.py +2 -2
- pulumi_alicloud/ebs/replica_group_drill.py +2 -2
- pulumi_alicloud/ebs/replica_pair_drill.py +2 -2
- pulumi_alicloud/ecp/instance.py +2 -2
- pulumi_alicloud/ecp/key_pair.py +4 -4
- pulumi_alicloud/ecs/_inputs.py +33 -0
- pulumi_alicloud/ecs/disk.py +1 -1
- pulumi_alicloud/ecs/ecs_deployment_set.py +89 -67
- pulumi_alicloud/ecs/ecs_disk.py +1 -1
- pulumi_alicloud/ecs/ecs_launch_template.py +23 -23
- pulumi_alicloud/ecs/eip.py +1 -1
- pulumi_alicloud/ecs/eip_address.py +1 -1
- pulumi_alicloud/ecs/instance.py +44 -31
- pulumi_alicloud/ecs/outputs.py +26 -2
- pulumi_alicloud/eds/command.py +10 -2
- pulumi_alicloud/eflo/__init__.py +5 -0
- pulumi_alicloud/eflo/_inputs.py +1717 -0
- pulumi_alicloud/eflo/cluster.py +935 -0
- pulumi_alicloud/eflo/invocation.py +1114 -0
- pulumi_alicloud/eflo/node.py +1013 -0
- pulumi_alicloud/eflo/node_group.py +1101 -0
- pulumi_alicloud/eflo/outputs.py +1366 -0
- 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/eip_instance_attachment.py +2 -2
- pulumi_alicloud/ens/image.py +81 -34
- 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 +23 -0
- pulumi_alicloud/esa/_inputs.py +1068 -15
- pulumi_alicloud/esa/cache_reserve_instance.py +522 -0
- pulumi_alicloud/esa/cache_rule.py +1419 -0
- pulumi_alicloud/esa/certificate.py +731 -0
- pulumi_alicloud/esa/client_ca_certificate.py +388 -0
- pulumi_alicloud/esa/client_certificate.py +452 -0
- pulumi_alicloud/esa/compression_rule.py +596 -0
- pulumi_alicloud/esa/edge_container_app.py +972 -0
- pulumi_alicloud/esa/edge_container_app_record.py +376 -0
- pulumi_alicloud/esa/get_sites.py +421 -0
- pulumi_alicloud/esa/http_request_header_modification_rule.py +58 -44
- pulumi_alicloud/esa/http_response_header_modification_rule.py +539 -0
- pulumi_alicloud/esa/https_application_configuration.py +939 -0
- pulumi_alicloud/esa/https_basic_configuration.py +1041 -0
- pulumi_alicloud/esa/image_transform.py +498 -0
- pulumi_alicloud/esa/kv_namespace.py +276 -0
- pulumi_alicloud/esa/list.py +30 -30
- pulumi_alicloud/esa/network_optimization.py +680 -0
- pulumi_alicloud/esa/origin_pool.py +485 -0
- pulumi_alicloud/esa/origin_rule.py +796 -0
- pulumi_alicloud/esa/outputs.py +959 -10
- pulumi_alicloud/esa/page.py +30 -51
- pulumi_alicloud/esa/rate_plan_instance.py +88 -161
- pulumi_alicloud/esa/record.py +2 -2
- pulumi_alicloud/esa/redirect_rule.py +748 -0
- pulumi_alicloud/esa/rewrite_url_rule.py +688 -0
- pulumi_alicloud/esa/site.py +276 -27
- pulumi_alicloud/esa/site_delivery_task.py +841 -0
- pulumi_alicloud/esa/waiting_room.py +1207 -0
- pulumi_alicloud/esa/waiting_room_event.py +1378 -0
- pulumi_alicloud/esa/waiting_room_rule.py +497 -0
- pulumi_alicloud/ess/_inputs.py +155 -0
- pulumi_alicloud/ess/outputs.py +128 -0
- pulumi_alicloud/ess/scaling_configuration.py +7 -7
- pulumi_alicloud/ess/scaling_group.py +237 -2
- pulumi_alicloud/ess/scaling_rule.py +143 -2
- pulumi_alicloud/expressconnect/ec_failover_test_job.py +0 -2
- pulumi_alicloud/expressconnect/router_grant_association.py +2 -2
- pulumi_alicloud/expressconnect/vbr_pconn_association.py +2 -2
- pulumi_alicloud/expressconnect/virtual_border_router.py +4 -4
- 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/hadoop_data_source.py +2 -2
- pulumi_alicloud/gpdb/jdbc_data_source.py +2 -2
- pulumi_alicloud/gpdb/remote_adb_data_source.py +6 -6
- pulumi_alicloud/gpdb/streaming_data_service.py +2 -2
- pulumi_alicloud/gpdb/streaming_data_source.py +2 -2
- pulumi_alicloud/gpdb/streaming_job.py +2 -2
- pulumi_alicloud/hbr/policy.py +67 -6
- pulumi_alicloud/hbr/vault.py +210 -9
- pulumi_alicloud/ims/oidc_provider.py +24 -13
- pulumi_alicloud/kms/get_keys.py +10 -0
- pulumi_alicloud/kvstore/account.py +9 -9
- pulumi_alicloud/kvstore/connection.py +2 -2
- pulumi_alicloud/kvstore/get_instance_classes.py +2 -2
- pulumi_alicloud/kvstore/get_instance_engines.py +2 -2
- pulumi_alicloud/kvstore/instance.py +7 -7
- pulumi_alicloud/kvstore/outputs.py +2 -2
- pulumi_alicloud/live/caster.py +2 -2
- pulumi_alicloud/maxcompute/__init__.py +1 -0
- pulumi_alicloud/maxcompute/_inputs.py +232 -3
- pulumi_alicloud/maxcompute/outputs.py +183 -2
- pulumi_alicloud/maxcompute/project.py +2 -2
- pulumi_alicloud/maxcompute/quota.py +438 -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/nas/mount_target.py +149 -54
- pulumi_alicloud/nlb/__init__.py +1 -0
- pulumi_alicloud/nlb/_inputs.py +157 -30
- pulumi_alicloud/nlb/listener.py +87 -20
- pulumi_alicloud/nlb/load_balancer.py +212 -24
- pulumi_alicloud/nlb/load_balancer_zone_shifted_attachment.py +397 -0
- pulumi_alicloud/nlb/outputs.py +123 -20
- pulumi_alicloud/nlb/server_group.py +55 -20
- pulumi_alicloud/nlb/server_group_server_attachment.py +118 -65
- pulumi_alicloud/oss/__init__.py +1 -0
- pulumi_alicloud/oss/_inputs.py +20 -0
- pulumi_alicloud/oss/access_point.py +2 -2
- pulumi_alicloud/oss/bucket_cname.py +2 -2
- pulumi_alicloud/oss/bucket_cors.py +2 -2
- pulumi_alicloud/oss/bucket_style.py +402 -0
- pulumi_alicloud/oss/bucket_website.py +2 -2
- pulumi_alicloud/oss/outputs.py +14 -0
- pulumi_alicloud/ots/_inputs.py +3 -3
- pulumi_alicloud/ots/outputs.py +2 -2
- pulumi_alicloud/pai/service.py +59 -67
- 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/polardb/cluster.py +75 -28
- 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/privatelink/vpc_endpoint_zone.py +1 -1
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/__init__.py +3 -0
- pulumi_alicloud/ram/_inputs.py +9 -9
- pulumi_alicloud/ram/access_key.py +97 -35
- pulumi_alicloud/ram/account_alias.py +18 -45
- pulumi_alicloud/ram/get_system_policys.py +189 -0
- pulumi_alicloud/ram/group.py +156 -35
- pulumi_alicloud/ram/group_policy_attachment.py +51 -29
- pulumi_alicloud/ram/login_profile.py +92 -38
- pulumi_alicloud/ram/outputs.py +91 -6
- pulumi_alicloud/ram/password_policy.py +779 -0
- pulumi_alicloud/ram/policy.py +199 -88
- pulumi_alicloud/ram/role_policy_attachment.py +51 -29
- pulumi_alicloud/ram/saml_provider.py +44 -37
- pulumi_alicloud/ram/user.py +10 -2
- pulumi_alicloud/ram/user_group_attachment.py +273 -0
- pulumi_alicloud/ram/user_policy_attachment.py +49 -27
- pulumi_alicloud/rds/__init__.py +1 -0
- pulumi_alicloud/rds/custom_disk.py +1053 -0
- pulumi_alicloud/rds/instance.py +117 -14
- pulumi_alicloud/redis/tair_instance.py +14 -14
- pulumi_alicloud/resourcemanager/__init__.py +1 -0
- pulumi_alicloud/resourcemanager/_inputs.py +53 -0
- pulumi_alicloud/resourcemanager/auto_grouping_rule.py +796 -0
- pulumi_alicloud/resourcemanager/outputs.py +50 -0
- pulumi_alicloud/resourcemanager/shared_resource.py +7 -0
- pulumi_alicloud/rocketmq/__init__.py +1 -1
- pulumi_alicloud/rocketmq/_inputs.py +146 -4
- pulumi_alicloud/rocketmq/account.py +452 -0
- pulumi_alicloud/rocketmq/acl.py +473 -47
- pulumi_alicloud/rocketmq/client_user.py +8 -2
- pulumi_alicloud/rocketmq/consumer_group.py +121 -24
- pulumi_alicloud/rocketmq/dnat_entry.py +8 -2
- pulumi_alicloud/rocketmq/outputs.py +113 -4
- pulumi_alicloud/rocketmq/qos.py +8 -2
- pulumi_alicloud/rocketmq/qos_car.py +10 -4
- pulumi_alicloud/rocketmq/qos_policy.py +6 -0
- pulumi_alicloud/rocketmq/rocket_mq_instance.py +136 -7
- pulumi_alicloud/rocketmq/rocket_mq_topic.py +121 -24
- pulumi_alicloud/rocketmq/snat_entry.py +8 -2
- pulumi_alicloud/sag/__init__.py +8 -0
- pulumi_alicloud/sag/acl.py +200 -0
- pulumi_alicloud/{rocketmq → sag}/acl_rule.py +7 -7
- pulumi_alicloud/sag/client_user.py +560 -0
- pulumi_alicloud/sag/dnat_entry.py +512 -0
- pulumi_alicloud/sag/get_acls.py +2 -2
- pulumi_alicloud/sag/qos.py +202 -0
- pulumi_alicloud/sag/qos_car.py +654 -0
- pulumi_alicloud/sag/qos_policy.py +659 -0
- pulumi_alicloud/sag/snat_entry.py +313 -0
- pulumi_alicloud/securitycenter/group.py +2 -2
- pulumi_alicloud/selectdb/db_instance.py +60 -11
- pulumi_alicloud/simpleapplicationserver/get_server_plans.py +7 -7
- pulumi_alicloud/simpleapplicationserver/outputs.py +3 -3
- pulumi_alicloud/slb/server_group_server_attachment.py +101 -111
- pulumi_alicloud/sls/oss_export_sink.py +2 -2
- pulumi_alicloud/tag/__init__.py +1 -0
- pulumi_alicloud/tag/associated_rule.py +306 -0
- pulumi_alicloud/tag/policy.py +27 -36
- pulumi_alicloud/threatdetection/__init__.py +3 -0
- pulumi_alicloud/threatdetection/anti_brute_force_rule.py +41 -65
- pulumi_alicloud/threatdetection/asset_bind.py +209 -0
- pulumi_alicloud/threatdetection/asset_selection_config.py +258 -0
- pulumi_alicloud/threatdetection/instance.py +271 -54
- pulumi_alicloud/threatdetection/log_meta.py +351 -0
- pulumi_alicloud/vpc/__init__.py +2 -0
- pulumi_alicloud/vpc/_inputs.py +281 -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/gateway_endpoint.py +85 -27
- pulumi_alicloud/vpc/get_enhanced_nat_available_zones.py +38 -2
- pulumi_alicloud/vpc/get_forward_entries.py +2 -2
- pulumi_alicloud/vpc/get_ipam_ipam_pool_allocations.py +2 -2
- pulumi_alicloud/vpc/get_ipam_ipam_pool_cidrs.py +2 -2
- pulumi_alicloud/vpc/get_ipam_ipam_pools.py +2 -2
- pulumi_alicloud/vpc/get_ipam_ipam_scopes.py +2 -2
- pulumi_alicloud/vpc/get_ipam_ipams.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/ipv6_address.py +85 -5
- pulumi_alicloud/vpc/nat_gateway.py +8 -0
- pulumi_alicloud/vpc/outputs.py +244 -2
- pulumi_alicloud/vpc/peer_connection.py +84 -42
- pulumi_alicloud/vpc/peer_connection_accepter.py +7 -21
- pulumi_alicloud/vpc/route_table.py +100 -45
- pulumi_alicloud/vpc/router_interface_connection.py +4 -4
- pulumi_alicloud/vpc/traffic_mirror_filter.py +2 -2
- pulumi_alicloud/vpc/vpc_route_entry.py +724 -0
- pulumi_alicloud/vpn/_inputs.py +716 -71
- pulumi_alicloud/vpn/gateway_vpn_attachment.py +622 -128
- pulumi_alicloud/vpn/get_gateway_vco_routes.py +11 -2
- pulumi_alicloud/vpn/get_gateway_vpn_attachments.py +26 -60
- pulumi_alicloud/vpn/get_gateways.py +21 -1
- pulumi_alicloud/vpn/ipsec_server.py +2 -2
- pulumi_alicloud/vpn/outputs.py +1982 -1006
- {pulumi_alicloud-3.75.0a1741324537.dist-info → pulumi_alicloud-3.76.0.dist-info}/METADATA +2 -2
- {pulumi_alicloud-3.75.0a1741324537.dist-info → pulumi_alicloud-3.76.0.dist-info}/RECORD +355 -278
- {pulumi_alicloud-3.75.0a1741324537.dist-info → pulumi_alicloud-3.76.0.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.75.0a1741324537.dist-info → pulumi_alicloud-3.76.0.dist-info}/top_level.txt +0 -0
pulumi_alicloud/nlb/outputs.py
CHANGED
|
@@ -16,6 +16,7 @@ from .. import _utilities
|
|
|
16
16
|
from . import outputs
|
|
17
17
|
|
|
18
18
|
__all__ = [
|
|
19
|
+
'ListenerProxyProtocolConfig',
|
|
19
20
|
'LoadBalancerDeletionProtectionConfig',
|
|
20
21
|
'LoadBalancerModificationProtectionConfig',
|
|
21
22
|
'LoadBalancerZoneMapping',
|
|
@@ -31,6 +32,70 @@ __all__ = [
|
|
|
31
32
|
'GetZonesZoneResult',
|
|
32
33
|
]
|
|
33
34
|
|
|
35
|
+
@pulumi.output_type
|
|
36
|
+
class ListenerProxyProtocolConfig(dict):
|
|
37
|
+
@staticmethod
|
|
38
|
+
def __key_warning(key: str):
|
|
39
|
+
suggest = None
|
|
40
|
+
if key == "proxyProtocolConfigPrivateLinkEpIdEnabled":
|
|
41
|
+
suggest = "proxy_protocol_config_private_link_ep_id_enabled"
|
|
42
|
+
elif key == "proxyProtocolConfigPrivateLinkEpsIdEnabled":
|
|
43
|
+
suggest = "proxy_protocol_config_private_link_eps_id_enabled"
|
|
44
|
+
elif key == "proxyProtocolConfigVpcIdEnabled":
|
|
45
|
+
suggest = "proxy_protocol_config_vpc_id_enabled"
|
|
46
|
+
|
|
47
|
+
if suggest:
|
|
48
|
+
pulumi.log.warn(f"Key '{key}' not found in ListenerProxyProtocolConfig. Access the value via the '{suggest}' property getter instead.")
|
|
49
|
+
|
|
50
|
+
def __getitem__(self, key: str) -> Any:
|
|
51
|
+
ListenerProxyProtocolConfig.__key_warning(key)
|
|
52
|
+
return super().__getitem__(key)
|
|
53
|
+
|
|
54
|
+
def get(self, key: str, default = None) -> Any:
|
|
55
|
+
ListenerProxyProtocolConfig.__key_warning(key)
|
|
56
|
+
return super().get(key, default)
|
|
57
|
+
|
|
58
|
+
def __init__(__self__, *,
|
|
59
|
+
proxy_protocol_config_private_link_ep_id_enabled: Optional[bool] = None,
|
|
60
|
+
proxy_protocol_config_private_link_eps_id_enabled: Optional[bool] = None,
|
|
61
|
+
proxy_protocol_config_vpc_id_enabled: Optional[bool] = None):
|
|
62
|
+
"""
|
|
63
|
+
:param bool proxy_protocol_config_private_link_ep_id_enabled: Whether to enable carrying PrivateLinkEpId to backend servers through Proxy Protocol.
|
|
64
|
+
:param bool proxy_protocol_config_private_link_eps_id_enabled: Whether to enable carrying PrivateLinkEpsId to backend servers through the Proxy Protocol.
|
|
65
|
+
:param bool proxy_protocol_config_vpc_id_enabled: Whether to enable carrying VpcId to backend servers through Proxy Protocol.
|
|
66
|
+
"""
|
|
67
|
+
if proxy_protocol_config_private_link_ep_id_enabled is not None:
|
|
68
|
+
pulumi.set(__self__, "proxy_protocol_config_private_link_ep_id_enabled", proxy_protocol_config_private_link_ep_id_enabled)
|
|
69
|
+
if proxy_protocol_config_private_link_eps_id_enabled is not None:
|
|
70
|
+
pulumi.set(__self__, "proxy_protocol_config_private_link_eps_id_enabled", proxy_protocol_config_private_link_eps_id_enabled)
|
|
71
|
+
if proxy_protocol_config_vpc_id_enabled is not None:
|
|
72
|
+
pulumi.set(__self__, "proxy_protocol_config_vpc_id_enabled", proxy_protocol_config_vpc_id_enabled)
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
@pulumi.getter(name="proxyProtocolConfigPrivateLinkEpIdEnabled")
|
|
76
|
+
def proxy_protocol_config_private_link_ep_id_enabled(self) -> Optional[bool]:
|
|
77
|
+
"""
|
|
78
|
+
Whether to enable carrying PrivateLinkEpId to backend servers through Proxy Protocol.
|
|
79
|
+
"""
|
|
80
|
+
return pulumi.get(self, "proxy_protocol_config_private_link_ep_id_enabled")
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
@pulumi.getter(name="proxyProtocolConfigPrivateLinkEpsIdEnabled")
|
|
84
|
+
def proxy_protocol_config_private_link_eps_id_enabled(self) -> Optional[bool]:
|
|
85
|
+
"""
|
|
86
|
+
Whether to enable carrying PrivateLinkEpsId to backend servers through the Proxy Protocol.
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "proxy_protocol_config_private_link_eps_id_enabled")
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
@pulumi.getter(name="proxyProtocolConfigVpcIdEnabled")
|
|
92
|
+
def proxy_protocol_config_vpc_id_enabled(self) -> Optional[bool]:
|
|
93
|
+
"""
|
|
94
|
+
Whether to enable carrying VpcId to backend servers through Proxy Protocol.
|
|
95
|
+
"""
|
|
96
|
+
return pulumi.get(self, "proxy_protocol_config_vpc_id_enabled")
|
|
97
|
+
|
|
98
|
+
|
|
34
99
|
@pulumi.output_type
|
|
35
100
|
class LoadBalancerDeletionProtectionConfig(dict):
|
|
36
101
|
@staticmethod
|
|
@@ -182,8 +247,12 @@ class LoadBalancerZoneMapping(dict):
|
|
|
182
247
|
suggest = "allocation_id"
|
|
183
248
|
elif key == "eniId":
|
|
184
249
|
suggest = "eni_id"
|
|
250
|
+
elif key == "ipv4LocalAddresses":
|
|
251
|
+
suggest = "ipv4_local_addresses"
|
|
185
252
|
elif key == "ipv6Address":
|
|
186
253
|
suggest = "ipv6_address"
|
|
254
|
+
elif key == "ipv6LocalAddresses":
|
|
255
|
+
suggest = "ipv6_local_addresses"
|
|
187
256
|
elif key == "privateIpv4Address":
|
|
188
257
|
suggest = "private_ipv4_address"
|
|
189
258
|
elif key == "publicIpv4Address":
|
|
@@ -205,20 +274,23 @@ class LoadBalancerZoneMapping(dict):
|
|
|
205
274
|
zone_id: str,
|
|
206
275
|
allocation_id: Optional[str] = None,
|
|
207
276
|
eni_id: Optional[str] = None,
|
|
277
|
+
ipv4_local_addresses: Optional[Sequence[str]] = None,
|
|
208
278
|
ipv6_address: Optional[str] = None,
|
|
279
|
+
ipv6_local_addresses: Optional[Sequence[str]] = None,
|
|
209
280
|
private_ipv4_address: Optional[str] = None,
|
|
210
281
|
public_ipv4_address: Optional[str] = None,
|
|
211
282
|
status: Optional[str] = None):
|
|
212
283
|
"""
|
|
213
284
|
:param str vswitch_id: The vSwitch in the zone. You can specify only one vSwitch (subnet) in each zone of an NLB instance. You must add at least two zones. You can add a maximum of 10 zones.
|
|
214
285
|
:param str zone_id: The ID of the zone of the NLB instance. You must add at least two zones. You can add a maximum of 10 zones.
|
|
215
|
-
|
|
216
286
|
You can call the [DescribeZones](https://www.alibabacloud.com/help/en/doc-detail/443890.html) operation to query the most recent zone list.
|
|
217
287
|
:param str allocation_id: The ID of the elastic IP address (EIP) that is associated with the Internet-facing NLB instance. You can specify one EIP for each zone. You must add at least two zones. You can add a maximum of 10 zones.
|
|
218
288
|
:param str eni_id: The ID of the elastic network interface (ENI).
|
|
289
|
+
:param Sequence[str] ipv4_local_addresses: IPv4 Local address list. The list of addresses that NLB interacts with backend services.
|
|
219
290
|
:param str ipv6_address: The IPv6 address of the NLB instance.
|
|
291
|
+
:param Sequence[str] ipv6_local_addresses: IPv6 Local address list. The list of addresses that NLB interacts with backend services.
|
|
220
292
|
:param str private_ipv4_address: The private IP address. You must add at least two zones. You can add a maximum of 10 zones.
|
|
221
|
-
:param str public_ipv4_address:
|
|
293
|
+
:param str public_ipv4_address: The public IPv4 address of the NLB instance.
|
|
222
294
|
:param str status: Zone Status
|
|
223
295
|
"""
|
|
224
296
|
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
@@ -227,8 +299,12 @@ class LoadBalancerZoneMapping(dict):
|
|
|
227
299
|
pulumi.set(__self__, "allocation_id", allocation_id)
|
|
228
300
|
if eni_id is not None:
|
|
229
301
|
pulumi.set(__self__, "eni_id", eni_id)
|
|
302
|
+
if ipv4_local_addresses is not None:
|
|
303
|
+
pulumi.set(__self__, "ipv4_local_addresses", ipv4_local_addresses)
|
|
230
304
|
if ipv6_address is not None:
|
|
231
305
|
pulumi.set(__self__, "ipv6_address", ipv6_address)
|
|
306
|
+
if ipv6_local_addresses is not None:
|
|
307
|
+
pulumi.set(__self__, "ipv6_local_addresses", ipv6_local_addresses)
|
|
232
308
|
if private_ipv4_address is not None:
|
|
233
309
|
pulumi.set(__self__, "private_ipv4_address", private_ipv4_address)
|
|
234
310
|
if public_ipv4_address is not None:
|
|
@@ -249,7 +325,6 @@ class LoadBalancerZoneMapping(dict):
|
|
|
249
325
|
def zone_id(self) -> str:
|
|
250
326
|
"""
|
|
251
327
|
The ID of the zone of the NLB instance. You must add at least two zones. You can add a maximum of 10 zones.
|
|
252
|
-
|
|
253
328
|
You can call the [DescribeZones](https://www.alibabacloud.com/help/en/doc-detail/443890.html) operation to query the most recent zone list.
|
|
254
329
|
"""
|
|
255
330
|
return pulumi.get(self, "zone_id")
|
|
@@ -270,6 +345,14 @@ class LoadBalancerZoneMapping(dict):
|
|
|
270
345
|
"""
|
|
271
346
|
return pulumi.get(self, "eni_id")
|
|
272
347
|
|
|
348
|
+
@property
|
|
349
|
+
@pulumi.getter(name="ipv4LocalAddresses")
|
|
350
|
+
def ipv4_local_addresses(self) -> Optional[Sequence[str]]:
|
|
351
|
+
"""
|
|
352
|
+
IPv4 Local address list. The list of addresses that NLB interacts with backend services.
|
|
353
|
+
"""
|
|
354
|
+
return pulumi.get(self, "ipv4_local_addresses")
|
|
355
|
+
|
|
273
356
|
@property
|
|
274
357
|
@pulumi.getter(name="ipv6Address")
|
|
275
358
|
def ipv6_address(self) -> Optional[str]:
|
|
@@ -278,6 +361,14 @@ class LoadBalancerZoneMapping(dict):
|
|
|
278
361
|
"""
|
|
279
362
|
return pulumi.get(self, "ipv6_address")
|
|
280
363
|
|
|
364
|
+
@property
|
|
365
|
+
@pulumi.getter(name="ipv6LocalAddresses")
|
|
366
|
+
def ipv6_local_addresses(self) -> Optional[Sequence[str]]:
|
|
367
|
+
"""
|
|
368
|
+
IPv6 Local address list. The list of addresses that NLB interacts with backend services.
|
|
369
|
+
"""
|
|
370
|
+
return pulumi.get(self, "ipv6_local_addresses")
|
|
371
|
+
|
|
281
372
|
@property
|
|
282
373
|
@pulumi.getter(name="privateIpv4Address")
|
|
283
374
|
def private_ipv4_address(self) -> Optional[str]:
|
|
@@ -290,7 +381,7 @@ class LoadBalancerZoneMapping(dict):
|
|
|
290
381
|
@pulumi.getter(name="publicIpv4Address")
|
|
291
382
|
def public_ipv4_address(self) -> Optional[str]:
|
|
292
383
|
"""
|
|
293
|
-
|
|
384
|
+
The public IPv4 address of the NLB instance.
|
|
294
385
|
"""
|
|
295
386
|
return pulumi.get(self, "public_ipv4_address")
|
|
296
387
|
|
|
@@ -316,10 +407,14 @@ class ServerGroupHealthCheck(dict):
|
|
|
316
407
|
suggest = "health_check_domain"
|
|
317
408
|
elif key == "healthCheckEnabled":
|
|
318
409
|
suggest = "health_check_enabled"
|
|
410
|
+
elif key == "healthCheckExp":
|
|
411
|
+
suggest = "health_check_exp"
|
|
319
412
|
elif key == "healthCheckHttpCodes":
|
|
320
413
|
suggest = "health_check_http_codes"
|
|
321
414
|
elif key == "healthCheckInterval":
|
|
322
415
|
suggest = "health_check_interval"
|
|
416
|
+
elif key == "healthCheckReq":
|
|
417
|
+
suggest = "health_check_req"
|
|
323
418
|
elif key == "healthCheckType":
|
|
324
419
|
suggest = "health_check_type"
|
|
325
420
|
elif key == "healthCheckUrl":
|
|
@@ -347,8 +442,10 @@ class ServerGroupHealthCheck(dict):
|
|
|
347
442
|
health_check_connect_timeout: Optional[int] = None,
|
|
348
443
|
health_check_domain: Optional[str] = None,
|
|
349
444
|
health_check_enabled: Optional[bool] = None,
|
|
445
|
+
health_check_exp: Optional[str] = None,
|
|
350
446
|
health_check_http_codes: Optional[Sequence[str]] = None,
|
|
351
447
|
health_check_interval: Optional[int] = None,
|
|
448
|
+
health_check_req: Optional[str] = None,
|
|
352
449
|
health_check_type: Optional[str] = None,
|
|
353
450
|
health_check_url: Optional[str] = None,
|
|
354
451
|
healthy_threshold: Optional[int] = None,
|
|
@@ -356,22 +453,20 @@ class ServerGroupHealthCheck(dict):
|
|
|
356
453
|
unhealthy_threshold: Optional[int] = None):
|
|
357
454
|
"""
|
|
358
455
|
:param int health_check_connect_port: The port that you want to use for health checks on backend servers.
|
|
359
|
-
|
|
360
456
|
Valid values: `0` to `65535`.
|
|
361
|
-
|
|
362
457
|
Default value: `0`. If you set the value to 0, the port of the backend server is used for health checks.
|
|
363
458
|
:param int health_check_connect_timeout: The maximum timeout period of a health check. Unit: seconds. Valid values: `1` to `300`. Default value: `5`.
|
|
364
459
|
:param str health_check_domain: The domain name that you want to use for health checks. Valid values:
|
|
365
460
|
- `$SERVER_IP`: the private IP address of a backend server.
|
|
366
461
|
:param bool health_check_enabled: Specifies whether to enable the health check feature. Valid values:
|
|
462
|
+
:param str health_check_exp: health check response character string. The value contains a maximum of 512 characters
|
|
367
463
|
:param Sequence[str] health_check_http_codes: The HTTP status codes to return for health checks. Separate multiple HTTP status codes with commas (,). Valid values: `http\\_2xx` (default), `http\\_3xx`, `http\\_4xx`, and `http\\_5xx`.
|
|
368
464
|
|
|
369
465
|
> **NOTE:** This parameter takes effect only when `HealthCheckType` is set to `HTTP`.
|
|
370
466
|
:param int health_check_interval: The interval at which health checks are performed. Unit: seconds.
|
|
371
|
-
|
|
372
467
|
Valid values: `5` to `50`.
|
|
373
|
-
|
|
374
468
|
Default value: `10`.
|
|
469
|
+
:param str health_check_req: UDP healthy check request string, the value is a character string of 512 characters
|
|
375
470
|
:param str health_check_type: The protocol that you want to use for health checks. Valid values: `TCP` (default) and `HTTP`.
|
|
376
471
|
:param str health_check_url: The path to which health check requests are sent.
|
|
377
472
|
|
|
@@ -379,17 +474,13 @@ class ServerGroupHealthCheck(dict):
|
|
|
379
474
|
|
|
380
475
|
> **NOTE:** This parameter takes effect only when `HealthCheckType` is set to `HTTP`.
|
|
381
476
|
:param int healthy_threshold: The number of times that an unhealthy backend server must consecutively pass health checks before it is declared healthy. In this case, the health status changes from `fail` to `success`.
|
|
382
|
-
|
|
383
477
|
Valid values: `2` to `10`.
|
|
384
|
-
|
|
385
478
|
Default value: `2`.
|
|
386
479
|
:param str http_check_method: The HTTP method that is used for health checks. Valid values: `GET` (default) and `HEAD`.
|
|
387
480
|
|
|
388
481
|
> **NOTE:** This parameter takes effect only when `HealthCheckType` is set to `HTTP`.
|
|
389
482
|
:param int unhealthy_threshold: The number of times that a healthy backend server must consecutively fail health checks before it is declared unhealthy. In this case, the health status changes from `success` to `fail`.
|
|
390
|
-
|
|
391
483
|
Valid values: `2` to `10`.
|
|
392
|
-
|
|
393
484
|
Default value: `2`.
|
|
394
485
|
"""
|
|
395
486
|
if health_check_connect_port is not None:
|
|
@@ -400,10 +491,14 @@ class ServerGroupHealthCheck(dict):
|
|
|
400
491
|
pulumi.set(__self__, "health_check_domain", health_check_domain)
|
|
401
492
|
if health_check_enabled is not None:
|
|
402
493
|
pulumi.set(__self__, "health_check_enabled", health_check_enabled)
|
|
494
|
+
if health_check_exp is not None:
|
|
495
|
+
pulumi.set(__self__, "health_check_exp", health_check_exp)
|
|
403
496
|
if health_check_http_codes is not None:
|
|
404
497
|
pulumi.set(__self__, "health_check_http_codes", health_check_http_codes)
|
|
405
498
|
if health_check_interval is not None:
|
|
406
499
|
pulumi.set(__self__, "health_check_interval", health_check_interval)
|
|
500
|
+
if health_check_req is not None:
|
|
501
|
+
pulumi.set(__self__, "health_check_req", health_check_req)
|
|
407
502
|
if health_check_type is not None:
|
|
408
503
|
pulumi.set(__self__, "health_check_type", health_check_type)
|
|
409
504
|
if health_check_url is not None:
|
|
@@ -420,9 +515,7 @@ class ServerGroupHealthCheck(dict):
|
|
|
420
515
|
def health_check_connect_port(self) -> Optional[int]:
|
|
421
516
|
"""
|
|
422
517
|
The port that you want to use for health checks on backend servers.
|
|
423
|
-
|
|
424
518
|
Valid values: `0` to `65535`.
|
|
425
|
-
|
|
426
519
|
Default value: `0`. If you set the value to 0, the port of the backend server is used for health checks.
|
|
427
520
|
"""
|
|
428
521
|
return pulumi.get(self, "health_check_connect_port")
|
|
@@ -452,6 +545,14 @@ class ServerGroupHealthCheck(dict):
|
|
|
452
545
|
"""
|
|
453
546
|
return pulumi.get(self, "health_check_enabled")
|
|
454
547
|
|
|
548
|
+
@property
|
|
549
|
+
@pulumi.getter(name="healthCheckExp")
|
|
550
|
+
def health_check_exp(self) -> Optional[str]:
|
|
551
|
+
"""
|
|
552
|
+
health check response character string. The value contains a maximum of 512 characters
|
|
553
|
+
"""
|
|
554
|
+
return pulumi.get(self, "health_check_exp")
|
|
555
|
+
|
|
455
556
|
@property
|
|
456
557
|
@pulumi.getter(name="healthCheckHttpCodes")
|
|
457
558
|
def health_check_http_codes(self) -> Optional[Sequence[str]]:
|
|
@@ -467,13 +568,19 @@ class ServerGroupHealthCheck(dict):
|
|
|
467
568
|
def health_check_interval(self) -> Optional[int]:
|
|
468
569
|
"""
|
|
469
570
|
The interval at which health checks are performed. Unit: seconds.
|
|
470
|
-
|
|
471
571
|
Valid values: `5` to `50`.
|
|
472
|
-
|
|
473
572
|
Default value: `10`.
|
|
474
573
|
"""
|
|
475
574
|
return pulumi.get(self, "health_check_interval")
|
|
476
575
|
|
|
576
|
+
@property
|
|
577
|
+
@pulumi.getter(name="healthCheckReq")
|
|
578
|
+
def health_check_req(self) -> Optional[str]:
|
|
579
|
+
"""
|
|
580
|
+
UDP healthy check request string, the value is a character string of 512 characters
|
|
581
|
+
"""
|
|
582
|
+
return pulumi.get(self, "health_check_req")
|
|
583
|
+
|
|
477
584
|
@property
|
|
478
585
|
@pulumi.getter(name="healthCheckType")
|
|
479
586
|
def health_check_type(self) -> Optional[str]:
|
|
@@ -499,9 +606,7 @@ class ServerGroupHealthCheck(dict):
|
|
|
499
606
|
def healthy_threshold(self) -> Optional[int]:
|
|
500
607
|
"""
|
|
501
608
|
The number of times that an unhealthy backend server must consecutively pass health checks before it is declared healthy. In this case, the health status changes from `fail` to `success`.
|
|
502
|
-
|
|
503
609
|
Valid values: `2` to `10`.
|
|
504
|
-
|
|
505
610
|
Default value: `2`.
|
|
506
611
|
"""
|
|
507
612
|
return pulumi.get(self, "healthy_threshold")
|
|
@@ -521,9 +626,7 @@ class ServerGroupHealthCheck(dict):
|
|
|
521
626
|
def unhealthy_threshold(self) -> Optional[int]:
|
|
522
627
|
"""
|
|
523
628
|
The number of times that a healthy backend server must consecutively fail health checks before it is declared unhealthy. In this case, the health status changes from `success` to `fail`.
|
|
524
|
-
|
|
525
629
|
Valid values: `2` to `10`.
|
|
526
|
-
|
|
527
630
|
Default value: `2`.
|
|
528
631
|
"""
|
|
529
632
|
return pulumi.get(self, "unhealthy_threshold")
|
|
@@ -38,7 +38,6 @@ class ServerGroupArgs:
|
|
|
38
38
|
"""
|
|
39
39
|
The set of arguments for constructing a ServerGroup resource.
|
|
40
40
|
:param pulumi.Input[str] server_group_name: The new name of the server group.
|
|
41
|
-
|
|
42
41
|
The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (\\_), and hyphens (-). The name must start with a letter.
|
|
43
42
|
:param pulumi.Input[str] vpc_id: The ID of the virtual private cloud (VPC) to which the server group belongs.
|
|
44
43
|
|
|
@@ -54,18 +53,20 @@ class ServerGroupArgs:
|
|
|
54
53
|
:param pulumi.Input['ServerGroupHealthCheckArgs'] health_check: Health check configuration information. See `health_check` below.
|
|
55
54
|
:param pulumi.Input[bool] preserve_client_ip_enabled: Specifies whether to enable client IP preservation. Valid values:
|
|
56
55
|
:param pulumi.Input[str] protocol: The protocol used to forward requests to the backend servers. Valid values:
|
|
56
|
+
|
|
57
57
|
- `TCP` (default)
|
|
58
58
|
- `UDP`
|
|
59
59
|
- `TCPSSL`
|
|
60
60
|
:param pulumi.Input[str] resource_group_id: The ID of the new resource group.
|
|
61
|
-
|
|
62
61
|
You can log on to the [Resource Management console](https://resourcemanager.console.aliyun.com/resource-groups) to view resource group IDs.
|
|
63
62
|
:param pulumi.Input[str] scheduler: The scheduling algorithm. Valid values:
|
|
63
|
+
|
|
64
64
|
- **Wrr:** The weighted round-robin algorithm is used. Backend servers with higher weights receive more requests than backend servers with lower weights. This is the default value.
|
|
65
65
|
- **rr:** The round-robin algorithm is used. Requests are forwarded to backend servers in sequence.
|
|
66
66
|
- **sch:** Source IP hashing is used. Requests from the same source IP address are forwarded to the same backend server.
|
|
67
67
|
- **tch:** Four-element hashing is used. It specifies consistent hashing that is based on four factors: source IP address, destination IP address, source port, and destination port. Requests that contain the same information based on the four factors are forwarded to the same backend server.
|
|
68
68
|
:param pulumi.Input[str] server_group_type: The type of server group. Valid values:
|
|
69
|
+
|
|
69
70
|
- `Instance`: allows you to add servers of the `Ecs`, `Eni`, or `Eci` type. This is the default value.
|
|
70
71
|
- `Ip`: allows you to add servers by specifying IP addresses.
|
|
71
72
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Label.
|
|
@@ -105,7 +106,6 @@ class ServerGroupArgs:
|
|
|
105
106
|
def server_group_name(self) -> pulumi.Input[str]:
|
|
106
107
|
"""
|
|
107
108
|
The new name of the server group.
|
|
108
|
-
|
|
109
109
|
The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (\\_), and hyphens (-). The name must start with a letter.
|
|
110
110
|
"""
|
|
111
111
|
return pulumi.get(self, "server_group_name")
|
|
@@ -221,6 +221,7 @@ class ServerGroupArgs:
|
|
|
221
221
|
def protocol(self) -> Optional[pulumi.Input[str]]:
|
|
222
222
|
"""
|
|
223
223
|
The protocol used to forward requests to the backend servers. Valid values:
|
|
224
|
+
|
|
224
225
|
- `TCP` (default)
|
|
225
226
|
- `UDP`
|
|
226
227
|
- `TCPSSL`
|
|
@@ -236,7 +237,6 @@ class ServerGroupArgs:
|
|
|
236
237
|
def resource_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
237
238
|
"""
|
|
238
239
|
The ID of the new resource group.
|
|
239
|
-
|
|
240
240
|
You can log on to the [Resource Management console](https://resourcemanager.console.aliyun.com/resource-groups) to view resource group IDs.
|
|
241
241
|
"""
|
|
242
242
|
return pulumi.get(self, "resource_group_id")
|
|
@@ -250,6 +250,7 @@ class ServerGroupArgs:
|
|
|
250
250
|
def scheduler(self) -> Optional[pulumi.Input[str]]:
|
|
251
251
|
"""
|
|
252
252
|
The scheduling algorithm. Valid values:
|
|
253
|
+
|
|
253
254
|
- **Wrr:** The weighted round-robin algorithm is used. Backend servers with higher weights receive more requests than backend servers with lower weights. This is the default value.
|
|
254
255
|
- **rr:** The round-robin algorithm is used. Requests are forwarded to backend servers in sequence.
|
|
255
256
|
- **sch:** Source IP hashing is used. Requests from the same source IP address are forwarded to the same backend server.
|
|
@@ -266,6 +267,7 @@ class ServerGroupArgs:
|
|
|
266
267
|
def server_group_type(self) -> Optional[pulumi.Input[str]]:
|
|
267
268
|
"""
|
|
268
269
|
The type of server group. Valid values:
|
|
270
|
+
|
|
269
271
|
- `Instance`: allows you to add servers of the `Ecs`, `Eni`, or `Eci` type. This is the default value.
|
|
270
272
|
- `Ip`: allows you to add servers by specifying IP addresses.
|
|
271
273
|
"""
|
|
@@ -299,6 +301,7 @@ class _ServerGroupState:
|
|
|
299
301
|
health_check: Optional[pulumi.Input['ServerGroupHealthCheckArgs']] = None,
|
|
300
302
|
preserve_client_ip_enabled: Optional[pulumi.Input[bool]] = None,
|
|
301
303
|
protocol: Optional[pulumi.Input[str]] = None,
|
|
304
|
+
region_id: Optional[pulumi.Input[str]] = None,
|
|
302
305
|
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
303
306
|
scheduler: Optional[pulumi.Input[str]] = None,
|
|
304
307
|
server_group_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -316,21 +319,23 @@ class _ServerGroupState:
|
|
|
316
319
|
:param pulumi.Input['ServerGroupHealthCheckArgs'] health_check: Health check configuration information. See `health_check` below.
|
|
317
320
|
:param pulumi.Input[bool] preserve_client_ip_enabled: Specifies whether to enable client IP preservation. Valid values:
|
|
318
321
|
:param pulumi.Input[str] protocol: The protocol used to forward requests to the backend servers. Valid values:
|
|
322
|
+
|
|
319
323
|
- `TCP` (default)
|
|
320
324
|
- `UDP`
|
|
321
325
|
- `TCPSSL`
|
|
326
|
+
:param pulumi.Input[str] region_id: The ID of the region where the NLB instance is deployed.
|
|
322
327
|
:param pulumi.Input[str] resource_group_id: The ID of the new resource group.
|
|
323
|
-
|
|
324
328
|
You can log on to the [Resource Management console](https://resourcemanager.console.aliyun.com/resource-groups) to view resource group IDs.
|
|
325
329
|
:param pulumi.Input[str] scheduler: The scheduling algorithm. Valid values:
|
|
330
|
+
|
|
326
331
|
- **Wrr:** The weighted round-robin algorithm is used. Backend servers with higher weights receive more requests than backend servers with lower weights. This is the default value.
|
|
327
332
|
- **rr:** The round-robin algorithm is used. Requests are forwarded to backend servers in sequence.
|
|
328
333
|
- **sch:** Source IP hashing is used. Requests from the same source IP address are forwarded to the same backend server.
|
|
329
334
|
- **tch:** Four-element hashing is used. It specifies consistent hashing that is based on four factors: source IP address, destination IP address, source port, and destination port. Requests that contain the same information based on the four factors are forwarded to the same backend server.
|
|
330
335
|
:param pulumi.Input[str] server_group_name: The new name of the server group.
|
|
331
|
-
|
|
332
336
|
The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (\\_), and hyphens (-). The name must start with a letter.
|
|
333
337
|
:param pulumi.Input[str] server_group_type: The type of server group. Valid values:
|
|
338
|
+
|
|
334
339
|
- `Instance`: allows you to add servers of the `Ecs`, `Eni`, or `Eci` type. This is the default value.
|
|
335
340
|
- `Ip`: allows you to add servers by specifying IP addresses.
|
|
336
341
|
:param pulumi.Input[str] status: Server group status. Value:
|
|
@@ -361,6 +366,8 @@ class _ServerGroupState:
|
|
|
361
366
|
pulumi.set(__self__, "preserve_client_ip_enabled", preserve_client_ip_enabled)
|
|
362
367
|
if protocol is not None:
|
|
363
368
|
pulumi.set(__self__, "protocol", protocol)
|
|
369
|
+
if region_id is not None:
|
|
370
|
+
pulumi.set(__self__, "region_id", region_id)
|
|
364
371
|
if resource_group_id is not None:
|
|
365
372
|
pulumi.set(__self__, "resource_group_id", resource_group_id)
|
|
366
373
|
if scheduler is not None:
|
|
@@ -466,6 +473,7 @@ class _ServerGroupState:
|
|
|
466
473
|
def protocol(self) -> Optional[pulumi.Input[str]]:
|
|
467
474
|
"""
|
|
468
475
|
The protocol used to forward requests to the backend servers. Valid values:
|
|
476
|
+
|
|
469
477
|
- `TCP` (default)
|
|
470
478
|
- `UDP`
|
|
471
479
|
- `TCPSSL`
|
|
@@ -476,12 +484,23 @@ class _ServerGroupState:
|
|
|
476
484
|
def protocol(self, value: Optional[pulumi.Input[str]]):
|
|
477
485
|
pulumi.set(self, "protocol", value)
|
|
478
486
|
|
|
487
|
+
@property
|
|
488
|
+
@pulumi.getter(name="regionId")
|
|
489
|
+
def region_id(self) -> Optional[pulumi.Input[str]]:
|
|
490
|
+
"""
|
|
491
|
+
The ID of the region where the NLB instance is deployed.
|
|
492
|
+
"""
|
|
493
|
+
return pulumi.get(self, "region_id")
|
|
494
|
+
|
|
495
|
+
@region_id.setter
|
|
496
|
+
def region_id(self, value: Optional[pulumi.Input[str]]):
|
|
497
|
+
pulumi.set(self, "region_id", value)
|
|
498
|
+
|
|
479
499
|
@property
|
|
480
500
|
@pulumi.getter(name="resourceGroupId")
|
|
481
501
|
def resource_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
482
502
|
"""
|
|
483
503
|
The ID of the new resource group.
|
|
484
|
-
|
|
485
504
|
You can log on to the [Resource Management console](https://resourcemanager.console.aliyun.com/resource-groups) to view resource group IDs.
|
|
486
505
|
"""
|
|
487
506
|
return pulumi.get(self, "resource_group_id")
|
|
@@ -495,6 +514,7 @@ class _ServerGroupState:
|
|
|
495
514
|
def scheduler(self) -> Optional[pulumi.Input[str]]:
|
|
496
515
|
"""
|
|
497
516
|
The scheduling algorithm. Valid values:
|
|
517
|
+
|
|
498
518
|
- **Wrr:** The weighted round-robin algorithm is used. Backend servers with higher weights receive more requests than backend servers with lower weights. This is the default value.
|
|
499
519
|
- **rr:** The round-robin algorithm is used. Requests are forwarded to backend servers in sequence.
|
|
500
520
|
- **sch:** Source IP hashing is used. Requests from the same source IP address are forwarded to the same backend server.
|
|
@@ -511,7 +531,6 @@ class _ServerGroupState:
|
|
|
511
531
|
def server_group_name(self) -> Optional[pulumi.Input[str]]:
|
|
512
532
|
"""
|
|
513
533
|
The new name of the server group.
|
|
514
|
-
|
|
515
534
|
The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (\\_), and hyphens (-). The name must start with a letter.
|
|
516
535
|
"""
|
|
517
536
|
return pulumi.get(self, "server_group_name")
|
|
@@ -525,6 +544,7 @@ class _ServerGroupState:
|
|
|
525
544
|
def server_group_type(self) -> Optional[pulumi.Input[str]]:
|
|
526
545
|
"""
|
|
527
546
|
The type of server group. Valid values:
|
|
547
|
+
|
|
528
548
|
- `Instance`: allows you to add servers of the `Ecs`, `Eni`, or `Eci` type. This is the default value.
|
|
529
549
|
- `Ip`: allows you to add servers by specifying IP addresses.
|
|
530
550
|
"""
|
|
@@ -597,9 +617,9 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
597
617
|
vpc_id: Optional[pulumi.Input[str]] = None,
|
|
598
618
|
__props__=None):
|
|
599
619
|
"""
|
|
600
|
-
Provides a NLB Server Group resource.
|
|
620
|
+
Provides a Network Load Balancer (NLB) Server Group resource.
|
|
601
621
|
|
|
602
|
-
For information about NLB Server Group and how to use it, see [What is Server Group](https://www.alibabacloud.com/help/en/server-load-balancer/latest/createservergroup-nlb).
|
|
622
|
+
For information about Network Load Balancer (NLB) Server Group and how to use it, see [What is Server Group](https://www.alibabacloud.com/help/en/server-load-balancer/latest/createservergroup-nlb).
|
|
603
623
|
|
|
604
624
|
> **NOTE:** Available since v1.186.0.
|
|
605
625
|
|
|
@@ -652,7 +672,7 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
652
672
|
|
|
653
673
|
## Import
|
|
654
674
|
|
|
655
|
-
NLB Server Group can be imported using the id, e.g.
|
|
675
|
+
Network Load Balancer (NLB) Server Group can be imported using the id, e.g.
|
|
656
676
|
|
|
657
677
|
```sh
|
|
658
678
|
$ pulumi import alicloud:nlb/serverGroup:ServerGroup example <id>
|
|
@@ -668,21 +688,22 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
668
688
|
:param pulumi.Input[Union['ServerGroupHealthCheckArgs', 'ServerGroupHealthCheckArgsDict']] health_check: Health check configuration information. See `health_check` below.
|
|
669
689
|
:param pulumi.Input[bool] preserve_client_ip_enabled: Specifies whether to enable client IP preservation. Valid values:
|
|
670
690
|
:param pulumi.Input[str] protocol: The protocol used to forward requests to the backend servers. Valid values:
|
|
691
|
+
|
|
671
692
|
- `TCP` (default)
|
|
672
693
|
- `UDP`
|
|
673
694
|
- `TCPSSL`
|
|
674
695
|
:param pulumi.Input[str] resource_group_id: The ID of the new resource group.
|
|
675
|
-
|
|
676
696
|
You can log on to the [Resource Management console](https://resourcemanager.console.aliyun.com/resource-groups) to view resource group IDs.
|
|
677
697
|
:param pulumi.Input[str] scheduler: The scheduling algorithm. Valid values:
|
|
698
|
+
|
|
678
699
|
- **Wrr:** The weighted round-robin algorithm is used. Backend servers with higher weights receive more requests than backend servers with lower weights. This is the default value.
|
|
679
700
|
- **rr:** The round-robin algorithm is used. Requests are forwarded to backend servers in sequence.
|
|
680
701
|
- **sch:** Source IP hashing is used. Requests from the same source IP address are forwarded to the same backend server.
|
|
681
702
|
- **tch:** Four-element hashing is used. It specifies consistent hashing that is based on four factors: source IP address, destination IP address, source port, and destination port. Requests that contain the same information based on the four factors are forwarded to the same backend server.
|
|
682
703
|
:param pulumi.Input[str] server_group_name: The new name of the server group.
|
|
683
|
-
|
|
684
704
|
The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (\\_), and hyphens (-). The name must start with a letter.
|
|
685
705
|
:param pulumi.Input[str] server_group_type: The type of server group. Valid values:
|
|
706
|
+
|
|
686
707
|
- `Instance`: allows you to add servers of the `Ecs`, `Eni`, or `Eci` type. This is the default value.
|
|
687
708
|
- `Ip`: allows you to add servers by specifying IP addresses.
|
|
688
709
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Label.
|
|
@@ -700,9 +721,9 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
700
721
|
args: ServerGroupArgs,
|
|
701
722
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
702
723
|
"""
|
|
703
|
-
Provides a NLB Server Group resource.
|
|
724
|
+
Provides a Network Load Balancer (NLB) Server Group resource.
|
|
704
725
|
|
|
705
|
-
For information about NLB Server Group and how to use it, see [What is Server Group](https://www.alibabacloud.com/help/en/server-load-balancer/latest/createservergroup-nlb).
|
|
726
|
+
For information about Network Load Balancer (NLB) Server Group and how to use it, see [What is Server Group](https://www.alibabacloud.com/help/en/server-load-balancer/latest/createservergroup-nlb).
|
|
706
727
|
|
|
707
728
|
> **NOTE:** Available since v1.186.0.
|
|
708
729
|
|
|
@@ -755,7 +776,7 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
755
776
|
|
|
756
777
|
## Import
|
|
757
778
|
|
|
758
|
-
NLB Server Group can be imported using the id, e.g.
|
|
779
|
+
Network Load Balancer (NLB) Server Group can be imported using the id, e.g.
|
|
759
780
|
|
|
760
781
|
```sh
|
|
761
782
|
$ pulumi import alicloud:nlb/serverGroup:ServerGroup example <id>
|
|
@@ -817,6 +838,7 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
817
838
|
if vpc_id is None and not opts.urn:
|
|
818
839
|
raise TypeError("Missing required property 'vpc_id'")
|
|
819
840
|
__props__.__dict__["vpc_id"] = vpc_id
|
|
841
|
+
__props__.__dict__["region_id"] = None
|
|
820
842
|
__props__.__dict__["status"] = None
|
|
821
843
|
super(ServerGroup, __self__).__init__(
|
|
822
844
|
'alicloud:nlb/serverGroup:ServerGroup',
|
|
@@ -836,6 +858,7 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
836
858
|
health_check: Optional[pulumi.Input[Union['ServerGroupHealthCheckArgs', 'ServerGroupHealthCheckArgsDict']]] = None,
|
|
837
859
|
preserve_client_ip_enabled: Optional[pulumi.Input[bool]] = None,
|
|
838
860
|
protocol: Optional[pulumi.Input[str]] = None,
|
|
861
|
+
region_id: Optional[pulumi.Input[str]] = None,
|
|
839
862
|
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
840
863
|
scheduler: Optional[pulumi.Input[str]] = None,
|
|
841
864
|
server_group_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -858,21 +881,23 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
858
881
|
:param pulumi.Input[Union['ServerGroupHealthCheckArgs', 'ServerGroupHealthCheckArgsDict']] health_check: Health check configuration information. See `health_check` below.
|
|
859
882
|
:param pulumi.Input[bool] preserve_client_ip_enabled: Specifies whether to enable client IP preservation. Valid values:
|
|
860
883
|
:param pulumi.Input[str] protocol: The protocol used to forward requests to the backend servers. Valid values:
|
|
884
|
+
|
|
861
885
|
- `TCP` (default)
|
|
862
886
|
- `UDP`
|
|
863
887
|
- `TCPSSL`
|
|
888
|
+
:param pulumi.Input[str] region_id: The ID of the region where the NLB instance is deployed.
|
|
864
889
|
:param pulumi.Input[str] resource_group_id: The ID of the new resource group.
|
|
865
|
-
|
|
866
890
|
You can log on to the [Resource Management console](https://resourcemanager.console.aliyun.com/resource-groups) to view resource group IDs.
|
|
867
891
|
:param pulumi.Input[str] scheduler: The scheduling algorithm. Valid values:
|
|
892
|
+
|
|
868
893
|
- **Wrr:** The weighted round-robin algorithm is used. Backend servers with higher weights receive more requests than backend servers with lower weights. This is the default value.
|
|
869
894
|
- **rr:** The round-robin algorithm is used. Requests are forwarded to backend servers in sequence.
|
|
870
895
|
- **sch:** Source IP hashing is used. Requests from the same source IP address are forwarded to the same backend server.
|
|
871
896
|
- **tch:** Four-element hashing is used. It specifies consistent hashing that is based on four factors: source IP address, destination IP address, source port, and destination port. Requests that contain the same information based on the four factors are forwarded to the same backend server.
|
|
872
897
|
:param pulumi.Input[str] server_group_name: The new name of the server group.
|
|
873
|
-
|
|
874
898
|
The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (\\_), and hyphens (-). The name must start with a letter.
|
|
875
899
|
:param pulumi.Input[str] server_group_type: The type of server group. Valid values:
|
|
900
|
+
|
|
876
901
|
- `Instance`: allows you to add servers of the `Ecs`, `Eni`, or `Eci` type. This is the default value.
|
|
877
902
|
- `Ip`: allows you to add servers by specifying IP addresses.
|
|
878
903
|
:param pulumi.Input[str] status: Server group status. Value:
|
|
@@ -896,6 +921,7 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
896
921
|
__props__.__dict__["health_check"] = health_check
|
|
897
922
|
__props__.__dict__["preserve_client_ip_enabled"] = preserve_client_ip_enabled
|
|
898
923
|
__props__.__dict__["protocol"] = protocol
|
|
924
|
+
__props__.__dict__["region_id"] = region_id
|
|
899
925
|
__props__.__dict__["resource_group_id"] = resource_group_id
|
|
900
926
|
__props__.__dict__["scheduler"] = scheduler
|
|
901
927
|
__props__.__dict__["server_group_name"] = server_group_name
|
|
@@ -967,18 +993,26 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
967
993
|
def protocol(self) -> pulumi.Output[str]:
|
|
968
994
|
"""
|
|
969
995
|
The protocol used to forward requests to the backend servers. Valid values:
|
|
996
|
+
|
|
970
997
|
- `TCP` (default)
|
|
971
998
|
- `UDP`
|
|
972
999
|
- `TCPSSL`
|
|
973
1000
|
"""
|
|
974
1001
|
return pulumi.get(self, "protocol")
|
|
975
1002
|
|
|
1003
|
+
@property
|
|
1004
|
+
@pulumi.getter(name="regionId")
|
|
1005
|
+
def region_id(self) -> pulumi.Output[str]:
|
|
1006
|
+
"""
|
|
1007
|
+
The ID of the region where the NLB instance is deployed.
|
|
1008
|
+
"""
|
|
1009
|
+
return pulumi.get(self, "region_id")
|
|
1010
|
+
|
|
976
1011
|
@property
|
|
977
1012
|
@pulumi.getter(name="resourceGroupId")
|
|
978
1013
|
def resource_group_id(self) -> pulumi.Output[str]:
|
|
979
1014
|
"""
|
|
980
1015
|
The ID of the new resource group.
|
|
981
|
-
|
|
982
1016
|
You can log on to the [Resource Management console](https://resourcemanager.console.aliyun.com/resource-groups) to view resource group IDs.
|
|
983
1017
|
"""
|
|
984
1018
|
return pulumi.get(self, "resource_group_id")
|
|
@@ -988,6 +1022,7 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
988
1022
|
def scheduler(self) -> pulumi.Output[str]:
|
|
989
1023
|
"""
|
|
990
1024
|
The scheduling algorithm. Valid values:
|
|
1025
|
+
|
|
991
1026
|
- **Wrr:** The weighted round-robin algorithm is used. Backend servers with higher weights receive more requests than backend servers with lower weights. This is the default value.
|
|
992
1027
|
- **rr:** The round-robin algorithm is used. Requests are forwarded to backend servers in sequence.
|
|
993
1028
|
- **sch:** Source IP hashing is used. Requests from the same source IP address are forwarded to the same backend server.
|
|
@@ -1000,7 +1035,6 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
1000
1035
|
def server_group_name(self) -> pulumi.Output[str]:
|
|
1001
1036
|
"""
|
|
1002
1037
|
The new name of the server group.
|
|
1003
|
-
|
|
1004
1038
|
The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (\\_), and hyphens (-). The name must start with a letter.
|
|
1005
1039
|
"""
|
|
1006
1040
|
return pulumi.get(self, "server_group_name")
|
|
@@ -1010,6 +1044,7 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
1010
1044
|
def server_group_type(self) -> pulumi.Output[str]:
|
|
1011
1045
|
"""
|
|
1012
1046
|
The type of server group. Valid values:
|
|
1047
|
+
|
|
1013
1048
|
- `Instance`: allows you to add servers of the `Ecs`, `Eni`, or `Eci` type. This is the default value.
|
|
1014
1049
|
- `Ip`: allows you to add servers by specifying IP addresses.
|
|
1015
1050
|
"""
|