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
|
@@ -20,6 +20,8 @@ __all__ = ['Ipv6AddressArgs', 'Ipv6Address']
|
|
|
20
20
|
class Ipv6AddressArgs:
|
|
21
21
|
def __init__(__self__, *,
|
|
22
22
|
vswitch_id: pulumi.Input[str],
|
|
23
|
+
address_type: Optional[pulumi.Input[str]] = None,
|
|
24
|
+
ipv6_address: Optional[pulumi.Input[str]] = None,
|
|
23
25
|
ipv6_address_description: Optional[pulumi.Input[str]] = None,
|
|
24
26
|
ipv6_address_name: Optional[pulumi.Input[str]] = None,
|
|
25
27
|
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
@@ -27,12 +29,20 @@ class Ipv6AddressArgs:
|
|
|
27
29
|
"""
|
|
28
30
|
The set of arguments for constructing a Ipv6Address resource.
|
|
29
31
|
:param pulumi.Input[str] vswitch_id: The VSwitchId of the IPv6 address.
|
|
32
|
+
:param pulumi.Input[str] address_type: The type of the IPv6 address. Value:
|
|
33
|
+
- `IPv6Address` (default): indicates that the current instance is a single IPv6 address.
|
|
34
|
+
- `IPv6Prefix`: indicates that the current instance is a contiguous block of IPv6 addresses.
|
|
35
|
+
:param pulumi.Input[str] ipv6_address: IPv6 address
|
|
30
36
|
:param pulumi.Input[str] ipv6_address_description: The description of the IPv6 Address. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
|
|
31
37
|
:param pulumi.Input[str] ipv6_address_name: The name of the IPv6 Address. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with http:// or https://.
|
|
32
38
|
:param pulumi.Input[str] resource_group_id: The ID of the resource group to which the instance belongs.
|
|
33
39
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tags for the resource.
|
|
34
40
|
"""
|
|
35
41
|
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
42
|
+
if address_type is not None:
|
|
43
|
+
pulumi.set(__self__, "address_type", address_type)
|
|
44
|
+
if ipv6_address is not None:
|
|
45
|
+
pulumi.set(__self__, "ipv6_address", ipv6_address)
|
|
36
46
|
if ipv6_address_description is not None:
|
|
37
47
|
pulumi.set(__self__, "ipv6_address_description", ipv6_address_description)
|
|
38
48
|
if ipv6_address_name is not None:
|
|
@@ -54,6 +64,32 @@ class Ipv6AddressArgs:
|
|
|
54
64
|
def vswitch_id(self, value: pulumi.Input[str]):
|
|
55
65
|
pulumi.set(self, "vswitch_id", value)
|
|
56
66
|
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter(name="addressType")
|
|
69
|
+
def address_type(self) -> Optional[pulumi.Input[str]]:
|
|
70
|
+
"""
|
|
71
|
+
The type of the IPv6 address. Value:
|
|
72
|
+
- `IPv6Address` (default): indicates that the current instance is a single IPv6 address.
|
|
73
|
+
- `IPv6Prefix`: indicates that the current instance is a contiguous block of IPv6 addresses.
|
|
74
|
+
"""
|
|
75
|
+
return pulumi.get(self, "address_type")
|
|
76
|
+
|
|
77
|
+
@address_type.setter
|
|
78
|
+
def address_type(self, value: Optional[pulumi.Input[str]]):
|
|
79
|
+
pulumi.set(self, "address_type", value)
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter(name="ipv6Address")
|
|
83
|
+
def ipv6_address(self) -> Optional[pulumi.Input[str]]:
|
|
84
|
+
"""
|
|
85
|
+
IPv6 address
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "ipv6_address")
|
|
88
|
+
|
|
89
|
+
@ipv6_address.setter
|
|
90
|
+
def ipv6_address(self, value: Optional[pulumi.Input[str]]):
|
|
91
|
+
pulumi.set(self, "ipv6_address", value)
|
|
92
|
+
|
|
57
93
|
@property
|
|
58
94
|
@pulumi.getter(name="ipv6AddressDescription")
|
|
59
95
|
def ipv6_address_description(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -106,6 +142,7 @@ class Ipv6AddressArgs:
|
|
|
106
142
|
@pulumi.input_type
|
|
107
143
|
class _Ipv6AddressState:
|
|
108
144
|
def __init__(__self__, *,
|
|
145
|
+
address_type: Optional[pulumi.Input[str]] = None,
|
|
109
146
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
110
147
|
ipv6_address: Optional[pulumi.Input[str]] = None,
|
|
111
148
|
ipv6_address_description: Optional[pulumi.Input[str]] = None,
|
|
@@ -116,8 +153,11 @@ class _Ipv6AddressState:
|
|
|
116
153
|
vswitch_id: Optional[pulumi.Input[str]] = None):
|
|
117
154
|
"""
|
|
118
155
|
Input properties used for looking up and filtering Ipv6Address resources.
|
|
156
|
+
:param pulumi.Input[str] address_type: The type of the IPv6 address. Value:
|
|
157
|
+
- `IPv6Address` (default): indicates that the current instance is a single IPv6 address.
|
|
158
|
+
- `IPv6Prefix`: indicates that the current instance is a contiguous block of IPv6 addresses.
|
|
119
159
|
:param pulumi.Input[str] create_time: The creation time of the resource.
|
|
120
|
-
:param pulumi.Input[str] ipv6_address: IPv6 address
|
|
160
|
+
:param pulumi.Input[str] ipv6_address: IPv6 address
|
|
121
161
|
:param pulumi.Input[str] ipv6_address_description: The description of the IPv6 Address. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
|
|
122
162
|
:param pulumi.Input[str] ipv6_address_name: The name of the IPv6 Address. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with http:// or https://.
|
|
123
163
|
:param pulumi.Input[str] resource_group_id: The ID of the resource group to which the instance belongs.
|
|
@@ -125,6 +165,8 @@ class _Ipv6AddressState:
|
|
|
125
165
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tags for the resource.
|
|
126
166
|
:param pulumi.Input[str] vswitch_id: The VSwitchId of the IPv6 address.
|
|
127
167
|
"""
|
|
168
|
+
if address_type is not None:
|
|
169
|
+
pulumi.set(__self__, "address_type", address_type)
|
|
128
170
|
if create_time is not None:
|
|
129
171
|
pulumi.set(__self__, "create_time", create_time)
|
|
130
172
|
if ipv6_address is not None:
|
|
@@ -142,6 +184,20 @@ class _Ipv6AddressState:
|
|
|
142
184
|
if vswitch_id is not None:
|
|
143
185
|
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
144
186
|
|
|
187
|
+
@property
|
|
188
|
+
@pulumi.getter(name="addressType")
|
|
189
|
+
def address_type(self) -> Optional[pulumi.Input[str]]:
|
|
190
|
+
"""
|
|
191
|
+
The type of the IPv6 address. Value:
|
|
192
|
+
- `IPv6Address` (default): indicates that the current instance is a single IPv6 address.
|
|
193
|
+
- `IPv6Prefix`: indicates that the current instance is a contiguous block of IPv6 addresses.
|
|
194
|
+
"""
|
|
195
|
+
return pulumi.get(self, "address_type")
|
|
196
|
+
|
|
197
|
+
@address_type.setter
|
|
198
|
+
def address_type(self, value: Optional[pulumi.Input[str]]):
|
|
199
|
+
pulumi.set(self, "address_type", value)
|
|
200
|
+
|
|
145
201
|
@property
|
|
146
202
|
@pulumi.getter(name="createTime")
|
|
147
203
|
def create_time(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -158,7 +214,7 @@ class _Ipv6AddressState:
|
|
|
158
214
|
@pulumi.getter(name="ipv6Address")
|
|
159
215
|
def ipv6_address(self) -> Optional[pulumi.Input[str]]:
|
|
160
216
|
"""
|
|
161
|
-
IPv6 address
|
|
217
|
+
IPv6 address
|
|
162
218
|
"""
|
|
163
219
|
return pulumi.get(self, "ipv6_address")
|
|
164
220
|
|
|
@@ -244,6 +300,8 @@ class Ipv6Address(pulumi.CustomResource):
|
|
|
244
300
|
def __init__(__self__,
|
|
245
301
|
resource_name: str,
|
|
246
302
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
303
|
+
address_type: Optional[pulumi.Input[str]] = None,
|
|
304
|
+
ipv6_address: Optional[pulumi.Input[str]] = None,
|
|
247
305
|
ipv6_address_description: Optional[pulumi.Input[str]] = None,
|
|
248
306
|
ipv6_address_name: Optional[pulumi.Input[str]] = None,
|
|
249
307
|
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
@@ -299,6 +357,10 @@ class Ipv6Address(pulumi.CustomResource):
|
|
|
299
357
|
|
|
300
358
|
:param str resource_name: The name of the resource.
|
|
301
359
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
360
|
+
:param pulumi.Input[str] address_type: The type of the IPv6 address. Value:
|
|
361
|
+
- `IPv6Address` (default): indicates that the current instance is a single IPv6 address.
|
|
362
|
+
- `IPv6Prefix`: indicates that the current instance is a contiguous block of IPv6 addresses.
|
|
363
|
+
:param pulumi.Input[str] ipv6_address: IPv6 address
|
|
302
364
|
:param pulumi.Input[str] ipv6_address_description: The description of the IPv6 Address. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
|
|
303
365
|
:param pulumi.Input[str] ipv6_address_name: The name of the IPv6 Address. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with http:// or https://.
|
|
304
366
|
:param pulumi.Input[str] resource_group_id: The ID of the resource group to which the instance belongs.
|
|
@@ -373,6 +435,8 @@ class Ipv6Address(pulumi.CustomResource):
|
|
|
373
435
|
def _internal_init(__self__,
|
|
374
436
|
resource_name: str,
|
|
375
437
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
438
|
+
address_type: Optional[pulumi.Input[str]] = None,
|
|
439
|
+
ipv6_address: Optional[pulumi.Input[str]] = None,
|
|
376
440
|
ipv6_address_description: Optional[pulumi.Input[str]] = None,
|
|
377
441
|
ipv6_address_name: Optional[pulumi.Input[str]] = None,
|
|
378
442
|
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
@@ -387,6 +451,8 @@ class Ipv6Address(pulumi.CustomResource):
|
|
|
387
451
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
388
452
|
__props__ = Ipv6AddressArgs.__new__(Ipv6AddressArgs)
|
|
389
453
|
|
|
454
|
+
__props__.__dict__["address_type"] = address_type
|
|
455
|
+
__props__.__dict__["ipv6_address"] = ipv6_address
|
|
390
456
|
__props__.__dict__["ipv6_address_description"] = ipv6_address_description
|
|
391
457
|
__props__.__dict__["ipv6_address_name"] = ipv6_address_name
|
|
392
458
|
__props__.__dict__["resource_group_id"] = resource_group_id
|
|
@@ -395,7 +461,6 @@ class Ipv6Address(pulumi.CustomResource):
|
|
|
395
461
|
raise TypeError("Missing required property 'vswitch_id'")
|
|
396
462
|
__props__.__dict__["vswitch_id"] = vswitch_id
|
|
397
463
|
__props__.__dict__["create_time"] = None
|
|
398
|
-
__props__.__dict__["ipv6_address"] = None
|
|
399
464
|
__props__.__dict__["status"] = None
|
|
400
465
|
super(Ipv6Address, __self__).__init__(
|
|
401
466
|
'alicloud:vpc/ipv6Address:Ipv6Address',
|
|
@@ -407,6 +472,7 @@ class Ipv6Address(pulumi.CustomResource):
|
|
|
407
472
|
def get(resource_name: str,
|
|
408
473
|
id: pulumi.Input[str],
|
|
409
474
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
475
|
+
address_type: Optional[pulumi.Input[str]] = None,
|
|
410
476
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
411
477
|
ipv6_address: Optional[pulumi.Input[str]] = None,
|
|
412
478
|
ipv6_address_description: Optional[pulumi.Input[str]] = None,
|
|
@@ -422,8 +488,11 @@ class Ipv6Address(pulumi.CustomResource):
|
|
|
422
488
|
:param str resource_name: The unique name of the resulting resource.
|
|
423
489
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
424
490
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
491
|
+
:param pulumi.Input[str] address_type: The type of the IPv6 address. Value:
|
|
492
|
+
- `IPv6Address` (default): indicates that the current instance is a single IPv6 address.
|
|
493
|
+
- `IPv6Prefix`: indicates that the current instance is a contiguous block of IPv6 addresses.
|
|
425
494
|
:param pulumi.Input[str] create_time: The creation time of the resource.
|
|
426
|
-
:param pulumi.Input[str] ipv6_address: IPv6 address
|
|
495
|
+
:param pulumi.Input[str] ipv6_address: IPv6 address
|
|
427
496
|
:param pulumi.Input[str] ipv6_address_description: The description of the IPv6 Address. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
|
|
428
497
|
:param pulumi.Input[str] ipv6_address_name: The name of the IPv6 Address. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with http:// or https://.
|
|
429
498
|
:param pulumi.Input[str] resource_group_id: The ID of the resource group to which the instance belongs.
|
|
@@ -435,6 +504,7 @@ class Ipv6Address(pulumi.CustomResource):
|
|
|
435
504
|
|
|
436
505
|
__props__ = _Ipv6AddressState.__new__(_Ipv6AddressState)
|
|
437
506
|
|
|
507
|
+
__props__.__dict__["address_type"] = address_type
|
|
438
508
|
__props__.__dict__["create_time"] = create_time
|
|
439
509
|
__props__.__dict__["ipv6_address"] = ipv6_address
|
|
440
510
|
__props__.__dict__["ipv6_address_description"] = ipv6_address_description
|
|
@@ -445,6 +515,16 @@ class Ipv6Address(pulumi.CustomResource):
|
|
|
445
515
|
__props__.__dict__["vswitch_id"] = vswitch_id
|
|
446
516
|
return Ipv6Address(resource_name, opts=opts, __props__=__props__)
|
|
447
517
|
|
|
518
|
+
@property
|
|
519
|
+
@pulumi.getter(name="addressType")
|
|
520
|
+
def address_type(self) -> pulumi.Output[str]:
|
|
521
|
+
"""
|
|
522
|
+
The type of the IPv6 address. Value:
|
|
523
|
+
- `IPv6Address` (default): indicates that the current instance is a single IPv6 address.
|
|
524
|
+
- `IPv6Prefix`: indicates that the current instance is a contiguous block of IPv6 addresses.
|
|
525
|
+
"""
|
|
526
|
+
return pulumi.get(self, "address_type")
|
|
527
|
+
|
|
448
528
|
@property
|
|
449
529
|
@pulumi.getter(name="createTime")
|
|
450
530
|
def create_time(self) -> pulumi.Output[str]:
|
|
@@ -457,7 +537,7 @@ class Ipv6Address(pulumi.CustomResource):
|
|
|
457
537
|
@pulumi.getter(name="ipv6Address")
|
|
458
538
|
def ipv6_address(self) -> pulumi.Output[str]:
|
|
459
539
|
"""
|
|
460
|
-
IPv6 address
|
|
540
|
+
IPv6 address
|
|
461
541
|
"""
|
|
462
542
|
return pulumi.get(self, "ipv6_address")
|
|
463
543
|
|
|
@@ -793,6 +793,10 @@ class NatGateway(pulumi.CustomResource):
|
|
|
793
793
|
> **NOTE:** From version 1.7.1, this resource has deprecated bandwidth packages.
|
|
794
794
|
But, in order to manage stock bandwidth packages, version 1.13.0 re-support configuring 'bandwidth_packages'.
|
|
795
795
|
|
|
796
|
+
> **NOTE:** When you create an enhanced NAT gateway for the first time, the system automatically creates the service-linked role AliyunServiceRoleForNatgw. Then, the system attaches the permission policy AliyunServiceRolePolicyForNatgw to the role. This allows the NAT gateway to access other resources on Alibaba Cloud. For more information, see Service-linked roles.
|
|
797
|
+
|
|
798
|
+
> **NOTE:** After you create an enhanced Internet NAT gateway, a route entry is automatically added to the route table of the VPC. The destination CIDR block of the route entry is 0.0.0.0/0 and the next hop is the NAT gateway. This ensures that traffic is routed to the NAT gateway.
|
|
799
|
+
|
|
796
800
|
> **NOTE:** Available since v1.37.0.
|
|
797
801
|
|
|
798
802
|
## Example Usage
|
|
@@ -905,6 +909,10 @@ class NatGateway(pulumi.CustomResource):
|
|
|
905
909
|
> **NOTE:** From version 1.7.1, this resource has deprecated bandwidth packages.
|
|
906
910
|
But, in order to manage stock bandwidth packages, version 1.13.0 re-support configuring 'bandwidth_packages'.
|
|
907
911
|
|
|
912
|
+
> **NOTE:** When you create an enhanced NAT gateway for the first time, the system automatically creates the service-linked role AliyunServiceRoleForNatgw. Then, the system attaches the permission policy AliyunServiceRolePolicyForNatgw to the role. This allows the NAT gateway to access other resources on Alibaba Cloud. For more information, see Service-linked roles.
|
|
913
|
+
|
|
914
|
+
> **NOTE:** After you create an enhanced Internet NAT gateway, a route entry is automatically added to the route table of the VPC. The destination CIDR block of the route entry is 0.0.0.0/0 and the next hop is the NAT gateway. This ensures that traffic is routed to the NAT gateway.
|
|
915
|
+
|
|
908
916
|
> **NOTE:** Available since v1.37.0.
|
|
909
917
|
|
|
910
918
|
## Example Usage
|
pulumi_alicloud/vpc/outputs.py
CHANGED
|
@@ -29,6 +29,9 @@ __all__ = [
|
|
|
29
29
|
'PrefixListPrefixListAssociation',
|
|
30
30
|
'TrafficMirrorFilterEgressRule',
|
|
31
31
|
'TrafficMirrorFilterIngressRule',
|
|
32
|
+
'VPCRouteEntryNextHop',
|
|
33
|
+
'VPCRouteEntryNextHopNextHopRelatedInfo',
|
|
34
|
+
'VPCRouteEntryRoutePublishTarget',
|
|
32
35
|
'GetBgpGroupsGroupResult',
|
|
33
36
|
'GetBgpNetworksNetworkResult',
|
|
34
37
|
'GetBgpPeersPeerResult',
|
|
@@ -1149,6 +1152,235 @@ class TrafficMirrorFilterIngressRule(dict):
|
|
|
1149
1152
|
return pulumi.get(self, "traffic_mirror_filter_rule_status")
|
|
1150
1153
|
|
|
1151
1154
|
|
|
1155
|
+
@pulumi.output_type
|
|
1156
|
+
class VPCRouteEntryNextHop(dict):
|
|
1157
|
+
@staticmethod
|
|
1158
|
+
def __key_warning(key: str):
|
|
1159
|
+
suggest = None
|
|
1160
|
+
if key == "nextHopRegionId":
|
|
1161
|
+
suggest = "next_hop_region_id"
|
|
1162
|
+
elif key == "nextHopRelatedInfo":
|
|
1163
|
+
suggest = "next_hop_related_info"
|
|
1164
|
+
elif key == "nexthopId":
|
|
1165
|
+
suggest = "nexthop_id"
|
|
1166
|
+
elif key == "nexthopType":
|
|
1167
|
+
suggest = "nexthop_type"
|
|
1168
|
+
|
|
1169
|
+
if suggest:
|
|
1170
|
+
pulumi.log.warn(f"Key '{key}' not found in VPCRouteEntryNextHop. Access the value via the '{suggest}' property getter instead.")
|
|
1171
|
+
|
|
1172
|
+
def __getitem__(self, key: str) -> Any:
|
|
1173
|
+
VPCRouteEntryNextHop.__key_warning(key)
|
|
1174
|
+
return super().__getitem__(key)
|
|
1175
|
+
|
|
1176
|
+
def get(self, key: str, default = None) -> Any:
|
|
1177
|
+
VPCRouteEntryNextHop.__key_warning(key)
|
|
1178
|
+
return super().get(key, default)
|
|
1179
|
+
|
|
1180
|
+
def __init__(__self__, *,
|
|
1181
|
+
enabled: Optional[int] = None,
|
|
1182
|
+
next_hop_region_id: Optional[str] = None,
|
|
1183
|
+
next_hop_related_info: Optional['outputs.VPCRouteEntryNextHopNextHopRelatedInfo'] = None,
|
|
1184
|
+
nexthop_id: Optional[str] = None,
|
|
1185
|
+
nexthop_type: Optional[str] = None,
|
|
1186
|
+
weight: Optional[int] = None):
|
|
1187
|
+
"""
|
|
1188
|
+
:param int enabled: Whether the route is available.
|
|
1189
|
+
:param str next_hop_region_id: The region of the next instance.
|
|
1190
|
+
:param 'VPCRouteEntryNextHopNextHopRelatedInfoArgs' next_hop_related_info: Next hop information.
|
|
1191
|
+
:param str nexthop_id: ID of next hop
|
|
1192
|
+
:param str nexthop_type: type of next hop
|
|
1193
|
+
:param int weight: The weight of the route entry.
|
|
1194
|
+
"""
|
|
1195
|
+
if enabled is not None:
|
|
1196
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
1197
|
+
if next_hop_region_id is not None:
|
|
1198
|
+
pulumi.set(__self__, "next_hop_region_id", next_hop_region_id)
|
|
1199
|
+
if next_hop_related_info is not None:
|
|
1200
|
+
pulumi.set(__self__, "next_hop_related_info", next_hop_related_info)
|
|
1201
|
+
if nexthop_id is not None:
|
|
1202
|
+
pulumi.set(__self__, "nexthop_id", nexthop_id)
|
|
1203
|
+
if nexthop_type is not None:
|
|
1204
|
+
pulumi.set(__self__, "nexthop_type", nexthop_type)
|
|
1205
|
+
if weight is not None:
|
|
1206
|
+
pulumi.set(__self__, "weight", weight)
|
|
1207
|
+
|
|
1208
|
+
@property
|
|
1209
|
+
@pulumi.getter
|
|
1210
|
+
def enabled(self) -> Optional[int]:
|
|
1211
|
+
"""
|
|
1212
|
+
Whether the route is available.
|
|
1213
|
+
"""
|
|
1214
|
+
return pulumi.get(self, "enabled")
|
|
1215
|
+
|
|
1216
|
+
@property
|
|
1217
|
+
@pulumi.getter(name="nextHopRegionId")
|
|
1218
|
+
def next_hop_region_id(self) -> Optional[str]:
|
|
1219
|
+
"""
|
|
1220
|
+
The region of the next instance.
|
|
1221
|
+
"""
|
|
1222
|
+
return pulumi.get(self, "next_hop_region_id")
|
|
1223
|
+
|
|
1224
|
+
@property
|
|
1225
|
+
@pulumi.getter(name="nextHopRelatedInfo")
|
|
1226
|
+
def next_hop_related_info(self) -> Optional['outputs.VPCRouteEntryNextHopNextHopRelatedInfo']:
|
|
1227
|
+
"""
|
|
1228
|
+
Next hop information.
|
|
1229
|
+
"""
|
|
1230
|
+
return pulumi.get(self, "next_hop_related_info")
|
|
1231
|
+
|
|
1232
|
+
@property
|
|
1233
|
+
@pulumi.getter(name="nexthopId")
|
|
1234
|
+
def nexthop_id(self) -> Optional[str]:
|
|
1235
|
+
"""
|
|
1236
|
+
ID of next hop
|
|
1237
|
+
"""
|
|
1238
|
+
return pulumi.get(self, "nexthop_id")
|
|
1239
|
+
|
|
1240
|
+
@property
|
|
1241
|
+
@pulumi.getter(name="nexthopType")
|
|
1242
|
+
def nexthop_type(self) -> Optional[str]:
|
|
1243
|
+
"""
|
|
1244
|
+
type of next hop
|
|
1245
|
+
"""
|
|
1246
|
+
return pulumi.get(self, "nexthop_type")
|
|
1247
|
+
|
|
1248
|
+
@property
|
|
1249
|
+
@pulumi.getter
|
|
1250
|
+
def weight(self) -> Optional[int]:
|
|
1251
|
+
"""
|
|
1252
|
+
The weight of the route entry.
|
|
1253
|
+
"""
|
|
1254
|
+
return pulumi.get(self, "weight")
|
|
1255
|
+
|
|
1256
|
+
|
|
1257
|
+
@pulumi.output_type
|
|
1258
|
+
class VPCRouteEntryNextHopNextHopRelatedInfo(dict):
|
|
1259
|
+
@staticmethod
|
|
1260
|
+
def __key_warning(key: str):
|
|
1261
|
+
suggest = None
|
|
1262
|
+
if key == "instanceId":
|
|
1263
|
+
suggest = "instance_id"
|
|
1264
|
+
elif key == "instanceType":
|
|
1265
|
+
suggest = "instance_type"
|
|
1266
|
+
elif key == "regionId":
|
|
1267
|
+
suggest = "region_id"
|
|
1268
|
+
|
|
1269
|
+
if suggest:
|
|
1270
|
+
pulumi.log.warn(f"Key '{key}' not found in VPCRouteEntryNextHopNextHopRelatedInfo. Access the value via the '{suggest}' property getter instead.")
|
|
1271
|
+
|
|
1272
|
+
def __getitem__(self, key: str) -> Any:
|
|
1273
|
+
VPCRouteEntryNextHopNextHopRelatedInfo.__key_warning(key)
|
|
1274
|
+
return super().__getitem__(key)
|
|
1275
|
+
|
|
1276
|
+
def get(self, key: str, default = None) -> Any:
|
|
1277
|
+
VPCRouteEntryNextHopNextHopRelatedInfo.__key_warning(key)
|
|
1278
|
+
return super().get(key, default)
|
|
1279
|
+
|
|
1280
|
+
def __init__(__self__, *,
|
|
1281
|
+
instance_id: Optional[str] = None,
|
|
1282
|
+
instance_type: Optional[str] = None,
|
|
1283
|
+
region_id: Optional[str] = None):
|
|
1284
|
+
"""
|
|
1285
|
+
:param str instance_id: InstanceId
|
|
1286
|
+
:param str instance_type: InstanceType
|
|
1287
|
+
:param str region_id: The region of the instance associated with the next hop.
|
|
1288
|
+
"""
|
|
1289
|
+
if instance_id is not None:
|
|
1290
|
+
pulumi.set(__self__, "instance_id", instance_id)
|
|
1291
|
+
if instance_type is not None:
|
|
1292
|
+
pulumi.set(__self__, "instance_type", instance_type)
|
|
1293
|
+
if region_id is not None:
|
|
1294
|
+
pulumi.set(__self__, "region_id", region_id)
|
|
1295
|
+
|
|
1296
|
+
@property
|
|
1297
|
+
@pulumi.getter(name="instanceId")
|
|
1298
|
+
def instance_id(self) -> Optional[str]:
|
|
1299
|
+
"""
|
|
1300
|
+
InstanceId
|
|
1301
|
+
"""
|
|
1302
|
+
return pulumi.get(self, "instance_id")
|
|
1303
|
+
|
|
1304
|
+
@property
|
|
1305
|
+
@pulumi.getter(name="instanceType")
|
|
1306
|
+
def instance_type(self) -> Optional[str]:
|
|
1307
|
+
"""
|
|
1308
|
+
InstanceType
|
|
1309
|
+
"""
|
|
1310
|
+
return pulumi.get(self, "instance_type")
|
|
1311
|
+
|
|
1312
|
+
@property
|
|
1313
|
+
@pulumi.getter(name="regionId")
|
|
1314
|
+
def region_id(self) -> Optional[str]:
|
|
1315
|
+
"""
|
|
1316
|
+
The region of the instance associated with the next hop.
|
|
1317
|
+
"""
|
|
1318
|
+
return pulumi.get(self, "region_id")
|
|
1319
|
+
|
|
1320
|
+
|
|
1321
|
+
@pulumi.output_type
|
|
1322
|
+
class VPCRouteEntryRoutePublishTarget(dict):
|
|
1323
|
+
@staticmethod
|
|
1324
|
+
def __key_warning(key: str):
|
|
1325
|
+
suggest = None
|
|
1326
|
+
if key == "targetType":
|
|
1327
|
+
suggest = "target_type"
|
|
1328
|
+
elif key == "publishStatus":
|
|
1329
|
+
suggest = "publish_status"
|
|
1330
|
+
elif key == "targetInstanceId":
|
|
1331
|
+
suggest = "target_instance_id"
|
|
1332
|
+
|
|
1333
|
+
if suggest:
|
|
1334
|
+
pulumi.log.warn(f"Key '{key}' not found in VPCRouteEntryRoutePublishTarget. Access the value via the '{suggest}' property getter instead.")
|
|
1335
|
+
|
|
1336
|
+
def __getitem__(self, key: str) -> Any:
|
|
1337
|
+
VPCRouteEntryRoutePublishTarget.__key_warning(key)
|
|
1338
|
+
return super().__getitem__(key)
|
|
1339
|
+
|
|
1340
|
+
def get(self, key: str, default = None) -> Any:
|
|
1341
|
+
VPCRouteEntryRoutePublishTarget.__key_warning(key)
|
|
1342
|
+
return super().get(key, default)
|
|
1343
|
+
|
|
1344
|
+
def __init__(__self__, *,
|
|
1345
|
+
target_type: str,
|
|
1346
|
+
publish_status: Optional[str] = None,
|
|
1347
|
+
target_instance_id: Optional[str] = None):
|
|
1348
|
+
"""
|
|
1349
|
+
:param str target_type: Route publish target type
|
|
1350
|
+
:param str publish_status: Route Publish Status
|
|
1351
|
+
:param str target_instance_id: Route publish target instance id.
|
|
1352
|
+
"""
|
|
1353
|
+
pulumi.set(__self__, "target_type", target_type)
|
|
1354
|
+
if publish_status is not None:
|
|
1355
|
+
pulumi.set(__self__, "publish_status", publish_status)
|
|
1356
|
+
if target_instance_id is not None:
|
|
1357
|
+
pulumi.set(__self__, "target_instance_id", target_instance_id)
|
|
1358
|
+
|
|
1359
|
+
@property
|
|
1360
|
+
@pulumi.getter(name="targetType")
|
|
1361
|
+
def target_type(self) -> str:
|
|
1362
|
+
"""
|
|
1363
|
+
Route publish target type
|
|
1364
|
+
"""
|
|
1365
|
+
return pulumi.get(self, "target_type")
|
|
1366
|
+
|
|
1367
|
+
@property
|
|
1368
|
+
@pulumi.getter(name="publishStatus")
|
|
1369
|
+
def publish_status(self) -> Optional[str]:
|
|
1370
|
+
"""
|
|
1371
|
+
Route Publish Status
|
|
1372
|
+
"""
|
|
1373
|
+
return pulumi.get(self, "publish_status")
|
|
1374
|
+
|
|
1375
|
+
@property
|
|
1376
|
+
@pulumi.getter(name="targetInstanceId")
|
|
1377
|
+
def target_instance_id(self) -> Optional[str]:
|
|
1378
|
+
"""
|
|
1379
|
+
Route publish target instance id.
|
|
1380
|
+
"""
|
|
1381
|
+
return pulumi.get(self, "target_instance_id")
|
|
1382
|
+
|
|
1383
|
+
|
|
1152
1384
|
@pulumi.output_type
|
|
1153
1385
|
class GetBgpGroupsGroupResult(dict):
|
|
1154
1386
|
def __init__(__self__, *,
|
|
@@ -1956,17 +2188,27 @@ class GetEnhancedNatAvailableZonesZoneResult(dict):
|
|
|
1956
2188
|
def __init__(__self__, *,
|
|
1957
2189
|
local_name: str,
|
|
1958
2190
|
zone_id: str):
|
|
2191
|
+
"""
|
|
2192
|
+
:param str local_name: Name of the available zone.
|
|
2193
|
+
:param str zone_id: The ID of the available zone.
|
|
2194
|
+
"""
|
|
1959
2195
|
pulumi.set(__self__, "local_name", local_name)
|
|
1960
2196
|
pulumi.set(__self__, "zone_id", zone_id)
|
|
1961
2197
|
|
|
1962
2198
|
@property
|
|
1963
2199
|
@pulumi.getter(name="localName")
|
|
1964
2200
|
def local_name(self) -> str:
|
|
2201
|
+
"""
|
|
2202
|
+
Name of the available zone.
|
|
2203
|
+
"""
|
|
1965
2204
|
return pulumi.get(self, "local_name")
|
|
1966
2205
|
|
|
1967
2206
|
@property
|
|
1968
2207
|
@pulumi.getter(name="zoneId")
|
|
1969
2208
|
def zone_id(self) -> str:
|
|
2209
|
+
"""
|
|
2210
|
+
The ID of the available zone.
|
|
2211
|
+
"""
|
|
1970
2212
|
return pulumi.get(self, "zone_id")
|
|
1971
2213
|
|
|
1972
2214
|
|
|
@@ -6629,7 +6871,7 @@ class GetTrafficMirrorFiltersFilterResult(dict):
|
|
|
6629
6871
|
:param str status: The state of the filter. Valid values:`Creating`, `Created`, `Modifying` and `Deleting`. `Creating`: The filter is being created. `Created`: The filter is created. `Modifying`: The filter is being modified. `Deleting`: The filter is being deleted.
|
|
6630
6872
|
:param str traffic_mirror_filter_description: The description of the filter.
|
|
6631
6873
|
:param str traffic_mirror_filter_id: The ID of the filter.
|
|
6632
|
-
:param str traffic_mirror_filter_name: The name of the filter.
|
|
6874
|
+
:param str traffic_mirror_filter_name: The name of the filter. The name must be `2` to `128` characters in length, and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
6633
6875
|
"""
|
|
6634
6876
|
pulumi.set(__self__, "id", id)
|
|
6635
6877
|
pulumi.set(__self__, "status", status)
|
|
@@ -6673,7 +6915,7 @@ class GetTrafficMirrorFiltersFilterResult(dict):
|
|
|
6673
6915
|
@pulumi.getter(name="trafficMirrorFilterName")
|
|
6674
6916
|
def traffic_mirror_filter_name(self) -> str:
|
|
6675
6917
|
"""
|
|
6676
|
-
The name of the filter.
|
|
6918
|
+
The name of the filter. The name must be `2` to `128` characters in length, and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`.
|
|
6677
6919
|
"""
|
|
6678
6920
|
return pulumi.get(self, "traffic_mirror_filter_name")
|
|
6679
6921
|
|