pulumi-alicloud 3.74.0a1737782319__py3-none-any.whl → 3.75.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 +310 -0
- pulumi_alicloud/_inputs.py +33 -0
- pulumi_alicloud/_utilities.py +8 -4
- pulumi_alicloud/ackone/__init__.py +1 -0
- pulumi_alicloud/ackone/cluster.py +73 -8
- pulumi_alicloud/ackone/membership_attachment.py +223 -0
- pulumi_alicloud/alb/__init__.py +1 -0
- pulumi_alicloud/alb/_inputs.py +1109 -246
- pulumi_alicloud/alb/get_server_groups.py +55 -25
- pulumi_alicloud/alb/listener.py +269 -174
- pulumi_alicloud/alb/load_balancer.py +211 -118
- pulumi_alicloud/alb/load_balancer_security_group_attachment.py +69 -22
- pulumi_alicloud/alb/load_balancer_zone_shifted_attachment.py +303 -0
- pulumi_alicloud/alb/outputs.py +856 -220
- pulumi_alicloud/alb/server_group.py +661 -96
- 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/apigateway/instance.py +51 -4
- pulumi_alicloud/cen/_inputs.py +34 -0
- pulumi_alicloud/cen/outputs.py +37 -0
- pulumi_alicloud/cen/transit_router_multicast_domain.py +123 -36
- 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/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/cms/get_site_monitors.py +2 -2
- pulumi_alicloud/config/outputs.py +20 -0
- pulumi_alicloud/cs/_inputs.py +358 -10
- pulumi_alicloud/cs/get_kubernetes_clusters.py +5 -4
- pulumi_alicloud/cs/get_managed_kubernetes_clusters.py +5 -4
- pulumi_alicloud/cs/get_serverless_kubernetes_clusters.py +5 -4
- pulumi_alicloud/cs/kubernetes.py +15 -15
- pulumi_alicloud/cs/managed_kubernetes.py +47 -35
- pulumi_alicloud/cs/node_pool.py +126 -23
- pulumi_alicloud/cs/outputs.py +271 -7
- pulumi_alicloud/ddos/ddos_bgp_instance.py +0 -4
- pulumi_alicloud/dfs/file_system.py +62 -23
- pulumi_alicloud/dfs/mount_point.py +48 -22
- pulumi_alicloud/dfs/vsc_mount_point.py +28 -28
- pulumi_alicloud/dns/ddos_bgp_instance.py +0 -4
- pulumi_alicloud/ebs/replica_group_drill.py +2 -2
- pulumi_alicloud/ebs/replica_pair_drill.py +2 -2
- pulumi_alicloud/ecs/ecs_deployment_set.py +89 -67
- pulumi_alicloud/ecs/eip.py +1 -1
- pulumi_alicloud/ecs/eip_address.py +1 -1
- pulumi_alicloud/ecs/instance.py +43 -30
- pulumi_alicloud/eds/command.py +10 -2
- 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/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 +22 -0
- pulumi_alicloud/esa/_inputs.py +512 -0
- pulumi_alicloud/esa/cache_rule.py +1405 -0
- pulumi_alicloud/esa/certificate.py +724 -0
- pulumi_alicloud/esa/client_ca_certificate.py +388 -0
- pulumi_alicloud/esa/client_certificate.py +452 -0
- pulumi_alicloud/esa/compression_rule.py +582 -0
- pulumi_alicloud/esa/get_sites.py +421 -0
- pulumi_alicloud/esa/http_request_header_modification_rule.py +531 -0
- pulumi_alicloud/esa/http_response_header_modification_rule.py +560 -0
- pulumi_alicloud/esa/https_application_configuration.py +925 -0
- pulumi_alicloud/esa/https_basic_configuration.py +1027 -0
- pulumi_alicloud/esa/image_transform.py +484 -0
- pulumi_alicloud/esa/kv_namespace.py +276 -0
- pulumi_alicloud/esa/list.py +361 -0
- pulumi_alicloud/esa/network_optimization.py +750 -0
- pulumi_alicloud/esa/origin_pool.py +485 -0
- pulumi_alicloud/esa/origin_rule.py +768 -0
- pulumi_alicloud/esa/outputs.py +473 -0
- pulumi_alicloud/esa/page.py +376 -0
- pulumi_alicloud/esa/rate_plan_instance.py +63 -7
- pulumi_alicloud/esa/record.py +2 -2
- pulumi_alicloud/esa/redirect_rule.py +734 -0
- pulumi_alicloud/esa/rewrite_url_rule.py +702 -0
- pulumi_alicloud/esa/site.py +307 -2
- pulumi_alicloud/esa/waiting_room.py +1257 -0
- pulumi_alicloud/esa/waiting_room_event.py +1392 -0
- pulumi_alicloud/esa/waiting_room_rule.py +504 -0
- pulumi_alicloud/ess/get_scaling_groups.py +64 -10
- pulumi_alicloud/ess/get_scaling_rules.py +74 -10
- pulumi_alicloud/ess/outputs.py +357 -17
- pulumi_alicloud/ess/scaling_configuration.py +7 -7
- pulumi_alicloud/eventbridge/get_service.py +2 -6
- pulumi_alicloud/expressconnect/ec_failover_test_job.py +0 -2
- pulumi_alicloud/expressconnect/vbr_pconn_association.py +2 -2
- pulumi_alicloud/fc/_inputs.py +75 -75
- pulumi_alicloud/fc/outputs.py +50 -50
- pulumi_alicloud/fc/v3_function.py +53 -6
- 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/streaming_data_service.py +2 -2
- pulumi_alicloud/hbr/policy.py +67 -6
- pulumi_alicloud/hbr/vault.py +210 -9
- pulumi_alicloud/kms/__init__.py +1 -0
- pulumi_alicloud/kms/get_instances.py +160 -0
- pulumi_alicloud/kms/get_keys.py +10 -0
- pulumi_alicloud/kms/instance.py +0 -60
- pulumi_alicloud/kms/outputs.py +19 -0
- pulumi_alicloud/maxcompute/__init__.py +5 -0
- pulumi_alicloud/maxcompute/_inputs.py +615 -42
- pulumi_alicloud/maxcompute/outputs.py +486 -28
- pulumi_alicloud/maxcompute/project.py +63 -31
- pulumi_alicloud/maxcompute/quota_plan.py +412 -0
- pulumi_alicloud/maxcompute/quota_schedule.py +260 -0
- pulumi_alicloud/maxcompute/role.py +423 -0
- pulumi_alicloud/maxcompute/role_user_attachment.py +368 -0
- pulumi_alicloud/maxcompute/tunnel_quota_timer.py +287 -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/nlb/_inputs.py +114 -24
- pulumi_alicloud/nlb/listener.py +87 -20
- pulumi_alicloud/nlb/outputs.py +93 -16
- pulumi_alicloud/nlb/server_group.py +55 -20
- pulumi_alicloud/ots/_inputs.py +3 -3
- pulumi_alicloud/ots/outputs.py +2 -2
- 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/privatelink/get_vpc_endpoints.py +21 -1
- pulumi_alicloud/privatelink/outputs.py +11 -0
- pulumi_alicloud/privatelink/vpc_endpoint.py +1 -1
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/access_key.py +20 -4
- pulumi_alicloud/ram/user.py +10 -2
- pulumi_alicloud/rds/instance.py +75 -0
- pulumi_alicloud/simpleapplicationserver/get_server_plans.py +7 -7
- pulumi_alicloud/simpleapplicationserver/outputs.py +3 -3
- pulumi_alicloud/tag/__init__.py +1 -0
- pulumi_alicloud/tag/associated_rule.py +306 -0
- pulumi_alicloud/tag/policy.py +27 -36
- pulumi_alicloud/vpc/__init__.py +2 -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/get_enhanced_nat_available_zones.py +38 -2
- pulumi_alicloud/vpc/get_forward_entries.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 +49 -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 +49 -9
- pulumi_alicloud/vpc/ipam_service.py +144 -0
- pulumi_alicloud/vpc/ipv4_cidr_block.py +162 -51
- pulumi_alicloud/vpc/nat_gateway.py +8 -0
- pulumi_alicloud/vpc/outputs.py +12 -2
- pulumi_alicloud/vpc/router_interface_connection.py +4 -4
- pulumi_alicloud/vpc/traffic_mirror_filter.py +2 -2
- pulumi_alicloud/vpn/get_gateway_vco_routes.py +11 -2
- pulumi_alicloud/vpn/get_gateway_vpn_attachments.py +11 -2
- pulumi_alicloud/vpn/get_gateways.py +21 -1
- pulumi_alicloud/vpn/outputs.py +23 -12
- {pulumi_alicloud-3.74.0a1737782319.dist-info → pulumi_alicloud-3.75.0.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.74.0a1737782319.dist-info → pulumi_alicloud-3.75.0.dist-info}/RECORD +197 -149
- {pulumi_alicloud-3.74.0a1737782319.dist-info → pulumi_alicloud-3.75.0.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.74.0a1737782319.dist-info → pulumi_alicloud-3.75.0.dist-info}/top_level.txt +0 -0
|
@@ -29,28 +29,26 @@ class IpamIpamPoolArgs:
|
|
|
29
29
|
ipam_pool_description: Optional[pulumi.Input[str]] = None,
|
|
30
30
|
ipam_pool_name: Optional[pulumi.Input[str]] = None,
|
|
31
31
|
pool_region_id: Optional[pulumi.Input[str]] = None,
|
|
32
|
+
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
32
33
|
source_ipam_pool_id: Optional[pulumi.Input[str]] = None,
|
|
33
34
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
34
35
|
"""
|
|
35
36
|
The set of arguments for constructing a IpamIpamPool resource.
|
|
36
37
|
:param pulumi.Input[str] ipam_scope_id: Ipam scope id.
|
|
37
38
|
:param pulumi.Input[int] allocation_default_cidr_mask: The default network mask assigned by the IPAM address pool.
|
|
38
|
-
|
|
39
39
|
IPv4 network mask value range: **0 to 32** bits.
|
|
40
40
|
:param pulumi.Input[int] allocation_max_cidr_mask: The maximum network mask assigned by the IPAM address pool.
|
|
41
|
-
|
|
42
41
|
IPv4 network mask value range: **0 to 32** bits.
|
|
43
42
|
:param pulumi.Input[int] allocation_min_cidr_mask: The minimum Network mask assigned by the IPAM address pool.
|
|
44
|
-
|
|
45
43
|
IPv4 network mask value range: **0 to 32** bits.
|
|
46
44
|
:param pulumi.Input[bool] auto_import: Whether the automatic import function is enabled for the address pool.
|
|
47
45
|
:param pulumi.Input[bool] clear_allocation_default_cidr_mask: Whether to clear the default network mask of the IPAM address pool. Value:
|
|
48
46
|
:param pulumi.Input[str] ip_version: The IP protocol version. Currently, only `IPv4` is supported * *.
|
|
49
47
|
:param pulumi.Input[str] ipam_pool_description: The description of the IPAM address pool.
|
|
50
|
-
|
|
51
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.
|
|
52
49
|
:param pulumi.Input[str] ipam_pool_name: The name of the resource.
|
|
53
50
|
:param pulumi.Input[str] pool_region_id: The effective region of the IPAM address pool.
|
|
51
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
54
52
|
:param pulumi.Input[str] source_ipam_pool_id: The instance ID of the source IPAM address pool.
|
|
55
53
|
|
|
56
54
|
> **NOTE:** If this parameter is not entered, the created address pool is the parent address pool.
|
|
@@ -75,6 +73,8 @@ class IpamIpamPoolArgs:
|
|
|
75
73
|
pulumi.set(__self__, "ipam_pool_name", ipam_pool_name)
|
|
76
74
|
if pool_region_id is not None:
|
|
77
75
|
pulumi.set(__self__, "pool_region_id", pool_region_id)
|
|
76
|
+
if resource_group_id is not None:
|
|
77
|
+
pulumi.set(__self__, "resource_group_id", resource_group_id)
|
|
78
78
|
if source_ipam_pool_id is not None:
|
|
79
79
|
pulumi.set(__self__, "source_ipam_pool_id", source_ipam_pool_id)
|
|
80
80
|
if tags is not None:
|
|
@@ -97,7 +97,6 @@ class IpamIpamPoolArgs:
|
|
|
97
97
|
def allocation_default_cidr_mask(self) -> Optional[pulumi.Input[int]]:
|
|
98
98
|
"""
|
|
99
99
|
The default network mask assigned by the IPAM address pool.
|
|
100
|
-
|
|
101
100
|
IPv4 network mask value range: **0 to 32** bits.
|
|
102
101
|
"""
|
|
103
102
|
return pulumi.get(self, "allocation_default_cidr_mask")
|
|
@@ -111,7 +110,6 @@ class IpamIpamPoolArgs:
|
|
|
111
110
|
def allocation_max_cidr_mask(self) -> Optional[pulumi.Input[int]]:
|
|
112
111
|
"""
|
|
113
112
|
The maximum network mask assigned by the IPAM address pool.
|
|
114
|
-
|
|
115
113
|
IPv4 network mask value range: **0 to 32** bits.
|
|
116
114
|
"""
|
|
117
115
|
return pulumi.get(self, "allocation_max_cidr_mask")
|
|
@@ -125,7 +123,6 @@ class IpamIpamPoolArgs:
|
|
|
125
123
|
def allocation_min_cidr_mask(self) -> Optional[pulumi.Input[int]]:
|
|
126
124
|
"""
|
|
127
125
|
The minimum Network mask assigned by the IPAM address pool.
|
|
128
|
-
|
|
129
126
|
IPv4 network mask value range: **0 to 32** bits.
|
|
130
127
|
"""
|
|
131
128
|
return pulumi.get(self, "allocation_min_cidr_mask")
|
|
@@ -175,7 +172,6 @@ class IpamIpamPoolArgs:
|
|
|
175
172
|
def ipam_pool_description(self) -> Optional[pulumi.Input[str]]:
|
|
176
173
|
"""
|
|
177
174
|
The description of the IPAM address pool.
|
|
178
|
-
|
|
179
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.
|
|
180
176
|
"""
|
|
181
177
|
return pulumi.get(self, "ipam_pool_description")
|
|
@@ -208,6 +204,18 @@ class IpamIpamPoolArgs:
|
|
|
208
204
|
def pool_region_id(self, value: Optional[pulumi.Input[str]]):
|
|
209
205
|
pulumi.set(self, "pool_region_id", value)
|
|
210
206
|
|
|
207
|
+
@property
|
|
208
|
+
@pulumi.getter(name="resourceGroupId")
|
|
209
|
+
def resource_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
210
|
+
"""
|
|
211
|
+
The ID of the resource group.
|
|
212
|
+
"""
|
|
213
|
+
return pulumi.get(self, "resource_group_id")
|
|
214
|
+
|
|
215
|
+
@resource_group_id.setter
|
|
216
|
+
def resource_group_id(self, value: Optional[pulumi.Input[str]]):
|
|
217
|
+
pulumi.set(self, "resource_group_id", value)
|
|
218
|
+
|
|
211
219
|
@property
|
|
212
220
|
@pulumi.getter(name="sourceIpamPoolId")
|
|
213
221
|
def source_ipam_pool_id(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -250,31 +258,29 @@ class _IpamIpamPoolState:
|
|
|
250
258
|
ipam_scope_id: Optional[pulumi.Input[str]] = None,
|
|
251
259
|
pool_region_id: Optional[pulumi.Input[str]] = None,
|
|
252
260
|
region_id: Optional[pulumi.Input[str]] = None,
|
|
261
|
+
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
253
262
|
source_ipam_pool_id: Optional[pulumi.Input[str]] = None,
|
|
254
263
|
status: Optional[pulumi.Input[str]] = None,
|
|
255
264
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
256
265
|
"""
|
|
257
266
|
Input properties used for looking up and filtering IpamIpamPool resources.
|
|
258
267
|
:param pulumi.Input[int] allocation_default_cidr_mask: The default network mask assigned by the IPAM address pool.
|
|
259
|
-
|
|
260
268
|
IPv4 network mask value range: **0 to 32** bits.
|
|
261
269
|
:param pulumi.Input[int] allocation_max_cidr_mask: The maximum network mask assigned by the IPAM address pool.
|
|
262
|
-
|
|
263
270
|
IPv4 network mask value range: **0 to 32** bits.
|
|
264
271
|
:param pulumi.Input[int] allocation_min_cidr_mask: The minimum Network mask assigned by the IPAM address pool.
|
|
265
|
-
|
|
266
272
|
IPv4 network mask value range: **0 to 32** bits.
|
|
267
273
|
:param pulumi.Input[bool] auto_import: Whether the automatic import function is enabled for the address pool.
|
|
268
274
|
:param pulumi.Input[bool] clear_allocation_default_cidr_mask: Whether to clear the default network mask of the IPAM address pool. Value:
|
|
269
275
|
:param pulumi.Input[str] create_time: The creation time of the resource.
|
|
270
276
|
:param pulumi.Input[str] ip_version: The IP protocol version. Currently, only `IPv4` is supported * *.
|
|
271
277
|
:param pulumi.Input[str] ipam_pool_description: The description of the IPAM address pool.
|
|
272
|
-
|
|
273
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.
|
|
274
279
|
:param pulumi.Input[str] ipam_pool_name: The name of the resource.
|
|
275
280
|
:param pulumi.Input[str] ipam_scope_id: Ipam scope id.
|
|
276
281
|
:param pulumi.Input[str] pool_region_id: The effective region of the IPAM address pool.
|
|
277
282
|
:param pulumi.Input[str] region_id: The ID of the IPAM hosting region.
|
|
283
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
278
284
|
:param pulumi.Input[str] source_ipam_pool_id: The instance ID of the source IPAM address pool.
|
|
279
285
|
|
|
280
286
|
> **NOTE:** If this parameter is not entered, the created address pool is the parent address pool.
|
|
@@ -305,6 +311,8 @@ class _IpamIpamPoolState:
|
|
|
305
311
|
pulumi.set(__self__, "pool_region_id", pool_region_id)
|
|
306
312
|
if region_id is not None:
|
|
307
313
|
pulumi.set(__self__, "region_id", region_id)
|
|
314
|
+
if resource_group_id is not None:
|
|
315
|
+
pulumi.set(__self__, "resource_group_id", resource_group_id)
|
|
308
316
|
if source_ipam_pool_id is not None:
|
|
309
317
|
pulumi.set(__self__, "source_ipam_pool_id", source_ipam_pool_id)
|
|
310
318
|
if status is not None:
|
|
@@ -317,7 +325,6 @@ class _IpamIpamPoolState:
|
|
|
317
325
|
def allocation_default_cidr_mask(self) -> Optional[pulumi.Input[int]]:
|
|
318
326
|
"""
|
|
319
327
|
The default network mask assigned by the IPAM address pool.
|
|
320
|
-
|
|
321
328
|
IPv4 network mask value range: **0 to 32** bits.
|
|
322
329
|
"""
|
|
323
330
|
return pulumi.get(self, "allocation_default_cidr_mask")
|
|
@@ -331,7 +338,6 @@ class _IpamIpamPoolState:
|
|
|
331
338
|
def allocation_max_cidr_mask(self) -> Optional[pulumi.Input[int]]:
|
|
332
339
|
"""
|
|
333
340
|
The maximum network mask assigned by the IPAM address pool.
|
|
334
|
-
|
|
335
341
|
IPv4 network mask value range: **0 to 32** bits.
|
|
336
342
|
"""
|
|
337
343
|
return pulumi.get(self, "allocation_max_cidr_mask")
|
|
@@ -345,7 +351,6 @@ class _IpamIpamPoolState:
|
|
|
345
351
|
def allocation_min_cidr_mask(self) -> Optional[pulumi.Input[int]]:
|
|
346
352
|
"""
|
|
347
353
|
The minimum Network mask assigned by the IPAM address pool.
|
|
348
|
-
|
|
349
354
|
IPv4 network mask value range: **0 to 32** bits.
|
|
350
355
|
"""
|
|
351
356
|
return pulumi.get(self, "allocation_min_cidr_mask")
|
|
@@ -407,7 +412,6 @@ class _IpamIpamPoolState:
|
|
|
407
412
|
def ipam_pool_description(self) -> Optional[pulumi.Input[str]]:
|
|
408
413
|
"""
|
|
409
414
|
The description of the IPAM address pool.
|
|
410
|
-
|
|
411
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.
|
|
412
416
|
"""
|
|
413
417
|
return pulumi.get(self, "ipam_pool_description")
|
|
@@ -464,6 +468,18 @@ class _IpamIpamPoolState:
|
|
|
464
468
|
def region_id(self, value: Optional[pulumi.Input[str]]):
|
|
465
469
|
pulumi.set(self, "region_id", value)
|
|
466
470
|
|
|
471
|
+
@property
|
|
472
|
+
@pulumi.getter(name="resourceGroupId")
|
|
473
|
+
def resource_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
474
|
+
"""
|
|
475
|
+
The ID of the resource group.
|
|
476
|
+
"""
|
|
477
|
+
return pulumi.get(self, "resource_group_id")
|
|
478
|
+
|
|
479
|
+
@resource_group_id.setter
|
|
480
|
+
def resource_group_id(self, value: Optional[pulumi.Input[str]]):
|
|
481
|
+
pulumi.set(self, "resource_group_id", value)
|
|
482
|
+
|
|
467
483
|
@property
|
|
468
484
|
@pulumi.getter(name="sourceIpamPoolId")
|
|
469
485
|
def source_ipam_pool_id(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -518,6 +534,7 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
518
534
|
ipam_pool_name: Optional[pulumi.Input[str]] = None,
|
|
519
535
|
ipam_scope_id: Optional[pulumi.Input[str]] = None,
|
|
520
536
|
pool_region_id: Optional[pulumi.Input[str]] = None,
|
|
537
|
+
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
521
538
|
source_ipam_pool_id: Optional[pulumi.Input[str]] = None,
|
|
522
539
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
523
540
|
__props__=None):
|
|
@@ -526,7 +543,7 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
526
543
|
|
|
527
544
|
IP Address Management Pool.
|
|
528
545
|
|
|
529
|
-
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).
|
|
530
547
|
|
|
531
548
|
> **NOTE:** Available since v1.234.0.
|
|
532
549
|
|
|
@@ -541,23 +558,20 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
541
558
|
:param str resource_name: The name of the resource.
|
|
542
559
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
543
560
|
:param pulumi.Input[int] allocation_default_cidr_mask: The default network mask assigned by the IPAM address pool.
|
|
544
|
-
|
|
545
561
|
IPv4 network mask value range: **0 to 32** bits.
|
|
546
562
|
:param pulumi.Input[int] allocation_max_cidr_mask: The maximum network mask assigned by the IPAM address pool.
|
|
547
|
-
|
|
548
563
|
IPv4 network mask value range: **0 to 32** bits.
|
|
549
564
|
:param pulumi.Input[int] allocation_min_cidr_mask: The minimum Network mask assigned by the IPAM address pool.
|
|
550
|
-
|
|
551
565
|
IPv4 network mask value range: **0 to 32** bits.
|
|
552
566
|
:param pulumi.Input[bool] auto_import: Whether the automatic import function is enabled for the address pool.
|
|
553
567
|
:param pulumi.Input[bool] clear_allocation_default_cidr_mask: Whether to clear the default network mask of the IPAM address pool. Value:
|
|
554
568
|
:param pulumi.Input[str] ip_version: The IP protocol version. Currently, only `IPv4` is supported * *.
|
|
555
569
|
:param pulumi.Input[str] ipam_pool_description: The description of the IPAM address pool.
|
|
556
|
-
|
|
557
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.
|
|
558
571
|
:param pulumi.Input[str] ipam_pool_name: The name of the resource.
|
|
559
572
|
:param pulumi.Input[str] ipam_scope_id: Ipam scope id.
|
|
560
573
|
:param pulumi.Input[str] pool_region_id: The effective region of the IPAM address pool.
|
|
574
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
561
575
|
:param pulumi.Input[str] source_ipam_pool_id: The instance ID of the source IPAM address pool.
|
|
562
576
|
|
|
563
577
|
> **NOTE:** If this parameter is not entered, the created address pool is the parent address pool.
|
|
@@ -574,7 +588,7 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
574
588
|
|
|
575
589
|
IP Address Management Pool.
|
|
576
590
|
|
|
577
|
-
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).
|
|
578
592
|
|
|
579
593
|
> **NOTE:** Available since v1.234.0.
|
|
580
594
|
|
|
@@ -611,6 +625,7 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
611
625
|
ipam_pool_name: Optional[pulumi.Input[str]] = None,
|
|
612
626
|
ipam_scope_id: Optional[pulumi.Input[str]] = None,
|
|
613
627
|
pool_region_id: Optional[pulumi.Input[str]] = None,
|
|
628
|
+
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
614
629
|
source_ipam_pool_id: Optional[pulumi.Input[str]] = None,
|
|
615
630
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
616
631
|
__props__=None):
|
|
@@ -634,6 +649,7 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
634
649
|
raise TypeError("Missing required property 'ipam_scope_id'")
|
|
635
650
|
__props__.__dict__["ipam_scope_id"] = ipam_scope_id
|
|
636
651
|
__props__.__dict__["pool_region_id"] = pool_region_id
|
|
652
|
+
__props__.__dict__["resource_group_id"] = resource_group_id
|
|
637
653
|
__props__.__dict__["source_ipam_pool_id"] = source_ipam_pool_id
|
|
638
654
|
__props__.__dict__["tags"] = tags
|
|
639
655
|
__props__.__dict__["create_time"] = None
|
|
@@ -661,6 +677,7 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
661
677
|
ipam_scope_id: Optional[pulumi.Input[str]] = None,
|
|
662
678
|
pool_region_id: Optional[pulumi.Input[str]] = None,
|
|
663
679
|
region_id: Optional[pulumi.Input[str]] = None,
|
|
680
|
+
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
664
681
|
source_ipam_pool_id: Optional[pulumi.Input[str]] = None,
|
|
665
682
|
status: Optional[pulumi.Input[str]] = None,
|
|
666
683
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None) -> 'IpamIpamPool':
|
|
@@ -672,25 +689,22 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
672
689
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
673
690
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
674
691
|
:param pulumi.Input[int] allocation_default_cidr_mask: The default network mask assigned by the IPAM address pool.
|
|
675
|
-
|
|
676
692
|
IPv4 network mask value range: **0 to 32** bits.
|
|
677
693
|
:param pulumi.Input[int] allocation_max_cidr_mask: The maximum network mask assigned by the IPAM address pool.
|
|
678
|
-
|
|
679
694
|
IPv4 network mask value range: **0 to 32** bits.
|
|
680
695
|
:param pulumi.Input[int] allocation_min_cidr_mask: The minimum Network mask assigned by the IPAM address pool.
|
|
681
|
-
|
|
682
696
|
IPv4 network mask value range: **0 to 32** bits.
|
|
683
697
|
:param pulumi.Input[bool] auto_import: Whether the automatic import function is enabled for the address pool.
|
|
684
698
|
:param pulumi.Input[bool] clear_allocation_default_cidr_mask: Whether to clear the default network mask of the IPAM address pool. Value:
|
|
685
699
|
:param pulumi.Input[str] create_time: The creation time of the resource.
|
|
686
700
|
:param pulumi.Input[str] ip_version: The IP protocol version. Currently, only `IPv4` is supported * *.
|
|
687
701
|
:param pulumi.Input[str] ipam_pool_description: The description of the IPAM address pool.
|
|
688
|
-
|
|
689
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.
|
|
690
703
|
:param pulumi.Input[str] ipam_pool_name: The name of the resource.
|
|
691
704
|
:param pulumi.Input[str] ipam_scope_id: Ipam scope id.
|
|
692
705
|
:param pulumi.Input[str] pool_region_id: The effective region of the IPAM address pool.
|
|
693
706
|
:param pulumi.Input[str] region_id: The ID of the IPAM hosting region.
|
|
707
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
694
708
|
:param pulumi.Input[str] source_ipam_pool_id: The instance ID of the source IPAM address pool.
|
|
695
709
|
|
|
696
710
|
> **NOTE:** If this parameter is not entered, the created address pool is the parent address pool.
|
|
@@ -713,6 +727,7 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
713
727
|
__props__.__dict__["ipam_scope_id"] = ipam_scope_id
|
|
714
728
|
__props__.__dict__["pool_region_id"] = pool_region_id
|
|
715
729
|
__props__.__dict__["region_id"] = region_id
|
|
730
|
+
__props__.__dict__["resource_group_id"] = resource_group_id
|
|
716
731
|
__props__.__dict__["source_ipam_pool_id"] = source_ipam_pool_id
|
|
717
732
|
__props__.__dict__["status"] = status
|
|
718
733
|
__props__.__dict__["tags"] = tags
|
|
@@ -723,7 +738,6 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
723
738
|
def allocation_default_cidr_mask(self) -> pulumi.Output[Optional[int]]:
|
|
724
739
|
"""
|
|
725
740
|
The default network mask assigned by the IPAM address pool.
|
|
726
|
-
|
|
727
741
|
IPv4 network mask value range: **0 to 32** bits.
|
|
728
742
|
"""
|
|
729
743
|
return pulumi.get(self, "allocation_default_cidr_mask")
|
|
@@ -733,7 +747,6 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
733
747
|
def allocation_max_cidr_mask(self) -> pulumi.Output[int]:
|
|
734
748
|
"""
|
|
735
749
|
The maximum network mask assigned by the IPAM address pool.
|
|
736
|
-
|
|
737
750
|
IPv4 network mask value range: **0 to 32** bits.
|
|
738
751
|
"""
|
|
739
752
|
return pulumi.get(self, "allocation_max_cidr_mask")
|
|
@@ -743,7 +756,6 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
743
756
|
def allocation_min_cidr_mask(self) -> pulumi.Output[Optional[int]]:
|
|
744
757
|
"""
|
|
745
758
|
The minimum Network mask assigned by the IPAM address pool.
|
|
746
|
-
|
|
747
759
|
IPv4 network mask value range: **0 to 32** bits.
|
|
748
760
|
"""
|
|
749
761
|
return pulumi.get(self, "allocation_min_cidr_mask")
|
|
@@ -785,7 +797,6 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
785
797
|
def ipam_pool_description(self) -> pulumi.Output[Optional[str]]:
|
|
786
798
|
"""
|
|
787
799
|
The description of the IPAM address pool.
|
|
788
|
-
|
|
789
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.
|
|
790
801
|
"""
|
|
791
802
|
return pulumi.get(self, "ipam_pool_description")
|
|
@@ -822,6 +833,14 @@ class IpamIpamPool(pulumi.CustomResource):
|
|
|
822
833
|
"""
|
|
823
834
|
return pulumi.get(self, "region_id")
|
|
824
835
|
|
|
836
|
+
@property
|
|
837
|
+
@pulumi.getter(name="resourceGroupId")
|
|
838
|
+
def resource_group_id(self) -> pulumi.Output[str]:
|
|
839
|
+
"""
|
|
840
|
+
The ID of the resource group.
|
|
841
|
+
"""
|
|
842
|
+
return pulumi.get(self, "resource_group_id")
|
|
843
|
+
|
|
825
844
|
@property
|
|
826
845
|
@pulumi.getter(name="sourceIpamPoolId")
|
|
827
846
|
def source_ipam_pool_id(self) -> pulumi.Output[str]:
|
|
@@ -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
|
|