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
|
@@ -418,7 +418,7 @@ class EnterpriseSnapshotPolicy(pulumi.CustomResource):
|
|
|
418
418
|
"""
|
|
419
419
|
Provides a EBS Enterprise Snapshot Policy resource. enterprise snapshot policy.
|
|
420
420
|
|
|
421
|
-
For information about EBS Enterprise Snapshot Policy and how to use it, see [What is Enterprise Snapshot Policy](https://
|
|
421
|
+
For information about EBS Enterprise Snapshot Policy and how to use it, see [What is Enterprise Snapshot Policy](https://next.api.aliyun.com/api/ebs/2021-07-30/CreateEnterpriseSnapshotPolicy).
|
|
422
422
|
|
|
423
423
|
> **NOTE:** Available since v1.215.0.
|
|
424
424
|
|
|
@@ -486,7 +486,7 @@ class EnterpriseSnapshotPolicy(pulumi.CustomResource):
|
|
|
486
486
|
"""
|
|
487
487
|
Provides a EBS Enterprise Snapshot Policy resource. enterprise snapshot policy.
|
|
488
488
|
|
|
489
|
-
For information about EBS Enterprise Snapshot Policy and how to use it, see [What is Enterprise Snapshot Policy](https://
|
|
489
|
+
For information about EBS Enterprise Snapshot Policy and how to use it, see [What is Enterprise Snapshot Policy](https://next.api.aliyun.com/api/ebs/2021-07-30/CreateEnterpriseSnapshotPolicy).
|
|
490
490
|
|
|
491
491
|
> **NOTE:** Available since v1.215.0.
|
|
492
492
|
|
|
@@ -106,7 +106,7 @@ class EnterpriseSnapshotPolicyAttachment(pulumi.CustomResource):
|
|
|
106
106
|
"""
|
|
107
107
|
Provides a EBS Enterprise Snapshot Policy Attachment resource. Enterprise-level snapshot policy cloud disk binding relationship.
|
|
108
108
|
|
|
109
|
-
For information about EBS Enterprise Snapshot Policy Attachment and how to use it, see [What is Enterprise Snapshot Policy Attachment](https://
|
|
109
|
+
For information about EBS Enterprise Snapshot Policy Attachment and how to use it, see [What is Enterprise Snapshot Policy Attachment](https://next.api.aliyun.com/api/ebs/2021-07-30/BindEnterpriseSnapshotPolicy).
|
|
110
110
|
|
|
111
111
|
> **NOTE:** Available since v1.215.0.
|
|
112
112
|
|
|
@@ -168,7 +168,7 @@ class EnterpriseSnapshotPolicyAttachment(pulumi.CustomResource):
|
|
|
168
168
|
"""
|
|
169
169
|
Provides a EBS Enterprise Snapshot Policy Attachment resource. Enterprise-level snapshot policy cloud disk binding relationship.
|
|
170
170
|
|
|
171
|
-
For information about EBS Enterprise Snapshot Policy Attachment and how to use it, see [What is Enterprise Snapshot Policy Attachment](https://
|
|
171
|
+
For information about EBS Enterprise Snapshot Policy Attachment and how to use it, see [What is Enterprise Snapshot Policy Attachment](https://next.api.aliyun.com/api/ebs/2021-07-30/BindEnterpriseSnapshotPolicy).
|
|
172
172
|
|
|
173
173
|
> **NOTE:** Available since v1.215.0.
|
|
174
174
|
|
|
@@ -105,7 +105,7 @@ class ReplicaGroupDrill(pulumi.CustomResource):
|
|
|
105
105
|
"""
|
|
106
106
|
Provides a EBS Replica Group Drill resource.
|
|
107
107
|
|
|
108
|
-
For information about EBS Replica Group Drill and how to use it, see [What is Replica Group Drill](https://
|
|
108
|
+
For information about Elastic Block Storage(EBS) Replica Group Drill and how to use it, see [What is Replica Group Drill](https://next.api.alibabacloud.com/document/ebs/2021-07-30/StartReplicaGroupDrill).
|
|
109
109
|
|
|
110
110
|
> **NOTE:** Available since v1.215.0.
|
|
111
111
|
|
|
@@ -145,7 +145,7 @@ class ReplicaGroupDrill(pulumi.CustomResource):
|
|
|
145
145
|
"""
|
|
146
146
|
Provides a EBS Replica Group Drill resource.
|
|
147
147
|
|
|
148
|
-
For information about EBS Replica Group Drill and how to use it, see [What is Replica Group Drill](https://
|
|
148
|
+
For information about Elastic Block Storage(EBS) Replica Group Drill and how to use it, see [What is Replica Group Drill](https://next.api.alibabacloud.com/document/ebs/2021-07-30/StartReplicaGroupDrill).
|
|
149
149
|
|
|
150
150
|
> **NOTE:** Available since v1.215.0.
|
|
151
151
|
|
|
@@ -105,7 +105,7 @@ class ReplicaPairDrill(pulumi.CustomResource):
|
|
|
105
105
|
"""
|
|
106
106
|
Provides a EBS Replica Pair Drill resource.
|
|
107
107
|
|
|
108
|
-
For information about EBS Replica Pair Drill and how to use it, see [What is Replica Pair Drill](https://
|
|
108
|
+
For information about Elastic Block Storage(EBS) Replica Pair Drill and how to use it, see [What is Replica Pair Drill](https://next.api.alibabacloud.com/document/ebs/2021-07-30/StartPairDrill).
|
|
109
109
|
|
|
110
110
|
> **NOTE:** Available since v1.215.0.
|
|
111
111
|
|
|
@@ -145,7 +145,7 @@ class ReplicaPairDrill(pulumi.CustomResource):
|
|
|
145
145
|
"""
|
|
146
146
|
Provides a EBS Replica Pair Drill resource.
|
|
147
147
|
|
|
148
|
-
For information about EBS Replica Pair Drill and how to use it, see [What is Replica Pair Drill](https://
|
|
148
|
+
For information about Elastic Block Storage(EBS) Replica Pair Drill and how to use it, see [What is Replica Pair Drill](https://next.api.alibabacloud.com/document/ebs/2021-07-30/StartPairDrill).
|
|
149
149
|
|
|
150
150
|
> **NOTE:** Available since v1.215.0.
|
|
151
151
|
|
pulumi_alicloud/ecp/instance.py
CHANGED
|
@@ -606,7 +606,7 @@ class Instance(pulumi.CustomResource):
|
|
|
606
606
|
"""
|
|
607
607
|
Provides a Elastic Cloud Phone (ECP) Instance resource.
|
|
608
608
|
|
|
609
|
-
For information about Elastic Cloud Phone (ECP) Instance and how to use it, see [What is Instance](https://
|
|
609
|
+
For information about Elastic Cloud Phone (ECP) Instance and how to use it, see [What is Instance](https://next.api.aliyun.com/document/cloudphone/2020-12-30/RunInstances).
|
|
610
610
|
|
|
611
611
|
> **NOTE:** Available since v1.158.0.
|
|
612
612
|
|
|
@@ -694,7 +694,7 @@ class Instance(pulumi.CustomResource):
|
|
|
694
694
|
"""
|
|
695
695
|
Provides a Elastic Cloud Phone (ECP) Instance resource.
|
|
696
696
|
|
|
697
|
-
For information about Elastic Cloud Phone (ECP) Instance and how to use it, see [What is Instance](https://
|
|
697
|
+
For information about Elastic Cloud Phone (ECP) Instance and how to use it, see [What is Instance](https://next.api.aliyun.com/document/cloudphone/2020-12-30/RunInstances).
|
|
698
698
|
|
|
699
699
|
> **NOTE:** Available since v1.158.0.
|
|
700
700
|
|
pulumi_alicloud/ecp/key_pair.py
CHANGED
|
@@ -105,9 +105,9 @@ class KeyPair(pulumi.CustomResource):
|
|
|
105
105
|
"""
|
|
106
106
|
Provides a Elastic Cloud Phone (ECP) Key Pair resource.
|
|
107
107
|
|
|
108
|
-
For information about Elastic Cloud Phone (ECP) Key Pair and how to use it, see [What is Key Pair](https://
|
|
108
|
+
For information about Elastic Cloud Phone (ECP) Key Pair and how to use it, see [What is Key Pair](https://next.api.aliyun.com/document/cloudphone/2020-12-30/ImportImage).
|
|
109
109
|
|
|
110
|
-
> **NOTE:** Available
|
|
110
|
+
> **NOTE:** Available since v1.130.0.
|
|
111
111
|
|
|
112
112
|
## Example Usage
|
|
113
113
|
|
|
@@ -144,9 +144,9 @@ class KeyPair(pulumi.CustomResource):
|
|
|
144
144
|
"""
|
|
145
145
|
Provides a Elastic Cloud Phone (ECP) Key Pair resource.
|
|
146
146
|
|
|
147
|
-
For information about Elastic Cloud Phone (ECP) Key Pair and how to use it, see [What is Key Pair](https://
|
|
147
|
+
For information about Elastic Cloud Phone (ECP) Key Pair and how to use it, see [What is Key Pair](https://next.api.aliyun.com/document/cloudphone/2020-12-30/ImportImage).
|
|
148
148
|
|
|
149
|
-
> **NOTE:** Available
|
|
149
|
+
> **NOTE:** Available since v1.130.0.
|
|
150
150
|
|
|
151
151
|
## Example Usage
|
|
152
152
|
|
pulumi_alicloud/ecs/_inputs.py
CHANGED
|
@@ -840,6 +840,10 @@ class EcsLaunchTemplateDataDiskArgs:
|
|
|
840
840
|
|
|
841
841
|
if not MYPY:
|
|
842
842
|
class EcsLaunchTemplateNetworkInterfacesArgsDict(TypedDict):
|
|
843
|
+
delete_on_release: NotRequired[pulumi.Input[bool]]
|
|
844
|
+
"""
|
|
845
|
+
Specifies whether to release ENI N when the instance is released. Valid values: `true`, `false`.
|
|
846
|
+
"""
|
|
843
847
|
description: NotRequired[pulumi.Input[str]]
|
|
844
848
|
"""
|
|
845
849
|
The ENI description.
|
|
@@ -866,18 +870,22 @@ elif False:
|
|
|
866
870
|
@pulumi.input_type
|
|
867
871
|
class EcsLaunchTemplateNetworkInterfacesArgs:
|
|
868
872
|
def __init__(__self__, *,
|
|
873
|
+
delete_on_release: Optional[pulumi.Input[bool]] = None,
|
|
869
874
|
description: Optional[pulumi.Input[str]] = None,
|
|
870
875
|
name: Optional[pulumi.Input[str]] = None,
|
|
871
876
|
primary_ip: Optional[pulumi.Input[str]] = None,
|
|
872
877
|
security_group_id: Optional[pulumi.Input[str]] = None,
|
|
873
878
|
vswitch_id: Optional[pulumi.Input[str]] = None):
|
|
874
879
|
"""
|
|
880
|
+
:param pulumi.Input[bool] delete_on_release: Specifies whether to release ENI N when the instance is released. Valid values: `true`, `false`.
|
|
875
881
|
:param pulumi.Input[str] description: The ENI description.
|
|
876
882
|
:param pulumi.Input[str] name: The ENI name.
|
|
877
883
|
:param pulumi.Input[str] primary_ip: The primary private IP address of the ENI.
|
|
878
884
|
:param pulumi.Input[str] security_group_id: The security group ID must be one in the same VPC.
|
|
879
885
|
:param pulumi.Input[str] vswitch_id: The VSwitch ID for ENI. The instance must be in the same zone of the same VPC network as the ENI, but they may belong to different VSwitches.
|
|
880
886
|
"""
|
|
887
|
+
if delete_on_release is not None:
|
|
888
|
+
pulumi.set(__self__, "delete_on_release", delete_on_release)
|
|
881
889
|
if description is not None:
|
|
882
890
|
pulumi.set(__self__, "description", description)
|
|
883
891
|
if name is not None:
|
|
@@ -889,6 +897,18 @@ class EcsLaunchTemplateNetworkInterfacesArgs:
|
|
|
889
897
|
if vswitch_id is not None:
|
|
890
898
|
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
891
899
|
|
|
900
|
+
@property
|
|
901
|
+
@pulumi.getter(name="deleteOnRelease")
|
|
902
|
+
def delete_on_release(self) -> Optional[pulumi.Input[bool]]:
|
|
903
|
+
"""
|
|
904
|
+
Specifies whether to release ENI N when the instance is released. Valid values: `true`, `false`.
|
|
905
|
+
"""
|
|
906
|
+
return pulumi.get(self, "delete_on_release")
|
|
907
|
+
|
|
908
|
+
@delete_on_release.setter
|
|
909
|
+
def delete_on_release(self, value: Optional[pulumi.Input[bool]]):
|
|
910
|
+
pulumi.set(self, "delete_on_release", value)
|
|
911
|
+
|
|
892
912
|
@property
|
|
893
913
|
@pulumi.getter
|
|
894
914
|
def description(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -2269,6 +2289,7 @@ class LaunchTemplateDataDiskArgs:
|
|
|
2269
2289
|
|
|
2270
2290
|
if not MYPY:
|
|
2271
2291
|
class LaunchTemplateNetworkInterfacesArgsDict(TypedDict):
|
|
2292
|
+
delete_on_release: NotRequired[pulumi.Input[bool]]
|
|
2272
2293
|
description: NotRequired[pulumi.Input[str]]
|
|
2273
2294
|
"""
|
|
2274
2295
|
The ENI description.
|
|
@@ -2295,6 +2316,7 @@ elif False:
|
|
|
2295
2316
|
@pulumi.input_type
|
|
2296
2317
|
class LaunchTemplateNetworkInterfacesArgs:
|
|
2297
2318
|
def __init__(__self__, *,
|
|
2319
|
+
delete_on_release: Optional[pulumi.Input[bool]] = None,
|
|
2298
2320
|
description: Optional[pulumi.Input[str]] = None,
|
|
2299
2321
|
name: Optional[pulumi.Input[str]] = None,
|
|
2300
2322
|
primary_ip: Optional[pulumi.Input[str]] = None,
|
|
@@ -2307,6 +2329,8 @@ class LaunchTemplateNetworkInterfacesArgs:
|
|
|
2307
2329
|
:param pulumi.Input[str] security_group_id: The security group ID must be one in the same VPC.
|
|
2308
2330
|
:param pulumi.Input[str] vswitch_id: The VSwitch ID for ENI. The instance must be in the same zone of the same VPC network as the ENI, but they may belong to different VSwitches.
|
|
2309
2331
|
"""
|
|
2332
|
+
if delete_on_release is not None:
|
|
2333
|
+
pulumi.set(__self__, "delete_on_release", delete_on_release)
|
|
2310
2334
|
if description is not None:
|
|
2311
2335
|
pulumi.set(__self__, "description", description)
|
|
2312
2336
|
if name is not None:
|
|
@@ -2318,6 +2342,15 @@ class LaunchTemplateNetworkInterfacesArgs:
|
|
|
2318
2342
|
if vswitch_id is not None:
|
|
2319
2343
|
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
2320
2344
|
|
|
2345
|
+
@property
|
|
2346
|
+
@pulumi.getter(name="deleteOnRelease")
|
|
2347
|
+
def delete_on_release(self) -> Optional[pulumi.Input[bool]]:
|
|
2348
|
+
return pulumi.get(self, "delete_on_release")
|
|
2349
|
+
|
|
2350
|
+
@delete_on_release.setter
|
|
2351
|
+
def delete_on_release(self, value: Optional[pulumi.Input[bool]]):
|
|
2352
|
+
pulumi.set(self, "delete_on_release", value)
|
|
2353
|
+
|
|
2321
2354
|
@property
|
|
2322
2355
|
@pulumi.getter
|
|
2323
2356
|
def description(self) -> Optional[pulumi.Input[str]]:
|
pulumi_alicloud/ecs/disk.py
CHANGED
|
@@ -1272,7 +1272,7 @@ class Disk(pulumi.CustomResource):
|
|
|
1272
1272
|
|
|
1273
1273
|
@property
|
|
1274
1274
|
@pulumi.getter(name="kmsKeyId")
|
|
1275
|
-
def kms_key_id(self) -> pulumi.Output[
|
|
1275
|
+
def kms_key_id(self) -> pulumi.Output[str]:
|
|
1276
1276
|
"""
|
|
1277
1277
|
The ID of the KMS key corresponding to the data disk, The specified parameter `Encrypted` must be `true` when KmsKeyId is not empty.
|
|
1278
1278
|
"""
|
|
@@ -27,21 +27,27 @@ class EcsDeploymentSetArgs:
|
|
|
27
27
|
strategy: Optional[pulumi.Input[str]] = None):
|
|
28
28
|
"""
|
|
29
29
|
The set of arguments for constructing a EcsDeploymentSet resource.
|
|
30
|
-
:param pulumi.Input[str] deployment_set_name: The name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
31
|
-
:param pulumi.Input[str] description: The description of the deployment set. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
32
|
-
:param pulumi.Input[str] domain:
|
|
33
|
-
:param pulumi.Input[str] granularity:
|
|
34
|
-
:param pulumi.Input[str] on_unable_to_redeploy_failed_instance: The
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
:param pulumi.Input[str] strategy: The deployment strategy. Valid values: `Availability
|
|
30
|
+
:param pulumi.Input[str] deployment_set_name: The name of the deployment set. The name must be `2` to `128` characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
31
|
+
:param pulumi.Input[str] description: The description of the deployment set. The description must be `2` to `256` characters in length and cannot start with `http://` or `https://`.
|
|
32
|
+
:param pulumi.Input[str] domain: Field `domain` has been deprecated from provider version 1.243.0.
|
|
33
|
+
:param pulumi.Input[str] granularity: Field `granularity` has been deprecated from provider version 1.243.0.
|
|
34
|
+
:param pulumi.Input[str] on_unable_to_redeploy_failed_instance: The emergency solution to use in the situation where instances in the deployment set cannot be evenly distributed to different zones due to resource insufficiency after the instances failover. Valid values:
|
|
35
|
+
- `CancelMembershipAndStart` - Removes the instances from the deployment set and starts the instances immediately after they are failed over.
|
|
36
|
+
- `KeepStopped`- Leaves the instances in the Stopped state and starts them after resources are replenished.
|
|
37
|
+
:param pulumi.Input[str] strategy: The deployment strategy. Default value: `Availability`. Valid values: `Availability`, `AvailabilityGroup`, `LowLatency`.
|
|
38
38
|
"""
|
|
39
39
|
if deployment_set_name is not None:
|
|
40
40
|
pulumi.set(__self__, "deployment_set_name", deployment_set_name)
|
|
41
41
|
if description is not None:
|
|
42
42
|
pulumi.set(__self__, "description", description)
|
|
43
|
+
if domain is not None:
|
|
44
|
+
warnings.warn("""Field `domain` has been deprecated from provider version 1.243.0.""", DeprecationWarning)
|
|
45
|
+
pulumi.log.warn("""domain is deprecated: Field `domain` has been deprecated from provider version 1.243.0.""")
|
|
43
46
|
if domain is not None:
|
|
44
47
|
pulumi.set(__self__, "domain", domain)
|
|
48
|
+
if granularity is not None:
|
|
49
|
+
warnings.warn("""Field `granularity` has been deprecated from provider version 1.243.0.""", DeprecationWarning)
|
|
50
|
+
pulumi.log.warn("""granularity is deprecated: Field `granularity` has been deprecated from provider version 1.243.0.""")
|
|
45
51
|
if granularity is not None:
|
|
46
52
|
pulumi.set(__self__, "granularity", granularity)
|
|
47
53
|
if on_unable_to_redeploy_failed_instance is not None:
|
|
@@ -53,7 +59,7 @@ class EcsDeploymentSetArgs:
|
|
|
53
59
|
@pulumi.getter(name="deploymentSetName")
|
|
54
60
|
def deployment_set_name(self) -> Optional[pulumi.Input[str]]:
|
|
55
61
|
"""
|
|
56
|
-
The name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
62
|
+
The name of the deployment set. The name must be `2` to `128` characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
57
63
|
"""
|
|
58
64
|
return pulumi.get(self, "deployment_set_name")
|
|
59
65
|
|
|
@@ -65,7 +71,7 @@ class EcsDeploymentSetArgs:
|
|
|
65
71
|
@pulumi.getter
|
|
66
72
|
def description(self) -> Optional[pulumi.Input[str]]:
|
|
67
73
|
"""
|
|
68
|
-
The description of the deployment set. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
74
|
+
The description of the deployment set. The description must be `2` to `256` characters in length and cannot start with `http://` or `https://`.
|
|
69
75
|
"""
|
|
70
76
|
return pulumi.get(self, "description")
|
|
71
77
|
|
|
@@ -75,9 +81,10 @@ class EcsDeploymentSetArgs:
|
|
|
75
81
|
|
|
76
82
|
@property
|
|
77
83
|
@pulumi.getter
|
|
84
|
+
@_utilities.deprecated("""Field `domain` has been deprecated from provider version 1.243.0.""")
|
|
78
85
|
def domain(self) -> Optional[pulumi.Input[str]]:
|
|
79
86
|
"""
|
|
80
|
-
|
|
87
|
+
Field `domain` has been deprecated from provider version 1.243.0.
|
|
81
88
|
"""
|
|
82
89
|
return pulumi.get(self, "domain")
|
|
83
90
|
|
|
@@ -87,9 +94,10 @@ class EcsDeploymentSetArgs:
|
|
|
87
94
|
|
|
88
95
|
@property
|
|
89
96
|
@pulumi.getter
|
|
97
|
+
@_utilities.deprecated("""Field `granularity` has been deprecated from provider version 1.243.0.""")
|
|
90
98
|
def granularity(self) -> Optional[pulumi.Input[str]]:
|
|
91
99
|
"""
|
|
92
|
-
|
|
100
|
+
Field `granularity` has been deprecated from provider version 1.243.0.
|
|
93
101
|
"""
|
|
94
102
|
return pulumi.get(self, "granularity")
|
|
95
103
|
|
|
@@ -101,9 +109,9 @@ class EcsDeploymentSetArgs:
|
|
|
101
109
|
@pulumi.getter(name="onUnableToRedeployFailedInstance")
|
|
102
110
|
def on_unable_to_redeploy_failed_instance(self) -> Optional[pulumi.Input[str]]:
|
|
103
111
|
"""
|
|
104
|
-
The
|
|
105
|
-
|
|
106
|
-
|
|
112
|
+
The emergency solution to use in the situation where instances in the deployment set cannot be evenly distributed to different zones due to resource insufficiency after the instances failover. Valid values:
|
|
113
|
+
- `CancelMembershipAndStart` - Removes the instances from the deployment set and starts the instances immediately after they are failed over.
|
|
114
|
+
- `KeepStopped`- Leaves the instances in the Stopped state and starts them after resources are replenished.
|
|
107
115
|
"""
|
|
108
116
|
return pulumi.get(self, "on_unable_to_redeploy_failed_instance")
|
|
109
117
|
|
|
@@ -115,7 +123,7 @@ class EcsDeploymentSetArgs:
|
|
|
115
123
|
@pulumi.getter
|
|
116
124
|
def strategy(self) -> Optional[pulumi.Input[str]]:
|
|
117
125
|
"""
|
|
118
|
-
The deployment strategy. Valid values: `Availability
|
|
126
|
+
The deployment strategy. Default value: `Availability`. Valid values: `Availability`, `AvailabilityGroup`, `LowLatency`.
|
|
119
127
|
"""
|
|
120
128
|
return pulumi.get(self, "strategy")
|
|
121
129
|
|
|
@@ -135,21 +143,27 @@ class _EcsDeploymentSetState:
|
|
|
135
143
|
strategy: Optional[pulumi.Input[str]] = None):
|
|
136
144
|
"""
|
|
137
145
|
Input properties used for looking up and filtering EcsDeploymentSet resources.
|
|
138
|
-
:param pulumi.Input[str] deployment_set_name: The name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
139
|
-
:param pulumi.Input[str] description: The description of the deployment set. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
140
|
-
:param pulumi.Input[str] domain:
|
|
141
|
-
:param pulumi.Input[str] granularity:
|
|
142
|
-
:param pulumi.Input[str] on_unable_to_redeploy_failed_instance: The
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
:param pulumi.Input[str] strategy: The deployment strategy. Valid values: `Availability
|
|
146
|
+
:param pulumi.Input[str] deployment_set_name: The name of the deployment set. The name must be `2` to `128` characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
147
|
+
:param pulumi.Input[str] description: The description of the deployment set. The description must be `2` to `256` characters in length and cannot start with `http://` or `https://`.
|
|
148
|
+
:param pulumi.Input[str] domain: Field `domain` has been deprecated from provider version 1.243.0.
|
|
149
|
+
:param pulumi.Input[str] granularity: Field `granularity` has been deprecated from provider version 1.243.0.
|
|
150
|
+
:param pulumi.Input[str] on_unable_to_redeploy_failed_instance: The emergency solution to use in the situation where instances in the deployment set cannot be evenly distributed to different zones due to resource insufficiency after the instances failover. Valid values:
|
|
151
|
+
- `CancelMembershipAndStart` - Removes the instances from the deployment set and starts the instances immediately after they are failed over.
|
|
152
|
+
- `KeepStopped`- Leaves the instances in the Stopped state and starts them after resources are replenished.
|
|
153
|
+
:param pulumi.Input[str] strategy: The deployment strategy. Default value: `Availability`. Valid values: `Availability`, `AvailabilityGroup`, `LowLatency`.
|
|
146
154
|
"""
|
|
147
155
|
if deployment_set_name is not None:
|
|
148
156
|
pulumi.set(__self__, "deployment_set_name", deployment_set_name)
|
|
149
157
|
if description is not None:
|
|
150
158
|
pulumi.set(__self__, "description", description)
|
|
159
|
+
if domain is not None:
|
|
160
|
+
warnings.warn("""Field `domain` has been deprecated from provider version 1.243.0.""", DeprecationWarning)
|
|
161
|
+
pulumi.log.warn("""domain is deprecated: Field `domain` has been deprecated from provider version 1.243.0.""")
|
|
151
162
|
if domain is not None:
|
|
152
163
|
pulumi.set(__self__, "domain", domain)
|
|
164
|
+
if granularity is not None:
|
|
165
|
+
warnings.warn("""Field `granularity` has been deprecated from provider version 1.243.0.""", DeprecationWarning)
|
|
166
|
+
pulumi.log.warn("""granularity is deprecated: Field `granularity` has been deprecated from provider version 1.243.0.""")
|
|
153
167
|
if granularity is not None:
|
|
154
168
|
pulumi.set(__self__, "granularity", granularity)
|
|
155
169
|
if on_unable_to_redeploy_failed_instance is not None:
|
|
@@ -161,7 +175,7 @@ class _EcsDeploymentSetState:
|
|
|
161
175
|
@pulumi.getter(name="deploymentSetName")
|
|
162
176
|
def deployment_set_name(self) -> Optional[pulumi.Input[str]]:
|
|
163
177
|
"""
|
|
164
|
-
The name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
178
|
+
The name of the deployment set. The name must be `2` to `128` characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
165
179
|
"""
|
|
166
180
|
return pulumi.get(self, "deployment_set_name")
|
|
167
181
|
|
|
@@ -173,7 +187,7 @@ class _EcsDeploymentSetState:
|
|
|
173
187
|
@pulumi.getter
|
|
174
188
|
def description(self) -> Optional[pulumi.Input[str]]:
|
|
175
189
|
"""
|
|
176
|
-
The description of the deployment set. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
190
|
+
The description of the deployment set. The description must be `2` to `256` characters in length and cannot start with `http://` or `https://`.
|
|
177
191
|
"""
|
|
178
192
|
return pulumi.get(self, "description")
|
|
179
193
|
|
|
@@ -183,9 +197,10 @@ class _EcsDeploymentSetState:
|
|
|
183
197
|
|
|
184
198
|
@property
|
|
185
199
|
@pulumi.getter
|
|
200
|
+
@_utilities.deprecated("""Field `domain` has been deprecated from provider version 1.243.0.""")
|
|
186
201
|
def domain(self) -> Optional[pulumi.Input[str]]:
|
|
187
202
|
"""
|
|
188
|
-
|
|
203
|
+
Field `domain` has been deprecated from provider version 1.243.0.
|
|
189
204
|
"""
|
|
190
205
|
return pulumi.get(self, "domain")
|
|
191
206
|
|
|
@@ -195,9 +210,10 @@ class _EcsDeploymentSetState:
|
|
|
195
210
|
|
|
196
211
|
@property
|
|
197
212
|
@pulumi.getter
|
|
213
|
+
@_utilities.deprecated("""Field `granularity` has been deprecated from provider version 1.243.0.""")
|
|
198
214
|
def granularity(self) -> Optional[pulumi.Input[str]]:
|
|
199
215
|
"""
|
|
200
|
-
|
|
216
|
+
Field `granularity` has been deprecated from provider version 1.243.0.
|
|
201
217
|
"""
|
|
202
218
|
return pulumi.get(self, "granularity")
|
|
203
219
|
|
|
@@ -209,9 +225,9 @@ class _EcsDeploymentSetState:
|
|
|
209
225
|
@pulumi.getter(name="onUnableToRedeployFailedInstance")
|
|
210
226
|
def on_unable_to_redeploy_failed_instance(self) -> Optional[pulumi.Input[str]]:
|
|
211
227
|
"""
|
|
212
|
-
The
|
|
213
|
-
|
|
214
|
-
|
|
228
|
+
The emergency solution to use in the situation where instances in the deployment set cannot be evenly distributed to different zones due to resource insufficiency after the instances failover. Valid values:
|
|
229
|
+
- `CancelMembershipAndStart` - Removes the instances from the deployment set and starts the instances immediately after they are failed over.
|
|
230
|
+
- `KeepStopped`- Leaves the instances in the Stopped state and starts them after resources are replenished.
|
|
215
231
|
"""
|
|
216
232
|
return pulumi.get(self, "on_unable_to_redeploy_failed_instance")
|
|
217
233
|
|
|
@@ -223,7 +239,7 @@ class _EcsDeploymentSetState:
|
|
|
223
239
|
@pulumi.getter
|
|
224
240
|
def strategy(self) -> Optional[pulumi.Input[str]]:
|
|
225
241
|
"""
|
|
226
|
-
The deployment strategy. Valid values: `Availability
|
|
242
|
+
The deployment strategy. Default value: `Availability`. Valid values: `Availability`, `AvailabilityGroup`, `LowLatency`.
|
|
227
243
|
"""
|
|
228
244
|
return pulumi.get(self, "strategy")
|
|
229
245
|
|
|
@@ -259,12 +275,14 @@ class EcsDeploymentSet(pulumi.CustomResource):
|
|
|
259
275
|
import pulumi
|
|
260
276
|
import pulumi_alicloud as alicloud
|
|
261
277
|
|
|
278
|
+
config = pulumi.Config()
|
|
279
|
+
name = config.get("name")
|
|
280
|
+
if name is None:
|
|
281
|
+
name = "terraform-example"
|
|
262
282
|
default = alicloud.ecs.EcsDeploymentSet("default",
|
|
263
283
|
strategy="Availability",
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
deployment_set_name="example_value",
|
|
267
|
-
description="example_value")
|
|
284
|
+
deployment_set_name=name,
|
|
285
|
+
description=name)
|
|
268
286
|
```
|
|
269
287
|
|
|
270
288
|
## Import
|
|
@@ -277,14 +295,14 @@ class EcsDeploymentSet(pulumi.CustomResource):
|
|
|
277
295
|
|
|
278
296
|
:param str resource_name: The name of the resource.
|
|
279
297
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
280
|
-
:param pulumi.Input[str] deployment_set_name: The name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
281
|
-
:param pulumi.Input[str] description: The description of the deployment set. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
282
|
-
:param pulumi.Input[str] domain:
|
|
283
|
-
:param pulumi.Input[str] granularity:
|
|
284
|
-
:param pulumi.Input[str] on_unable_to_redeploy_failed_instance: The
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
:param pulumi.Input[str] strategy: The deployment strategy. Valid values: `Availability
|
|
298
|
+
:param pulumi.Input[str] deployment_set_name: The name of the deployment set. The name must be `2` to `128` characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
299
|
+
:param pulumi.Input[str] description: The description of the deployment set. The description must be `2` to `256` characters in length and cannot start with `http://` or `https://`.
|
|
300
|
+
:param pulumi.Input[str] domain: Field `domain` has been deprecated from provider version 1.243.0.
|
|
301
|
+
:param pulumi.Input[str] granularity: Field `granularity` has been deprecated from provider version 1.243.0.
|
|
302
|
+
:param pulumi.Input[str] on_unable_to_redeploy_failed_instance: The emergency solution to use in the situation where instances in the deployment set cannot be evenly distributed to different zones due to resource insufficiency after the instances failover. Valid values:
|
|
303
|
+
- `CancelMembershipAndStart` - Removes the instances from the deployment set and starts the instances immediately after they are failed over.
|
|
304
|
+
- `KeepStopped`- Leaves the instances in the Stopped state and starts them after resources are replenished.
|
|
305
|
+
:param pulumi.Input[str] strategy: The deployment strategy. Default value: `Availability`. Valid values: `Availability`, `AvailabilityGroup`, `LowLatency`.
|
|
288
306
|
"""
|
|
289
307
|
...
|
|
290
308
|
@overload
|
|
@@ -307,12 +325,14 @@ class EcsDeploymentSet(pulumi.CustomResource):
|
|
|
307
325
|
import pulumi
|
|
308
326
|
import pulumi_alicloud as alicloud
|
|
309
327
|
|
|
328
|
+
config = pulumi.Config()
|
|
329
|
+
name = config.get("name")
|
|
330
|
+
if name is None:
|
|
331
|
+
name = "terraform-example"
|
|
310
332
|
default = alicloud.ecs.EcsDeploymentSet("default",
|
|
311
333
|
strategy="Availability",
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
deployment_set_name="example_value",
|
|
315
|
-
description="example_value")
|
|
334
|
+
deployment_set_name=name,
|
|
335
|
+
description=name)
|
|
316
336
|
```
|
|
317
337
|
|
|
318
338
|
## Import
|
|
@@ -382,14 +402,14 @@ class EcsDeploymentSet(pulumi.CustomResource):
|
|
|
382
402
|
:param str resource_name: The unique name of the resulting resource.
|
|
383
403
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
384
404
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
385
|
-
:param pulumi.Input[str] deployment_set_name: The name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
386
|
-
:param pulumi.Input[str] description: The description of the deployment set. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
387
|
-
:param pulumi.Input[str] domain:
|
|
388
|
-
:param pulumi.Input[str] granularity:
|
|
389
|
-
:param pulumi.Input[str] on_unable_to_redeploy_failed_instance: The
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
:param pulumi.Input[str] strategy: The deployment strategy. Valid values: `Availability
|
|
405
|
+
:param pulumi.Input[str] deployment_set_name: The name of the deployment set. The name must be `2` to `128` characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
406
|
+
:param pulumi.Input[str] description: The description of the deployment set. The description must be `2` to `256` characters in length and cannot start with `http://` or `https://`.
|
|
407
|
+
:param pulumi.Input[str] domain: Field `domain` has been deprecated from provider version 1.243.0.
|
|
408
|
+
:param pulumi.Input[str] granularity: Field `granularity` has been deprecated from provider version 1.243.0.
|
|
409
|
+
:param pulumi.Input[str] on_unable_to_redeploy_failed_instance: The emergency solution to use in the situation where instances in the deployment set cannot be evenly distributed to different zones due to resource insufficiency after the instances failover. Valid values:
|
|
410
|
+
- `CancelMembershipAndStart` - Removes the instances from the deployment set and starts the instances immediately after they are failed over.
|
|
411
|
+
- `KeepStopped`- Leaves the instances in the Stopped state and starts them after resources are replenished.
|
|
412
|
+
:param pulumi.Input[str] strategy: The deployment strategy. Default value: `Availability`. Valid values: `Availability`, `AvailabilityGroup`, `LowLatency`.
|
|
393
413
|
"""
|
|
394
414
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
395
415
|
|
|
@@ -407,7 +427,7 @@ class EcsDeploymentSet(pulumi.CustomResource):
|
|
|
407
427
|
@pulumi.getter(name="deploymentSetName")
|
|
408
428
|
def deployment_set_name(self) -> pulumi.Output[Optional[str]]:
|
|
409
429
|
"""
|
|
410
|
-
The name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
430
|
+
The name of the deployment set. The name must be `2` to `128` characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
411
431
|
"""
|
|
412
432
|
return pulumi.get(self, "deployment_set_name")
|
|
413
433
|
|
|
@@ -415,23 +435,25 @@ class EcsDeploymentSet(pulumi.CustomResource):
|
|
|
415
435
|
@pulumi.getter
|
|
416
436
|
def description(self) -> pulumi.Output[Optional[str]]:
|
|
417
437
|
"""
|
|
418
|
-
The description of the deployment set. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
438
|
+
The description of the deployment set. The description must be `2` to `256` characters in length and cannot start with `http://` or `https://`.
|
|
419
439
|
"""
|
|
420
440
|
return pulumi.get(self, "description")
|
|
421
441
|
|
|
422
442
|
@property
|
|
423
443
|
@pulumi.getter
|
|
424
|
-
|
|
444
|
+
@_utilities.deprecated("""Field `domain` has been deprecated from provider version 1.243.0.""")
|
|
445
|
+
def domain(self) -> pulumi.Output[str]:
|
|
425
446
|
"""
|
|
426
|
-
|
|
447
|
+
Field `domain` has been deprecated from provider version 1.243.0.
|
|
427
448
|
"""
|
|
428
449
|
return pulumi.get(self, "domain")
|
|
429
450
|
|
|
430
451
|
@property
|
|
431
452
|
@pulumi.getter
|
|
432
|
-
|
|
453
|
+
@_utilities.deprecated("""Field `granularity` has been deprecated from provider version 1.243.0.""")
|
|
454
|
+
def granularity(self) -> pulumi.Output[str]:
|
|
433
455
|
"""
|
|
434
|
-
|
|
456
|
+
Field `granularity` has been deprecated from provider version 1.243.0.
|
|
435
457
|
"""
|
|
436
458
|
return pulumi.get(self, "granularity")
|
|
437
459
|
|
|
@@ -439,17 +461,17 @@ class EcsDeploymentSet(pulumi.CustomResource):
|
|
|
439
461
|
@pulumi.getter(name="onUnableToRedeployFailedInstance")
|
|
440
462
|
def on_unable_to_redeploy_failed_instance(self) -> pulumi.Output[Optional[str]]:
|
|
441
463
|
"""
|
|
442
|
-
The
|
|
443
|
-
|
|
444
|
-
|
|
464
|
+
The emergency solution to use in the situation where instances in the deployment set cannot be evenly distributed to different zones due to resource insufficiency after the instances failover. Valid values:
|
|
465
|
+
- `CancelMembershipAndStart` - Removes the instances from the deployment set and starts the instances immediately after they are failed over.
|
|
466
|
+
- `KeepStopped`- Leaves the instances in the Stopped state and starts them after resources are replenished.
|
|
445
467
|
"""
|
|
446
468
|
return pulumi.get(self, "on_unable_to_redeploy_failed_instance")
|
|
447
469
|
|
|
448
470
|
@property
|
|
449
471
|
@pulumi.getter
|
|
450
|
-
def strategy(self) -> pulumi.Output[
|
|
472
|
+
def strategy(self) -> pulumi.Output[str]:
|
|
451
473
|
"""
|
|
452
|
-
The deployment strategy. Valid values: `Availability
|
|
474
|
+
The deployment strategy. Default value: `Availability`. Valid values: `Availability`, `AvailabilityGroup`, `LowLatency`.
|
|
453
475
|
"""
|
|
454
476
|
return pulumi.get(self, "strategy")
|
|
455
477
|
|
pulumi_alicloud/ecs/ecs_disk.py
CHANGED
|
@@ -1453,7 +1453,7 @@ class EcsDisk(pulumi.CustomResource):
|
|
|
1453
1453
|
|
|
1454
1454
|
@property
|
|
1455
1455
|
@pulumi.getter(name="kmsKeyId")
|
|
1456
|
-
def kms_key_id(self) -> pulumi.Output[
|
|
1456
|
+
def kms_key_id(self) -> pulumi.Output[str]:
|
|
1457
1457
|
"""
|
|
1458
1458
|
The ID of the Key Management Service (KMS) key that is used for the disk. **NOTE:** `kms_key_id` is only valid when `encrypted` is `true`.
|
|
1459
1459
|
"""
|