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/_inputs.py
CHANGED
|
@@ -15,6 +15,8 @@ else:
|
|
|
15
15
|
from .. import _utilities
|
|
16
16
|
|
|
17
17
|
__all__ = [
|
|
18
|
+
'ListenerProxyProtocolConfigArgs',
|
|
19
|
+
'ListenerProxyProtocolConfigArgsDict',
|
|
18
20
|
'LoadBalancerDeletionProtectionConfigArgs',
|
|
19
21
|
'LoadBalancerDeletionProtectionConfigArgsDict',
|
|
20
22
|
'LoadBalancerModificationProtectionConfigArgs',
|
|
@@ -27,6 +29,78 @@ __all__ = [
|
|
|
27
29
|
|
|
28
30
|
MYPY = False
|
|
29
31
|
|
|
32
|
+
if not MYPY:
|
|
33
|
+
class ListenerProxyProtocolConfigArgsDict(TypedDict):
|
|
34
|
+
proxy_protocol_config_private_link_ep_id_enabled: NotRequired[pulumi.Input[bool]]
|
|
35
|
+
"""
|
|
36
|
+
Whether to enable carrying PrivateLinkEpId to backend servers through Proxy Protocol.
|
|
37
|
+
"""
|
|
38
|
+
proxy_protocol_config_private_link_eps_id_enabled: NotRequired[pulumi.Input[bool]]
|
|
39
|
+
"""
|
|
40
|
+
Whether to enable carrying PrivateLinkEpsId to backend servers through the Proxy Protocol.
|
|
41
|
+
"""
|
|
42
|
+
proxy_protocol_config_vpc_id_enabled: NotRequired[pulumi.Input[bool]]
|
|
43
|
+
"""
|
|
44
|
+
Whether to enable carrying VpcId to backend servers through Proxy Protocol.
|
|
45
|
+
"""
|
|
46
|
+
elif False:
|
|
47
|
+
ListenerProxyProtocolConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
48
|
+
|
|
49
|
+
@pulumi.input_type
|
|
50
|
+
class ListenerProxyProtocolConfigArgs:
|
|
51
|
+
def __init__(__self__, *,
|
|
52
|
+
proxy_protocol_config_private_link_ep_id_enabled: Optional[pulumi.Input[bool]] = None,
|
|
53
|
+
proxy_protocol_config_private_link_eps_id_enabled: Optional[pulumi.Input[bool]] = None,
|
|
54
|
+
proxy_protocol_config_vpc_id_enabled: Optional[pulumi.Input[bool]] = None):
|
|
55
|
+
"""
|
|
56
|
+
:param pulumi.Input[bool] proxy_protocol_config_private_link_ep_id_enabled: Whether to enable carrying PrivateLinkEpId to backend servers through Proxy Protocol.
|
|
57
|
+
:param pulumi.Input[bool] proxy_protocol_config_private_link_eps_id_enabled: Whether to enable carrying PrivateLinkEpsId to backend servers through the Proxy Protocol.
|
|
58
|
+
:param pulumi.Input[bool] proxy_protocol_config_vpc_id_enabled: Whether to enable carrying VpcId to backend servers through Proxy Protocol.
|
|
59
|
+
"""
|
|
60
|
+
if proxy_protocol_config_private_link_ep_id_enabled is not None:
|
|
61
|
+
pulumi.set(__self__, "proxy_protocol_config_private_link_ep_id_enabled", proxy_protocol_config_private_link_ep_id_enabled)
|
|
62
|
+
if proxy_protocol_config_private_link_eps_id_enabled is not None:
|
|
63
|
+
pulumi.set(__self__, "proxy_protocol_config_private_link_eps_id_enabled", proxy_protocol_config_private_link_eps_id_enabled)
|
|
64
|
+
if proxy_protocol_config_vpc_id_enabled is not None:
|
|
65
|
+
pulumi.set(__self__, "proxy_protocol_config_vpc_id_enabled", proxy_protocol_config_vpc_id_enabled)
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter(name="proxyProtocolConfigPrivateLinkEpIdEnabled")
|
|
69
|
+
def proxy_protocol_config_private_link_ep_id_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
70
|
+
"""
|
|
71
|
+
Whether to enable carrying PrivateLinkEpId to backend servers through Proxy Protocol.
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "proxy_protocol_config_private_link_ep_id_enabled")
|
|
74
|
+
|
|
75
|
+
@proxy_protocol_config_private_link_ep_id_enabled.setter
|
|
76
|
+
def proxy_protocol_config_private_link_ep_id_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
77
|
+
pulumi.set(self, "proxy_protocol_config_private_link_ep_id_enabled", value)
|
|
78
|
+
|
|
79
|
+
@property
|
|
80
|
+
@pulumi.getter(name="proxyProtocolConfigPrivateLinkEpsIdEnabled")
|
|
81
|
+
def proxy_protocol_config_private_link_eps_id_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
82
|
+
"""
|
|
83
|
+
Whether to enable carrying PrivateLinkEpsId to backend servers through the Proxy Protocol.
|
|
84
|
+
"""
|
|
85
|
+
return pulumi.get(self, "proxy_protocol_config_private_link_eps_id_enabled")
|
|
86
|
+
|
|
87
|
+
@proxy_protocol_config_private_link_eps_id_enabled.setter
|
|
88
|
+
def proxy_protocol_config_private_link_eps_id_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
89
|
+
pulumi.set(self, "proxy_protocol_config_private_link_eps_id_enabled", value)
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
@pulumi.getter(name="proxyProtocolConfigVpcIdEnabled")
|
|
93
|
+
def proxy_protocol_config_vpc_id_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
94
|
+
"""
|
|
95
|
+
Whether to enable carrying VpcId to backend servers through Proxy Protocol.
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "proxy_protocol_config_vpc_id_enabled")
|
|
98
|
+
|
|
99
|
+
@proxy_protocol_config_vpc_id_enabled.setter
|
|
100
|
+
def proxy_protocol_config_vpc_id_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
101
|
+
pulumi.set(self, "proxy_protocol_config_vpc_id_enabled", value)
|
|
102
|
+
|
|
103
|
+
|
|
30
104
|
if not MYPY:
|
|
31
105
|
class LoadBalancerDeletionProtectionConfigArgsDict(TypedDict):
|
|
32
106
|
enabled: NotRequired[pulumi.Input[bool]]
|
|
@@ -207,7 +281,6 @@ if not MYPY:
|
|
|
207
281
|
zone_id: pulumi.Input[str]
|
|
208
282
|
"""
|
|
209
283
|
The ID of the zone of the NLB instance. You must add at least two zones. You can add a maximum of 10 zones.
|
|
210
|
-
|
|
211
284
|
You can call the [DescribeZones](https://www.alibabacloud.com/help/en/doc-detail/443890.html) operation to query the most recent zone list.
|
|
212
285
|
"""
|
|
213
286
|
allocation_id: NotRequired[pulumi.Input[str]]
|
|
@@ -218,17 +291,25 @@ if not MYPY:
|
|
|
218
291
|
"""
|
|
219
292
|
The ID of the elastic network interface (ENI).
|
|
220
293
|
"""
|
|
294
|
+
ipv4_local_addresses: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
295
|
+
"""
|
|
296
|
+
IPv4 Local address list. The list of addresses that NLB interacts with backend services.
|
|
297
|
+
"""
|
|
221
298
|
ipv6_address: NotRequired[pulumi.Input[str]]
|
|
222
299
|
"""
|
|
223
300
|
The IPv6 address of the NLB instance.
|
|
224
301
|
"""
|
|
302
|
+
ipv6_local_addresses: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
303
|
+
"""
|
|
304
|
+
IPv6 Local address list. The list of addresses that NLB interacts with backend services.
|
|
305
|
+
"""
|
|
225
306
|
private_ipv4_address: NotRequired[pulumi.Input[str]]
|
|
226
307
|
"""
|
|
227
308
|
The private IP address. You must add at least two zones. You can add a maximum of 10 zones.
|
|
228
309
|
"""
|
|
229
310
|
public_ipv4_address: NotRequired[pulumi.Input[str]]
|
|
230
311
|
"""
|
|
231
|
-
|
|
312
|
+
The public IPv4 address of the NLB instance.
|
|
232
313
|
"""
|
|
233
314
|
status: NotRequired[pulumi.Input[str]]
|
|
234
315
|
"""
|
|
@@ -244,20 +325,23 @@ class LoadBalancerZoneMappingArgs:
|
|
|
244
325
|
zone_id: pulumi.Input[str],
|
|
245
326
|
allocation_id: Optional[pulumi.Input[str]] = None,
|
|
246
327
|
eni_id: Optional[pulumi.Input[str]] = None,
|
|
328
|
+
ipv4_local_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
247
329
|
ipv6_address: Optional[pulumi.Input[str]] = None,
|
|
330
|
+
ipv6_local_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
248
331
|
private_ipv4_address: Optional[pulumi.Input[str]] = None,
|
|
249
332
|
public_ipv4_address: Optional[pulumi.Input[str]] = None,
|
|
250
333
|
status: Optional[pulumi.Input[str]] = None):
|
|
251
334
|
"""
|
|
252
335
|
:param pulumi.Input[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.
|
|
253
336
|
:param pulumi.Input[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.
|
|
254
|
-
|
|
255
337
|
You can call the [DescribeZones](https://www.alibabacloud.com/help/en/doc-detail/443890.html) operation to query the most recent zone list.
|
|
256
338
|
:param pulumi.Input[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.
|
|
257
339
|
:param pulumi.Input[str] eni_id: The ID of the elastic network interface (ENI).
|
|
340
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ipv4_local_addresses: IPv4 Local address list. The list of addresses that NLB interacts with backend services.
|
|
258
341
|
:param pulumi.Input[str] ipv6_address: The IPv6 address of the NLB instance.
|
|
342
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ipv6_local_addresses: IPv6 Local address list. The list of addresses that NLB interacts with backend services.
|
|
259
343
|
:param pulumi.Input[str] private_ipv4_address: The private IP address. You must add at least two zones. You can add a maximum of 10 zones.
|
|
260
|
-
:param pulumi.Input[str] public_ipv4_address:
|
|
344
|
+
:param pulumi.Input[str] public_ipv4_address: The public IPv4 address of the NLB instance.
|
|
261
345
|
:param pulumi.Input[str] status: Zone Status
|
|
262
346
|
"""
|
|
263
347
|
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
@@ -266,8 +350,12 @@ class LoadBalancerZoneMappingArgs:
|
|
|
266
350
|
pulumi.set(__self__, "allocation_id", allocation_id)
|
|
267
351
|
if eni_id is not None:
|
|
268
352
|
pulumi.set(__self__, "eni_id", eni_id)
|
|
353
|
+
if ipv4_local_addresses is not None:
|
|
354
|
+
pulumi.set(__self__, "ipv4_local_addresses", ipv4_local_addresses)
|
|
269
355
|
if ipv6_address is not None:
|
|
270
356
|
pulumi.set(__self__, "ipv6_address", ipv6_address)
|
|
357
|
+
if ipv6_local_addresses is not None:
|
|
358
|
+
pulumi.set(__self__, "ipv6_local_addresses", ipv6_local_addresses)
|
|
271
359
|
if private_ipv4_address is not None:
|
|
272
360
|
pulumi.set(__self__, "private_ipv4_address", private_ipv4_address)
|
|
273
361
|
if public_ipv4_address is not None:
|
|
@@ -292,7 +380,6 @@ class LoadBalancerZoneMappingArgs:
|
|
|
292
380
|
def zone_id(self) -> pulumi.Input[str]:
|
|
293
381
|
"""
|
|
294
382
|
The ID of the zone of the NLB instance. You must add at least two zones. You can add a maximum of 10 zones.
|
|
295
|
-
|
|
296
383
|
You can call the [DescribeZones](https://www.alibabacloud.com/help/en/doc-detail/443890.html) operation to query the most recent zone list.
|
|
297
384
|
"""
|
|
298
385
|
return pulumi.get(self, "zone_id")
|
|
@@ -325,6 +412,18 @@ class LoadBalancerZoneMappingArgs:
|
|
|
325
412
|
def eni_id(self, value: Optional[pulumi.Input[str]]):
|
|
326
413
|
pulumi.set(self, "eni_id", value)
|
|
327
414
|
|
|
415
|
+
@property
|
|
416
|
+
@pulumi.getter(name="ipv4LocalAddresses")
|
|
417
|
+
def ipv4_local_addresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
418
|
+
"""
|
|
419
|
+
IPv4 Local address list. The list of addresses that NLB interacts with backend services.
|
|
420
|
+
"""
|
|
421
|
+
return pulumi.get(self, "ipv4_local_addresses")
|
|
422
|
+
|
|
423
|
+
@ipv4_local_addresses.setter
|
|
424
|
+
def ipv4_local_addresses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
425
|
+
pulumi.set(self, "ipv4_local_addresses", value)
|
|
426
|
+
|
|
328
427
|
@property
|
|
329
428
|
@pulumi.getter(name="ipv6Address")
|
|
330
429
|
def ipv6_address(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -337,6 +436,18 @@ class LoadBalancerZoneMappingArgs:
|
|
|
337
436
|
def ipv6_address(self, value: Optional[pulumi.Input[str]]):
|
|
338
437
|
pulumi.set(self, "ipv6_address", value)
|
|
339
438
|
|
|
439
|
+
@property
|
|
440
|
+
@pulumi.getter(name="ipv6LocalAddresses")
|
|
441
|
+
def ipv6_local_addresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
442
|
+
"""
|
|
443
|
+
IPv6 Local address list. The list of addresses that NLB interacts with backend services.
|
|
444
|
+
"""
|
|
445
|
+
return pulumi.get(self, "ipv6_local_addresses")
|
|
446
|
+
|
|
447
|
+
@ipv6_local_addresses.setter
|
|
448
|
+
def ipv6_local_addresses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
449
|
+
pulumi.set(self, "ipv6_local_addresses", value)
|
|
450
|
+
|
|
340
451
|
@property
|
|
341
452
|
@pulumi.getter(name="privateIpv4Address")
|
|
342
453
|
def private_ipv4_address(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -353,7 +464,7 @@ class LoadBalancerZoneMappingArgs:
|
|
|
353
464
|
@pulumi.getter(name="publicIpv4Address")
|
|
354
465
|
def public_ipv4_address(self) -> Optional[pulumi.Input[str]]:
|
|
355
466
|
"""
|
|
356
|
-
|
|
467
|
+
The public IPv4 address of the NLB instance.
|
|
357
468
|
"""
|
|
358
469
|
return pulumi.get(self, "public_ipv4_address")
|
|
359
470
|
|
|
@@ -379,9 +490,7 @@ if not MYPY:
|
|
|
379
490
|
health_check_connect_port: NotRequired[pulumi.Input[int]]
|
|
380
491
|
"""
|
|
381
492
|
The port that you want to use for health checks on backend servers.
|
|
382
|
-
|
|
383
493
|
Valid values: `0` to `65535`.
|
|
384
|
-
|
|
385
494
|
Default value: `0`. If you set the value to 0, the port of the backend server is used for health checks.
|
|
386
495
|
"""
|
|
387
496
|
health_check_connect_timeout: NotRequired[pulumi.Input[int]]
|
|
@@ -397,6 +506,10 @@ if not MYPY:
|
|
|
397
506
|
"""
|
|
398
507
|
Specifies whether to enable the health check feature. Valid values:
|
|
399
508
|
"""
|
|
509
|
+
health_check_exp: NotRequired[pulumi.Input[str]]
|
|
510
|
+
"""
|
|
511
|
+
health check response character string. The value contains a maximum of 512 characters
|
|
512
|
+
"""
|
|
400
513
|
health_check_http_codes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
401
514
|
"""
|
|
402
515
|
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`.
|
|
@@ -406,11 +519,13 @@ if not MYPY:
|
|
|
406
519
|
health_check_interval: NotRequired[pulumi.Input[int]]
|
|
407
520
|
"""
|
|
408
521
|
The interval at which health checks are performed. Unit: seconds.
|
|
409
|
-
|
|
410
522
|
Valid values: `5` to `50`.
|
|
411
|
-
|
|
412
523
|
Default value: `10`.
|
|
413
524
|
"""
|
|
525
|
+
health_check_req: NotRequired[pulumi.Input[str]]
|
|
526
|
+
"""
|
|
527
|
+
UDP healthy check request string, the value is a character string of 512 characters
|
|
528
|
+
"""
|
|
414
529
|
health_check_type: NotRequired[pulumi.Input[str]]
|
|
415
530
|
"""
|
|
416
531
|
The protocol that you want to use for health checks. Valid values: `TCP` (default) and `HTTP`.
|
|
@@ -426,9 +541,7 @@ if not MYPY:
|
|
|
426
541
|
healthy_threshold: NotRequired[pulumi.Input[int]]
|
|
427
542
|
"""
|
|
428
543
|
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`.
|
|
429
|
-
|
|
430
544
|
Valid values: `2` to `10`.
|
|
431
|
-
|
|
432
545
|
Default value: `2`.
|
|
433
546
|
"""
|
|
434
547
|
http_check_method: NotRequired[pulumi.Input[str]]
|
|
@@ -440,9 +553,7 @@ if not MYPY:
|
|
|
440
553
|
unhealthy_threshold: NotRequired[pulumi.Input[int]]
|
|
441
554
|
"""
|
|
442
555
|
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`.
|
|
443
|
-
|
|
444
556
|
Valid values: `2` to `10`.
|
|
445
|
-
|
|
446
557
|
Default value: `2`.
|
|
447
558
|
"""
|
|
448
559
|
elif False:
|
|
@@ -455,8 +566,10 @@ class ServerGroupHealthCheckArgs:
|
|
|
455
566
|
health_check_connect_timeout: Optional[pulumi.Input[int]] = None,
|
|
456
567
|
health_check_domain: Optional[pulumi.Input[str]] = None,
|
|
457
568
|
health_check_enabled: Optional[pulumi.Input[bool]] = None,
|
|
569
|
+
health_check_exp: Optional[pulumi.Input[str]] = None,
|
|
458
570
|
health_check_http_codes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
459
571
|
health_check_interval: Optional[pulumi.Input[int]] = None,
|
|
572
|
+
health_check_req: Optional[pulumi.Input[str]] = None,
|
|
460
573
|
health_check_type: Optional[pulumi.Input[str]] = None,
|
|
461
574
|
health_check_url: Optional[pulumi.Input[str]] = None,
|
|
462
575
|
healthy_threshold: Optional[pulumi.Input[int]] = None,
|
|
@@ -464,22 +577,20 @@ class ServerGroupHealthCheckArgs:
|
|
|
464
577
|
unhealthy_threshold: Optional[pulumi.Input[int]] = None):
|
|
465
578
|
"""
|
|
466
579
|
:param pulumi.Input[int] health_check_connect_port: The port that you want to use for health checks on backend servers.
|
|
467
|
-
|
|
468
580
|
Valid values: `0` to `65535`.
|
|
469
|
-
|
|
470
581
|
Default value: `0`. If you set the value to 0, the port of the backend server is used for health checks.
|
|
471
582
|
:param pulumi.Input[int] health_check_connect_timeout: The maximum timeout period of a health check. Unit: seconds. Valid values: `1` to `300`. Default value: `5`.
|
|
472
583
|
:param pulumi.Input[str] health_check_domain: The domain name that you want to use for health checks. Valid values:
|
|
473
584
|
- `$SERVER_IP`: the private IP address of a backend server.
|
|
474
585
|
:param pulumi.Input[bool] health_check_enabled: Specifies whether to enable the health check feature. Valid values:
|
|
586
|
+
:param pulumi.Input[str] health_check_exp: health check response character string. The value contains a maximum of 512 characters
|
|
475
587
|
:param pulumi.Input[Sequence[pulumi.Input[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`.
|
|
476
588
|
|
|
477
589
|
> **NOTE:** This parameter takes effect only when `HealthCheckType` is set to `HTTP`.
|
|
478
590
|
:param pulumi.Input[int] health_check_interval: The interval at which health checks are performed. Unit: seconds.
|
|
479
|
-
|
|
480
591
|
Valid values: `5` to `50`.
|
|
481
|
-
|
|
482
592
|
Default value: `10`.
|
|
593
|
+
:param pulumi.Input[str] health_check_req: UDP healthy check request string, the value is a character string of 512 characters
|
|
483
594
|
:param pulumi.Input[str] health_check_type: The protocol that you want to use for health checks. Valid values: `TCP` (default) and `HTTP`.
|
|
484
595
|
:param pulumi.Input[str] health_check_url: The path to which health check requests are sent.
|
|
485
596
|
|
|
@@ -487,17 +598,13 @@ class ServerGroupHealthCheckArgs:
|
|
|
487
598
|
|
|
488
599
|
> **NOTE:** This parameter takes effect only when `HealthCheckType` is set to `HTTP`.
|
|
489
600
|
:param pulumi.Input[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`.
|
|
490
|
-
|
|
491
601
|
Valid values: `2` to `10`.
|
|
492
|
-
|
|
493
602
|
Default value: `2`.
|
|
494
603
|
:param pulumi.Input[str] http_check_method: The HTTP method that is used for health checks. Valid values: `GET` (default) and `HEAD`.
|
|
495
604
|
|
|
496
605
|
> **NOTE:** This parameter takes effect only when `HealthCheckType` is set to `HTTP`.
|
|
497
606
|
:param pulumi.Input[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`.
|
|
498
|
-
|
|
499
607
|
Valid values: `2` to `10`.
|
|
500
|
-
|
|
501
608
|
Default value: `2`.
|
|
502
609
|
"""
|
|
503
610
|
if health_check_connect_port is not None:
|
|
@@ -508,10 +615,14 @@ class ServerGroupHealthCheckArgs:
|
|
|
508
615
|
pulumi.set(__self__, "health_check_domain", health_check_domain)
|
|
509
616
|
if health_check_enabled is not None:
|
|
510
617
|
pulumi.set(__self__, "health_check_enabled", health_check_enabled)
|
|
618
|
+
if health_check_exp is not None:
|
|
619
|
+
pulumi.set(__self__, "health_check_exp", health_check_exp)
|
|
511
620
|
if health_check_http_codes is not None:
|
|
512
621
|
pulumi.set(__self__, "health_check_http_codes", health_check_http_codes)
|
|
513
622
|
if health_check_interval is not None:
|
|
514
623
|
pulumi.set(__self__, "health_check_interval", health_check_interval)
|
|
624
|
+
if health_check_req is not None:
|
|
625
|
+
pulumi.set(__self__, "health_check_req", health_check_req)
|
|
515
626
|
if health_check_type is not None:
|
|
516
627
|
pulumi.set(__self__, "health_check_type", health_check_type)
|
|
517
628
|
if health_check_url is not None:
|
|
@@ -528,9 +639,7 @@ class ServerGroupHealthCheckArgs:
|
|
|
528
639
|
def health_check_connect_port(self) -> Optional[pulumi.Input[int]]:
|
|
529
640
|
"""
|
|
530
641
|
The port that you want to use for health checks on backend servers.
|
|
531
|
-
|
|
532
642
|
Valid values: `0` to `65535`.
|
|
533
|
-
|
|
534
643
|
Default value: `0`. If you set the value to 0, the port of the backend server is used for health checks.
|
|
535
644
|
"""
|
|
536
645
|
return pulumi.get(self, "health_check_connect_port")
|
|
@@ -576,6 +685,18 @@ class ServerGroupHealthCheckArgs:
|
|
|
576
685
|
def health_check_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
577
686
|
pulumi.set(self, "health_check_enabled", value)
|
|
578
687
|
|
|
688
|
+
@property
|
|
689
|
+
@pulumi.getter(name="healthCheckExp")
|
|
690
|
+
def health_check_exp(self) -> Optional[pulumi.Input[str]]:
|
|
691
|
+
"""
|
|
692
|
+
health check response character string. The value contains a maximum of 512 characters
|
|
693
|
+
"""
|
|
694
|
+
return pulumi.get(self, "health_check_exp")
|
|
695
|
+
|
|
696
|
+
@health_check_exp.setter
|
|
697
|
+
def health_check_exp(self, value: Optional[pulumi.Input[str]]):
|
|
698
|
+
pulumi.set(self, "health_check_exp", value)
|
|
699
|
+
|
|
579
700
|
@property
|
|
580
701
|
@pulumi.getter(name="healthCheckHttpCodes")
|
|
581
702
|
def health_check_http_codes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
@@ -595,9 +716,7 @@ class ServerGroupHealthCheckArgs:
|
|
|
595
716
|
def health_check_interval(self) -> Optional[pulumi.Input[int]]:
|
|
596
717
|
"""
|
|
597
718
|
The interval at which health checks are performed. Unit: seconds.
|
|
598
|
-
|
|
599
719
|
Valid values: `5` to `50`.
|
|
600
|
-
|
|
601
720
|
Default value: `10`.
|
|
602
721
|
"""
|
|
603
722
|
return pulumi.get(self, "health_check_interval")
|
|
@@ -606,6 +725,18 @@ class ServerGroupHealthCheckArgs:
|
|
|
606
725
|
def health_check_interval(self, value: Optional[pulumi.Input[int]]):
|
|
607
726
|
pulumi.set(self, "health_check_interval", value)
|
|
608
727
|
|
|
728
|
+
@property
|
|
729
|
+
@pulumi.getter(name="healthCheckReq")
|
|
730
|
+
def health_check_req(self) -> Optional[pulumi.Input[str]]:
|
|
731
|
+
"""
|
|
732
|
+
UDP healthy check request string, the value is a character string of 512 characters
|
|
733
|
+
"""
|
|
734
|
+
return pulumi.get(self, "health_check_req")
|
|
735
|
+
|
|
736
|
+
@health_check_req.setter
|
|
737
|
+
def health_check_req(self, value: Optional[pulumi.Input[str]]):
|
|
738
|
+
pulumi.set(self, "health_check_req", value)
|
|
739
|
+
|
|
609
740
|
@property
|
|
610
741
|
@pulumi.getter(name="healthCheckType")
|
|
611
742
|
def health_check_type(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -639,9 +770,7 @@ class ServerGroupHealthCheckArgs:
|
|
|
639
770
|
def healthy_threshold(self) -> Optional[pulumi.Input[int]]:
|
|
640
771
|
"""
|
|
641
772
|
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`.
|
|
642
|
-
|
|
643
773
|
Valid values: `2` to `10`.
|
|
644
|
-
|
|
645
774
|
Default value: `2`.
|
|
646
775
|
"""
|
|
647
776
|
return pulumi.get(self, "healthy_threshold")
|
|
@@ -669,9 +798,7 @@ class ServerGroupHealthCheckArgs:
|
|
|
669
798
|
def unhealthy_threshold(self) -> Optional[pulumi.Input[int]]:
|
|
670
799
|
"""
|
|
671
800
|
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`.
|
|
672
|
-
|
|
673
801
|
Valid values: `2` to `10`.
|
|
674
|
-
|
|
675
802
|
Default value: `2`.
|
|
676
803
|
"""
|
|
677
804
|
return pulumi.get(self, "unhealthy_threshold")
|