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
|
@@ -97,6 +97,9 @@ class GetSnatEntriesResult:
|
|
|
97
97
|
@property
|
|
98
98
|
@pulumi.getter
|
|
99
99
|
def names(self) -> Sequence[str]:
|
|
100
|
+
"""
|
|
101
|
+
A list of Snat Entries names.
|
|
102
|
+
"""
|
|
100
103
|
return pulumi.get(self, "names")
|
|
101
104
|
|
|
102
105
|
@property
|
|
@@ -183,7 +186,7 @@ def get_snat_entries(ids: Optional[Sequence[str]] = None,
|
|
|
183
186
|
"""
|
|
184
187
|
This data source provides a list of Snat Entries owned by an Alibaba Cloud account.
|
|
185
188
|
|
|
186
|
-
> **NOTE:** Available
|
|
189
|
+
> **NOTE:** Available since 1.37.0+.
|
|
187
190
|
|
|
188
191
|
## Example Usage
|
|
189
192
|
|
|
@@ -269,7 +272,7 @@ def get_snat_entries_output(ids: Optional[pulumi.Input[Optional[Sequence[str]]]]
|
|
|
269
272
|
"""
|
|
270
273
|
This data source provides a list of Snat Entries owned by an Alibaba Cloud account.
|
|
271
274
|
|
|
272
|
-
> **NOTE:** Available
|
|
275
|
+
> **NOTE:** Available since 1.37.0+.
|
|
273
276
|
|
|
274
277
|
## Example Usage
|
|
275
278
|
|
|
@@ -56,6 +56,9 @@ class GetTrafficMirrorFiltersResult:
|
|
|
56
56
|
@property
|
|
57
57
|
@pulumi.getter
|
|
58
58
|
def filters(self) -> Sequence['outputs.GetTrafficMirrorFiltersFilterResult']:
|
|
59
|
+
"""
|
|
60
|
+
A list of Vpc Traffic Mirror Filters. Each element contains the following attributes:
|
|
61
|
+
"""
|
|
59
62
|
return pulumi.get(self, "filters")
|
|
60
63
|
|
|
61
64
|
@property
|
|
@@ -79,6 +82,9 @@ class GetTrafficMirrorFiltersResult:
|
|
|
79
82
|
@property
|
|
80
83
|
@pulumi.getter
|
|
81
84
|
def names(self) -> Sequence[str]:
|
|
85
|
+
"""
|
|
86
|
+
A list of Traffic Mirror Filter names.
|
|
87
|
+
"""
|
|
82
88
|
return pulumi.get(self, "names")
|
|
83
89
|
|
|
84
90
|
@property
|
|
@@ -89,11 +95,17 @@ class GetTrafficMirrorFiltersResult:
|
|
|
89
95
|
@property
|
|
90
96
|
@pulumi.getter
|
|
91
97
|
def status(self) -> Optional[str]:
|
|
98
|
+
"""
|
|
99
|
+
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.
|
|
100
|
+
"""
|
|
92
101
|
return pulumi.get(self, "status")
|
|
93
102
|
|
|
94
103
|
@property
|
|
95
104
|
@pulumi.getter(name="trafficMirrorFilterName")
|
|
96
105
|
def traffic_mirror_filter_name(self) -> Optional[str]:
|
|
106
|
+
"""
|
|
107
|
+
The name of the filter.
|
|
108
|
+
"""
|
|
97
109
|
return pulumi.get(self, "traffic_mirror_filter_name")
|
|
98
110
|
|
|
99
111
|
|
|
@@ -122,7 +134,7 @@ def get_traffic_mirror_filters(ids: Optional[Sequence[str]] = None,
|
|
|
122
134
|
"""
|
|
123
135
|
This data source provides the Vpc Traffic Mirror Filters of the current Alibaba Cloud user.
|
|
124
136
|
|
|
125
|
-
> **NOTE:** Available
|
|
137
|
+
> **NOTE:** Available since v1.140.0.
|
|
126
138
|
|
|
127
139
|
## Example Usage
|
|
128
140
|
|
|
@@ -176,7 +188,7 @@ def get_traffic_mirror_filters_output(ids: Optional[pulumi.Input[Optional[Sequen
|
|
|
176
188
|
"""
|
|
177
189
|
This data source provides the Vpc Traffic Mirror Filters of the current Alibaba Cloud user.
|
|
178
190
|
|
|
179
|
-
> **NOTE:** Available
|
|
191
|
+
> **NOTE:** Available since v1.140.0.
|
|
180
192
|
|
|
181
193
|
## Example Usage
|
|
182
194
|
|
pulumi_alicloud/vpc/ipam_ipam.py
CHANGED
|
@@ -28,7 +28,6 @@ class IpamIpamArgs:
|
|
|
28
28
|
The set of arguments for constructing a IpamIpam resource.
|
|
29
29
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] operating_region_lists: List of IPAM effective regions.
|
|
30
30
|
:param pulumi.Input[str] ipam_description: The description of IPAM.
|
|
31
|
-
|
|
32
31
|
It must be 2 to 256 characters in length and must start with an uppercase letter or a Chinese character, but cannot start with 'http: // 'or 'https. If the description is not filled in, it is blank. The default value is blank.
|
|
33
32
|
:param pulumi.Input[str] ipam_name: The name of the resource.
|
|
34
33
|
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
@@ -61,7 +60,6 @@ class IpamIpamArgs:
|
|
|
61
60
|
def ipam_description(self) -> Optional[pulumi.Input[str]]:
|
|
62
61
|
"""
|
|
63
62
|
The description of IPAM.
|
|
64
|
-
|
|
65
63
|
It must be 2 to 256 characters in length and must start with an uppercase letter or a Chinese character, but cannot start with 'http: // 'or 'https. If the description is not filled in, it is blank. The default value is blank.
|
|
66
64
|
"""
|
|
67
65
|
return pulumi.get(self, "ipam_description")
|
|
@@ -123,7 +121,6 @@ class _IpamIpamState:
|
|
|
123
121
|
Input properties used for looking up and filtering IpamIpam resources.
|
|
124
122
|
:param pulumi.Input[str] create_time: The creation time of the resource.
|
|
125
123
|
:param pulumi.Input[str] ipam_description: The description of IPAM.
|
|
126
|
-
|
|
127
124
|
It must be 2 to 256 characters in length and must start with an uppercase letter or a Chinese character, but cannot start with 'http: // 'or 'https. If the description is not filled in, it is blank. The default value is blank.
|
|
128
125
|
:param pulumi.Input[str] ipam_name: The name of the resource.
|
|
129
126
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] operating_region_lists: List of IPAM effective regions.
|
|
@@ -169,7 +166,6 @@ class _IpamIpamState:
|
|
|
169
166
|
def ipam_description(self) -> Optional[pulumi.Input[str]]:
|
|
170
167
|
"""
|
|
171
168
|
The description of IPAM.
|
|
172
|
-
|
|
173
169
|
It must be 2 to 256 characters in length and must start with an uppercase letter or a Chinese character, but cannot start with 'http: // 'or 'https. If the description is not filled in, it is blank. The default value is blank.
|
|
174
170
|
"""
|
|
175
171
|
return pulumi.get(self, "ipam_description")
|
|
@@ -279,7 +275,7 @@ class IpamIpam(pulumi.CustomResource):
|
|
|
279
275
|
|
|
280
276
|
IP Address Management.
|
|
281
277
|
|
|
282
|
-
For information about Vpc Ipam Ipam and how to use it, see [What is Ipam](https://
|
|
278
|
+
For information about Vpc Ipam Ipam and how to use it, see [What is Ipam](https://next.api.alibabacloud.com/document/VpcIpam/2023-02-28/CreateIpam).
|
|
283
279
|
|
|
284
280
|
> **NOTE:** Available since v1.234.0.
|
|
285
281
|
|
|
@@ -313,7 +309,6 @@ class IpamIpam(pulumi.CustomResource):
|
|
|
313
309
|
:param str resource_name: The name of the resource.
|
|
314
310
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
315
311
|
:param pulumi.Input[str] ipam_description: The description of IPAM.
|
|
316
|
-
|
|
317
312
|
It must be 2 to 256 characters in length and must start with an uppercase letter or a Chinese character, but cannot start with 'http: // 'or 'https. If the description is not filled in, it is blank. The default value is blank.
|
|
318
313
|
:param pulumi.Input[str] ipam_name: The name of the resource.
|
|
319
314
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] operating_region_lists: List of IPAM effective regions.
|
|
@@ -331,7 +326,7 @@ class IpamIpam(pulumi.CustomResource):
|
|
|
331
326
|
|
|
332
327
|
IP Address Management.
|
|
333
328
|
|
|
334
|
-
For information about Vpc Ipam Ipam and how to use it, see [What is Ipam](https://
|
|
329
|
+
For information about Vpc Ipam Ipam and how to use it, see [What is Ipam](https://next.api.alibabacloud.com/document/VpcIpam/2023-02-28/CreateIpam).
|
|
335
330
|
|
|
336
331
|
> **NOTE:** Available since v1.234.0.
|
|
337
332
|
|
|
@@ -430,7 +425,6 @@ class IpamIpam(pulumi.CustomResource):
|
|
|
430
425
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
431
426
|
:param pulumi.Input[str] create_time: The creation time of the resource.
|
|
432
427
|
:param pulumi.Input[str] ipam_description: The description of IPAM.
|
|
433
|
-
|
|
434
428
|
It must be 2 to 256 characters in length and must start with an uppercase letter or a Chinese character, but cannot start with 'http: // 'or 'https. If the description is not filled in, it is blank. The default value is blank.
|
|
435
429
|
:param pulumi.Input[str] ipam_name: The name of the resource.
|
|
436
430
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] operating_region_lists: List of IPAM effective regions.
|
|
@@ -468,7 +462,6 @@ class IpamIpam(pulumi.CustomResource):
|
|
|
468
462
|
def ipam_description(self) -> pulumi.Output[Optional[str]]:
|
|
469
463
|
"""
|
|
470
464
|
The description of IPAM.
|
|
471
|
-
|
|
472
465
|
It must be 2 to 256 characters in length and must start with an uppercase letter or a Chinese character, but cannot start with 'http: // 'or 'https. If the description is not filled in, it is blank. The default value is blank.
|
|
473
466
|
"""
|
|
474
467
|
return pulumi.get(self, "ipam_description")
|
|
@@ -36,19 +36,15 @@ class IpamIpamPoolArgs:
|
|
|
36
36
|
The set of arguments for constructing a IpamIpamPool resource.
|
|
37
37
|
:param pulumi.Input[str] ipam_scope_id: Ipam scope id.
|
|
38
38
|
:param pulumi.Input[int] allocation_default_cidr_mask: The default network mask assigned by the IPAM address pool.
|
|
39
|
-
|
|
40
39
|
IPv4 network mask value range: **0 to 32** bits.
|
|
41
40
|
:param pulumi.Input[int] allocation_max_cidr_mask: The maximum network mask assigned by the IPAM address pool.
|
|
42
|
-
|
|
43
41
|
IPv4 network mask value range: **0 to 32** bits.
|
|
44
42
|
:param pulumi.Input[int] allocation_min_cidr_mask: The minimum Network mask assigned by the IPAM address pool.
|
|
45
|
-
|
|
46
43
|
IPv4 network mask value range: **0 to 32** bits.
|
|
47
44
|
:param pulumi.Input[bool] auto_import: Whether the automatic import function is enabled for the address pool.
|
|
48
45
|
:param pulumi.Input[bool] clear_allocation_default_cidr_mask: Whether to clear the default network mask of the IPAM address pool. Value:
|
|
49
46
|
:param pulumi.Input[str] ip_version: The IP protocol version. Currently, only `IPv4` is supported * *.
|
|
50
47
|
:param pulumi.Input[str] ipam_pool_description: The description of the IPAM address pool.
|
|
51
|
-
|
|
52
48
|
It must be 2 to 256 characters in length and must start with an English letter or a Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
53
49
|
:param pulumi.Input[str] ipam_pool_name: The name of the resource.
|
|
54
50
|
:param pulumi.Input[str] pool_region_id: The effective region of the IPAM address pool.
|
|
@@ -101,7 +97,6 @@ class IpamIpamPoolArgs:
|
|
|
101
97
|
def allocation_default_cidr_mask(self) -> Optional[pulumi.Input[int]]:
|
|
102
98
|
"""
|
|
103
99
|
The default network mask assigned by the IPAM address pool.
|
|
104
|
-
|
|
105
100
|
IPv4 network mask value range: **0 to 32** bits.
|
|
106
101
|
"""
|
|
107
102
|
return pulumi.get(self, "allocation_default_cidr_mask")
|
|
@@ -115,7 +110,6 @@ class IpamIpamPoolArgs:
|
|
|
115
110
|
def allocation_max_cidr_mask(self) -> Optional[pulumi.Input[int]]:
|
|
116
111
|
"""
|
|
117
112
|
The maximum network mask assigned by the IPAM address pool.
|
|
118
|
-
|
|
119
113
|
IPv4 network mask value range: **0 to 32** bits.
|
|
120
114
|
"""
|
|
121
115
|
return pulumi.get(self, "allocation_max_cidr_mask")
|
|
@@ -129,7 +123,6 @@ class IpamIpamPoolArgs:
|
|
|
129
123
|
def allocation_min_cidr_mask(self) -> Optional[pulumi.Input[int]]:
|
|
130
124
|
"""
|
|
131
125
|
The minimum Network mask assigned by the IPAM address pool.
|
|
132
|
-
|
|
133
126
|
IPv4 network mask value range: **0 to 32** bits.
|
|
134
127
|
"""
|
|
135
128
|
return pulumi.get(self, "allocation_min_cidr_mask")
|
|
@@ -179,7 +172,6 @@ class IpamIpamPoolArgs:
|
|
|
179
172
|
def ipam_pool_description(self) -> Optional[pulumi.Input[str]]:
|
|
180
173
|
"""
|
|
181
174
|
The description of the IPAM address pool.
|
|
182
|
-
|
|
183
175
|
It must be 2 to 256 characters in length and must start with an English letter or a Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
184
176
|
"""
|
|
185
177
|
return pulumi.get(self, "ipam_pool_description")
|
|
@@ -273,20 +265,16 @@ class _IpamIpamPoolState:
|
|
|
273
265
|
"""
|
|
274
266
|
Input properties used for looking up and filtering IpamIpamPool resources.
|
|
275
267
|
:param pulumi.Input[int] allocation_default_cidr_mask: The default network mask assigned by the IPAM address pool.
|
|
276
|
-
|
|
277
268
|
IPv4 network mask value range: **0 to 32** bits.
|
|
278
269
|
:param pulumi.Input[int] allocation_max_cidr_mask: The maximum network mask assigned by the IPAM address pool.
|
|
279
|
-
|
|
280
270
|
IPv4 network mask value range: **0 to 32** bits.
|
|
281
271
|
:param pulumi.Input[int] allocation_min_cidr_mask: The minimum Network mask assigned by the IPAM address pool.
|
|
282
|
-
|
|
283
272
|
IPv4 network mask value range: **0 to 32** bits.
|
|
284
273
|
:param pulumi.Input[bool] auto_import: Whether the automatic import function is enabled for the address pool.
|
|
285
274
|
:param pulumi.Input[bool] clear_allocation_default_cidr_mask: Whether to clear the default network mask of the IPAM address pool. Value:
|
|
286
275
|
:param pulumi.Input[str] create_time: The creation time of the resource.
|
|
287
276
|
:param pulumi.Input[str] ip_version: The IP protocol version. Currently, only `IPv4` is supported * *.
|
|
288
277
|
:param pulumi.Input[str] ipam_pool_description: The description of the IPAM address pool.
|
|
289
|
-
|
|
290
278
|
It must be 2 to 256 characters in length and must start with an English letter or a Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
291
279
|
:param pulumi.Input[str] ipam_pool_name: The name of the resource.
|
|
292
280
|
:param pulumi.Input[str] ipam_scope_id: Ipam scope id.
|
|
@@ -337,7 +325,6 @@ class _IpamIpamPoolState:
|
|
|
337
325
|
def allocation_default_cidr_mask(self) -> Optional[pulumi.Input[int]]:
|
|
338
326
|
"""
|
|
339
327
|
The default network mask assigned by the IPAM address pool.
|
|
340
|
-
|
|
341
328
|
IPv4 network mask value range: **0 to 32** bits.
|
|
342
329
|
"""
|
|
343
330
|
return pulumi.get(self, "allocation_default_cidr_mask")
|
|
@@ -351,7 +338,6 @@ class _IpamIpamPoolState:
|
|
|
351
338
|
def allocation_max_cidr_mask(self) -> Optional[pulumi.Input[int]]:
|
|
352
339
|
"""
|
|
353
340
|
The maximum network mask assigned by the IPAM address pool.
|
|
354
|
-
|
|
355
341
|
IPv4 network mask value range: **0 to 32** bits.
|
|
356
342
|
"""
|
|
357
343
|
return pulumi.get(self, "allocation_max_cidr_mask")
|
|
@@ -365,7 +351,6 @@ class _IpamIpamPoolState:
|
|
|
365
351
|
def allocation_min_cidr_mask(self) -> Optional[pulumi.Input[int]]:
|
|
366
352
|
"""
|
|
367
353
|
The minimum Network mask assigned by the IPAM address pool.
|
|
368
|
-
|
|
369
354
|
IPv4 network mask value range: **0 to 32** bits.
|
|
370
355
|
"""
|
|
371
356
|
return pulumi.get(self, "allocation_min_cidr_mask")
|
|
@@ -427,7 +412,6 @@ class _IpamIpamPoolState:
|
|
|
427
412
|
def ipam_pool_description(self) -> Optional[pulumi.Input[str]]:
|
|
428
413
|
"""
|
|
429
414
|
The description of the IPAM address pool.
|
|
430
|
-
|
|
431
415
|
It must be 2 to 256 characters in length and must start with an English letter or a Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
432
416
|
"""
|
|
433
417
|
return pulumi.get(self, "ipam_pool_description")
|
|
@@ -559,7 +543,7 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
559
543
|
|
|
560
544
|
IP Address Management Pool.
|
|
561
545
|
|
|
562
|
-
For information about Vpc Ipam Ipam Pool and how to use it, see [What is Ipam Pool](https://
|
|
546
|
+
For information about Vpc Ipam Ipam Pool and how to use it, see [What is Ipam Pool](https://next.api.alibabacloud.com/document/VpcIpam/2023-02-28/CreateIpamPool).
|
|
563
547
|
|
|
564
548
|
> **NOTE:** Available since v1.234.0.
|
|
565
549
|
|
|
@@ -574,19 +558,15 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
574
558
|
:param str resource_name: The name of the resource.
|
|
575
559
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
576
560
|
:param pulumi.Input[int] allocation_default_cidr_mask: The default network mask assigned by the IPAM address pool.
|
|
577
|
-
|
|
578
561
|
IPv4 network mask value range: **0 to 32** bits.
|
|
579
562
|
:param pulumi.Input[int] allocation_max_cidr_mask: The maximum network mask assigned by the IPAM address pool.
|
|
580
|
-
|
|
581
563
|
IPv4 network mask value range: **0 to 32** bits.
|
|
582
564
|
:param pulumi.Input[int] allocation_min_cidr_mask: The minimum Network mask assigned by the IPAM address pool.
|
|
583
|
-
|
|
584
565
|
IPv4 network mask value range: **0 to 32** bits.
|
|
585
566
|
:param pulumi.Input[bool] auto_import: Whether the automatic import function is enabled for the address pool.
|
|
586
567
|
:param pulumi.Input[bool] clear_allocation_default_cidr_mask: Whether to clear the default network mask of the IPAM address pool. Value:
|
|
587
568
|
:param pulumi.Input[str] ip_version: The IP protocol version. Currently, only `IPv4` is supported * *.
|
|
588
569
|
:param pulumi.Input[str] ipam_pool_description: The description of the IPAM address pool.
|
|
589
|
-
|
|
590
570
|
It must be 2 to 256 characters in length and must start with an English letter or a Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
591
571
|
:param pulumi.Input[str] ipam_pool_name: The name of the resource.
|
|
592
572
|
:param pulumi.Input[str] ipam_scope_id: Ipam scope id.
|
|
@@ -608,7 +588,7 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
608
588
|
|
|
609
589
|
IP Address Management Pool.
|
|
610
590
|
|
|
611
|
-
For information about Vpc Ipam Ipam Pool and how to use it, see [What is Ipam Pool](https://
|
|
591
|
+
For information about Vpc Ipam Ipam Pool and how to use it, see [What is Ipam Pool](https://next.api.alibabacloud.com/document/VpcIpam/2023-02-28/CreateIpamPool).
|
|
612
592
|
|
|
613
593
|
> **NOTE:** Available since v1.234.0.
|
|
614
594
|
|
|
@@ -709,20 +689,16 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
709
689
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
710
690
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
711
691
|
:param pulumi.Input[int] allocation_default_cidr_mask: The default network mask assigned by the IPAM address pool.
|
|
712
|
-
|
|
713
692
|
IPv4 network mask value range: **0 to 32** bits.
|
|
714
693
|
:param pulumi.Input[int] allocation_max_cidr_mask: The maximum network mask assigned by the IPAM address pool.
|
|
715
|
-
|
|
716
694
|
IPv4 network mask value range: **0 to 32** bits.
|
|
717
695
|
:param pulumi.Input[int] allocation_min_cidr_mask: The minimum Network mask assigned by the IPAM address pool.
|
|
718
|
-
|
|
719
696
|
IPv4 network mask value range: **0 to 32** bits.
|
|
720
697
|
:param pulumi.Input[bool] auto_import: Whether the automatic import function is enabled for the address pool.
|
|
721
698
|
:param pulumi.Input[bool] clear_allocation_default_cidr_mask: Whether to clear the default network mask of the IPAM address pool. Value:
|
|
722
699
|
:param pulumi.Input[str] create_time: The creation time of the resource.
|
|
723
700
|
:param pulumi.Input[str] ip_version: The IP protocol version. Currently, only `IPv4` is supported * *.
|
|
724
701
|
:param pulumi.Input[str] ipam_pool_description: The description of the IPAM address pool.
|
|
725
|
-
|
|
726
702
|
It must be 2 to 256 characters in length and must start with an English letter or a Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
727
703
|
:param pulumi.Input[str] ipam_pool_name: The name of the resource.
|
|
728
704
|
:param pulumi.Input[str] ipam_scope_id: Ipam scope id.
|
|
@@ -762,7 +738,6 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
762
738
|
def allocation_default_cidr_mask(self) -> pulumi.Output[Optional[int]]:
|
|
763
739
|
"""
|
|
764
740
|
The default network mask assigned by the IPAM address pool.
|
|
765
|
-
|
|
766
741
|
IPv4 network mask value range: **0 to 32** bits.
|
|
767
742
|
"""
|
|
768
743
|
return pulumi.get(self, "allocation_default_cidr_mask")
|
|
@@ -772,7 +747,6 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
772
747
|
def allocation_max_cidr_mask(self) -> pulumi.Output[int]:
|
|
773
748
|
"""
|
|
774
749
|
The maximum network mask assigned by the IPAM address pool.
|
|
775
|
-
|
|
776
750
|
IPv4 network mask value range: **0 to 32** bits.
|
|
777
751
|
"""
|
|
778
752
|
return pulumi.get(self, "allocation_max_cidr_mask")
|
|
@@ -782,7 +756,6 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
782
756
|
def allocation_min_cidr_mask(self) -> pulumi.Output[Optional[int]]:
|
|
783
757
|
"""
|
|
784
758
|
The minimum Network mask assigned by the IPAM address pool.
|
|
785
|
-
|
|
786
759
|
IPv4 network mask value range: **0 to 32** bits.
|
|
787
760
|
"""
|
|
788
761
|
return pulumi.get(self, "allocation_min_cidr_mask")
|
|
@@ -824,7 +797,6 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
824
797
|
def ipam_pool_description(self) -> pulumi.Output[Optional[str]]:
|
|
825
798
|
"""
|
|
826
799
|
The description of the IPAM address pool.
|
|
827
|
-
|
|
828
800
|
It must be 2 to 256 characters in length and must start with an English letter or a Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
829
801
|
"""
|
|
830
802
|
return pulumi.get(self, "ipam_pool_description")
|
|
@@ -32,10 +32,8 @@ class IpamIpamPoolAllocationArgs:
|
|
|
32
32
|
|
|
33
33
|
> **NOTE:** Enter at least one of `Cidr` or **CidrMask.
|
|
34
34
|
:param pulumi.Input[str] ipam_pool_allocation_description: The description of the ipam pool alloctaion.
|
|
35
|
-
|
|
36
35
|
It must be 1 to 256 characters in length and must start with an English letter or Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
37
36
|
:param pulumi.Input[str] ipam_pool_allocation_name: The name of the ipam pool allocation.
|
|
38
|
-
|
|
39
37
|
It must be 1 to 128 characters in length and cannot start with 'http:// 'or 'https.
|
|
40
38
|
"""
|
|
41
39
|
pulumi.set(__self__, "ipam_pool_id", ipam_pool_id)
|
|
@@ -91,7 +89,6 @@ class IpamIpamPoolAllocationArgs:
|
|
|
91
89
|
def ipam_pool_allocation_description(self) -> Optional[pulumi.Input[str]]:
|
|
92
90
|
"""
|
|
93
91
|
The description of the ipam pool alloctaion.
|
|
94
|
-
|
|
95
92
|
It must be 1 to 256 characters in length and must start with an English letter or Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
96
93
|
"""
|
|
97
94
|
return pulumi.get(self, "ipam_pool_allocation_description")
|
|
@@ -105,7 +102,6 @@ class IpamIpamPoolAllocationArgs:
|
|
|
105
102
|
def ipam_pool_allocation_name(self) -> Optional[pulumi.Input[str]]:
|
|
106
103
|
"""
|
|
107
104
|
The name of the ipam pool allocation.
|
|
108
|
-
|
|
109
105
|
It must be 1 to 128 characters in length and cannot start with 'http:// 'or 'https.
|
|
110
106
|
"""
|
|
111
107
|
return pulumi.get(self, "ipam_pool_allocation_name")
|
|
@@ -134,13 +130,12 @@ class _IpamIpamPoolAllocationState:
|
|
|
134
130
|
> **NOTE:** Enter at least one of `Cidr` or **CidrMask.
|
|
135
131
|
:param pulumi.Input[str] create_time: Instance creation time.
|
|
136
132
|
:param pulumi.Input[str] ipam_pool_allocation_description: The description of the ipam pool alloctaion.
|
|
137
|
-
|
|
138
133
|
It must be 1 to 256 characters in length and must start with an English letter or Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
139
134
|
:param pulumi.Input[str] ipam_pool_allocation_name: The name of the ipam pool allocation.
|
|
140
|
-
|
|
141
135
|
It must be 1 to 128 characters in length and cannot start with 'http:// 'or 'https.
|
|
142
136
|
:param pulumi.Input[str] ipam_pool_id: The ID of the IPAM Pool.
|
|
143
137
|
:param pulumi.Input[str] region_id: When the IPAM Pool to which CIDR is allocated has the region attribute, this attribute is the IPAM Pool region.
|
|
138
|
+
When the IPAM Pool to which CIDR is allocated does not have the region attribute, this attribute is the IPAM region.
|
|
144
139
|
:param pulumi.Input[str] status: The status of the instance. Value:
|
|
145
140
|
"""
|
|
146
141
|
if cidr is not None:
|
|
@@ -203,7 +198,6 @@ class _IpamIpamPoolAllocationState:
|
|
|
203
198
|
def ipam_pool_allocation_description(self) -> Optional[pulumi.Input[str]]:
|
|
204
199
|
"""
|
|
205
200
|
The description of the ipam pool alloctaion.
|
|
206
|
-
|
|
207
201
|
It must be 1 to 256 characters in length and must start with an English letter or Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
208
202
|
"""
|
|
209
203
|
return pulumi.get(self, "ipam_pool_allocation_description")
|
|
@@ -217,7 +211,6 @@ class _IpamIpamPoolAllocationState:
|
|
|
217
211
|
def ipam_pool_allocation_name(self) -> Optional[pulumi.Input[str]]:
|
|
218
212
|
"""
|
|
219
213
|
The name of the ipam pool allocation.
|
|
220
|
-
|
|
221
214
|
It must be 1 to 128 characters in length and cannot start with 'http:// 'or 'https.
|
|
222
215
|
"""
|
|
223
216
|
return pulumi.get(self, "ipam_pool_allocation_name")
|
|
@@ -243,6 +236,7 @@ class _IpamIpamPoolAllocationState:
|
|
|
243
236
|
def region_id(self) -> Optional[pulumi.Input[str]]:
|
|
244
237
|
"""
|
|
245
238
|
When the IPAM Pool to which CIDR is allocated has the region attribute, this attribute is the IPAM Pool region.
|
|
239
|
+
When the IPAM Pool to which CIDR is allocated does not have the region attribute, this attribute is the IPAM region.
|
|
246
240
|
"""
|
|
247
241
|
return pulumi.get(self, "region_id")
|
|
248
242
|
|
|
@@ -279,7 +273,7 @@ class IpamIpamPoolAllocation(pulumi.CustomResource):
|
|
|
279
273
|
|
|
280
274
|
Allocates or reserves a CIDR from an IPAM address pool.
|
|
281
275
|
|
|
282
|
-
For information about Vpc Ipam Ipam Pool Allocation and how to use it, see [What is Ipam Pool Allocation](https://
|
|
276
|
+
For information about Vpc Ipam Ipam Pool Allocation and how to use it, see [What is Ipam Pool Allocation](https://next.api.alibabacloud.com/document/VpcIpam/2023-02-28/CreateIpamPoolAllocation).
|
|
283
277
|
|
|
284
278
|
> **NOTE:** Available since v1.238.0.
|
|
285
279
|
|
|
@@ -324,10 +318,8 @@ class IpamIpamPoolAllocation(pulumi.CustomResource):
|
|
|
324
318
|
|
|
325
319
|
> **NOTE:** Enter at least one of `Cidr` or **CidrMask.
|
|
326
320
|
:param pulumi.Input[str] ipam_pool_allocation_description: The description of the ipam pool alloctaion.
|
|
327
|
-
|
|
328
321
|
It must be 1 to 256 characters in length and must start with an English letter or Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
329
322
|
:param pulumi.Input[str] ipam_pool_allocation_name: The name of the ipam pool allocation.
|
|
330
|
-
|
|
331
323
|
It must be 1 to 128 characters in length and cannot start with 'http:// 'or 'https.
|
|
332
324
|
:param pulumi.Input[str] ipam_pool_id: The ID of the IPAM Pool.
|
|
333
325
|
"""
|
|
@@ -342,7 +334,7 @@ class IpamIpamPoolAllocation(pulumi.CustomResource):
|
|
|
342
334
|
|
|
343
335
|
Allocates or reserves a CIDR from an IPAM address pool.
|
|
344
336
|
|
|
345
|
-
For information about Vpc Ipam Ipam Pool Allocation and how to use it, see [What is Ipam Pool Allocation](https://
|
|
337
|
+
For information about Vpc Ipam Ipam Pool Allocation and how to use it, see [What is Ipam Pool Allocation](https://next.api.alibabacloud.com/document/VpcIpam/2023-02-28/CreateIpamPoolAllocation).
|
|
346
338
|
|
|
347
339
|
> **NOTE:** Available since v1.238.0.
|
|
348
340
|
|
|
@@ -450,13 +442,12 @@ class IpamIpamPoolAllocation(pulumi.CustomResource):
|
|
|
450
442
|
> **NOTE:** Enter at least one of `Cidr` or **CidrMask.
|
|
451
443
|
:param pulumi.Input[str] create_time: Instance creation time.
|
|
452
444
|
:param pulumi.Input[str] ipam_pool_allocation_description: The description of the ipam pool alloctaion.
|
|
453
|
-
|
|
454
445
|
It must be 1 to 256 characters in length and must start with an English letter or Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
455
446
|
:param pulumi.Input[str] ipam_pool_allocation_name: The name of the ipam pool allocation.
|
|
456
|
-
|
|
457
447
|
It must be 1 to 128 characters in length and cannot start with 'http:// 'or 'https.
|
|
458
448
|
:param pulumi.Input[str] ipam_pool_id: The ID of the IPAM Pool.
|
|
459
449
|
:param pulumi.Input[str] region_id: When the IPAM Pool to which CIDR is allocated has the region attribute, this attribute is the IPAM Pool region.
|
|
450
|
+
When the IPAM Pool to which CIDR is allocated does not have the region attribute, this attribute is the IPAM region.
|
|
460
451
|
:param pulumi.Input[str] status: The status of the instance. Value:
|
|
461
452
|
"""
|
|
462
453
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -504,7 +495,6 @@ class IpamIpamPoolAllocation(pulumi.CustomResource):
|
|
|
504
495
|
def ipam_pool_allocation_description(self) -> pulumi.Output[Optional[str]]:
|
|
505
496
|
"""
|
|
506
497
|
The description of the ipam pool alloctaion.
|
|
507
|
-
|
|
508
498
|
It must be 1 to 256 characters in length and must start with an English letter or Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
|
|
509
499
|
"""
|
|
510
500
|
return pulumi.get(self, "ipam_pool_allocation_description")
|
|
@@ -514,7 +504,6 @@ class IpamIpamPoolAllocation(pulumi.CustomResource):
|
|
|
514
504
|
def ipam_pool_allocation_name(self) -> pulumi.Output[Optional[str]]:
|
|
515
505
|
"""
|
|
516
506
|
The name of the ipam pool allocation.
|
|
517
|
-
|
|
518
507
|
It must be 1 to 128 characters in length and cannot start with 'http:// 'or 'https.
|
|
519
508
|
"""
|
|
520
509
|
return pulumi.get(self, "ipam_pool_allocation_name")
|
|
@@ -532,6 +521,7 @@ class IpamIpamPoolAllocation(pulumi.CustomResource):
|
|
|
532
521
|
def region_id(self) -> pulumi.Output[str]:
|
|
533
522
|
"""
|
|
534
523
|
When the IPAM Pool to which CIDR is allocated has the region attribute, this attribute is the IPAM Pool region.
|
|
524
|
+
When the IPAM Pool to which CIDR is allocated does not have the region attribute, this attribute is the IPAM region.
|
|
535
525
|
"""
|
|
536
526
|
return pulumi.get(self, "region_id")
|
|
537
527
|
|
|
@@ -131,7 +131,7 @@ class IpamIpamPoolCidr(pulumi.CustomResource):
|
|
|
131
131
|
|
|
132
132
|
Ipam address pool preset CIDR.
|
|
133
133
|
|
|
134
|
-
For information about Vpc Ipam Ipam Pool Cidr and how to use it, see [What is Ipam Pool Cidr](https://
|
|
134
|
+
For information about Vpc Ipam Ipam Pool Cidr and how to use it, see [What is Ipam Pool Cidr](https://next.api.alibabacloud.com/document/VpcIpam/2023-02-28/AddIpamPoolCidr).
|
|
135
135
|
|
|
136
136
|
> **NOTE:** Available since v1.234.0.
|
|
137
137
|
|
|
@@ -183,7 +183,7 @@ class IpamIpamPoolCidr(pulumi.CustomResource):
|
|
|
183
183
|
|
|
184
184
|
Ipam address pool preset CIDR.
|
|
185
185
|
|
|
186
|
-
For information about Vpc Ipam Ipam Pool Cidr and how to use it, see [What is Ipam Pool Cidr](https://
|
|
186
|
+
For information about Vpc Ipam Ipam Pool Cidr and how to use it, see [What is Ipam Pool Cidr](https://next.api.alibabacloud.com/document/VpcIpam/2023-02-28/AddIpamPoolCidr).
|
|
187
187
|
|
|
188
188
|
> **NOTE:** Available since v1.234.0.
|
|
189
189
|
|