pulumi-alicloud 3.88.0a1761582647__py3-none-any.whl → 3.88.0a1761969289__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 +59 -0
- pulumi_alicloud/cfg/_inputs.py +27 -24
- pulumi_alicloud/cfg/aggregator.py +142 -53
- pulumi_alicloud/cfg/outputs.py +18 -15
- pulumi_alicloud/cloudfirewall/__init__.py +1 -0
- pulumi_alicloud/cloudfirewall/get_tls_inspect_ca_certificates.py +214 -0
- pulumi_alicloud/cloudfirewall/outputs.py +30 -0
- pulumi_alicloud/cms/_inputs.py +870 -10
- pulumi_alicloud/cms/get_site_monitors.py +2 -2
- pulumi_alicloud/cms/outputs.py +606 -6
- pulumi_alicloud/cms/site_monitor.py +360 -89
- pulumi_alicloud/cr/registry_enterprise_instance.py +63 -0
- pulumi_alicloud/dts/instance.py +14 -14
- pulumi_alicloud/eci/container_group.py +47 -0
- pulumi_alicloud/ecs/security_group_rule.py +7 -7
- pulumi_alicloud/ens/load_balancer.py +8 -4
- pulumi_alicloud/esa/__init__.py +1 -0
- pulumi_alicloud/esa/_inputs.py +611 -0
- pulumi_alicloud/esa/cache_rule.py +47 -0
- pulumi_alicloud/esa/certificate.py +21 -54
- pulumi_alicloud/esa/compression_rule.py +47 -0
- pulumi_alicloud/esa/load_balancer.py +999 -0
- pulumi_alicloud/esa/outputs.py +469 -0
- pulumi_alicloud/eventbridge/event_source.py +57 -57
- pulumi_alicloud/ga/_inputs.py +56 -16
- pulumi_alicloud/ga/outputs.py +39 -11
- pulumi_alicloud/lindorm/instance_v2.py +358 -70
- pulumi_alicloud/oss/_inputs.py +53 -0
- pulumi_alicloud/oss/bucket_logging.py +80 -29
- pulumi_alicloud/oss/bucket_replication.py +55 -8
- pulumi_alicloud/oss/outputs.py +31 -0
- pulumi_alicloud/polardb/__init__.py +2 -0
- pulumi_alicloud/polardb/cluster.py +14 -14
- pulumi_alicloud/polardb/zonal_account.py +449 -0
- pulumi_alicloud/polardb/zonal_db_cluster.py +2 -2
- pulumi_alicloud/polardb/zonal_endpoint.py +865 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/policy.py +2 -2
- pulumi_alicloud/resourcemanager/__init__.py +2 -0
- pulumi_alicloud/resourcemanager/_inputs.py +745 -0
- pulumi_alicloud/resourcemanager/delivery_channel.py +449 -0
- pulumi_alicloud/resourcemanager/multi_account_delivery_channel.py +470 -0
- pulumi_alicloud/resourcemanager/outputs.py +643 -0
- pulumi_alicloud/sae/_inputs.py +60 -0
- pulumi_alicloud/sae/application.py +1 -1
- pulumi_alicloud/sae/outputs.py +42 -0
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/get_indexs.py +304 -0
- pulumi_alicloud/sls/outputs.py +148 -0
- pulumi_alicloud/star_rocks_instance.py +8 -2
- pulumi_alicloud/starrocks/__init__.py +12 -0
- pulumi_alicloud/starrocks/_inputs.py +656 -0
- pulumi_alicloud/starrocks/instance.py +1427 -0
- pulumi_alicloud/starrocks/node_group.py +1298 -0
- pulumi_alicloud/starrocks/outputs.py +508 -0
- pulumi_alicloud/vpc/_inputs.py +84 -0
- pulumi_alicloud/vpc/gateway_endpoint.py +8 -8
- pulumi_alicloud/vpc/network_acl_entries.py +16 -20
- pulumi_alicloud/vpc/outputs.py +48 -0
- pulumi_alicloud/wafv3/_inputs.py +396 -0
- pulumi_alicloud/wafv3/defense_rule.py +40 -110
- pulumi_alicloud/wafv3/outputs.py +303 -0
- {pulumi_alicloud-3.88.0a1761582647.dist-info → pulumi_alicloud-3.88.0a1761969289.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.88.0a1761582647.dist-info → pulumi_alicloud-3.88.0a1761969289.dist-info}/RECORD +66 -54
- {pulumi_alicloud-3.88.0a1761582647.dist-info → pulumi_alicloud-3.88.0a1761969289.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.88.0a1761582647.dist-info → pulumi_alicloud-3.88.0a1761969289.dist-info}/top_level.txt +0 -0
pulumi_alicloud/vpc/_inputs.py
CHANGED
|
@@ -421,15 +421,33 @@ class NetworkAclEgressAclEntryArgs:
|
|
|
421
421
|
if not MYPY:
|
|
422
422
|
class NetworkAclEntriesEgressArgsDict(TypedDict):
|
|
423
423
|
description: NotRequired[pulumi.Input[_builtins.str]]
|
|
424
|
+
"""
|
|
425
|
+
The description of the egress entry.
|
|
426
|
+
"""
|
|
424
427
|
destination_cidr_ip: NotRequired[pulumi.Input[_builtins.str]]
|
|
425
428
|
"""
|
|
426
429
|
The destination ip of the egress entry.
|
|
427
430
|
"""
|
|
428
431
|
entry_type: NotRequired[pulumi.Input[_builtins.str]]
|
|
432
|
+
"""
|
|
433
|
+
The entry type of the egress entry. It must be `custom` or `system`. Default value is `custom`.
|
|
434
|
+
"""
|
|
429
435
|
name: NotRequired[pulumi.Input[_builtins.str]]
|
|
436
|
+
"""
|
|
437
|
+
The name of the egress entry.
|
|
438
|
+
"""
|
|
430
439
|
policy: NotRequired[pulumi.Input[_builtins.str]]
|
|
440
|
+
"""
|
|
441
|
+
The policy of the egress entry. It must be `accept` or `drop`.
|
|
442
|
+
"""
|
|
431
443
|
port: NotRequired[pulumi.Input[_builtins.str]]
|
|
444
|
+
"""
|
|
445
|
+
The port of the egress entry.
|
|
446
|
+
"""
|
|
432
447
|
protocol: NotRequired[pulumi.Input[_builtins.str]]
|
|
448
|
+
"""
|
|
449
|
+
The protocol of the egress entry.
|
|
450
|
+
"""
|
|
433
451
|
elif False:
|
|
434
452
|
NetworkAclEntriesEgressArgsDict: TypeAlias = Mapping[str, Any]
|
|
435
453
|
|
|
@@ -444,7 +462,13 @@ class NetworkAclEntriesEgressArgs:
|
|
|
444
462
|
port: Optional[pulumi.Input[_builtins.str]] = None,
|
|
445
463
|
protocol: Optional[pulumi.Input[_builtins.str]] = None):
|
|
446
464
|
"""
|
|
465
|
+
:param pulumi.Input[_builtins.str] description: The description of the egress entry.
|
|
447
466
|
:param pulumi.Input[_builtins.str] destination_cidr_ip: The destination ip of the egress entry.
|
|
467
|
+
:param pulumi.Input[_builtins.str] entry_type: The entry type of the egress entry. It must be `custom` or `system`. Default value is `custom`.
|
|
468
|
+
:param pulumi.Input[_builtins.str] name: The name of the egress entry.
|
|
469
|
+
:param pulumi.Input[_builtins.str] policy: The policy of the egress entry. It must be `accept` or `drop`.
|
|
470
|
+
:param pulumi.Input[_builtins.str] port: The port of the egress entry.
|
|
471
|
+
:param pulumi.Input[_builtins.str] protocol: The protocol of the egress entry.
|
|
448
472
|
"""
|
|
449
473
|
if description is not None:
|
|
450
474
|
pulumi.set(__self__, "description", description)
|
|
@@ -464,6 +488,9 @@ class NetworkAclEntriesEgressArgs:
|
|
|
464
488
|
@_builtins.property
|
|
465
489
|
@pulumi.getter
|
|
466
490
|
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
491
|
+
"""
|
|
492
|
+
The description of the egress entry.
|
|
493
|
+
"""
|
|
467
494
|
return pulumi.get(self, "description")
|
|
468
495
|
|
|
469
496
|
@description.setter
|
|
@@ -485,6 +512,9 @@ class NetworkAclEntriesEgressArgs:
|
|
|
485
512
|
@_builtins.property
|
|
486
513
|
@pulumi.getter(name="entryType")
|
|
487
514
|
def entry_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
515
|
+
"""
|
|
516
|
+
The entry type of the egress entry. It must be `custom` or `system`. Default value is `custom`.
|
|
517
|
+
"""
|
|
488
518
|
return pulumi.get(self, "entry_type")
|
|
489
519
|
|
|
490
520
|
@entry_type.setter
|
|
@@ -494,6 +524,9 @@ class NetworkAclEntriesEgressArgs:
|
|
|
494
524
|
@_builtins.property
|
|
495
525
|
@pulumi.getter
|
|
496
526
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
527
|
+
"""
|
|
528
|
+
The name of the egress entry.
|
|
529
|
+
"""
|
|
497
530
|
return pulumi.get(self, "name")
|
|
498
531
|
|
|
499
532
|
@name.setter
|
|
@@ -503,6 +536,9 @@ class NetworkAclEntriesEgressArgs:
|
|
|
503
536
|
@_builtins.property
|
|
504
537
|
@pulumi.getter
|
|
505
538
|
def policy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
539
|
+
"""
|
|
540
|
+
The policy of the egress entry. It must be `accept` or `drop`.
|
|
541
|
+
"""
|
|
506
542
|
return pulumi.get(self, "policy")
|
|
507
543
|
|
|
508
544
|
@policy.setter
|
|
@@ -512,6 +548,9 @@ class NetworkAclEntriesEgressArgs:
|
|
|
512
548
|
@_builtins.property
|
|
513
549
|
@pulumi.getter
|
|
514
550
|
def port(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
551
|
+
"""
|
|
552
|
+
The port of the egress entry.
|
|
553
|
+
"""
|
|
515
554
|
return pulumi.get(self, "port")
|
|
516
555
|
|
|
517
556
|
@port.setter
|
|
@@ -521,6 +560,9 @@ class NetworkAclEntriesEgressArgs:
|
|
|
521
560
|
@_builtins.property
|
|
522
561
|
@pulumi.getter
|
|
523
562
|
def protocol(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
563
|
+
"""
|
|
564
|
+
The protocol of the egress entry.
|
|
565
|
+
"""
|
|
524
566
|
return pulumi.get(self, "protocol")
|
|
525
567
|
|
|
526
568
|
@protocol.setter
|
|
@@ -531,11 +573,29 @@ class NetworkAclEntriesEgressArgs:
|
|
|
531
573
|
if not MYPY:
|
|
532
574
|
class NetworkAclEntriesIngressArgsDict(TypedDict):
|
|
533
575
|
description: NotRequired[pulumi.Input[_builtins.str]]
|
|
576
|
+
"""
|
|
577
|
+
The description of the ingress entry.
|
|
578
|
+
"""
|
|
534
579
|
entry_type: NotRequired[pulumi.Input[_builtins.str]]
|
|
580
|
+
"""
|
|
581
|
+
The entry type of the ingress entry. It must be `custom` or `system`. Default value is `custom`.
|
|
582
|
+
"""
|
|
535
583
|
name: NotRequired[pulumi.Input[_builtins.str]]
|
|
584
|
+
"""
|
|
585
|
+
The name of the ingress entry.
|
|
586
|
+
"""
|
|
536
587
|
policy: NotRequired[pulumi.Input[_builtins.str]]
|
|
588
|
+
"""
|
|
589
|
+
The policy of the ingress entry. It must be `accept` or `drop`.
|
|
590
|
+
"""
|
|
537
591
|
port: NotRequired[pulumi.Input[_builtins.str]]
|
|
592
|
+
"""
|
|
593
|
+
The port of the ingress entry.
|
|
594
|
+
"""
|
|
538
595
|
protocol: NotRequired[pulumi.Input[_builtins.str]]
|
|
596
|
+
"""
|
|
597
|
+
The protocol of the ingress entry.
|
|
598
|
+
"""
|
|
539
599
|
source_cidr_ip: NotRequired[pulumi.Input[_builtins.str]]
|
|
540
600
|
"""
|
|
541
601
|
The source ip of the ingress entry.
|
|
@@ -554,6 +614,12 @@ class NetworkAclEntriesIngressArgs:
|
|
|
554
614
|
protocol: Optional[pulumi.Input[_builtins.str]] = None,
|
|
555
615
|
source_cidr_ip: Optional[pulumi.Input[_builtins.str]] = None):
|
|
556
616
|
"""
|
|
617
|
+
:param pulumi.Input[_builtins.str] description: The description of the ingress entry.
|
|
618
|
+
:param pulumi.Input[_builtins.str] entry_type: The entry type of the ingress entry. It must be `custom` or `system`. Default value is `custom`.
|
|
619
|
+
:param pulumi.Input[_builtins.str] name: The name of the ingress entry.
|
|
620
|
+
:param pulumi.Input[_builtins.str] policy: The policy of the ingress entry. It must be `accept` or `drop`.
|
|
621
|
+
:param pulumi.Input[_builtins.str] port: The port of the ingress entry.
|
|
622
|
+
:param pulumi.Input[_builtins.str] protocol: The protocol of the ingress entry.
|
|
557
623
|
:param pulumi.Input[_builtins.str] source_cidr_ip: The source ip of the ingress entry.
|
|
558
624
|
"""
|
|
559
625
|
if description is not None:
|
|
@@ -574,6 +640,9 @@ class NetworkAclEntriesIngressArgs:
|
|
|
574
640
|
@_builtins.property
|
|
575
641
|
@pulumi.getter
|
|
576
642
|
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
643
|
+
"""
|
|
644
|
+
The description of the ingress entry.
|
|
645
|
+
"""
|
|
577
646
|
return pulumi.get(self, "description")
|
|
578
647
|
|
|
579
648
|
@description.setter
|
|
@@ -583,6 +652,9 @@ class NetworkAclEntriesIngressArgs:
|
|
|
583
652
|
@_builtins.property
|
|
584
653
|
@pulumi.getter(name="entryType")
|
|
585
654
|
def entry_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
655
|
+
"""
|
|
656
|
+
The entry type of the ingress entry. It must be `custom` or `system`. Default value is `custom`.
|
|
657
|
+
"""
|
|
586
658
|
return pulumi.get(self, "entry_type")
|
|
587
659
|
|
|
588
660
|
@entry_type.setter
|
|
@@ -592,6 +664,9 @@ class NetworkAclEntriesIngressArgs:
|
|
|
592
664
|
@_builtins.property
|
|
593
665
|
@pulumi.getter
|
|
594
666
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
667
|
+
"""
|
|
668
|
+
The name of the ingress entry.
|
|
669
|
+
"""
|
|
595
670
|
return pulumi.get(self, "name")
|
|
596
671
|
|
|
597
672
|
@name.setter
|
|
@@ -601,6 +676,9 @@ class NetworkAclEntriesIngressArgs:
|
|
|
601
676
|
@_builtins.property
|
|
602
677
|
@pulumi.getter
|
|
603
678
|
def policy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
679
|
+
"""
|
|
680
|
+
The policy of the ingress entry. It must be `accept` or `drop`.
|
|
681
|
+
"""
|
|
604
682
|
return pulumi.get(self, "policy")
|
|
605
683
|
|
|
606
684
|
@policy.setter
|
|
@@ -610,6 +688,9 @@ class NetworkAclEntriesIngressArgs:
|
|
|
610
688
|
@_builtins.property
|
|
611
689
|
@pulumi.getter
|
|
612
690
|
def port(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
691
|
+
"""
|
|
692
|
+
The port of the ingress entry.
|
|
693
|
+
"""
|
|
613
694
|
return pulumi.get(self, "port")
|
|
614
695
|
|
|
615
696
|
@port.setter
|
|
@@ -619,6 +700,9 @@ class NetworkAclEntriesIngressArgs:
|
|
|
619
700
|
@_builtins.property
|
|
620
701
|
@pulumi.getter
|
|
621
702
|
def protocol(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
703
|
+
"""
|
|
704
|
+
The protocol of the ingress entry.
|
|
705
|
+
"""
|
|
622
706
|
return pulumi.get(self, "protocol")
|
|
623
707
|
|
|
624
708
|
@protocol.setter
|
|
@@ -36,7 +36,7 @@ class GatewayEndpointArgs:
|
|
|
36
36
|
:param pulumi.Input[_builtins.str] gateway_endpoint_name: The name of the VPC gateway endpoint.
|
|
37
37
|
:param pulumi.Input[_builtins.str] policy_document: Access control policies for cloud services. This parameter is required when the cloud service is oss. For details about the syntax and structure of access policies, see [syntax and structure of permission Policies](https://help.aliyun.com/document_detail/93739.html).
|
|
38
38
|
:param pulumi.Input[_builtins.str] resource_group_id: The ID of the resource group to which the instance belongs.
|
|
39
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] route_tables: The ID list of the route table associated with the VPC gateway endpoint.
|
|
39
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] route_tables: The ID list of the route table associated with the VPC gateway endpoint. **NOTE:** this argument cannot be set at the same time as `vpc.GatewayEndpointRouteTableAttachment`.
|
|
40
40
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: The tags of the resource.
|
|
41
41
|
"""
|
|
42
42
|
pulumi.set(__self__, "service_name", service_name)
|
|
@@ -131,7 +131,7 @@ class GatewayEndpointArgs:
|
|
|
131
131
|
@pulumi.getter(name="routeTables")
|
|
132
132
|
def route_tables(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
133
133
|
"""
|
|
134
|
-
The ID list of the route table associated with the VPC gateway endpoint.
|
|
134
|
+
The ID list of the route table associated with the VPC gateway endpoint. **NOTE:** this argument cannot be set at the same time as `vpc.GatewayEndpointRouteTableAttachment`.
|
|
135
135
|
"""
|
|
136
136
|
return pulumi.get(self, "route_tables")
|
|
137
137
|
|
|
@@ -173,7 +173,7 @@ class _GatewayEndpointState:
|
|
|
173
173
|
:param pulumi.Input[_builtins.str] gateway_endpoint_name: The name of the VPC gateway endpoint.
|
|
174
174
|
:param pulumi.Input[_builtins.str] policy_document: Access control policies for cloud services. This parameter is required when the cloud service is oss. For details about the syntax and structure of access policies, see [syntax and structure of permission Policies](https://help.aliyun.com/document_detail/93739.html).
|
|
175
175
|
:param pulumi.Input[_builtins.str] resource_group_id: The ID of the resource group to which the instance belongs.
|
|
176
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] route_tables: The ID list of the route table associated with the VPC gateway endpoint.
|
|
176
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] route_tables: The ID list of the route table associated with the VPC gateway endpoint. **NOTE:** this argument cannot be set at the same time as `vpc.GatewayEndpointRouteTableAttachment`.
|
|
177
177
|
:param pulumi.Input[_builtins.str] service_name: The endpoint service name.
|
|
178
178
|
:param pulumi.Input[_builtins.str] status: The status of VPC gateway endpoint.
|
|
179
179
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: The tags of the resource.
|
|
@@ -265,7 +265,7 @@ class _GatewayEndpointState:
|
|
|
265
265
|
@pulumi.getter(name="routeTables")
|
|
266
266
|
def route_tables(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
267
267
|
"""
|
|
268
|
-
The ID list of the route table associated with the VPC gateway endpoint.
|
|
268
|
+
The ID list of the route table associated with the VPC gateway endpoint. **NOTE:** this argument cannot be set at the same time as `vpc.GatewayEndpointRouteTableAttachment`.
|
|
269
269
|
"""
|
|
270
270
|
return pulumi.get(self, "route_tables")
|
|
271
271
|
|
|
@@ -398,7 +398,7 @@ class GatewayEndpoint(pulumi.CustomResource):
|
|
|
398
398
|
:param pulumi.Input[_builtins.str] gateway_endpoint_name: The name of the VPC gateway endpoint.
|
|
399
399
|
:param pulumi.Input[_builtins.str] policy_document: Access control policies for cloud services. This parameter is required when the cloud service is oss. For details about the syntax and structure of access policies, see [syntax and structure of permission Policies](https://help.aliyun.com/document_detail/93739.html).
|
|
400
400
|
:param pulumi.Input[_builtins.str] resource_group_id: The ID of the resource group to which the instance belongs.
|
|
401
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] route_tables: The ID list of the route table associated with the VPC gateway endpoint.
|
|
401
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] route_tables: The ID list of the route table associated with the VPC gateway endpoint. **NOTE:** this argument cannot be set at the same time as `vpc.GatewayEndpointRouteTableAttachment`.
|
|
402
402
|
:param pulumi.Input[_builtins.str] service_name: The endpoint service name.
|
|
403
403
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: The tags of the resource.
|
|
404
404
|
:param pulumi.Input[_builtins.str] vpc_id: The ID of the VPC.
|
|
@@ -542,7 +542,7 @@ class GatewayEndpoint(pulumi.CustomResource):
|
|
|
542
542
|
:param pulumi.Input[_builtins.str] gateway_endpoint_name: The name of the VPC gateway endpoint.
|
|
543
543
|
:param pulumi.Input[_builtins.str] policy_document: Access control policies for cloud services. This parameter is required when the cloud service is oss. For details about the syntax and structure of access policies, see [syntax and structure of permission Policies](https://help.aliyun.com/document_detail/93739.html).
|
|
544
544
|
:param pulumi.Input[_builtins.str] resource_group_id: The ID of the resource group to which the instance belongs.
|
|
545
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] route_tables: The ID list of the route table associated with the VPC gateway endpoint.
|
|
545
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] route_tables: The ID list of the route table associated with the VPC gateway endpoint. **NOTE:** this argument cannot be set at the same time as `vpc.GatewayEndpointRouteTableAttachment`.
|
|
546
546
|
:param pulumi.Input[_builtins.str] service_name: The endpoint service name.
|
|
547
547
|
:param pulumi.Input[_builtins.str] status: The status of VPC gateway endpoint.
|
|
548
548
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: The tags of the resource.
|
|
@@ -607,9 +607,9 @@ class GatewayEndpoint(pulumi.CustomResource):
|
|
|
607
607
|
|
|
608
608
|
@_builtins.property
|
|
609
609
|
@pulumi.getter(name="routeTables")
|
|
610
|
-
def route_tables(self) -> pulumi.Output[
|
|
610
|
+
def route_tables(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
|
611
611
|
"""
|
|
612
|
-
The ID list of the route table associated with the VPC gateway endpoint.
|
|
612
|
+
The ID list of the route table associated with the VPC gateway endpoint. **NOTE:** this argument cannot be set at the same time as `vpc.GatewayEndpointRouteTableAttachment`.
|
|
613
613
|
"""
|
|
614
614
|
return pulumi.get(self, "route_tables")
|
|
615
615
|
|
|
@@ -27,8 +27,8 @@ class NetworkAclEntriesArgs:
|
|
|
27
27
|
"""
|
|
28
28
|
The set of arguments for constructing a NetworkAclEntries resource.
|
|
29
29
|
:param pulumi.Input[_builtins.str] network_acl_id: The id of the network acl, the field can't be changed.
|
|
30
|
-
:param pulumi.Input[Sequence[pulumi.Input['NetworkAclEntriesEgressArgs']]] egresses: List of the egress entries of the network acl. The order of the egress entries determines the priority.
|
|
31
|
-
:param pulumi.Input[Sequence[pulumi.Input['NetworkAclEntriesIngressArgs']]] ingresses: List of the ingress entries of the network acl. The order of the ingress entries determines the priority.
|
|
30
|
+
:param pulumi.Input[Sequence[pulumi.Input['NetworkAclEntriesEgressArgs']]] egresses: List of the egress entries of the network acl. The order of the egress entries determines the priority. See `egress` below.
|
|
31
|
+
:param pulumi.Input[Sequence[pulumi.Input['NetworkAclEntriesIngressArgs']]] ingresses: List of the ingress entries of the network acl. The order of the ingress entries determines the priority. See `ingress` below.
|
|
32
32
|
"""
|
|
33
33
|
pulumi.set(__self__, "network_acl_id", network_acl_id)
|
|
34
34
|
if egresses is not None:
|
|
@@ -52,7 +52,7 @@ class NetworkAclEntriesArgs:
|
|
|
52
52
|
@pulumi.getter
|
|
53
53
|
def egresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NetworkAclEntriesEgressArgs']]]]:
|
|
54
54
|
"""
|
|
55
|
-
List of the egress entries of the network acl. The order of the egress entries determines the priority.
|
|
55
|
+
List of the egress entries of the network acl. The order of the egress entries determines the priority. See `egress` below.
|
|
56
56
|
"""
|
|
57
57
|
return pulumi.get(self, "egresses")
|
|
58
58
|
|
|
@@ -64,7 +64,7 @@ class NetworkAclEntriesArgs:
|
|
|
64
64
|
@pulumi.getter
|
|
65
65
|
def ingresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NetworkAclEntriesIngressArgs']]]]:
|
|
66
66
|
"""
|
|
67
|
-
List of the ingress entries of the network acl. The order of the ingress entries determines the priority.
|
|
67
|
+
List of the ingress entries of the network acl. The order of the ingress entries determines the priority. See `ingress` below.
|
|
68
68
|
"""
|
|
69
69
|
return pulumi.get(self, "ingresses")
|
|
70
70
|
|
|
@@ -81,8 +81,8 @@ class _NetworkAclEntriesState:
|
|
|
81
81
|
network_acl_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
82
82
|
"""
|
|
83
83
|
Input properties used for looking up and filtering NetworkAclEntries resources.
|
|
84
|
-
:param pulumi.Input[Sequence[pulumi.Input['NetworkAclEntriesEgressArgs']]] egresses: List of the egress entries of the network acl. The order of the egress entries determines the priority.
|
|
85
|
-
:param pulumi.Input[Sequence[pulumi.Input['NetworkAclEntriesIngressArgs']]] ingresses: List of the ingress entries of the network acl. The order of the ingress entries determines the priority.
|
|
84
|
+
:param pulumi.Input[Sequence[pulumi.Input['NetworkAclEntriesEgressArgs']]] egresses: List of the egress entries of the network acl. The order of the egress entries determines the priority. See `egress` below.
|
|
85
|
+
:param pulumi.Input[Sequence[pulumi.Input['NetworkAclEntriesIngressArgs']]] ingresses: List of the ingress entries of the network acl. The order of the ingress entries determines the priority. See `ingress` below.
|
|
86
86
|
:param pulumi.Input[_builtins.str] network_acl_id: The id of the network acl, the field can't be changed.
|
|
87
87
|
"""
|
|
88
88
|
if egresses is not None:
|
|
@@ -96,7 +96,7 @@ class _NetworkAclEntriesState:
|
|
|
96
96
|
@pulumi.getter
|
|
97
97
|
def egresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NetworkAclEntriesEgressArgs']]]]:
|
|
98
98
|
"""
|
|
99
|
-
List of the egress entries of the network acl. The order of the egress entries determines the priority.
|
|
99
|
+
List of the egress entries of the network acl. The order of the egress entries determines the priority. See `egress` below.
|
|
100
100
|
"""
|
|
101
101
|
return pulumi.get(self, "egresses")
|
|
102
102
|
|
|
@@ -108,7 +108,7 @@ class _NetworkAclEntriesState:
|
|
|
108
108
|
@pulumi.getter
|
|
109
109
|
def ingresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NetworkAclEntriesIngressArgs']]]]:
|
|
110
110
|
"""
|
|
111
|
-
List of the ingress entries of the network acl. The order of the ingress entries determines the priority.
|
|
111
|
+
List of the ingress entries of the network acl. The order of the ingress entries determines the priority. See `ingress` below.
|
|
112
112
|
"""
|
|
113
113
|
return pulumi.get(self, "ingresses")
|
|
114
114
|
|
|
@@ -142,12 +142,10 @@ class NetworkAclEntries(pulumi.CustomResource):
|
|
|
142
142
|
"""
|
|
143
143
|
Provides a network acl entries resource to create ingress and egress entries.
|
|
144
144
|
|
|
145
|
-
> **NOTE:** Available in 1.45.0+.
|
|
145
|
+
> **NOTE:** Available in 1.45.0+.
|
|
146
146
|
|
|
147
147
|
> **NOTE:** It doesn't support concurrency and the order of the ingress and egress entries determines the priority.
|
|
148
148
|
|
|
149
|
-
> **NOTE:** Using this resource need to open a whitelist.
|
|
150
|
-
|
|
151
149
|
> **DEPRECATED:** This resource has been deprecated from version `1.122.0`. Replace by `ingress_acl_entries` and `egress_acl_entries` with the resource alicloud_network_acl.
|
|
152
150
|
|
|
153
151
|
## Example Usage
|
|
@@ -204,8 +202,8 @@ class NetworkAclEntries(pulumi.CustomResource):
|
|
|
204
202
|
|
|
205
203
|
:param str resource_name: The name of the resource.
|
|
206
204
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
207
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclEntriesEgressArgs', 'NetworkAclEntriesEgressArgsDict']]]] egresses: List of the egress entries of the network acl. The order of the egress entries determines the priority.
|
|
208
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclEntriesIngressArgs', 'NetworkAclEntriesIngressArgsDict']]]] ingresses: List of the ingress entries of the network acl. The order of the ingress entries determines the priority.
|
|
205
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclEntriesEgressArgs', 'NetworkAclEntriesEgressArgsDict']]]] egresses: List of the egress entries of the network acl. The order of the egress entries determines the priority. See `egress` below.
|
|
206
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclEntriesIngressArgs', 'NetworkAclEntriesIngressArgsDict']]]] ingresses: List of the ingress entries of the network acl. The order of the ingress entries determines the priority. See `ingress` below.
|
|
209
207
|
:param pulumi.Input[_builtins.str] network_acl_id: The id of the network acl, the field can't be changed.
|
|
210
208
|
"""
|
|
211
209
|
...
|
|
@@ -217,12 +215,10 @@ class NetworkAclEntries(pulumi.CustomResource):
|
|
|
217
215
|
"""
|
|
218
216
|
Provides a network acl entries resource to create ingress and egress entries.
|
|
219
217
|
|
|
220
|
-
> **NOTE:** Available in 1.45.0+.
|
|
218
|
+
> **NOTE:** Available in 1.45.0+.
|
|
221
219
|
|
|
222
220
|
> **NOTE:** It doesn't support concurrency and the order of the ingress and egress entries determines the priority.
|
|
223
221
|
|
|
224
|
-
> **NOTE:** Using this resource need to open a whitelist.
|
|
225
|
-
|
|
226
222
|
> **DEPRECATED:** This resource has been deprecated from version `1.122.0`. Replace by `ingress_acl_entries` and `egress_acl_entries` with the resource alicloud_network_acl.
|
|
227
223
|
|
|
228
224
|
## Example Usage
|
|
@@ -329,8 +325,8 @@ class NetworkAclEntries(pulumi.CustomResource):
|
|
|
329
325
|
:param str resource_name: The unique name of the resulting resource.
|
|
330
326
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
331
327
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
332
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclEntriesEgressArgs', 'NetworkAclEntriesEgressArgsDict']]]] egresses: List of the egress entries of the network acl. The order of the egress entries determines the priority.
|
|
333
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclEntriesIngressArgs', 'NetworkAclEntriesIngressArgsDict']]]] ingresses: List of the ingress entries of the network acl. The order of the ingress entries determines the priority.
|
|
328
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclEntriesEgressArgs', 'NetworkAclEntriesEgressArgsDict']]]] egresses: List of the egress entries of the network acl. The order of the egress entries determines the priority. See `egress` below.
|
|
329
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclEntriesIngressArgs', 'NetworkAclEntriesIngressArgsDict']]]] ingresses: List of the ingress entries of the network acl. The order of the ingress entries determines the priority. See `ingress` below.
|
|
334
330
|
:param pulumi.Input[_builtins.str] network_acl_id: The id of the network acl, the field can't be changed.
|
|
335
331
|
"""
|
|
336
332
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -346,7 +342,7 @@ class NetworkAclEntries(pulumi.CustomResource):
|
|
|
346
342
|
@pulumi.getter
|
|
347
343
|
def egresses(self) -> pulumi.Output[Optional[Sequence['outputs.NetworkAclEntriesEgress']]]:
|
|
348
344
|
"""
|
|
349
|
-
List of the egress entries of the network acl. The order of the egress entries determines the priority.
|
|
345
|
+
List of the egress entries of the network acl. The order of the egress entries determines the priority. See `egress` below.
|
|
350
346
|
"""
|
|
351
347
|
return pulumi.get(self, "egresses")
|
|
352
348
|
|
|
@@ -354,7 +350,7 @@ class NetworkAclEntries(pulumi.CustomResource):
|
|
|
354
350
|
@pulumi.getter
|
|
355
351
|
def ingresses(self) -> pulumi.Output[Optional[Sequence['outputs.NetworkAclEntriesIngress']]]:
|
|
356
352
|
"""
|
|
357
|
-
List of the ingress entries of the network acl. The order of the ingress entries determines the priority.
|
|
353
|
+
List of the ingress entries of the network acl. The order of the ingress entries determines the priority. See `ingress` below.
|
|
358
354
|
"""
|
|
359
355
|
return pulumi.get(self, "ingresses")
|
|
360
356
|
|
pulumi_alicloud/vpc/outputs.py
CHANGED
|
@@ -413,7 +413,13 @@ class NetworkAclEntriesEgress(dict):
|
|
|
413
413
|
port: Optional[_builtins.str] = None,
|
|
414
414
|
protocol: Optional[_builtins.str] = None):
|
|
415
415
|
"""
|
|
416
|
+
:param _builtins.str description: The description of the egress entry.
|
|
416
417
|
:param _builtins.str destination_cidr_ip: The destination ip of the egress entry.
|
|
418
|
+
:param _builtins.str entry_type: The entry type of the egress entry. It must be `custom` or `system`. Default value is `custom`.
|
|
419
|
+
:param _builtins.str name: The name of the egress entry.
|
|
420
|
+
:param _builtins.str policy: The policy of the egress entry. It must be `accept` or `drop`.
|
|
421
|
+
:param _builtins.str port: The port of the egress entry.
|
|
422
|
+
:param _builtins.str protocol: The protocol of the egress entry.
|
|
417
423
|
"""
|
|
418
424
|
if description is not None:
|
|
419
425
|
pulumi.set(__self__, "description", description)
|
|
@@ -433,6 +439,9 @@ class NetworkAclEntriesEgress(dict):
|
|
|
433
439
|
@_builtins.property
|
|
434
440
|
@pulumi.getter
|
|
435
441
|
def description(self) -> Optional[_builtins.str]:
|
|
442
|
+
"""
|
|
443
|
+
The description of the egress entry.
|
|
444
|
+
"""
|
|
436
445
|
return pulumi.get(self, "description")
|
|
437
446
|
|
|
438
447
|
@_builtins.property
|
|
@@ -446,26 +455,41 @@ class NetworkAclEntriesEgress(dict):
|
|
|
446
455
|
@_builtins.property
|
|
447
456
|
@pulumi.getter(name="entryType")
|
|
448
457
|
def entry_type(self) -> Optional[_builtins.str]:
|
|
458
|
+
"""
|
|
459
|
+
The entry type of the egress entry. It must be `custom` or `system`. Default value is `custom`.
|
|
460
|
+
"""
|
|
449
461
|
return pulumi.get(self, "entry_type")
|
|
450
462
|
|
|
451
463
|
@_builtins.property
|
|
452
464
|
@pulumi.getter
|
|
453
465
|
def name(self) -> Optional[_builtins.str]:
|
|
466
|
+
"""
|
|
467
|
+
The name of the egress entry.
|
|
468
|
+
"""
|
|
454
469
|
return pulumi.get(self, "name")
|
|
455
470
|
|
|
456
471
|
@_builtins.property
|
|
457
472
|
@pulumi.getter
|
|
458
473
|
def policy(self) -> Optional[_builtins.str]:
|
|
474
|
+
"""
|
|
475
|
+
The policy of the egress entry. It must be `accept` or `drop`.
|
|
476
|
+
"""
|
|
459
477
|
return pulumi.get(self, "policy")
|
|
460
478
|
|
|
461
479
|
@_builtins.property
|
|
462
480
|
@pulumi.getter
|
|
463
481
|
def port(self) -> Optional[_builtins.str]:
|
|
482
|
+
"""
|
|
483
|
+
The port of the egress entry.
|
|
484
|
+
"""
|
|
464
485
|
return pulumi.get(self, "port")
|
|
465
486
|
|
|
466
487
|
@_builtins.property
|
|
467
488
|
@pulumi.getter
|
|
468
489
|
def protocol(self) -> Optional[_builtins.str]:
|
|
490
|
+
"""
|
|
491
|
+
The protocol of the egress entry.
|
|
492
|
+
"""
|
|
469
493
|
return pulumi.get(self, "protocol")
|
|
470
494
|
|
|
471
495
|
|
|
@@ -499,6 +523,12 @@ class NetworkAclEntriesIngress(dict):
|
|
|
499
523
|
protocol: Optional[_builtins.str] = None,
|
|
500
524
|
source_cidr_ip: Optional[_builtins.str] = None):
|
|
501
525
|
"""
|
|
526
|
+
:param _builtins.str description: The description of the ingress entry.
|
|
527
|
+
:param _builtins.str entry_type: The entry type of the ingress entry. It must be `custom` or `system`. Default value is `custom`.
|
|
528
|
+
:param _builtins.str name: The name of the ingress entry.
|
|
529
|
+
:param _builtins.str policy: The policy of the ingress entry. It must be `accept` or `drop`.
|
|
530
|
+
:param _builtins.str port: The port of the ingress entry.
|
|
531
|
+
:param _builtins.str protocol: The protocol of the ingress entry.
|
|
502
532
|
:param _builtins.str source_cidr_ip: The source ip of the ingress entry.
|
|
503
533
|
"""
|
|
504
534
|
if description is not None:
|
|
@@ -519,31 +549,49 @@ class NetworkAclEntriesIngress(dict):
|
|
|
519
549
|
@_builtins.property
|
|
520
550
|
@pulumi.getter
|
|
521
551
|
def description(self) -> Optional[_builtins.str]:
|
|
552
|
+
"""
|
|
553
|
+
The description of the ingress entry.
|
|
554
|
+
"""
|
|
522
555
|
return pulumi.get(self, "description")
|
|
523
556
|
|
|
524
557
|
@_builtins.property
|
|
525
558
|
@pulumi.getter(name="entryType")
|
|
526
559
|
def entry_type(self) -> Optional[_builtins.str]:
|
|
560
|
+
"""
|
|
561
|
+
The entry type of the ingress entry. It must be `custom` or `system`. Default value is `custom`.
|
|
562
|
+
"""
|
|
527
563
|
return pulumi.get(self, "entry_type")
|
|
528
564
|
|
|
529
565
|
@_builtins.property
|
|
530
566
|
@pulumi.getter
|
|
531
567
|
def name(self) -> Optional[_builtins.str]:
|
|
568
|
+
"""
|
|
569
|
+
The name of the ingress entry.
|
|
570
|
+
"""
|
|
532
571
|
return pulumi.get(self, "name")
|
|
533
572
|
|
|
534
573
|
@_builtins.property
|
|
535
574
|
@pulumi.getter
|
|
536
575
|
def policy(self) -> Optional[_builtins.str]:
|
|
576
|
+
"""
|
|
577
|
+
The policy of the ingress entry. It must be `accept` or `drop`.
|
|
578
|
+
"""
|
|
537
579
|
return pulumi.get(self, "policy")
|
|
538
580
|
|
|
539
581
|
@_builtins.property
|
|
540
582
|
@pulumi.getter
|
|
541
583
|
def port(self) -> Optional[_builtins.str]:
|
|
584
|
+
"""
|
|
585
|
+
The port of the ingress entry.
|
|
586
|
+
"""
|
|
542
587
|
return pulumi.get(self, "port")
|
|
543
588
|
|
|
544
589
|
@_builtins.property
|
|
545
590
|
@pulumi.getter
|
|
546
591
|
def protocol(self) -> Optional[_builtins.str]:
|
|
592
|
+
"""
|
|
593
|
+
The protocol of the ingress entry.
|
|
594
|
+
"""
|
|
547
595
|
return pulumi.get(self, "protocol")
|
|
548
596
|
|
|
549
597
|
@_builtins.property
|