pulumi-alicloud 3.77.0a1746163013__py3-none-any.whl → 3.78.0a1746422202__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 +72 -0
- pulumi_alicloud/_inputs.py +13 -0
- pulumi_alicloud/adb/db_cluster_lake_version.py +94 -0
- pulumi_alicloud/alb/_inputs.py +6 -3
- pulumi_alicloud/alb/outputs.py +4 -2
- pulumi_alicloud/apig/environment.py +2 -2
- pulumi_alicloud/apig/http_api.py +2 -2
- pulumi_alicloud/arms/grafana_workspace.py +56 -14
- pulumi_alicloud/cloudfirewall/instance_member.py +4 -4
- pulumi_alicloud/cloudfirewall/vpc_cen_tr_firewall.py +2 -2
- pulumi_alicloud/cloudsso/_inputs.py +697 -7
- pulumi_alicloud/cloudsso/directory.py +345 -65
- pulumi_alicloud/cloudsso/outputs.py +557 -8
- pulumi_alicloud/config/outputs.py +8 -0
- pulumi_alicloud/cs/_inputs.py +18 -18
- pulumi_alicloud/cs/edge_kubernetes.py +136 -100
- pulumi_alicloud/cs/get_kubernetes_node_pools.py +21 -1
- pulumi_alicloud/cs/kubernetes.py +118 -39
- pulumi_alicloud/cs/managed_kubernetes.py +125 -46
- pulumi_alicloud/cs/outputs.py +14 -14
- pulumi_alicloud/cs/serverless_kubernetes.py +66 -73
- pulumi_alicloud/ddos/ddos_coo_instance.py +175 -25
- pulumi_alicloud/dns/ddos_coo_instance.py +175 -25
- pulumi_alicloud/dts/job_monitor_rule.py +2 -2
- pulumi_alicloud/dts/synchronization_job.py +2 -2
- pulumi_alicloud/ecs/get_instance_types.py +4 -4
- pulumi_alicloud/ecs/instance.py +28 -28
- pulumi_alicloud/ecs/outputs.py +2 -2
- pulumi_alicloud/ecs/security_group_rule.py +32 -4
- pulumi_alicloud/eflo/__init__.py +3 -0
- pulumi_alicloud/eflo/_inputs.py +623 -0
- pulumi_alicloud/eflo/experiment_plan.py +573 -0
- pulumi_alicloud/eflo/experiment_plan_template.py +464 -0
- pulumi_alicloud/eflo/outputs.py +476 -0
- pulumi_alicloud/eflo/resource.py +388 -0
- pulumi_alicloud/ens/disk.py +120 -69
- pulumi_alicloud/ens/eip.py +45 -41
- pulumi_alicloud/esa/__init__.py +2 -0
- pulumi_alicloud/esa/scheduled_preload_execution.py +479 -0
- pulumi_alicloud/esa/scheduled_preload_job.py +467 -0
- pulumi_alicloud/gwlb/listener.py +2 -2
- pulumi_alicloud/gwlb/load_balancer.py +2 -2
- pulumi_alicloud/gwlb/server_group.py +2 -2
- pulumi_alicloud/ims/__init__.py +2 -0
- pulumi_alicloud/ims/get_oidc_providers.py +216 -0
- pulumi_alicloud/ims/outputs.py +138 -0
- pulumi_alicloud/mongodb/__init__.py +2 -0
- pulumi_alicloud/mongodb/_inputs.py +154 -0
- pulumi_alicloud/mongodb/instance.py +7 -7
- pulumi_alicloud/mongodb/outputs.py +121 -0
- pulumi_alicloud/mongodb/public_network_address.py +275 -0
- pulumi_alicloud/mongodb/replica_set_role.py +533 -0
- pulumi_alicloud/nas/_inputs.py +252 -18
- pulumi_alicloud/nas/file_system.py +649 -264
- pulumi_alicloud/nas/outputs.py +198 -12
- pulumi_alicloud/nlb/server_group_server_attachment.py +4 -0
- pulumi_alicloud/pai/__init__.py +1 -0
- pulumi_alicloud/pai/flow_pipeline.py +491 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/__init__.py +1 -0
- pulumi_alicloud/ram/get_role_policy_attachments.py +272 -0
- pulumi_alicloud/ram/outputs.py +63 -0
- pulumi_alicloud/ram/security_preference.py +496 -110
- pulumi_alicloud/rdc/organization.py +2 -2
- pulumi_alicloud/rds/instance.py +1 -1
- pulumi_alicloud/sae/application_scaling_rule.py +2 -2
- pulumi_alicloud/sae/ingress.py +2 -2
- pulumi_alicloud/schedulerx/app_group.py +2 -2
- pulumi_alicloud/schedulerx/job.py +2 -2
- pulumi_alicloud/selectdb/db_cluster.py +2 -0
- pulumi_alicloud/selectdb/db_instance.py +43 -13
- pulumi_alicloud/selectdb/get_db_clusters.py +2 -0
- pulumi_alicloud/selectdb/get_db_instances.py +2 -0
- pulumi_alicloud/selectdb/outputs.py +3 -3
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/_inputs.py +295 -0
- pulumi_alicloud/sls/etl.py +516 -0
- pulumi_alicloud/sls/outputs.py +209 -0
- pulumi_alicloud/vpc/network.py +156 -88
- {pulumi_alicloud-3.77.0a1746163013.dist-info → pulumi_alicloud-3.78.0a1746422202.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.77.0a1746163013.dist-info → pulumi_alicloud-3.78.0a1746422202.dist-info}/RECORD +83 -71
- {pulumi_alicloud-3.77.0a1746163013.dist-info → pulumi_alicloud-3.78.0a1746422202.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.77.0a1746163013.dist-info → pulumi_alicloud-3.78.0a1746422202.dist-info}/top_level.txt +0 -0
pulumi_alicloud/vpc/network.py
CHANGED
|
@@ -28,6 +28,7 @@ class NetworkArgs:
|
|
|
28
28
|
dns_hostname_status: Optional[pulumi.Input[builtins.str]] = None,
|
|
29
29
|
dry_run: Optional[pulumi.Input[builtins.bool]] = None,
|
|
30
30
|
enable_ipv6: Optional[pulumi.Input[builtins.bool]] = None,
|
|
31
|
+
force_delete: Optional[pulumi.Input[builtins.bool]] = None,
|
|
31
32
|
ipv4_cidr_mask: Optional[pulumi.Input[builtins.int]] = None,
|
|
32
33
|
ipv4_ipam_pool_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
33
34
|
ipv6_cidr_block: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -39,21 +40,23 @@ class NetworkArgs:
|
|
|
39
40
|
secondary_cidr_mask: Optional[pulumi.Input[builtins.int]] = None,
|
|
40
41
|
system_route_table_description: Optional[pulumi.Input[builtins.str]] = None,
|
|
41
42
|
system_route_table_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
43
|
+
system_route_table_route_propagation_enable: Optional[pulumi.Input[builtins.bool]] = None,
|
|
42
44
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
|
43
45
|
user_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
|
44
46
|
vpc_name: Optional[pulumi.Input[builtins.str]] = None):
|
|
45
47
|
"""
|
|
46
48
|
The set of arguments for constructing a Network resource.
|
|
47
49
|
:param pulumi.Input[builtins.str] cidr_block: The CIDR block of the VPC.
|
|
50
|
+
|
|
48
51
|
- You can specify one of the following CIDR blocks or their subsets as the primary IPv4 CIDR block of the VPC: 192.168.0.0/16, 172.16.0.0/12, and 10.0.0.0/8. These CIDR blocks are standard private CIDR blocks as defined by Request for Comments (RFC) documents. The subnet mask must be 8 to 28 bits in length.
|
|
49
52
|
- You can also use a custom CIDR block other than 100.64.0.0/10, 224.0.0.0/4, 127.0.0.0/8, 169.254.0.0/16, and their subnets as the primary IPv4 CIDR block of the VPC.
|
|
50
53
|
:param pulumi.Input[builtins.bool] classic_link_enabled: The status of ClassicLink function.
|
|
51
54
|
:param pulumi.Input[builtins.str] description: The new description of the VPC.
|
|
52
|
-
|
|
53
55
|
The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
54
|
-
:param pulumi.Input[builtins.str] dns_hostname_status: The status of VPC DNS Hostname
|
|
55
|
-
:param pulumi.Input[builtins.bool] dry_run:
|
|
56
|
-
:param pulumi.Input[builtins.bool] enable_ipv6:
|
|
56
|
+
:param pulumi.Input[builtins.str] dns_hostname_status: The status of VPC DNS Hostname
|
|
57
|
+
:param pulumi.Input[builtins.bool] dry_run: Whether to PreCheck only this request. Value:
|
|
58
|
+
:param pulumi.Input[builtins.bool] enable_ipv6: Whether to enable the IPv6 network segment. Value:
|
|
59
|
+
:param pulumi.Input[builtins.bool] force_delete: Force delete vpc or not.
|
|
57
60
|
:param pulumi.Input[builtins.int] ipv4_cidr_mask: Allocate VPC from The IPAM address pool by entering a mask.
|
|
58
61
|
|
|
59
62
|
> **NOTE:** when you specify the IPAM address pool to create a VPC, enter at least one of the CidrBlock or Ipv4CidrMask parameters.
|
|
@@ -74,19 +77,15 @@ class NetworkArgs:
|
|
|
74
77
|
|
|
75
78
|
> **NOTE:** You can use resource groups to facilitate resource grouping and permission management for an Alibaba Cloud. For more information, see [What is resource management?](https://www.alibabacloud.com/help/en/doc-detail/94475.html)
|
|
76
79
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] secondary_cidr_blocks: Field 'secondary_cidr_blocks' has been deprecated from provider version 1.185.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_ipv4_cidr_block'. `secondary_cidr_blocks` attributes and `vpc.Ipv4CidrBlock` resource cannot be used at the same time.
|
|
77
|
-
:param pulumi.Input[builtins.int] secondary_cidr_mask:
|
|
78
|
-
|
|
79
|
-
> **NOTE:** Specify the IPAM address pool to add an additional CIDR block to the VPC. Enter at least one of the SecondaryCidrBlock or SecondaryCidrMask parameters.
|
|
80
|
+
:param pulumi.Input[builtins.int] secondary_cidr_mask: Field 'router_table_id' has been deprecated from provider version 1.248.0. New resource 'alicloud_vpc_ipv4_cidr_block' instead.
|
|
80
81
|
:param pulumi.Input[builtins.str] system_route_table_description: The description of the route table.
|
|
81
|
-
|
|
82
82
|
The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
83
83
|
:param pulumi.Input[builtins.str] system_route_table_name: The name of the route table.
|
|
84
|
-
|
|
85
84
|
The name must be 1 to 128 characters in length and cannot start with `http://` or `https://`.
|
|
85
|
+
:param pulumi.Input[builtins.bool] system_route_table_route_propagation_enable: Whether the system route table receives propagation routes.
|
|
86
86
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The tags of Vpc.
|
|
87
87
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] user_cidrs: A list of user CIDRs.
|
|
88
88
|
:param pulumi.Input[builtins.str] vpc_name: The new name of the VPC.
|
|
89
|
-
|
|
90
89
|
The name must be 1 to 128 characters in length and cannot start with `http://` or `https://`.
|
|
91
90
|
|
|
92
91
|
The following arguments will be discarded. Please use new fields as soon as possible:
|
|
@@ -103,6 +102,8 @@ class NetworkArgs:
|
|
|
103
102
|
pulumi.set(__self__, "dry_run", dry_run)
|
|
104
103
|
if enable_ipv6 is not None:
|
|
105
104
|
pulumi.set(__self__, "enable_ipv6", enable_ipv6)
|
|
105
|
+
if force_delete is not None:
|
|
106
|
+
pulumi.set(__self__, "force_delete", force_delete)
|
|
106
107
|
if ipv4_cidr_mask is not None:
|
|
107
108
|
pulumi.set(__self__, "ipv4_cidr_mask", ipv4_cidr_mask)
|
|
108
109
|
if ipv4_ipam_pool_id is not None:
|
|
@@ -125,12 +126,17 @@ class NetworkArgs:
|
|
|
125
126
|
pulumi.log.warn("""secondary_cidr_blocks is deprecated: Field 'secondary_cidr_blocks' has been deprecated from provider version 1.185.0. Field 'secondary_cidr_blocks' has been deprecated from provider version 1.185.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_ipv4_cidr_block'. `secondary_cidr_blocks` attributes and `vpc.Ipv4CidrBlock` resource cannot be used at the same time.""")
|
|
126
127
|
if secondary_cidr_blocks is not None:
|
|
127
128
|
pulumi.set(__self__, "secondary_cidr_blocks", secondary_cidr_blocks)
|
|
129
|
+
if secondary_cidr_mask is not None:
|
|
130
|
+
warnings.warn("""Field 'secondary_cidr_mask' has been deprecated from provider version 1.248.0. Field 'secondary_cidr_blocks' has been deprecated from provider version 1.248.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_ipv4_cidr_block'. `secondary_cidr_mask` attributes and `vpc.Ipv4CidrBlock` resource cannot be used at the same time.""", DeprecationWarning)
|
|
131
|
+
pulumi.log.warn("""secondary_cidr_mask is deprecated: Field 'secondary_cidr_mask' has been deprecated from provider version 1.248.0. Field 'secondary_cidr_blocks' has been deprecated from provider version 1.248.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_ipv4_cidr_block'. `secondary_cidr_mask` attributes and `vpc.Ipv4CidrBlock` resource cannot be used at the same time.""")
|
|
128
132
|
if secondary_cidr_mask is not None:
|
|
129
133
|
pulumi.set(__self__, "secondary_cidr_mask", secondary_cidr_mask)
|
|
130
134
|
if system_route_table_description is not None:
|
|
131
135
|
pulumi.set(__self__, "system_route_table_description", system_route_table_description)
|
|
132
136
|
if system_route_table_name is not None:
|
|
133
137
|
pulumi.set(__self__, "system_route_table_name", system_route_table_name)
|
|
138
|
+
if system_route_table_route_propagation_enable is not None:
|
|
139
|
+
pulumi.set(__self__, "system_route_table_route_propagation_enable", system_route_table_route_propagation_enable)
|
|
134
140
|
if tags is not None:
|
|
135
141
|
pulumi.set(__self__, "tags", tags)
|
|
136
142
|
if user_cidrs is not None:
|
|
@@ -143,6 +149,7 @@ class NetworkArgs:
|
|
|
143
149
|
def cidr_block(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
144
150
|
"""
|
|
145
151
|
The CIDR block of the VPC.
|
|
152
|
+
|
|
146
153
|
- You can specify one of the following CIDR blocks or their subsets as the primary IPv4 CIDR block of the VPC: 192.168.0.0/16, 172.16.0.0/12, and 10.0.0.0/8. These CIDR blocks are standard private CIDR blocks as defined by Request for Comments (RFC) documents. The subnet mask must be 8 to 28 bits in length.
|
|
147
154
|
- You can also use a custom CIDR block other than 100.64.0.0/10, 224.0.0.0/4, 127.0.0.0/8, 169.254.0.0/16, and their subnets as the primary IPv4 CIDR block of the VPC.
|
|
148
155
|
"""
|
|
@@ -169,7 +176,6 @@ class NetworkArgs:
|
|
|
169
176
|
def description(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
170
177
|
"""
|
|
171
178
|
The new description of the VPC.
|
|
172
|
-
|
|
173
179
|
The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
174
180
|
"""
|
|
175
181
|
return pulumi.get(self, "description")
|
|
@@ -182,7 +188,7 @@ class NetworkArgs:
|
|
|
182
188
|
@pulumi.getter(name="dnsHostnameStatus")
|
|
183
189
|
def dns_hostname_status(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
184
190
|
"""
|
|
185
|
-
The status of VPC DNS Hostname
|
|
191
|
+
The status of VPC DNS Hostname
|
|
186
192
|
"""
|
|
187
193
|
return pulumi.get(self, "dns_hostname_status")
|
|
188
194
|
|
|
@@ -194,7 +200,7 @@ class NetworkArgs:
|
|
|
194
200
|
@pulumi.getter(name="dryRun")
|
|
195
201
|
def dry_run(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
196
202
|
"""
|
|
197
|
-
|
|
203
|
+
Whether to PreCheck only this request. Value:
|
|
198
204
|
"""
|
|
199
205
|
return pulumi.get(self, "dry_run")
|
|
200
206
|
|
|
@@ -206,7 +212,7 @@ class NetworkArgs:
|
|
|
206
212
|
@pulumi.getter(name="enableIpv6")
|
|
207
213
|
def enable_ipv6(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
208
214
|
"""
|
|
209
|
-
|
|
215
|
+
Whether to enable the IPv6 network segment. Value:
|
|
210
216
|
"""
|
|
211
217
|
return pulumi.get(self, "enable_ipv6")
|
|
212
218
|
|
|
@@ -214,6 +220,18 @@ class NetworkArgs:
|
|
|
214
220
|
def enable_ipv6(self, value: Optional[pulumi.Input[builtins.bool]]):
|
|
215
221
|
pulumi.set(self, "enable_ipv6", value)
|
|
216
222
|
|
|
223
|
+
@property
|
|
224
|
+
@pulumi.getter(name="forceDelete")
|
|
225
|
+
def force_delete(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
226
|
+
"""
|
|
227
|
+
Force delete vpc or not.
|
|
228
|
+
"""
|
|
229
|
+
return pulumi.get(self, "force_delete")
|
|
230
|
+
|
|
231
|
+
@force_delete.setter
|
|
232
|
+
def force_delete(self, value: Optional[pulumi.Input[builtins.bool]]):
|
|
233
|
+
pulumi.set(self, "force_delete", value)
|
|
234
|
+
|
|
217
235
|
@property
|
|
218
236
|
@pulumi.getter(name="ipv4CidrMask")
|
|
219
237
|
def ipv4_cidr_mask(self) -> Optional[pulumi.Input[builtins.int]]:
|
|
@@ -326,11 +344,10 @@ class NetworkArgs:
|
|
|
326
344
|
|
|
327
345
|
@property
|
|
328
346
|
@pulumi.getter(name="secondaryCidrMask")
|
|
347
|
+
@_utilities.deprecated("""Field 'secondary_cidr_mask' has been deprecated from provider version 1.248.0. Field 'secondary_cidr_blocks' has been deprecated from provider version 1.248.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_ipv4_cidr_block'. `secondary_cidr_mask` attributes and `vpc.Ipv4CidrBlock` resource cannot be used at the same time.""")
|
|
329
348
|
def secondary_cidr_mask(self) -> Optional[pulumi.Input[builtins.int]]:
|
|
330
349
|
"""
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
> **NOTE:** Specify the IPAM address pool to add an additional CIDR block to the VPC. Enter at least one of the SecondaryCidrBlock or SecondaryCidrMask parameters.
|
|
350
|
+
Field 'router_table_id' has been deprecated from provider version 1.248.0. New resource 'alicloud_vpc_ipv4_cidr_block' instead.
|
|
334
351
|
"""
|
|
335
352
|
return pulumi.get(self, "secondary_cidr_mask")
|
|
336
353
|
|
|
@@ -343,7 +360,6 @@ class NetworkArgs:
|
|
|
343
360
|
def system_route_table_description(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
344
361
|
"""
|
|
345
362
|
The description of the route table.
|
|
346
|
-
|
|
347
363
|
The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
348
364
|
"""
|
|
349
365
|
return pulumi.get(self, "system_route_table_description")
|
|
@@ -357,7 +373,6 @@ class NetworkArgs:
|
|
|
357
373
|
def system_route_table_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
358
374
|
"""
|
|
359
375
|
The name of the route table.
|
|
360
|
-
|
|
361
376
|
The name must be 1 to 128 characters in length and cannot start with `http://` or `https://`.
|
|
362
377
|
"""
|
|
363
378
|
return pulumi.get(self, "system_route_table_name")
|
|
@@ -366,6 +381,18 @@ class NetworkArgs:
|
|
|
366
381
|
def system_route_table_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
367
382
|
pulumi.set(self, "system_route_table_name", value)
|
|
368
383
|
|
|
384
|
+
@property
|
|
385
|
+
@pulumi.getter(name="systemRouteTableRoutePropagationEnable")
|
|
386
|
+
def system_route_table_route_propagation_enable(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
387
|
+
"""
|
|
388
|
+
Whether the system route table receives propagation routes.
|
|
389
|
+
"""
|
|
390
|
+
return pulumi.get(self, "system_route_table_route_propagation_enable")
|
|
391
|
+
|
|
392
|
+
@system_route_table_route_propagation_enable.setter
|
|
393
|
+
def system_route_table_route_propagation_enable(self, value: Optional[pulumi.Input[builtins.bool]]):
|
|
394
|
+
pulumi.set(self, "system_route_table_route_propagation_enable", value)
|
|
395
|
+
|
|
369
396
|
@property
|
|
370
397
|
@pulumi.getter
|
|
371
398
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
|
@@ -395,7 +422,6 @@ class NetworkArgs:
|
|
|
395
422
|
def vpc_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
396
423
|
"""
|
|
397
424
|
The new name of the VPC.
|
|
398
|
-
|
|
399
425
|
The name must be 1 to 128 characters in length and cannot start with `http://` or `https://`.
|
|
400
426
|
|
|
401
427
|
The following arguments will be discarded. Please use new fields as soon as possible:
|
|
@@ -417,6 +443,7 @@ class _NetworkState:
|
|
|
417
443
|
dns_hostname_status: Optional[pulumi.Input[builtins.str]] = None,
|
|
418
444
|
dry_run: Optional[pulumi.Input[builtins.bool]] = None,
|
|
419
445
|
enable_ipv6: Optional[pulumi.Input[builtins.bool]] = None,
|
|
446
|
+
force_delete: Optional[pulumi.Input[builtins.bool]] = None,
|
|
420
447
|
ipv4_cidr_mask: Optional[pulumi.Input[builtins.int]] = None,
|
|
421
448
|
ipv4_ipam_pool_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
422
449
|
ipv6_cidr_block: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -434,22 +461,24 @@ class _NetworkState:
|
|
|
434
461
|
status: Optional[pulumi.Input[builtins.str]] = None,
|
|
435
462
|
system_route_table_description: Optional[pulumi.Input[builtins.str]] = None,
|
|
436
463
|
system_route_table_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
464
|
+
system_route_table_route_propagation_enable: Optional[pulumi.Input[builtins.bool]] = None,
|
|
437
465
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
|
438
466
|
user_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
|
439
467
|
vpc_name: Optional[pulumi.Input[builtins.str]] = None):
|
|
440
468
|
"""
|
|
441
469
|
Input properties used for looking up and filtering Network resources.
|
|
442
470
|
:param pulumi.Input[builtins.str] cidr_block: The CIDR block of the VPC.
|
|
471
|
+
|
|
443
472
|
- You can specify one of the following CIDR blocks or their subsets as the primary IPv4 CIDR block of the VPC: 192.168.0.0/16, 172.16.0.0/12, and 10.0.0.0/8. These CIDR blocks are standard private CIDR blocks as defined by Request for Comments (RFC) documents. The subnet mask must be 8 to 28 bits in length.
|
|
444
473
|
- You can also use a custom CIDR block other than 100.64.0.0/10, 224.0.0.0/4, 127.0.0.0/8, 169.254.0.0/16, and their subnets as the primary IPv4 CIDR block of the VPC.
|
|
445
474
|
:param pulumi.Input[builtins.bool] classic_link_enabled: The status of ClassicLink function.
|
|
446
475
|
:param pulumi.Input[builtins.str] create_time: The creation time of the VPC.
|
|
447
476
|
:param pulumi.Input[builtins.str] description: The new description of the VPC.
|
|
448
|
-
|
|
449
477
|
The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
450
|
-
:param pulumi.Input[builtins.str] dns_hostname_status: The status of VPC DNS Hostname
|
|
451
|
-
:param pulumi.Input[builtins.bool] dry_run:
|
|
452
|
-
:param pulumi.Input[builtins.bool] enable_ipv6:
|
|
478
|
+
:param pulumi.Input[builtins.str] dns_hostname_status: The status of VPC DNS Hostname
|
|
479
|
+
:param pulumi.Input[builtins.bool] dry_run: Whether to PreCheck only this request. Value:
|
|
480
|
+
:param pulumi.Input[builtins.bool] enable_ipv6: Whether to enable the IPv6 network segment. Value:
|
|
481
|
+
:param pulumi.Input[builtins.bool] force_delete: Force delete vpc or not.
|
|
453
482
|
:param pulumi.Input[builtins.int] ipv4_cidr_mask: Allocate VPC from The IPAM address pool by entering a mask.
|
|
454
483
|
|
|
455
484
|
> **NOTE:** when you specify the IPAM address pool to create a VPC, enter at least one of the CidrBlock or Ipv4CidrMask parameters.
|
|
@@ -467,28 +496,24 @@ class _NetworkState:
|
|
|
467
496
|
> **NOTE:** If a single-line bandwidth whitelist is enabled, this field can be set to `ChinaTelecom` (China Telecom), `ChinaUnicom` (China Unicom), or `ChinaMobile` (China Mobile).
|
|
468
497
|
:param pulumi.Input[builtins.bool] is_default: Specifies whether to create the default VPC in the specified region. Valid values:
|
|
469
498
|
:param pulumi.Input[builtins.str] name: . Field 'name' has been deprecated from provider version 1.119.0. New field 'vpc_name' instead.
|
|
470
|
-
:param pulumi.Input[builtins.str] region_id:
|
|
499
|
+
:param pulumi.Input[builtins.str] region_id: The ID of the region where the VPC is located.
|
|
471
500
|
:param pulumi.Input[builtins.str] resource_group_id: The ID of the resource group to which you want to move the resource.
|
|
472
501
|
|
|
473
502
|
> **NOTE:** You can use resource groups to facilitate resource grouping and permission management for an Alibaba Cloud. For more information, see [What is resource management?](https://www.alibabacloud.com/help/en/doc-detail/94475.html)
|
|
474
|
-
:param pulumi.Input[builtins.str] route_table_id: The ID of the route table
|
|
475
|
-
:param pulumi.Input[builtins.str] router_id: The
|
|
503
|
+
:param pulumi.Input[builtins.str] route_table_id: The ID of the system route table.
|
|
504
|
+
:param pulumi.Input[builtins.str] router_id: The region ID of the VPC to which the route table belongs.
|
|
476
505
|
:param pulumi.Input[builtins.str] router_table_id: . Field 'router_table_id' has been deprecated from provider version 1.227.1. New field 'route_table_id' instead.
|
|
477
506
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] secondary_cidr_blocks: Field 'secondary_cidr_blocks' has been deprecated from provider version 1.185.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_ipv4_cidr_block'. `secondary_cidr_blocks` attributes and `vpc.Ipv4CidrBlock` resource cannot be used at the same time.
|
|
478
|
-
:param pulumi.Input[builtins.int] secondary_cidr_mask:
|
|
479
|
-
|
|
480
|
-
> **NOTE:** Specify the IPAM address pool to add an additional CIDR block to the VPC. Enter at least one of the SecondaryCidrBlock or SecondaryCidrMask parameters.
|
|
481
|
-
:param pulumi.Input[builtins.str] status: The status of the VPC.
|
|
507
|
+
:param pulumi.Input[builtins.int] secondary_cidr_mask: Field 'router_table_id' has been deprecated from provider version 1.248.0. New resource 'alicloud_vpc_ipv4_cidr_block' instead.
|
|
508
|
+
:param pulumi.Input[builtins.str] status: The status of the VPC. `Pending`: The VPC is being configured. `Available`: The VPC is available.
|
|
482
509
|
:param pulumi.Input[builtins.str] system_route_table_description: The description of the route table.
|
|
483
|
-
|
|
484
510
|
The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
485
511
|
:param pulumi.Input[builtins.str] system_route_table_name: The name of the route table.
|
|
486
|
-
|
|
487
512
|
The name must be 1 to 128 characters in length and cannot start with `http://` or `https://`.
|
|
513
|
+
:param pulumi.Input[builtins.bool] system_route_table_route_propagation_enable: Whether the system route table receives propagation routes.
|
|
488
514
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The tags of Vpc.
|
|
489
515
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] user_cidrs: A list of user CIDRs.
|
|
490
516
|
:param pulumi.Input[builtins.str] vpc_name: The new name of the VPC.
|
|
491
|
-
|
|
492
517
|
The name must be 1 to 128 characters in length and cannot start with `http://` or `https://`.
|
|
493
518
|
|
|
494
519
|
The following arguments will be discarded. Please use new fields as soon as possible:
|
|
@@ -507,6 +532,8 @@ class _NetworkState:
|
|
|
507
532
|
pulumi.set(__self__, "dry_run", dry_run)
|
|
508
533
|
if enable_ipv6 is not None:
|
|
509
534
|
pulumi.set(__self__, "enable_ipv6", enable_ipv6)
|
|
535
|
+
if force_delete is not None:
|
|
536
|
+
pulumi.set(__self__, "force_delete", force_delete)
|
|
510
537
|
if ipv4_cidr_mask is not None:
|
|
511
538
|
pulumi.set(__self__, "ipv4_cidr_mask", ipv4_cidr_mask)
|
|
512
539
|
if ipv4_ipam_pool_id is not None:
|
|
@@ -542,6 +569,9 @@ class _NetworkState:
|
|
|
542
569
|
pulumi.log.warn("""secondary_cidr_blocks is deprecated: Field 'secondary_cidr_blocks' has been deprecated from provider version 1.185.0. Field 'secondary_cidr_blocks' has been deprecated from provider version 1.185.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_ipv4_cidr_block'. `secondary_cidr_blocks` attributes and `vpc.Ipv4CidrBlock` resource cannot be used at the same time.""")
|
|
543
570
|
if secondary_cidr_blocks is not None:
|
|
544
571
|
pulumi.set(__self__, "secondary_cidr_blocks", secondary_cidr_blocks)
|
|
572
|
+
if secondary_cidr_mask is not None:
|
|
573
|
+
warnings.warn("""Field 'secondary_cidr_mask' has been deprecated from provider version 1.248.0. Field 'secondary_cidr_blocks' has been deprecated from provider version 1.248.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_ipv4_cidr_block'. `secondary_cidr_mask` attributes and `vpc.Ipv4CidrBlock` resource cannot be used at the same time.""", DeprecationWarning)
|
|
574
|
+
pulumi.log.warn("""secondary_cidr_mask is deprecated: Field 'secondary_cidr_mask' has been deprecated from provider version 1.248.0. Field 'secondary_cidr_blocks' has been deprecated from provider version 1.248.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_ipv4_cidr_block'. `secondary_cidr_mask` attributes and `vpc.Ipv4CidrBlock` resource cannot be used at the same time.""")
|
|
545
575
|
if secondary_cidr_mask is not None:
|
|
546
576
|
pulumi.set(__self__, "secondary_cidr_mask", secondary_cidr_mask)
|
|
547
577
|
if status is not None:
|
|
@@ -550,6 +580,8 @@ class _NetworkState:
|
|
|
550
580
|
pulumi.set(__self__, "system_route_table_description", system_route_table_description)
|
|
551
581
|
if system_route_table_name is not None:
|
|
552
582
|
pulumi.set(__self__, "system_route_table_name", system_route_table_name)
|
|
583
|
+
if system_route_table_route_propagation_enable is not None:
|
|
584
|
+
pulumi.set(__self__, "system_route_table_route_propagation_enable", system_route_table_route_propagation_enable)
|
|
553
585
|
if tags is not None:
|
|
554
586
|
pulumi.set(__self__, "tags", tags)
|
|
555
587
|
if user_cidrs is not None:
|
|
@@ -562,6 +594,7 @@ class _NetworkState:
|
|
|
562
594
|
def cidr_block(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
563
595
|
"""
|
|
564
596
|
The CIDR block of the VPC.
|
|
597
|
+
|
|
565
598
|
- You can specify one of the following CIDR blocks or their subsets as the primary IPv4 CIDR block of the VPC: 192.168.0.0/16, 172.16.0.0/12, and 10.0.0.0/8. These CIDR blocks are standard private CIDR blocks as defined by Request for Comments (RFC) documents. The subnet mask must be 8 to 28 bits in length.
|
|
566
599
|
- You can also use a custom CIDR block other than 100.64.0.0/10, 224.0.0.0/4, 127.0.0.0/8, 169.254.0.0/16, and their subnets as the primary IPv4 CIDR block of the VPC.
|
|
567
600
|
"""
|
|
@@ -600,7 +633,6 @@ class _NetworkState:
|
|
|
600
633
|
def description(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
601
634
|
"""
|
|
602
635
|
The new description of the VPC.
|
|
603
|
-
|
|
604
636
|
The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
605
637
|
"""
|
|
606
638
|
return pulumi.get(self, "description")
|
|
@@ -613,7 +645,7 @@ class _NetworkState:
|
|
|
613
645
|
@pulumi.getter(name="dnsHostnameStatus")
|
|
614
646
|
def dns_hostname_status(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
615
647
|
"""
|
|
616
|
-
The status of VPC DNS Hostname
|
|
648
|
+
The status of VPC DNS Hostname
|
|
617
649
|
"""
|
|
618
650
|
return pulumi.get(self, "dns_hostname_status")
|
|
619
651
|
|
|
@@ -625,7 +657,7 @@ class _NetworkState:
|
|
|
625
657
|
@pulumi.getter(name="dryRun")
|
|
626
658
|
def dry_run(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
627
659
|
"""
|
|
628
|
-
|
|
660
|
+
Whether to PreCheck only this request. Value:
|
|
629
661
|
"""
|
|
630
662
|
return pulumi.get(self, "dry_run")
|
|
631
663
|
|
|
@@ -637,7 +669,7 @@ class _NetworkState:
|
|
|
637
669
|
@pulumi.getter(name="enableIpv6")
|
|
638
670
|
def enable_ipv6(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
639
671
|
"""
|
|
640
|
-
|
|
672
|
+
Whether to enable the IPv6 network segment. Value:
|
|
641
673
|
"""
|
|
642
674
|
return pulumi.get(self, "enable_ipv6")
|
|
643
675
|
|
|
@@ -645,6 +677,18 @@ class _NetworkState:
|
|
|
645
677
|
def enable_ipv6(self, value: Optional[pulumi.Input[builtins.bool]]):
|
|
646
678
|
pulumi.set(self, "enable_ipv6", value)
|
|
647
679
|
|
|
680
|
+
@property
|
|
681
|
+
@pulumi.getter(name="forceDelete")
|
|
682
|
+
def force_delete(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
683
|
+
"""
|
|
684
|
+
Force delete vpc or not.
|
|
685
|
+
"""
|
|
686
|
+
return pulumi.get(self, "force_delete")
|
|
687
|
+
|
|
688
|
+
@force_delete.setter
|
|
689
|
+
def force_delete(self, value: Optional[pulumi.Input[builtins.bool]]):
|
|
690
|
+
pulumi.set(self, "force_delete", value)
|
|
691
|
+
|
|
648
692
|
@property
|
|
649
693
|
@pulumi.getter(name="ipv4CidrMask")
|
|
650
694
|
def ipv4_cidr_mask(self) -> Optional[pulumi.Input[builtins.int]]:
|
|
@@ -744,7 +788,7 @@ class _NetworkState:
|
|
|
744
788
|
@pulumi.getter(name="regionId")
|
|
745
789
|
def region_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
746
790
|
"""
|
|
747
|
-
|
|
791
|
+
The ID of the region where the VPC is located.
|
|
748
792
|
"""
|
|
749
793
|
return pulumi.get(self, "region_id")
|
|
750
794
|
|
|
@@ -770,7 +814,7 @@ class _NetworkState:
|
|
|
770
814
|
@pulumi.getter(name="routeTableId")
|
|
771
815
|
def route_table_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
772
816
|
"""
|
|
773
|
-
The ID of the route table
|
|
817
|
+
The ID of the system route table.
|
|
774
818
|
"""
|
|
775
819
|
return pulumi.get(self, "route_table_id")
|
|
776
820
|
|
|
@@ -782,7 +826,7 @@ class _NetworkState:
|
|
|
782
826
|
@pulumi.getter(name="routerId")
|
|
783
827
|
def router_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
784
828
|
"""
|
|
785
|
-
The
|
|
829
|
+
The region ID of the VPC to which the route table belongs.
|
|
786
830
|
"""
|
|
787
831
|
return pulumi.get(self, "router_id")
|
|
788
832
|
|
|
@@ -818,11 +862,10 @@ class _NetworkState:
|
|
|
818
862
|
|
|
819
863
|
@property
|
|
820
864
|
@pulumi.getter(name="secondaryCidrMask")
|
|
865
|
+
@_utilities.deprecated("""Field 'secondary_cidr_mask' has been deprecated from provider version 1.248.0. Field 'secondary_cidr_blocks' has been deprecated from provider version 1.248.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_ipv4_cidr_block'. `secondary_cidr_mask` attributes and `vpc.Ipv4CidrBlock` resource cannot be used at the same time.""")
|
|
821
866
|
def secondary_cidr_mask(self) -> Optional[pulumi.Input[builtins.int]]:
|
|
822
867
|
"""
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
> **NOTE:** Specify the IPAM address pool to add an additional CIDR block to the VPC. Enter at least one of the SecondaryCidrBlock or SecondaryCidrMask parameters.
|
|
868
|
+
Field 'router_table_id' has been deprecated from provider version 1.248.0. New resource 'alicloud_vpc_ipv4_cidr_block' instead.
|
|
826
869
|
"""
|
|
827
870
|
return pulumi.get(self, "secondary_cidr_mask")
|
|
828
871
|
|
|
@@ -834,7 +877,7 @@ class _NetworkState:
|
|
|
834
877
|
@pulumi.getter
|
|
835
878
|
def status(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
836
879
|
"""
|
|
837
|
-
The status of the VPC.
|
|
880
|
+
The status of the VPC. `Pending`: The VPC is being configured. `Available`: The VPC is available.
|
|
838
881
|
"""
|
|
839
882
|
return pulumi.get(self, "status")
|
|
840
883
|
|
|
@@ -847,7 +890,6 @@ class _NetworkState:
|
|
|
847
890
|
def system_route_table_description(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
848
891
|
"""
|
|
849
892
|
The description of the route table.
|
|
850
|
-
|
|
851
893
|
The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
852
894
|
"""
|
|
853
895
|
return pulumi.get(self, "system_route_table_description")
|
|
@@ -861,7 +903,6 @@ class _NetworkState:
|
|
|
861
903
|
def system_route_table_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
862
904
|
"""
|
|
863
905
|
The name of the route table.
|
|
864
|
-
|
|
865
906
|
The name must be 1 to 128 characters in length and cannot start with `http://` or `https://`.
|
|
866
907
|
"""
|
|
867
908
|
return pulumi.get(self, "system_route_table_name")
|
|
@@ -870,6 +911,18 @@ class _NetworkState:
|
|
|
870
911
|
def system_route_table_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
871
912
|
pulumi.set(self, "system_route_table_name", value)
|
|
872
913
|
|
|
914
|
+
@property
|
|
915
|
+
@pulumi.getter(name="systemRouteTableRoutePropagationEnable")
|
|
916
|
+
def system_route_table_route_propagation_enable(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
917
|
+
"""
|
|
918
|
+
Whether the system route table receives propagation routes.
|
|
919
|
+
"""
|
|
920
|
+
return pulumi.get(self, "system_route_table_route_propagation_enable")
|
|
921
|
+
|
|
922
|
+
@system_route_table_route_propagation_enable.setter
|
|
923
|
+
def system_route_table_route_propagation_enable(self, value: Optional[pulumi.Input[builtins.bool]]):
|
|
924
|
+
pulumi.set(self, "system_route_table_route_propagation_enable", value)
|
|
925
|
+
|
|
873
926
|
@property
|
|
874
927
|
@pulumi.getter
|
|
875
928
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
|
@@ -899,7 +952,6 @@ class _NetworkState:
|
|
|
899
952
|
def vpc_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
900
953
|
"""
|
|
901
954
|
The new name of the VPC.
|
|
902
|
-
|
|
903
955
|
The name must be 1 to 128 characters in length and cannot start with `http://` or `https://`.
|
|
904
956
|
|
|
905
957
|
The following arguments will be discarded. Please use new fields as soon as possible:
|
|
@@ -925,6 +977,7 @@ class Network(pulumi.CustomResource):
|
|
|
925
977
|
dns_hostname_status: Optional[pulumi.Input[builtins.str]] = None,
|
|
926
978
|
dry_run: Optional[pulumi.Input[builtins.bool]] = None,
|
|
927
979
|
enable_ipv6: Optional[pulumi.Input[builtins.bool]] = None,
|
|
980
|
+
force_delete: Optional[pulumi.Input[builtins.bool]] = None,
|
|
928
981
|
ipv4_cidr_mask: Optional[pulumi.Input[builtins.int]] = None,
|
|
929
982
|
ipv4_ipam_pool_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
930
983
|
ipv6_cidr_block: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -936,6 +989,7 @@ class Network(pulumi.CustomResource):
|
|
|
936
989
|
secondary_cidr_mask: Optional[pulumi.Input[builtins.int]] = None,
|
|
937
990
|
system_route_table_description: Optional[pulumi.Input[builtins.str]] = None,
|
|
938
991
|
system_route_table_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
992
|
+
system_route_table_route_propagation_enable: Optional[pulumi.Input[builtins.bool]] = None,
|
|
939
993
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
|
940
994
|
user_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
|
941
995
|
vpc_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -954,7 +1008,7 @@ class Network(pulumi.CustomResource):
|
|
|
954
1008
|
You can use the existing vpc module
|
|
955
1009
|
to create a VPC and several VSwitches one-click.
|
|
956
1010
|
|
|
957
|
-
For information about VPC
|
|
1011
|
+
For information about VPC VPC and how to use it, see [What is VPC](https://www.alibabacloud.com/help/en/virtual-private-cloud/latest/what-is-a-vpc).
|
|
958
1012
|
|
|
959
1013
|
## Example Usage
|
|
960
1014
|
|
|
@@ -987,15 +1041,16 @@ class Network(pulumi.CustomResource):
|
|
|
987
1041
|
:param str resource_name: The name of the resource.
|
|
988
1042
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
989
1043
|
:param pulumi.Input[builtins.str] cidr_block: The CIDR block of the VPC.
|
|
1044
|
+
|
|
990
1045
|
- You can specify one of the following CIDR blocks or their subsets as the primary IPv4 CIDR block of the VPC: 192.168.0.0/16, 172.16.0.0/12, and 10.0.0.0/8. These CIDR blocks are standard private CIDR blocks as defined by Request for Comments (RFC) documents. The subnet mask must be 8 to 28 bits in length.
|
|
991
1046
|
- You can also use a custom CIDR block other than 100.64.0.0/10, 224.0.0.0/4, 127.0.0.0/8, 169.254.0.0/16, and their subnets as the primary IPv4 CIDR block of the VPC.
|
|
992
1047
|
:param pulumi.Input[builtins.bool] classic_link_enabled: The status of ClassicLink function.
|
|
993
1048
|
:param pulumi.Input[builtins.str] description: The new description of the VPC.
|
|
994
|
-
|
|
995
1049
|
The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
996
|
-
:param pulumi.Input[builtins.str] dns_hostname_status: The status of VPC DNS Hostname
|
|
997
|
-
:param pulumi.Input[builtins.bool] dry_run:
|
|
998
|
-
:param pulumi.Input[builtins.bool] enable_ipv6:
|
|
1050
|
+
:param pulumi.Input[builtins.str] dns_hostname_status: The status of VPC DNS Hostname
|
|
1051
|
+
:param pulumi.Input[builtins.bool] dry_run: Whether to PreCheck only this request. Value:
|
|
1052
|
+
:param pulumi.Input[builtins.bool] enable_ipv6: Whether to enable the IPv6 network segment. Value:
|
|
1053
|
+
:param pulumi.Input[builtins.bool] force_delete: Force delete vpc or not.
|
|
999
1054
|
:param pulumi.Input[builtins.int] ipv4_cidr_mask: Allocate VPC from The IPAM address pool by entering a mask.
|
|
1000
1055
|
|
|
1001
1056
|
> **NOTE:** when you specify the IPAM address pool to create a VPC, enter at least one of the CidrBlock or Ipv4CidrMask parameters.
|
|
@@ -1016,19 +1071,15 @@ class Network(pulumi.CustomResource):
|
|
|
1016
1071
|
|
|
1017
1072
|
> **NOTE:** You can use resource groups to facilitate resource grouping and permission management for an Alibaba Cloud. For more information, see [What is resource management?](https://www.alibabacloud.com/help/en/doc-detail/94475.html)
|
|
1018
1073
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] secondary_cidr_blocks: Field 'secondary_cidr_blocks' has been deprecated from provider version 1.185.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_ipv4_cidr_block'. `secondary_cidr_blocks` attributes and `vpc.Ipv4CidrBlock` resource cannot be used at the same time.
|
|
1019
|
-
:param pulumi.Input[builtins.int] secondary_cidr_mask:
|
|
1020
|
-
|
|
1021
|
-
> **NOTE:** Specify the IPAM address pool to add an additional CIDR block to the VPC. Enter at least one of the SecondaryCidrBlock or SecondaryCidrMask parameters.
|
|
1074
|
+
:param pulumi.Input[builtins.int] secondary_cidr_mask: Field 'router_table_id' has been deprecated from provider version 1.248.0. New resource 'alicloud_vpc_ipv4_cidr_block' instead.
|
|
1022
1075
|
:param pulumi.Input[builtins.str] system_route_table_description: The description of the route table.
|
|
1023
|
-
|
|
1024
1076
|
The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
1025
1077
|
:param pulumi.Input[builtins.str] system_route_table_name: The name of the route table.
|
|
1026
|
-
|
|
1027
1078
|
The name must be 1 to 128 characters in length and cannot start with `http://` or `https://`.
|
|
1079
|
+
:param pulumi.Input[builtins.bool] system_route_table_route_propagation_enable: Whether the system route table receives propagation routes.
|
|
1028
1080
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The tags of Vpc.
|
|
1029
1081
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] user_cidrs: A list of user CIDRs.
|
|
1030
1082
|
:param pulumi.Input[builtins.str] vpc_name: The new name of the VPC.
|
|
1031
|
-
|
|
1032
1083
|
The name must be 1 to 128 characters in length and cannot start with `http://` or `https://`.
|
|
1033
1084
|
|
|
1034
1085
|
The following arguments will be discarded. Please use new fields as soon as possible:
|
|
@@ -1053,7 +1104,7 @@ class Network(pulumi.CustomResource):
|
|
|
1053
1104
|
You can use the existing vpc module
|
|
1054
1105
|
to create a VPC and several VSwitches one-click.
|
|
1055
1106
|
|
|
1056
|
-
For information about VPC
|
|
1107
|
+
For information about VPC VPC and how to use it, see [What is VPC](https://www.alibabacloud.com/help/en/virtual-private-cloud/latest/what-is-a-vpc).
|
|
1057
1108
|
|
|
1058
1109
|
## Example Usage
|
|
1059
1110
|
|
|
@@ -1104,6 +1155,7 @@ class Network(pulumi.CustomResource):
|
|
|
1104
1155
|
dns_hostname_status: Optional[pulumi.Input[builtins.str]] = None,
|
|
1105
1156
|
dry_run: Optional[pulumi.Input[builtins.bool]] = None,
|
|
1106
1157
|
enable_ipv6: Optional[pulumi.Input[builtins.bool]] = None,
|
|
1158
|
+
force_delete: Optional[pulumi.Input[builtins.bool]] = None,
|
|
1107
1159
|
ipv4_cidr_mask: Optional[pulumi.Input[builtins.int]] = None,
|
|
1108
1160
|
ipv4_ipam_pool_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
1109
1161
|
ipv6_cidr_block: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -1115,6 +1167,7 @@ class Network(pulumi.CustomResource):
|
|
|
1115
1167
|
secondary_cidr_mask: Optional[pulumi.Input[builtins.int]] = None,
|
|
1116
1168
|
system_route_table_description: Optional[pulumi.Input[builtins.str]] = None,
|
|
1117
1169
|
system_route_table_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
1170
|
+
system_route_table_route_propagation_enable: Optional[pulumi.Input[builtins.bool]] = None,
|
|
1118
1171
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
|
1119
1172
|
user_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
|
1120
1173
|
vpc_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -1133,6 +1186,7 @@ class Network(pulumi.CustomResource):
|
|
|
1133
1186
|
__props__.__dict__["dns_hostname_status"] = dns_hostname_status
|
|
1134
1187
|
__props__.__dict__["dry_run"] = dry_run
|
|
1135
1188
|
__props__.__dict__["enable_ipv6"] = enable_ipv6
|
|
1189
|
+
__props__.__dict__["force_delete"] = force_delete
|
|
1136
1190
|
__props__.__dict__["ipv4_cidr_mask"] = ipv4_cidr_mask
|
|
1137
1191
|
__props__.__dict__["ipv4_ipam_pool_id"] = ipv4_ipam_pool_id
|
|
1138
1192
|
__props__.__dict__["ipv6_cidr_block"] = ipv6_cidr_block
|
|
@@ -1144,6 +1198,7 @@ class Network(pulumi.CustomResource):
|
|
|
1144
1198
|
__props__.__dict__["secondary_cidr_mask"] = secondary_cidr_mask
|
|
1145
1199
|
__props__.__dict__["system_route_table_description"] = system_route_table_description
|
|
1146
1200
|
__props__.__dict__["system_route_table_name"] = system_route_table_name
|
|
1201
|
+
__props__.__dict__["system_route_table_route_propagation_enable"] = system_route_table_route_propagation_enable
|
|
1147
1202
|
__props__.__dict__["tags"] = tags
|
|
1148
1203
|
__props__.__dict__["user_cidrs"] = user_cidrs
|
|
1149
1204
|
__props__.__dict__["vpc_name"] = vpc_name
|
|
@@ -1171,6 +1226,7 @@ class Network(pulumi.CustomResource):
|
|
|
1171
1226
|
dns_hostname_status: Optional[pulumi.Input[builtins.str]] = None,
|
|
1172
1227
|
dry_run: Optional[pulumi.Input[builtins.bool]] = None,
|
|
1173
1228
|
enable_ipv6: Optional[pulumi.Input[builtins.bool]] = None,
|
|
1229
|
+
force_delete: Optional[pulumi.Input[builtins.bool]] = None,
|
|
1174
1230
|
ipv4_cidr_mask: Optional[pulumi.Input[builtins.int]] = None,
|
|
1175
1231
|
ipv4_ipam_pool_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
1176
1232
|
ipv6_cidr_block: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -1188,6 +1244,7 @@ class Network(pulumi.CustomResource):
|
|
|
1188
1244
|
status: Optional[pulumi.Input[builtins.str]] = None,
|
|
1189
1245
|
system_route_table_description: Optional[pulumi.Input[builtins.str]] = None,
|
|
1190
1246
|
system_route_table_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
1247
|
+
system_route_table_route_propagation_enable: Optional[pulumi.Input[builtins.bool]] = None,
|
|
1191
1248
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
|
1192
1249
|
user_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
|
1193
1250
|
vpc_name: Optional[pulumi.Input[builtins.str]] = None) -> 'Network':
|
|
@@ -1199,16 +1256,17 @@ class Network(pulumi.CustomResource):
|
|
|
1199
1256
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
1200
1257
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1201
1258
|
:param pulumi.Input[builtins.str] cidr_block: The CIDR block of the VPC.
|
|
1259
|
+
|
|
1202
1260
|
- You can specify one of the following CIDR blocks or their subsets as the primary IPv4 CIDR block of the VPC: 192.168.0.0/16, 172.16.0.0/12, and 10.0.0.0/8. These CIDR blocks are standard private CIDR blocks as defined by Request for Comments (RFC) documents. The subnet mask must be 8 to 28 bits in length.
|
|
1203
1261
|
- You can also use a custom CIDR block other than 100.64.0.0/10, 224.0.0.0/4, 127.0.0.0/8, 169.254.0.0/16, and their subnets as the primary IPv4 CIDR block of the VPC.
|
|
1204
1262
|
:param pulumi.Input[builtins.bool] classic_link_enabled: The status of ClassicLink function.
|
|
1205
1263
|
:param pulumi.Input[builtins.str] create_time: The creation time of the VPC.
|
|
1206
1264
|
:param pulumi.Input[builtins.str] description: The new description of the VPC.
|
|
1207
|
-
|
|
1208
1265
|
The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
1209
|
-
:param pulumi.Input[builtins.str] dns_hostname_status: The status of VPC DNS Hostname
|
|
1210
|
-
:param pulumi.Input[builtins.bool] dry_run:
|
|
1211
|
-
:param pulumi.Input[builtins.bool] enable_ipv6:
|
|
1266
|
+
:param pulumi.Input[builtins.str] dns_hostname_status: The status of VPC DNS Hostname
|
|
1267
|
+
:param pulumi.Input[builtins.bool] dry_run: Whether to PreCheck only this request. Value:
|
|
1268
|
+
:param pulumi.Input[builtins.bool] enable_ipv6: Whether to enable the IPv6 network segment. Value:
|
|
1269
|
+
:param pulumi.Input[builtins.bool] force_delete: Force delete vpc or not.
|
|
1212
1270
|
:param pulumi.Input[builtins.int] ipv4_cidr_mask: Allocate VPC from The IPAM address pool by entering a mask.
|
|
1213
1271
|
|
|
1214
1272
|
> **NOTE:** when you specify the IPAM address pool to create a VPC, enter at least one of the CidrBlock or Ipv4CidrMask parameters.
|
|
@@ -1226,28 +1284,24 @@ class Network(pulumi.CustomResource):
|
|
|
1226
1284
|
> **NOTE:** If a single-line bandwidth whitelist is enabled, this field can be set to `ChinaTelecom` (China Telecom), `ChinaUnicom` (China Unicom), or `ChinaMobile` (China Mobile).
|
|
1227
1285
|
:param pulumi.Input[builtins.bool] is_default: Specifies whether to create the default VPC in the specified region. Valid values:
|
|
1228
1286
|
:param pulumi.Input[builtins.str] name: . Field 'name' has been deprecated from provider version 1.119.0. New field 'vpc_name' instead.
|
|
1229
|
-
:param pulumi.Input[builtins.str] region_id:
|
|
1287
|
+
:param pulumi.Input[builtins.str] region_id: The ID of the region where the VPC is located.
|
|
1230
1288
|
:param pulumi.Input[builtins.str] resource_group_id: The ID of the resource group to which you want to move the resource.
|
|
1231
1289
|
|
|
1232
1290
|
> **NOTE:** You can use resource groups to facilitate resource grouping and permission management for an Alibaba Cloud. For more information, see [What is resource management?](https://www.alibabacloud.com/help/en/doc-detail/94475.html)
|
|
1233
|
-
:param pulumi.Input[builtins.str] route_table_id: The ID of the route table
|
|
1234
|
-
:param pulumi.Input[builtins.str] router_id: The
|
|
1291
|
+
:param pulumi.Input[builtins.str] route_table_id: The ID of the system route table.
|
|
1292
|
+
:param pulumi.Input[builtins.str] router_id: The region ID of the VPC to which the route table belongs.
|
|
1235
1293
|
:param pulumi.Input[builtins.str] router_table_id: . Field 'router_table_id' has been deprecated from provider version 1.227.1. New field 'route_table_id' instead.
|
|
1236
1294
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] secondary_cidr_blocks: Field 'secondary_cidr_blocks' has been deprecated from provider version 1.185.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_ipv4_cidr_block'. `secondary_cidr_blocks` attributes and `vpc.Ipv4CidrBlock` resource cannot be used at the same time.
|
|
1237
|
-
:param pulumi.Input[builtins.int] secondary_cidr_mask:
|
|
1238
|
-
|
|
1239
|
-
> **NOTE:** Specify the IPAM address pool to add an additional CIDR block to the VPC. Enter at least one of the SecondaryCidrBlock or SecondaryCidrMask parameters.
|
|
1240
|
-
:param pulumi.Input[builtins.str] status: The status of the VPC.
|
|
1295
|
+
:param pulumi.Input[builtins.int] secondary_cidr_mask: Field 'router_table_id' has been deprecated from provider version 1.248.0. New resource 'alicloud_vpc_ipv4_cidr_block' instead.
|
|
1296
|
+
:param pulumi.Input[builtins.str] status: The status of the VPC. `Pending`: The VPC is being configured. `Available`: The VPC is available.
|
|
1241
1297
|
:param pulumi.Input[builtins.str] system_route_table_description: The description of the route table.
|
|
1242
|
-
|
|
1243
1298
|
The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
1244
1299
|
:param pulumi.Input[builtins.str] system_route_table_name: The name of the route table.
|
|
1245
|
-
|
|
1246
1300
|
The name must be 1 to 128 characters in length and cannot start with `http://` or `https://`.
|
|
1301
|
+
:param pulumi.Input[builtins.bool] system_route_table_route_propagation_enable: Whether the system route table receives propagation routes.
|
|
1247
1302
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The tags of Vpc.
|
|
1248
1303
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] user_cidrs: A list of user CIDRs.
|
|
1249
1304
|
:param pulumi.Input[builtins.str] vpc_name: The new name of the VPC.
|
|
1250
|
-
|
|
1251
1305
|
The name must be 1 to 128 characters in length and cannot start with `http://` or `https://`.
|
|
1252
1306
|
|
|
1253
1307
|
The following arguments will be discarded. Please use new fields as soon as possible:
|
|
@@ -1263,6 +1317,7 @@ class Network(pulumi.CustomResource):
|
|
|
1263
1317
|
__props__.__dict__["dns_hostname_status"] = dns_hostname_status
|
|
1264
1318
|
__props__.__dict__["dry_run"] = dry_run
|
|
1265
1319
|
__props__.__dict__["enable_ipv6"] = enable_ipv6
|
|
1320
|
+
__props__.__dict__["force_delete"] = force_delete
|
|
1266
1321
|
__props__.__dict__["ipv4_cidr_mask"] = ipv4_cidr_mask
|
|
1267
1322
|
__props__.__dict__["ipv4_ipam_pool_id"] = ipv4_ipam_pool_id
|
|
1268
1323
|
__props__.__dict__["ipv6_cidr_block"] = ipv6_cidr_block
|
|
@@ -1280,6 +1335,7 @@ class Network(pulumi.CustomResource):
|
|
|
1280
1335
|
__props__.__dict__["status"] = status
|
|
1281
1336
|
__props__.__dict__["system_route_table_description"] = system_route_table_description
|
|
1282
1337
|
__props__.__dict__["system_route_table_name"] = system_route_table_name
|
|
1338
|
+
__props__.__dict__["system_route_table_route_propagation_enable"] = system_route_table_route_propagation_enable
|
|
1283
1339
|
__props__.__dict__["tags"] = tags
|
|
1284
1340
|
__props__.__dict__["user_cidrs"] = user_cidrs
|
|
1285
1341
|
__props__.__dict__["vpc_name"] = vpc_name
|
|
@@ -1290,6 +1346,7 @@ class Network(pulumi.CustomResource):
|
|
|
1290
1346
|
def cidr_block(self) -> pulumi.Output[builtins.str]:
|
|
1291
1347
|
"""
|
|
1292
1348
|
The CIDR block of the VPC.
|
|
1349
|
+
|
|
1293
1350
|
- You can specify one of the following CIDR blocks or their subsets as the primary IPv4 CIDR block of the VPC: 192.168.0.0/16, 172.16.0.0/12, and 10.0.0.0/8. These CIDR blocks are standard private CIDR blocks as defined by Request for Comments (RFC) documents. The subnet mask must be 8 to 28 bits in length.
|
|
1294
1351
|
- You can also use a custom CIDR block other than 100.64.0.0/10, 224.0.0.0/4, 127.0.0.0/8, 169.254.0.0/16, and their subnets as the primary IPv4 CIDR block of the VPC.
|
|
1295
1352
|
"""
|
|
@@ -1316,7 +1373,6 @@ class Network(pulumi.CustomResource):
|
|
|
1316
1373
|
def description(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1317
1374
|
"""
|
|
1318
1375
|
The new description of the VPC.
|
|
1319
|
-
|
|
1320
1376
|
The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
1321
1377
|
"""
|
|
1322
1378
|
return pulumi.get(self, "description")
|
|
@@ -1325,7 +1381,7 @@ class Network(pulumi.CustomResource):
|
|
|
1325
1381
|
@pulumi.getter(name="dnsHostnameStatus")
|
|
1326
1382
|
def dns_hostname_status(self) -> pulumi.Output[builtins.str]:
|
|
1327
1383
|
"""
|
|
1328
|
-
The status of VPC DNS Hostname
|
|
1384
|
+
The status of VPC DNS Hostname
|
|
1329
1385
|
"""
|
|
1330
1386
|
return pulumi.get(self, "dns_hostname_status")
|
|
1331
1387
|
|
|
@@ -1333,7 +1389,7 @@ class Network(pulumi.CustomResource):
|
|
|
1333
1389
|
@pulumi.getter(name="dryRun")
|
|
1334
1390
|
def dry_run(self) -> pulumi.Output[Optional[builtins.bool]]:
|
|
1335
1391
|
"""
|
|
1336
|
-
|
|
1392
|
+
Whether to PreCheck only this request. Value:
|
|
1337
1393
|
"""
|
|
1338
1394
|
return pulumi.get(self, "dry_run")
|
|
1339
1395
|
|
|
@@ -1341,10 +1397,18 @@ class Network(pulumi.CustomResource):
|
|
|
1341
1397
|
@pulumi.getter(name="enableIpv6")
|
|
1342
1398
|
def enable_ipv6(self) -> pulumi.Output[Optional[builtins.bool]]:
|
|
1343
1399
|
"""
|
|
1344
|
-
|
|
1400
|
+
Whether to enable the IPv6 network segment. Value:
|
|
1345
1401
|
"""
|
|
1346
1402
|
return pulumi.get(self, "enable_ipv6")
|
|
1347
1403
|
|
|
1404
|
+
@property
|
|
1405
|
+
@pulumi.getter(name="forceDelete")
|
|
1406
|
+
def force_delete(self) -> pulumi.Output[Optional[builtins.bool]]:
|
|
1407
|
+
"""
|
|
1408
|
+
Force delete vpc or not.
|
|
1409
|
+
"""
|
|
1410
|
+
return pulumi.get(self, "force_delete")
|
|
1411
|
+
|
|
1348
1412
|
@property
|
|
1349
1413
|
@pulumi.getter(name="ipv4CidrMask")
|
|
1350
1414
|
def ipv4_cidr_mask(self) -> pulumi.Output[Optional[builtins.int]]:
|
|
@@ -1416,7 +1480,7 @@ class Network(pulumi.CustomResource):
|
|
|
1416
1480
|
@pulumi.getter(name="regionId")
|
|
1417
1481
|
def region_id(self) -> pulumi.Output[builtins.str]:
|
|
1418
1482
|
"""
|
|
1419
|
-
|
|
1483
|
+
The ID of the region where the VPC is located.
|
|
1420
1484
|
"""
|
|
1421
1485
|
return pulumi.get(self, "region_id")
|
|
1422
1486
|
|
|
@@ -1434,7 +1498,7 @@ class Network(pulumi.CustomResource):
|
|
|
1434
1498
|
@pulumi.getter(name="routeTableId")
|
|
1435
1499
|
def route_table_id(self) -> pulumi.Output[builtins.str]:
|
|
1436
1500
|
"""
|
|
1437
|
-
The ID of the route table
|
|
1501
|
+
The ID of the system route table.
|
|
1438
1502
|
"""
|
|
1439
1503
|
return pulumi.get(self, "route_table_id")
|
|
1440
1504
|
|
|
@@ -1442,7 +1506,7 @@ class Network(pulumi.CustomResource):
|
|
|
1442
1506
|
@pulumi.getter(name="routerId")
|
|
1443
1507
|
def router_id(self) -> pulumi.Output[builtins.str]:
|
|
1444
1508
|
"""
|
|
1445
|
-
The
|
|
1509
|
+
The region ID of the VPC to which the route table belongs.
|
|
1446
1510
|
"""
|
|
1447
1511
|
return pulumi.get(self, "router_id")
|
|
1448
1512
|
|
|
@@ -1466,11 +1530,10 @@ class Network(pulumi.CustomResource):
|
|
|
1466
1530
|
|
|
1467
1531
|
@property
|
|
1468
1532
|
@pulumi.getter(name="secondaryCidrMask")
|
|
1533
|
+
@_utilities.deprecated("""Field 'secondary_cidr_mask' has been deprecated from provider version 1.248.0. Field 'secondary_cidr_blocks' has been deprecated from provider version 1.248.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_ipv4_cidr_block'. `secondary_cidr_mask` attributes and `vpc.Ipv4CidrBlock` resource cannot be used at the same time.""")
|
|
1469
1534
|
def secondary_cidr_mask(self) -> pulumi.Output[Optional[builtins.int]]:
|
|
1470
1535
|
"""
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
> **NOTE:** Specify the IPAM address pool to add an additional CIDR block to the VPC. Enter at least one of the SecondaryCidrBlock or SecondaryCidrMask parameters.
|
|
1536
|
+
Field 'router_table_id' has been deprecated from provider version 1.248.0. New resource 'alicloud_vpc_ipv4_cidr_block' instead.
|
|
1474
1537
|
"""
|
|
1475
1538
|
return pulumi.get(self, "secondary_cidr_mask")
|
|
1476
1539
|
|
|
@@ -1478,7 +1541,7 @@ class Network(pulumi.CustomResource):
|
|
|
1478
1541
|
@pulumi.getter
|
|
1479
1542
|
def status(self) -> pulumi.Output[builtins.str]:
|
|
1480
1543
|
"""
|
|
1481
|
-
The status of the VPC.
|
|
1544
|
+
The status of the VPC. `Pending`: The VPC is being configured. `Available`: The VPC is available.
|
|
1482
1545
|
"""
|
|
1483
1546
|
return pulumi.get(self, "status")
|
|
1484
1547
|
|
|
@@ -1487,7 +1550,6 @@ class Network(pulumi.CustomResource):
|
|
|
1487
1550
|
def system_route_table_description(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1488
1551
|
"""
|
|
1489
1552
|
The description of the route table.
|
|
1490
|
-
|
|
1491
1553
|
The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
1492
1554
|
"""
|
|
1493
1555
|
return pulumi.get(self, "system_route_table_description")
|
|
@@ -1497,11 +1559,18 @@ class Network(pulumi.CustomResource):
|
|
|
1497
1559
|
def system_route_table_name(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1498
1560
|
"""
|
|
1499
1561
|
The name of the route table.
|
|
1500
|
-
|
|
1501
1562
|
The name must be 1 to 128 characters in length and cannot start with `http://` or `https://`.
|
|
1502
1563
|
"""
|
|
1503
1564
|
return pulumi.get(self, "system_route_table_name")
|
|
1504
1565
|
|
|
1566
|
+
@property
|
|
1567
|
+
@pulumi.getter(name="systemRouteTableRoutePropagationEnable")
|
|
1568
|
+
def system_route_table_route_propagation_enable(self) -> pulumi.Output[builtins.bool]:
|
|
1569
|
+
"""
|
|
1570
|
+
Whether the system route table receives propagation routes.
|
|
1571
|
+
"""
|
|
1572
|
+
return pulumi.get(self, "system_route_table_route_propagation_enable")
|
|
1573
|
+
|
|
1505
1574
|
@property
|
|
1506
1575
|
@pulumi.getter
|
|
1507
1576
|
def tags(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
|
|
@@ -1523,7 +1592,6 @@ class Network(pulumi.CustomResource):
|
|
|
1523
1592
|
def vpc_name(self) -> pulumi.Output[builtins.str]:
|
|
1524
1593
|
"""
|
|
1525
1594
|
The new name of the VPC.
|
|
1526
|
-
|
|
1527
1595
|
The name must be 1 to 128 characters in length and cannot start with `http://` or `https://`.
|
|
1528
1596
|
|
|
1529
1597
|
The following arguments will be discarded. Please use new fields as soon as possible:
|