pulumi-alicloud 3.84.0a1757017465__py3-none-any.whl → 3.85.0a1757389637__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 +64 -0
- pulumi_alicloud/amqp/get_instances.py +49 -20
- pulumi_alicloud/amqp/outputs.py +20 -20
- pulumi_alicloud/amqp/virtual_host.py +46 -20
- pulumi_alicloud/cloudsso/__init__.py +1 -0
- pulumi_alicloud/cloudsso/delegate_account.py +218 -0
- pulumi_alicloud/cs/node_pool.py +7 -0
- pulumi_alicloud/ddos/bgp_ip.py +57 -48
- pulumi_alicloud/ddos/ddos_bgp_instance.py +246 -106
- pulumi_alicloud/dms/__init__.py +1 -0
- pulumi_alicloud/dms/enterprise_workspace.py +354 -0
- pulumi_alicloud/dns/ddos_bgp_instance.py +246 -106
- pulumi_alicloud/eflo/node.py +54 -7
- pulumi_alicloud/esa/__init__.py +3 -0
- pulumi_alicloud/esa/kv_account.py +145 -0
- pulumi_alicloud/esa/routine_related_record.py +226 -0
- pulumi_alicloud/esa/url_observation.py +352 -0
- pulumi_alicloud/fc/get_service.py +2 -2
- pulumi_alicloud/hologram/instance.py +35 -0
- pulumi_alicloud/kms/instance.py +47 -0
- pulumi_alicloud/log/oss_export.py +6 -0
- pulumi_alicloud/message/service_subscription.py +48 -1
- pulumi_alicloud/mongodb/sharding_instance.py +338 -0
- pulumi_alicloud/nlb/server_group.py +28 -21
- pulumi_alicloud/oss/bucket.py +56 -0
- pulumi_alicloud/privatelink/vpc_endpoint.py +21 -7
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/resourcemanager/__init__.py +1 -0
- pulumi_alicloud/resourcemanager/delegated_administrator.py +22 -50
- pulumi_alicloud/resourcemanager/folder.py +106 -29
- pulumi_alicloud/resourcemanager/get_accounts.py +35 -18
- pulumi_alicloud/resourcemanager/message_contact.py +572 -0
- pulumi_alicloud/resourcemanager/outputs.py +31 -20
- pulumi_alicloud/resourcemanager/resource_directory.py +137 -46
- pulumi_alicloud/resourcemanager/shared_resource.py +81 -45
- pulumi_alicloud/resourcemanager/shared_target.py +60 -24
- pulumi_alicloud/sls/__init__.py +4 -0
- pulumi_alicloud/sls/_inputs.py +128 -0
- pulumi_alicloud/sls/get_logtail_configs.py +395 -0
- pulumi_alicloud/sls/get_machine_groups.py +229 -0
- pulumi_alicloud/sls/logtail_config.py +692 -0
- pulumi_alicloud/sls/machine_group.py +502 -0
- pulumi_alicloud/sls/outputs.py +172 -0
- pulumi_alicloud/vpc/_inputs.py +87 -54
- pulumi_alicloud/vpc/dhcp_options_set.py +97 -58
- pulumi_alicloud/vpc/flow_log.py +25 -25
- pulumi_alicloud/vpc/ha_vip_attachment.py +41 -60
- pulumi_alicloud/vpc/ha_vipv2.py +100 -88
- pulumi_alicloud/vpc/network_acl.py +34 -23
- pulumi_alicloud/vpc/outputs.py +58 -36
- {pulumi_alicloud-3.84.0a1757017465.dist-info → pulumi_alicloud-3.85.0a1757389637.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.84.0a1757017465.dist-info → pulumi_alicloud-3.85.0a1757389637.dist-info}/RECORD +54 -44
- {pulumi_alicloud-3.84.0a1757017465.dist-info → pulumi_alicloud-3.85.0a1757389637.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.84.0a1757017465.dist-info → pulumi_alicloud-3.85.0a1757389637.dist-info}/top_level.txt +0 -0
|
@@ -35,13 +35,14 @@ class NetworkAclArgs:
|
|
|
35
35
|
:param pulumi.Input[_builtins.str] vpc_id: The ID of the associated VPC.
|
|
36
36
|
|
|
37
37
|
The following arguments will be discarded. Please use new fields as soon as possible:
|
|
38
|
-
:param pulumi.Input[_builtins.str] description: The description of the network ACL.
|
|
38
|
+
:param pulumi.Input[_builtins.str] description: The description of the network ACL. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
39
39
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkAclEgressAclEntryArgs']]] egress_acl_entries: Out direction rule information. See `egress_acl_entries` below.
|
|
40
40
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkAclIngressAclEntryArgs']]] ingress_acl_entries: Inward direction rule information. See `ingress_acl_entries` below.
|
|
41
41
|
:param pulumi.Input[_builtins.str] name: . Field 'name' has been deprecated from provider version 1.122.0. New field 'network_acl_name' instead.
|
|
42
|
-
:param pulumi.Input[_builtins.str] network_acl_name: The name of the network ACL.
|
|
42
|
+
:param pulumi.Input[_builtins.str] network_acl_name: The name of the network ACL.
|
|
43
|
+
The name must be 1 to 128 characters in length and cannot start with http:// or https.
|
|
43
44
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkAclResourceArgs']]] resources: The associated resource. See `resources` below.
|
|
44
|
-
:param pulumi.Input[_builtins.str] source_network_acl_id: SOURCE NetworkAcl specified by CopyNetworkAclEntries
|
|
45
|
+
:param pulumi.Input[_builtins.str] source_network_acl_id: SOURCE NetworkAcl specified by CopyNetworkAclEntries
|
|
45
46
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: The tags of this resource.
|
|
46
47
|
"""
|
|
47
48
|
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
@@ -83,7 +84,7 @@ class NetworkAclArgs:
|
|
|
83
84
|
@pulumi.getter
|
|
84
85
|
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
85
86
|
"""
|
|
86
|
-
The description of the network ACL.
|
|
87
|
+
The description of the network ACL. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
87
88
|
"""
|
|
88
89
|
return pulumi.get(self, "description")
|
|
89
90
|
|
|
@@ -132,7 +133,8 @@ class NetworkAclArgs:
|
|
|
132
133
|
@pulumi.getter(name="networkAclName")
|
|
133
134
|
def network_acl_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
134
135
|
"""
|
|
135
|
-
The name of the network ACL.
|
|
136
|
+
The name of the network ACL.
|
|
137
|
+
The name must be 1 to 128 characters in length and cannot start with http:// or https.
|
|
136
138
|
"""
|
|
137
139
|
return pulumi.get(self, "network_acl_name")
|
|
138
140
|
|
|
@@ -156,7 +158,7 @@ class NetworkAclArgs:
|
|
|
156
158
|
@pulumi.getter(name="sourceNetworkAclId")
|
|
157
159
|
def source_network_acl_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
158
160
|
"""
|
|
159
|
-
SOURCE NetworkAcl specified by CopyNetworkAclEntries
|
|
161
|
+
SOURCE NetworkAcl specified by CopyNetworkAclEntries
|
|
160
162
|
"""
|
|
161
163
|
return pulumi.get(self, "source_network_acl_id")
|
|
162
164
|
|
|
@@ -194,13 +196,14 @@ class _NetworkAclState:
|
|
|
194
196
|
"""
|
|
195
197
|
Input properties used for looking up and filtering NetworkAcl resources.
|
|
196
198
|
:param pulumi.Input[_builtins.str] create_time: The creation time of the resource.
|
|
197
|
-
:param pulumi.Input[_builtins.str] description: The description of the network ACL.
|
|
199
|
+
:param pulumi.Input[_builtins.str] description: The description of the network ACL. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
198
200
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkAclEgressAclEntryArgs']]] egress_acl_entries: Out direction rule information. See `egress_acl_entries` below.
|
|
199
201
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkAclIngressAclEntryArgs']]] ingress_acl_entries: Inward direction rule information. See `ingress_acl_entries` below.
|
|
200
202
|
:param pulumi.Input[_builtins.str] name: . Field 'name' has been deprecated from provider version 1.122.0. New field 'network_acl_name' instead.
|
|
201
|
-
:param pulumi.Input[_builtins.str] network_acl_name: The name of the network ACL.
|
|
203
|
+
:param pulumi.Input[_builtins.str] network_acl_name: The name of the network ACL.
|
|
204
|
+
The name must be 1 to 128 characters in length and cannot start with http:// or https.
|
|
202
205
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkAclResourceArgs']]] resources: The associated resource. See `resources` below.
|
|
203
|
-
:param pulumi.Input[_builtins.str] source_network_acl_id: SOURCE NetworkAcl specified by CopyNetworkAclEntries
|
|
206
|
+
:param pulumi.Input[_builtins.str] source_network_acl_id: SOURCE NetworkAcl specified by CopyNetworkAclEntries
|
|
204
207
|
:param pulumi.Input[_builtins.str] status: The state of the network ACL.
|
|
205
208
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: The tags of this resource.
|
|
206
209
|
:param pulumi.Input[_builtins.str] vpc_id: The ID of the associated VPC.
|
|
@@ -249,7 +252,7 @@ class _NetworkAclState:
|
|
|
249
252
|
@pulumi.getter
|
|
250
253
|
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
251
254
|
"""
|
|
252
|
-
The description of the network ACL.
|
|
255
|
+
The description of the network ACL. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
253
256
|
"""
|
|
254
257
|
return pulumi.get(self, "description")
|
|
255
258
|
|
|
@@ -298,7 +301,8 @@ class _NetworkAclState:
|
|
|
298
301
|
@pulumi.getter(name="networkAclName")
|
|
299
302
|
def network_acl_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
300
303
|
"""
|
|
301
|
-
The name of the network ACL.
|
|
304
|
+
The name of the network ACL.
|
|
305
|
+
The name must be 1 to 128 characters in length and cannot start with http:// or https.
|
|
302
306
|
"""
|
|
303
307
|
return pulumi.get(self, "network_acl_name")
|
|
304
308
|
|
|
@@ -322,7 +326,7 @@ class _NetworkAclState:
|
|
|
322
326
|
@pulumi.getter(name="sourceNetworkAclId")
|
|
323
327
|
def source_network_acl_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
324
328
|
"""
|
|
325
|
-
SOURCE NetworkAcl specified by CopyNetworkAclEntries
|
|
329
|
+
SOURCE NetworkAcl specified by CopyNetworkAclEntries
|
|
326
330
|
"""
|
|
327
331
|
return pulumi.get(self, "source_network_acl_id")
|
|
328
332
|
|
|
@@ -386,7 +390,9 @@ class NetworkAcl(pulumi.CustomResource):
|
|
|
386
390
|
vpc_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
387
391
|
__props__=None):
|
|
388
392
|
"""
|
|
389
|
-
Provides a VPC Network Acl resource.
|
|
393
|
+
Provides a VPC Network Acl resource.
|
|
394
|
+
|
|
395
|
+
Network Access Control List (ACL) is a Network Access Control function in VPC. You can customize the network ACL rules and bind the network ACL to the switch to control the traffic of ECS instances in the switch.
|
|
390
396
|
|
|
391
397
|
For information about VPC Network Acl and how to use it, see [What is Network Acl](https://www.alibabacloud.com/help/en/ens/latest/createnetworkacl).
|
|
392
398
|
|
|
@@ -449,13 +455,14 @@ class NetworkAcl(pulumi.CustomResource):
|
|
|
449
455
|
|
|
450
456
|
:param str resource_name: The name of the resource.
|
|
451
457
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
452
|
-
:param pulumi.Input[_builtins.str] description: The description of the network ACL.
|
|
458
|
+
:param pulumi.Input[_builtins.str] description: The description of the network ACL. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
453
459
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclEgressAclEntryArgs', 'NetworkAclEgressAclEntryArgsDict']]]] egress_acl_entries: Out direction rule information. See `egress_acl_entries` below.
|
|
454
460
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclIngressAclEntryArgs', 'NetworkAclIngressAclEntryArgsDict']]]] ingress_acl_entries: Inward direction rule information. See `ingress_acl_entries` below.
|
|
455
461
|
:param pulumi.Input[_builtins.str] name: . Field 'name' has been deprecated from provider version 1.122.0. New field 'network_acl_name' instead.
|
|
456
|
-
:param pulumi.Input[_builtins.str] network_acl_name: The name of the network ACL.
|
|
462
|
+
:param pulumi.Input[_builtins.str] network_acl_name: The name of the network ACL.
|
|
463
|
+
The name must be 1 to 128 characters in length and cannot start with http:// or https.
|
|
457
464
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclResourceArgs', 'NetworkAclResourceArgsDict']]]] resources: The associated resource. See `resources` below.
|
|
458
|
-
:param pulumi.Input[_builtins.str] source_network_acl_id: SOURCE NetworkAcl specified by CopyNetworkAclEntries
|
|
465
|
+
:param pulumi.Input[_builtins.str] source_network_acl_id: SOURCE NetworkAcl specified by CopyNetworkAclEntries
|
|
459
466
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: The tags of this resource.
|
|
460
467
|
:param pulumi.Input[_builtins.str] vpc_id: The ID of the associated VPC.
|
|
461
468
|
|
|
@@ -468,7 +475,9 @@ class NetworkAcl(pulumi.CustomResource):
|
|
|
468
475
|
args: NetworkAclArgs,
|
|
469
476
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
470
477
|
"""
|
|
471
|
-
Provides a VPC Network Acl resource.
|
|
478
|
+
Provides a VPC Network Acl resource.
|
|
479
|
+
|
|
480
|
+
Network Access Control List (ACL) is a Network Access Control function in VPC. You can customize the network ACL rules and bind the network ACL to the switch to control the traffic of ECS instances in the switch.
|
|
472
481
|
|
|
473
482
|
For information about VPC Network Acl and how to use it, see [What is Network Acl](https://www.alibabacloud.com/help/en/ens/latest/createnetworkacl).
|
|
474
483
|
|
|
@@ -604,13 +613,14 @@ class NetworkAcl(pulumi.CustomResource):
|
|
|
604
613
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
605
614
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
606
615
|
:param pulumi.Input[_builtins.str] create_time: The creation time of the resource.
|
|
607
|
-
:param pulumi.Input[_builtins.str] description: The description of the network ACL.
|
|
616
|
+
:param pulumi.Input[_builtins.str] description: The description of the network ACL. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
608
617
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclEgressAclEntryArgs', 'NetworkAclEgressAclEntryArgsDict']]]] egress_acl_entries: Out direction rule information. See `egress_acl_entries` below.
|
|
609
618
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclIngressAclEntryArgs', 'NetworkAclIngressAclEntryArgsDict']]]] ingress_acl_entries: Inward direction rule information. See `ingress_acl_entries` below.
|
|
610
619
|
:param pulumi.Input[_builtins.str] name: . Field 'name' has been deprecated from provider version 1.122.0. New field 'network_acl_name' instead.
|
|
611
|
-
:param pulumi.Input[_builtins.str] network_acl_name: The name of the network ACL.
|
|
620
|
+
:param pulumi.Input[_builtins.str] network_acl_name: The name of the network ACL.
|
|
621
|
+
The name must be 1 to 128 characters in length and cannot start with http:// or https.
|
|
612
622
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclResourceArgs', 'NetworkAclResourceArgsDict']]]] resources: The associated resource. See `resources` below.
|
|
613
|
-
:param pulumi.Input[_builtins.str] source_network_acl_id: SOURCE NetworkAcl specified by CopyNetworkAclEntries
|
|
623
|
+
:param pulumi.Input[_builtins.str] source_network_acl_id: SOURCE NetworkAcl specified by CopyNetworkAclEntries
|
|
614
624
|
:param pulumi.Input[_builtins.str] status: The state of the network ACL.
|
|
615
625
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: The tags of this resource.
|
|
616
626
|
:param pulumi.Input[_builtins.str] vpc_id: The ID of the associated VPC.
|
|
@@ -646,7 +656,7 @@ class NetworkAcl(pulumi.CustomResource):
|
|
|
646
656
|
@pulumi.getter
|
|
647
657
|
def description(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
648
658
|
"""
|
|
649
|
-
The description of the network ACL.
|
|
659
|
+
The description of the network ACL. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
650
660
|
"""
|
|
651
661
|
return pulumi.get(self, "description")
|
|
652
662
|
|
|
@@ -679,7 +689,8 @@ class NetworkAcl(pulumi.CustomResource):
|
|
|
679
689
|
@pulumi.getter(name="networkAclName")
|
|
680
690
|
def network_acl_name(self) -> pulumi.Output[_builtins.str]:
|
|
681
691
|
"""
|
|
682
|
-
The name of the network ACL.
|
|
692
|
+
The name of the network ACL.
|
|
693
|
+
The name must be 1 to 128 characters in length and cannot start with http:// or https.
|
|
683
694
|
"""
|
|
684
695
|
return pulumi.get(self, "network_acl_name")
|
|
685
696
|
|
|
@@ -695,7 +706,7 @@ class NetworkAcl(pulumi.CustomResource):
|
|
|
695
706
|
@pulumi.getter(name="sourceNetworkAclId")
|
|
696
707
|
def source_network_acl_id(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
697
708
|
"""
|
|
698
|
-
SOURCE NetworkAcl specified by CopyNetworkAclEntries
|
|
709
|
+
SOURCE NetworkAcl specified by CopyNetworkAclEntries
|
|
699
710
|
"""
|
|
700
711
|
return pulumi.get(self, "source_network_acl_id")
|
|
701
712
|
|
pulumi_alicloud/vpc/outputs.py
CHANGED
|
@@ -264,15 +264,22 @@ class NetworkAclEgressAclEntry(dict):
|
|
|
264
264
|
port: Optional[_builtins.str] = None,
|
|
265
265
|
protocol: Optional[_builtins.str] = None):
|
|
266
266
|
"""
|
|
267
|
-
:param _builtins.str description: The description of the outbound rule.
|
|
268
|
-
|
|
269
|
-
:param _builtins.str
|
|
270
|
-
:param _builtins.str
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
:param _builtins.str
|
|
267
|
+
:param _builtins.str description: The description of the outbound rule.
|
|
268
|
+
The description must be 1 to 256 characters in length and cannot start with http:// or https.
|
|
269
|
+
:param _builtins.str destination_cidr_ip: The destination CIDR block.
|
|
270
|
+
:param _builtins.str entry_type: The route entry type. Value
|
|
271
|
+
custom custom rule
|
|
272
|
+
system system rules
|
|
273
|
+
service Cloud service rules
|
|
274
|
+
:param _builtins.str ip_version: The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
|
|
275
|
+
:param _builtins.str network_acl_entry_name: Name of the outbound rule entry.
|
|
276
|
+
The name must be 1 to 128 characters in length and cannot start with http:// or https.
|
|
277
|
+
:param _builtins.str policy: The action to be performed on network traffic that matches the rule. Valid values:
|
|
278
|
+
- accept
|
|
279
|
+
- drop
|
|
280
|
+
:param _builtins.str port: The destination port range of the outbound rule.
|
|
281
|
+
When the Protocol type of the outbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted.
|
|
282
|
+
When the Protocol type of the outbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
|
|
276
283
|
:param _builtins.str protocol: The protocol type. Value:
|
|
277
284
|
- icmp: Network Control Message Protocol.
|
|
278
285
|
- gre: Generic Routing Encapsulation Protocol.
|
|
@@ -301,7 +308,8 @@ class NetworkAclEgressAclEntry(dict):
|
|
|
301
308
|
@pulumi.getter
|
|
302
309
|
def description(self) -> Optional[_builtins.str]:
|
|
303
310
|
"""
|
|
304
|
-
The description of the outbound rule.
|
|
311
|
+
The description of the outbound rule.
|
|
312
|
+
The description must be 1 to 256 characters in length and cannot start with http:// or https.
|
|
305
313
|
"""
|
|
306
314
|
return pulumi.get(self, "description")
|
|
307
315
|
|
|
@@ -309,7 +317,7 @@ class NetworkAclEgressAclEntry(dict):
|
|
|
309
317
|
@pulumi.getter(name="destinationCidrIp")
|
|
310
318
|
def destination_cidr_ip(self) -> Optional[_builtins.str]:
|
|
311
319
|
"""
|
|
312
|
-
The
|
|
320
|
+
The destination CIDR block.
|
|
313
321
|
"""
|
|
314
322
|
return pulumi.get(self, "destination_cidr_ip")
|
|
315
323
|
|
|
@@ -317,7 +325,10 @@ class NetworkAclEgressAclEntry(dict):
|
|
|
317
325
|
@pulumi.getter(name="entryType")
|
|
318
326
|
def entry_type(self) -> Optional[_builtins.str]:
|
|
319
327
|
"""
|
|
320
|
-
The route entry type.
|
|
328
|
+
The route entry type. Value
|
|
329
|
+
custom custom rule
|
|
330
|
+
system system rules
|
|
331
|
+
service Cloud service rules
|
|
321
332
|
"""
|
|
322
333
|
return pulumi.get(self, "entry_type")
|
|
323
334
|
|
|
@@ -325,7 +336,7 @@ class NetworkAclEgressAclEntry(dict):
|
|
|
325
336
|
@pulumi.getter(name="ipVersion")
|
|
326
337
|
def ip_version(self) -> Optional[_builtins.str]:
|
|
327
338
|
"""
|
|
328
|
-
The IP protocol version of the route entry. Valid values: "
|
|
339
|
+
The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
|
|
329
340
|
"""
|
|
330
341
|
return pulumi.get(self, "ip_version")
|
|
331
342
|
|
|
@@ -333,7 +344,8 @@ class NetworkAclEgressAclEntry(dict):
|
|
|
333
344
|
@pulumi.getter(name="networkAclEntryName")
|
|
334
345
|
def network_acl_entry_name(self) -> Optional[_builtins.str]:
|
|
335
346
|
"""
|
|
336
|
-
Name of the outbound rule entry.
|
|
347
|
+
Name of the outbound rule entry.
|
|
348
|
+
The name must be 1 to 128 characters in length and cannot start with http:// or https.
|
|
337
349
|
"""
|
|
338
350
|
return pulumi.get(self, "network_acl_entry_name")
|
|
339
351
|
|
|
@@ -341,9 +353,9 @@ class NetworkAclEgressAclEntry(dict):
|
|
|
341
353
|
@pulumi.getter
|
|
342
354
|
def policy(self) -> Optional[_builtins.str]:
|
|
343
355
|
"""
|
|
344
|
-
|
|
345
|
-
- accept
|
|
346
|
-
- drop
|
|
356
|
+
The action to be performed on network traffic that matches the rule. Valid values:
|
|
357
|
+
- accept
|
|
358
|
+
- drop
|
|
347
359
|
"""
|
|
348
360
|
return pulumi.get(self, "policy")
|
|
349
361
|
|
|
@@ -351,7 +363,9 @@ class NetworkAclEgressAclEntry(dict):
|
|
|
351
363
|
@pulumi.getter
|
|
352
364
|
def port(self) -> Optional[_builtins.str]:
|
|
353
365
|
"""
|
|
354
|
-
The destination port range of the outbound rule.
|
|
366
|
+
The destination port range of the outbound rule.
|
|
367
|
+
When the Protocol type of the outbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted.
|
|
368
|
+
When the Protocol type of the outbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
|
|
355
369
|
"""
|
|
356
370
|
return pulumi.get(self, "port")
|
|
357
371
|
|
|
@@ -576,21 +590,25 @@ class NetworkAclIngressAclEntry(dict):
|
|
|
576
590
|
protocol: Optional[_builtins.str] = None,
|
|
577
591
|
source_cidr_ip: Optional[_builtins.str] = None):
|
|
578
592
|
"""
|
|
579
|
-
:param _builtins.str description: Description of the inbound rule.
|
|
580
|
-
|
|
581
|
-
:param _builtins.str
|
|
582
|
-
:param _builtins.str
|
|
583
|
-
:param _builtins.str
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
593
|
+
:param _builtins.str description: Description of the inbound rule.
|
|
594
|
+
The description must be 1 to 256 characters in length and cannot start with http:// or https.
|
|
595
|
+
:param _builtins.str entry_type: The route entry type. Value
|
|
596
|
+
:param _builtins.str ip_version: The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
|
|
597
|
+
:param _builtins.str network_acl_entry_name: The name of the inbound rule entry.
|
|
598
|
+
The name must be 1 to 128 characters in length and cannot start with http:// or https.
|
|
599
|
+
:param _builtins.str policy: The action to be performed on network traffic that matches the rule. Valid values:
|
|
600
|
+
- accept
|
|
601
|
+
- drop
|
|
602
|
+
:param _builtins.str port: The source port range of the inbound rule.
|
|
603
|
+
When the Protocol type of the inbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted.
|
|
604
|
+
When the Protocol type of the inbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
|
|
587
605
|
:param _builtins.str protocol: The protocol type. Value:
|
|
588
606
|
- icmp: Network Control Message Protocol.
|
|
589
607
|
- gre: Generic Routing Encapsulation Protocol.
|
|
590
608
|
- tcp: Transmission Control Protocol.
|
|
591
609
|
- udp: User Datagram Protocol.
|
|
592
610
|
- all: Supports all protocols.
|
|
593
|
-
:param _builtins.str source_cidr_ip:
|
|
611
|
+
:param _builtins.str source_cidr_ip: The source CIDR block.
|
|
594
612
|
"""
|
|
595
613
|
if description is not None:
|
|
596
614
|
pulumi.set(__self__, "description", description)
|
|
@@ -613,7 +631,8 @@ class NetworkAclIngressAclEntry(dict):
|
|
|
613
631
|
@pulumi.getter
|
|
614
632
|
def description(self) -> Optional[_builtins.str]:
|
|
615
633
|
"""
|
|
616
|
-
Description of the inbound rule.
|
|
634
|
+
Description of the inbound rule.
|
|
635
|
+
The description must be 1 to 256 characters in length and cannot start with http:// or https.
|
|
617
636
|
"""
|
|
618
637
|
return pulumi.get(self, "description")
|
|
619
638
|
|
|
@@ -621,7 +640,7 @@ class NetworkAclIngressAclEntry(dict):
|
|
|
621
640
|
@pulumi.getter(name="entryType")
|
|
622
641
|
def entry_type(self) -> Optional[_builtins.str]:
|
|
623
642
|
"""
|
|
624
|
-
The route entry type.
|
|
643
|
+
The route entry type. Value
|
|
625
644
|
"""
|
|
626
645
|
return pulumi.get(self, "entry_type")
|
|
627
646
|
|
|
@@ -629,7 +648,7 @@ class NetworkAclIngressAclEntry(dict):
|
|
|
629
648
|
@pulumi.getter(name="ipVersion")
|
|
630
649
|
def ip_version(self) -> Optional[_builtins.str]:
|
|
631
650
|
"""
|
|
632
|
-
The IP protocol version of the route entry. Valid values: "
|
|
651
|
+
The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
|
|
633
652
|
"""
|
|
634
653
|
return pulumi.get(self, "ip_version")
|
|
635
654
|
|
|
@@ -637,7 +656,8 @@ class NetworkAclIngressAclEntry(dict):
|
|
|
637
656
|
@pulumi.getter(name="networkAclEntryName")
|
|
638
657
|
def network_acl_entry_name(self) -> Optional[_builtins.str]:
|
|
639
658
|
"""
|
|
640
|
-
The name of the inbound rule entry.
|
|
659
|
+
The name of the inbound rule entry.
|
|
660
|
+
The name must be 1 to 128 characters in length and cannot start with http:// or https.
|
|
641
661
|
"""
|
|
642
662
|
return pulumi.get(self, "network_acl_entry_name")
|
|
643
663
|
|
|
@@ -645,9 +665,9 @@ class NetworkAclIngressAclEntry(dict):
|
|
|
645
665
|
@pulumi.getter
|
|
646
666
|
def policy(self) -> Optional[_builtins.str]:
|
|
647
667
|
"""
|
|
648
|
-
|
|
649
|
-
- accept
|
|
650
|
-
- drop
|
|
668
|
+
The action to be performed on network traffic that matches the rule. Valid values:
|
|
669
|
+
- accept
|
|
670
|
+
- drop
|
|
651
671
|
"""
|
|
652
672
|
return pulumi.get(self, "policy")
|
|
653
673
|
|
|
@@ -655,7 +675,9 @@ class NetworkAclIngressAclEntry(dict):
|
|
|
655
675
|
@pulumi.getter
|
|
656
676
|
def port(self) -> Optional[_builtins.str]:
|
|
657
677
|
"""
|
|
658
|
-
The source port range of the inbound rule.
|
|
678
|
+
The source port range of the inbound rule.
|
|
679
|
+
When the Protocol type of the inbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted.
|
|
680
|
+
When the Protocol type of the inbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
|
|
659
681
|
"""
|
|
660
682
|
return pulumi.get(self, "port")
|
|
661
683
|
|
|
@@ -676,7 +698,7 @@ class NetworkAclIngressAclEntry(dict):
|
|
|
676
698
|
@pulumi.getter(name="sourceCidrIp")
|
|
677
699
|
def source_cidr_ip(self) -> Optional[_builtins.str]:
|
|
678
700
|
"""
|
|
679
|
-
|
|
701
|
+
The source CIDR block.
|
|
680
702
|
"""
|
|
681
703
|
return pulumi.get(self, "source_cidr_ip")
|
|
682
704
|
|