pulumi-alicloud 3.79.0a1747977638__py3-none-any.whl → 3.79.0a1748578459__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 +40 -0
- pulumi_alicloud/alb/_inputs.py +21 -105
- pulumi_alicloud/alb/get_load_balancers.py +169 -18
- pulumi_alicloud/alb/listener.py +28 -56
- pulumi_alicloud/alb/outputs.py +150 -105
- pulumi_alicloud/cs/_inputs.py +54 -0
- pulumi_alicloud/cs/get_kubernetes_version.py +4 -4
- pulumi_alicloud/cs/managed_kubernetes.py +129 -7
- pulumi_alicloud/cs/outputs.py +49 -0
- pulumi_alicloud/ecs/__init__.py +1 -0
- pulumi_alicloud/ecs/_inputs.py +40 -0
- pulumi_alicloud/ecs/get_dedicated_hosts.py +49 -22
- pulumi_alicloud/ecs/get_instances.py +4 -3
- pulumi_alicloud/ecs/instance.py +94 -0
- pulumi_alicloud/ecs/outputs.py +129 -39
- pulumi_alicloud/ecs/ram_role_attachment.py +406 -0
- pulumi_alicloud/eflo/__init__.py +1 -0
- pulumi_alicloud/eflo/vsc.py +433 -0
- pulumi_alicloud/elasticsearch/instance.py +7 -7
- pulumi_alicloud/ess/outputs.py +226 -4
- pulumi_alicloud/expressconnect/router_vpc_association.py +56 -49
- pulumi_alicloud/fc/__init__.py +1 -0
- pulumi_alicloud/fc/get_v3_triggers.py +277 -0
- pulumi_alicloud/fc/outputs.py +192 -0
- pulumi_alicloud/lindorm/__init__.py +1 -0
- pulumi_alicloud/lindorm/public_network.py +288 -0
- pulumi_alicloud/maxcompute/project.py +2 -4
- pulumi_alicloud/oos/get_parameters.py +72 -28
- pulumi_alicloud/oos/outputs.py +10 -10
- pulumi_alicloud/pai/__init__.py +1 -0
- pulumi_alicloud/pai/workspace_user_config.py +356 -0
- pulumi_alicloud/polardb/cluster.py +155 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/pvtz/get_zone_records.py +66 -35
- pulumi_alicloud/pvtz/get_zones.py +49 -32
- pulumi_alicloud/pvtz/outputs.py +60 -56
- pulumi_alicloud/ram/policy.py +21 -35
- pulumi_alicloud/ram/role_attachment.py +6 -2
- pulumi_alicloud/rds/__init__.py +1 -0
- pulumi_alicloud/rds/db_proxy_public.py +512 -0
- pulumi_alicloud/rds/instance.py +35 -35
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/get_alerts.py +463 -0
- pulumi_alicloud/sls/outputs.py +975 -0
- {pulumi_alicloud-3.79.0a1747977638.dist-info → pulumi_alicloud-3.79.0a1748578459.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.79.0a1747977638.dist-info → pulumi_alicloud-3.79.0a1748578459.dist-info}/RECORD +48 -41
- {pulumi_alicloud-3.79.0a1747977638.dist-info → pulumi_alicloud-3.79.0a1748578459.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.79.0a1747977638.dist-info → pulumi_alicloud-3.79.0a1748578459.dist-info}/top_level.txt +0 -0
pulumi_alicloud/pvtz/outputs.py
CHANGED
|
@@ -661,18 +661,18 @@ class GetZoneRecordsRecordResult(dict):
|
|
|
661
661
|
type: builtins.str,
|
|
662
662
|
value: builtins.str):
|
|
663
663
|
"""
|
|
664
|
-
:param builtins.str id: ID of the Private Zone Record.
|
|
665
|
-
:param builtins.int priority:
|
|
666
|
-
:param builtins.str record_id:
|
|
667
|
-
:param builtins.str remark:
|
|
668
|
-
:param builtins.str resource_record:
|
|
669
|
-
:param builtins.str rr:
|
|
670
|
-
:param builtins.str status: Resolve record
|
|
671
|
-
- ENABLE
|
|
672
|
-
- DISABLE
|
|
673
|
-
:param builtins.int ttl:
|
|
674
|
-
:param builtins.str type:
|
|
675
|
-
:param builtins.str value:
|
|
664
|
+
:param builtins.str id: The ID of the Private Zone Record.
|
|
665
|
+
:param builtins.int priority: The priority of the MX record.
|
|
666
|
+
:param builtins.str record_id: The ID of the Record.
|
|
667
|
+
:param builtins.str remark: The description of the Private Zone Record.
|
|
668
|
+
:param builtins.str resource_record: The hostname of the Private Zone Record.
|
|
669
|
+
:param builtins.str rr: The hostname of the Private Zone Record.
|
|
670
|
+
:param builtins.str status: The status of the Resolve record. Valid values:
|
|
671
|
+
- `ENABLE`: Enable resolution.
|
|
672
|
+
- `DISABLE`: Pause parsing.
|
|
673
|
+
:param builtins.int ttl: The time to live (TTL) of the Private Zone Record.
|
|
674
|
+
:param builtins.str type: The type of the Private Zone Record.
|
|
675
|
+
:param builtins.str value: The value of the Private Zone Record.
|
|
676
676
|
"""
|
|
677
677
|
pulumi.set(__self__, "id", id)
|
|
678
678
|
pulumi.set(__self__, "priority", priority)
|
|
@@ -689,7 +689,7 @@ class GetZoneRecordsRecordResult(dict):
|
|
|
689
689
|
@pulumi.getter
|
|
690
690
|
def id(self) -> builtins.str:
|
|
691
691
|
"""
|
|
692
|
-
ID of the Private Zone Record.
|
|
692
|
+
The ID of the Private Zone Record.
|
|
693
693
|
"""
|
|
694
694
|
return pulumi.get(self, "id")
|
|
695
695
|
|
|
@@ -697,7 +697,7 @@ class GetZoneRecordsRecordResult(dict):
|
|
|
697
697
|
@pulumi.getter
|
|
698
698
|
def priority(self) -> builtins.int:
|
|
699
699
|
"""
|
|
700
|
-
|
|
700
|
+
The priority of the MX record.
|
|
701
701
|
"""
|
|
702
702
|
return pulumi.get(self, "priority")
|
|
703
703
|
|
|
@@ -705,7 +705,7 @@ class GetZoneRecordsRecordResult(dict):
|
|
|
705
705
|
@pulumi.getter(name="recordId")
|
|
706
706
|
def record_id(self) -> builtins.str:
|
|
707
707
|
"""
|
|
708
|
-
|
|
708
|
+
The ID of the Record.
|
|
709
709
|
"""
|
|
710
710
|
return pulumi.get(self, "record_id")
|
|
711
711
|
|
|
@@ -713,7 +713,7 @@ class GetZoneRecordsRecordResult(dict):
|
|
|
713
713
|
@pulumi.getter
|
|
714
714
|
def remark(self) -> builtins.str:
|
|
715
715
|
"""
|
|
716
|
-
|
|
716
|
+
The description of the Private Zone Record.
|
|
717
717
|
"""
|
|
718
718
|
return pulumi.get(self, "remark")
|
|
719
719
|
|
|
@@ -721,7 +721,7 @@ class GetZoneRecordsRecordResult(dict):
|
|
|
721
721
|
@pulumi.getter(name="resourceRecord")
|
|
722
722
|
def resource_record(self) -> builtins.str:
|
|
723
723
|
"""
|
|
724
|
-
|
|
724
|
+
The hostname of the Private Zone Record.
|
|
725
725
|
"""
|
|
726
726
|
return pulumi.get(self, "resource_record")
|
|
727
727
|
|
|
@@ -729,7 +729,7 @@ class GetZoneRecordsRecordResult(dict):
|
|
|
729
729
|
@pulumi.getter
|
|
730
730
|
def rr(self) -> builtins.str:
|
|
731
731
|
"""
|
|
732
|
-
|
|
732
|
+
The hostname of the Private Zone Record.
|
|
733
733
|
"""
|
|
734
734
|
return pulumi.get(self, "rr")
|
|
735
735
|
|
|
@@ -737,9 +737,9 @@ class GetZoneRecordsRecordResult(dict):
|
|
|
737
737
|
@pulumi.getter
|
|
738
738
|
def status(self) -> builtins.str:
|
|
739
739
|
"""
|
|
740
|
-
Resolve record
|
|
741
|
-
- ENABLE
|
|
742
|
-
- DISABLE
|
|
740
|
+
The status of the Resolve record. Valid values:
|
|
741
|
+
- `ENABLE`: Enable resolution.
|
|
742
|
+
- `DISABLE`: Pause parsing.
|
|
743
743
|
"""
|
|
744
744
|
return pulumi.get(self, "status")
|
|
745
745
|
|
|
@@ -747,7 +747,7 @@ class GetZoneRecordsRecordResult(dict):
|
|
|
747
747
|
@pulumi.getter
|
|
748
748
|
def ttl(self) -> builtins.int:
|
|
749
749
|
"""
|
|
750
|
-
|
|
750
|
+
The time to live (TTL) of the Private Zone Record.
|
|
751
751
|
"""
|
|
752
752
|
return pulumi.get(self, "ttl")
|
|
753
753
|
|
|
@@ -755,7 +755,7 @@ class GetZoneRecordsRecordResult(dict):
|
|
|
755
755
|
@pulumi.getter
|
|
756
756
|
def type(self) -> builtins.str:
|
|
757
757
|
"""
|
|
758
|
-
|
|
758
|
+
The type of the Private Zone Record.
|
|
759
759
|
"""
|
|
760
760
|
return pulumi.get(self, "type")
|
|
761
761
|
|
|
@@ -763,7 +763,7 @@ class GetZoneRecordsRecordResult(dict):
|
|
|
763
763
|
@pulumi.getter
|
|
764
764
|
def value(self) -> builtins.str:
|
|
765
765
|
"""
|
|
766
|
-
|
|
766
|
+
The value of the Private Zone Record.
|
|
767
767
|
"""
|
|
768
768
|
return pulumi.get(self, "value")
|
|
769
769
|
|
|
@@ -787,19 +787,19 @@ class GetZonesZoneResult(dict):
|
|
|
787
787
|
zone_id: builtins.str,
|
|
788
788
|
zone_name: builtins.str):
|
|
789
789
|
"""
|
|
790
|
-
:param Sequence['GetZonesZoneBindVpcArgs'] bind_vpcs:
|
|
791
|
-
:param builtins.int create_timestamp:
|
|
792
|
-
:param builtins.str id: ID of the Private Zone.
|
|
793
|
-
:param builtins.bool is_ptr:
|
|
794
|
-
:param builtins.str name: Name of the
|
|
795
|
-
:param builtins.str proxy_pattern:
|
|
796
|
-
:param builtins.int record_count:
|
|
797
|
-
:param builtins.str remark:
|
|
798
|
-
:param builtins.str resource_group_id:
|
|
799
|
-
:param builtins.bool slave_dns:
|
|
800
|
-
:param builtins.int update_timestamp:
|
|
801
|
-
:param builtins.str zone_id:
|
|
802
|
-
:param builtins.str zone_name:
|
|
790
|
+
:param Sequence['GetZonesZoneBindVpcArgs'] bind_vpcs: The VPCs associated with the zone. **Note:** `bind_vpcs` takes effect only if `enable_details` is set to `true`.
|
|
791
|
+
:param builtins.int create_timestamp: The time when the zone was created.
|
|
792
|
+
:param builtins.str id: The ID of the Private Zone.
|
|
793
|
+
:param builtins.bool is_ptr: Indicates whether the zone is a reverse lookup zone.
|
|
794
|
+
:param builtins.str name: The Name of the Zone.
|
|
795
|
+
:param builtins.str proxy_pattern: Indicates whether the recursive resolution proxy for subdomain names is enabled.
|
|
796
|
+
:param builtins.int record_count: The number of Domain Name System (DNS) records added in the zone.
|
|
797
|
+
:param builtins.str remark: The description of the zone.
|
|
798
|
+
:param builtins.str resource_group_id: The ID of the resource group to which the zone belongs.
|
|
799
|
+
:param builtins.bool slave_dns: Indicates whether the secondary Domain Name System (DNS) feature is enabled for the zone. **Note:** `slave_dns` takes effect only if `enable_details` is set to `true`.
|
|
800
|
+
:param builtins.int update_timestamp: The time when the DNS record was updated.
|
|
801
|
+
:param builtins.str zone_id: The ID of the Zone.
|
|
802
|
+
:param builtins.str zone_name: The Name of the Private Zone.
|
|
803
803
|
"""
|
|
804
804
|
pulumi.set(__self__, "bind_vpcs", bind_vpcs)
|
|
805
805
|
pulumi.set(__self__, "create_timestamp", create_timestamp)
|
|
@@ -821,7 +821,7 @@ class GetZonesZoneResult(dict):
|
|
|
821
821
|
@pulumi.getter(name="bindVpcs")
|
|
822
822
|
def bind_vpcs(self) -> Sequence['outputs.GetZonesZoneBindVpcResult']:
|
|
823
823
|
"""
|
|
824
|
-
|
|
824
|
+
The VPCs associated with the zone. **Note:** `bind_vpcs` takes effect only if `enable_details` is set to `true`.
|
|
825
825
|
"""
|
|
826
826
|
return pulumi.get(self, "bind_vpcs")
|
|
827
827
|
|
|
@@ -829,7 +829,7 @@ class GetZonesZoneResult(dict):
|
|
|
829
829
|
@pulumi.getter(name="createTimestamp")
|
|
830
830
|
def create_timestamp(self) -> builtins.int:
|
|
831
831
|
"""
|
|
832
|
-
|
|
832
|
+
The time when the zone was created.
|
|
833
833
|
"""
|
|
834
834
|
return pulumi.get(self, "create_timestamp")
|
|
835
835
|
|
|
@@ -842,7 +842,7 @@ class GetZonesZoneResult(dict):
|
|
|
842
842
|
@pulumi.getter
|
|
843
843
|
def id(self) -> builtins.str:
|
|
844
844
|
"""
|
|
845
|
-
ID of the Private Zone.
|
|
845
|
+
The ID of the Private Zone.
|
|
846
846
|
"""
|
|
847
847
|
return pulumi.get(self, "id")
|
|
848
848
|
|
|
@@ -850,7 +850,7 @@ class GetZonesZoneResult(dict):
|
|
|
850
850
|
@pulumi.getter(name="isPtr")
|
|
851
851
|
def is_ptr(self) -> builtins.bool:
|
|
852
852
|
"""
|
|
853
|
-
|
|
853
|
+
Indicates whether the zone is a reverse lookup zone.
|
|
854
854
|
"""
|
|
855
855
|
return pulumi.get(self, "is_ptr")
|
|
856
856
|
|
|
@@ -858,7 +858,7 @@ class GetZonesZoneResult(dict):
|
|
|
858
858
|
@pulumi.getter
|
|
859
859
|
def name(self) -> builtins.str:
|
|
860
860
|
"""
|
|
861
|
-
Name of the
|
|
861
|
+
The Name of the Zone.
|
|
862
862
|
"""
|
|
863
863
|
return pulumi.get(self, "name")
|
|
864
864
|
|
|
@@ -866,7 +866,7 @@ class GetZonesZoneResult(dict):
|
|
|
866
866
|
@pulumi.getter(name="proxyPattern")
|
|
867
867
|
def proxy_pattern(self) -> builtins.str:
|
|
868
868
|
"""
|
|
869
|
-
|
|
869
|
+
Indicates whether the recursive resolution proxy for subdomain names is enabled.
|
|
870
870
|
"""
|
|
871
871
|
return pulumi.get(self, "proxy_pattern")
|
|
872
872
|
|
|
@@ -874,7 +874,7 @@ class GetZonesZoneResult(dict):
|
|
|
874
874
|
@pulumi.getter(name="recordCount")
|
|
875
875
|
def record_count(self) -> builtins.int:
|
|
876
876
|
"""
|
|
877
|
-
|
|
877
|
+
The number of Domain Name System (DNS) records added in the zone.
|
|
878
878
|
"""
|
|
879
879
|
return pulumi.get(self, "record_count")
|
|
880
880
|
|
|
@@ -882,7 +882,7 @@ class GetZonesZoneResult(dict):
|
|
|
882
882
|
@pulumi.getter
|
|
883
883
|
def remark(self) -> builtins.str:
|
|
884
884
|
"""
|
|
885
|
-
|
|
885
|
+
The description of the zone.
|
|
886
886
|
"""
|
|
887
887
|
return pulumi.get(self, "remark")
|
|
888
888
|
|
|
@@ -890,7 +890,7 @@ class GetZonesZoneResult(dict):
|
|
|
890
890
|
@pulumi.getter(name="resourceGroupId")
|
|
891
891
|
def resource_group_id(self) -> builtins.str:
|
|
892
892
|
"""
|
|
893
|
-
|
|
893
|
+
The ID of the resource group to which the zone belongs.
|
|
894
894
|
"""
|
|
895
895
|
return pulumi.get(self, "resource_group_id")
|
|
896
896
|
|
|
@@ -898,7 +898,7 @@ class GetZonesZoneResult(dict):
|
|
|
898
898
|
@pulumi.getter(name="slaveDns")
|
|
899
899
|
def slave_dns(self) -> builtins.bool:
|
|
900
900
|
"""
|
|
901
|
-
|
|
901
|
+
Indicates whether the secondary Domain Name System (DNS) feature is enabled for the zone. **Note:** `slave_dns` takes effect only if `enable_details` is set to `true`.
|
|
902
902
|
"""
|
|
903
903
|
return pulumi.get(self, "slave_dns")
|
|
904
904
|
|
|
@@ -911,7 +911,7 @@ class GetZonesZoneResult(dict):
|
|
|
911
911
|
@pulumi.getter(name="updateTimestamp")
|
|
912
912
|
def update_timestamp(self) -> builtins.int:
|
|
913
913
|
"""
|
|
914
|
-
|
|
914
|
+
The time when the DNS record was updated.
|
|
915
915
|
"""
|
|
916
916
|
return pulumi.get(self, "update_timestamp")
|
|
917
917
|
|
|
@@ -919,7 +919,7 @@ class GetZonesZoneResult(dict):
|
|
|
919
919
|
@pulumi.getter(name="zoneId")
|
|
920
920
|
def zone_id(self) -> builtins.str:
|
|
921
921
|
"""
|
|
922
|
-
|
|
922
|
+
The ID of the Zone.
|
|
923
923
|
"""
|
|
924
924
|
return pulumi.get(self, "zone_id")
|
|
925
925
|
|
|
@@ -927,7 +927,7 @@ class GetZonesZoneResult(dict):
|
|
|
927
927
|
@pulumi.getter(name="zoneName")
|
|
928
928
|
def zone_name(self) -> builtins.str:
|
|
929
929
|
"""
|
|
930
|
-
|
|
930
|
+
The Name of the Private Zone.
|
|
931
931
|
"""
|
|
932
932
|
return pulumi.get(self, "zone_name")
|
|
933
933
|
|
|
@@ -940,9 +940,10 @@ class GetZonesZoneBindVpcResult(dict):
|
|
|
940
940
|
vpc_id: builtins.str,
|
|
941
941
|
vpc_name: builtins.str):
|
|
942
942
|
"""
|
|
943
|
-
:param builtins.str region_id:
|
|
944
|
-
:param builtins.str region_name:
|
|
945
|
-
:param builtins.str vpc_id:
|
|
943
|
+
:param builtins.str region_id: The region ID of the VPC.
|
|
944
|
+
:param builtins.str region_name: The name of the region where the VPC resides.
|
|
945
|
+
:param builtins.str vpc_id: The ID of the VPC.
|
|
946
|
+
:param builtins.str vpc_name: The Name of the VPC.
|
|
946
947
|
"""
|
|
947
948
|
pulumi.set(__self__, "region_id", region_id)
|
|
948
949
|
pulumi.set(__self__, "region_name", region_name)
|
|
@@ -953,7 +954,7 @@ class GetZonesZoneBindVpcResult(dict):
|
|
|
953
954
|
@pulumi.getter(name="regionId")
|
|
954
955
|
def region_id(self) -> builtins.str:
|
|
955
956
|
"""
|
|
956
|
-
|
|
957
|
+
The region ID of the VPC.
|
|
957
958
|
"""
|
|
958
959
|
return pulumi.get(self, "region_id")
|
|
959
960
|
|
|
@@ -961,7 +962,7 @@ class GetZonesZoneBindVpcResult(dict):
|
|
|
961
962
|
@pulumi.getter(name="regionName")
|
|
962
963
|
def region_name(self) -> builtins.str:
|
|
963
964
|
"""
|
|
964
|
-
|
|
965
|
+
The name of the region where the VPC resides.
|
|
965
966
|
"""
|
|
966
967
|
return pulumi.get(self, "region_name")
|
|
967
968
|
|
|
@@ -969,13 +970,16 @@ class GetZonesZoneBindVpcResult(dict):
|
|
|
969
970
|
@pulumi.getter(name="vpcId")
|
|
970
971
|
def vpc_id(self) -> builtins.str:
|
|
971
972
|
"""
|
|
972
|
-
|
|
973
|
+
The ID of the VPC.
|
|
973
974
|
"""
|
|
974
975
|
return pulumi.get(self, "vpc_id")
|
|
975
976
|
|
|
976
977
|
@property
|
|
977
978
|
@pulumi.getter(name="vpcName")
|
|
978
979
|
def vpc_name(self) -> builtins.str:
|
|
980
|
+
"""
|
|
981
|
+
The Name of the VPC.
|
|
982
|
+
"""
|
|
979
983
|
return pulumi.get(self, "vpc_name")
|
|
980
984
|
|
|
981
985
|
|
pulumi_alicloud/ram/policy.py
CHANGED
|
@@ -40,11 +40,9 @@ class PolicyArgs:
|
|
|
40
40
|
:param pulumi.Input[builtins.str] name: Field `name` has been deprecated from provider version 1.114.0. New field `policy_name` instead.
|
|
41
41
|
:param pulumi.Input[builtins.str] policy_document: The content of the policy. The maximum length is 6144 bytes.
|
|
42
42
|
:param pulumi.Input[builtins.str] policy_name: The policy name. It can be 1 to 128 characters in length and can contain English letters, digits, and dashes (-).
|
|
43
|
-
:param pulumi.Input[builtins.str] rotate_strategy: The automatic rotation mechanism of policy versions can delete historical policy versions. The default value is None.
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
- None: Turn off the rotation mechanism.
|
|
47
|
-
- DeleteOldestNonDefaultVersionWhenLimitExceeded: When the number of permission policy versions exceeds the limit, the oldest and inactive version is deleted.
|
|
43
|
+
:param pulumi.Input[builtins.str] rotate_strategy: The automatic rotation mechanism of policy versions can delete historical policy versions. The default value is None. Valid values:
|
|
44
|
+
- `None`: Turn off the rotation mechanism.
|
|
45
|
+
- `DeleteOldestNonDefaultVersionWhenLimitExceeded`: When the number of permission policy versions exceeds the limit, the oldest and inactive version is deleted.
|
|
48
46
|
:param pulumi.Input[Sequence[pulumi.Input['PolicyStatementArgs']]] statements: Field `statement` has been deprecated from provider version 1.49.0. New field `document` instead. See `statement` below.
|
|
49
47
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The list of tags on the policy.
|
|
50
48
|
:param pulumi.Input[builtins.str] version: Field `version` has been deprecated from provider version 1.49.0. New field `document` instead.
|
|
@@ -160,11 +158,9 @@ class PolicyArgs:
|
|
|
160
158
|
@pulumi.getter(name="rotateStrategy")
|
|
161
159
|
def rotate_strategy(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
162
160
|
"""
|
|
163
|
-
The automatic rotation mechanism of policy versions can delete historical policy versions. The default value is None.
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
- None: Turn off the rotation mechanism.
|
|
167
|
-
- DeleteOldestNonDefaultVersionWhenLimitExceeded: When the number of permission policy versions exceeds the limit, the oldest and inactive version is deleted.
|
|
161
|
+
The automatic rotation mechanism of policy versions can delete historical policy versions. The default value is None. Valid values:
|
|
162
|
+
- `None`: Turn off the rotation mechanism.
|
|
163
|
+
- `DeleteOldestNonDefaultVersionWhenLimitExceeded`: When the number of permission policy versions exceeds the limit, the oldest and inactive version is deleted.
|
|
168
164
|
"""
|
|
169
165
|
return pulumi.get(self, "rotate_strategy")
|
|
170
166
|
|
|
@@ -240,11 +236,9 @@ class _PolicyState:
|
|
|
240
236
|
:param pulumi.Input[builtins.str] name: Field `name` has been deprecated from provider version 1.114.0. New field `policy_name` instead.
|
|
241
237
|
:param pulumi.Input[builtins.str] policy_document: The content of the policy. The maximum length is 6144 bytes.
|
|
242
238
|
:param pulumi.Input[builtins.str] policy_name: The policy name. It can be 1 to 128 characters in length and can contain English letters, digits, and dashes (-).
|
|
243
|
-
:param pulumi.Input[builtins.str] rotate_strategy: The automatic rotation mechanism of policy versions can delete historical policy versions. The default value is None.
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
- None: Turn off the rotation mechanism.
|
|
247
|
-
- DeleteOldestNonDefaultVersionWhenLimitExceeded: When the number of permission policy versions exceeds the limit, the oldest and inactive version is deleted.
|
|
239
|
+
:param pulumi.Input[builtins.str] rotate_strategy: The automatic rotation mechanism of policy versions can delete historical policy versions. The default value is None. Valid values:
|
|
240
|
+
- `None`: Turn off the rotation mechanism.
|
|
241
|
+
- `DeleteOldestNonDefaultVersionWhenLimitExceeded`: When the number of permission policy versions exceeds the limit, the oldest and inactive version is deleted.
|
|
248
242
|
:param pulumi.Input[Sequence[pulumi.Input['PolicyStatementArgs']]] statements: Field `statement` has been deprecated from provider version 1.49.0. New field `document` instead. See `statement` below.
|
|
249
243
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The list of tags on the policy.
|
|
250
244
|
:param pulumi.Input[builtins.str] type: The type of the policy.
|
|
@@ -408,11 +402,9 @@ class _PolicyState:
|
|
|
408
402
|
@pulumi.getter(name="rotateStrategy")
|
|
409
403
|
def rotate_strategy(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
410
404
|
"""
|
|
411
|
-
The automatic rotation mechanism of policy versions can delete historical policy versions. The default value is None.
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
- None: Turn off the rotation mechanism.
|
|
415
|
-
- DeleteOldestNonDefaultVersionWhenLimitExceeded: When the number of permission policy versions exceeds the limit, the oldest and inactive version is deleted.
|
|
405
|
+
The automatic rotation mechanism of policy versions can delete historical policy versions. The default value is None. Valid values:
|
|
406
|
+
- `None`: Turn off the rotation mechanism.
|
|
407
|
+
- `DeleteOldestNonDefaultVersionWhenLimitExceeded`: When the number of permission policy versions exceeds the limit, the oldest and inactive version is deleted.
|
|
416
408
|
"""
|
|
417
409
|
return pulumi.get(self, "rotate_strategy")
|
|
418
410
|
|
|
@@ -564,11 +556,9 @@ class Policy(pulumi.CustomResource):
|
|
|
564
556
|
:param pulumi.Input[builtins.str] name: Field `name` has been deprecated from provider version 1.114.0. New field `policy_name` instead.
|
|
565
557
|
:param pulumi.Input[builtins.str] policy_document: The content of the policy. The maximum length is 6144 bytes.
|
|
566
558
|
:param pulumi.Input[builtins.str] policy_name: The policy name. It can be 1 to 128 characters in length and can contain English letters, digits, and dashes (-).
|
|
567
|
-
:param pulumi.Input[builtins.str] rotate_strategy: The automatic rotation mechanism of policy versions can delete historical policy versions. The default value is None.
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
- None: Turn off the rotation mechanism.
|
|
571
|
-
- DeleteOldestNonDefaultVersionWhenLimitExceeded: When the number of permission policy versions exceeds the limit, the oldest and inactive version is deleted.
|
|
559
|
+
:param pulumi.Input[builtins.str] rotate_strategy: The automatic rotation mechanism of policy versions can delete historical policy versions. The default value is None. Valid values:
|
|
560
|
+
- `None`: Turn off the rotation mechanism.
|
|
561
|
+
- `DeleteOldestNonDefaultVersionWhenLimitExceeded`: When the number of permission policy versions exceeds the limit, the oldest and inactive version is deleted.
|
|
572
562
|
:param pulumi.Input[Sequence[pulumi.Input[Union['PolicyStatementArgs', 'PolicyStatementArgsDict']]]] statements: Field `statement` has been deprecated from provider version 1.49.0. New field `document` instead. See `statement` below.
|
|
573
563
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The list of tags on the policy.
|
|
574
564
|
:param pulumi.Input[builtins.str] version: Field `version` has been deprecated from provider version 1.49.0. New field `document` instead.
|
|
@@ -725,11 +715,9 @@ class Policy(pulumi.CustomResource):
|
|
|
725
715
|
:param pulumi.Input[builtins.str] name: Field `name` has been deprecated from provider version 1.114.0. New field `policy_name` instead.
|
|
726
716
|
:param pulumi.Input[builtins.str] policy_document: The content of the policy. The maximum length is 6144 bytes.
|
|
727
717
|
:param pulumi.Input[builtins.str] policy_name: The policy name. It can be 1 to 128 characters in length and can contain English letters, digits, and dashes (-).
|
|
728
|
-
:param pulumi.Input[builtins.str] rotate_strategy: The automatic rotation mechanism of policy versions can delete historical policy versions. The default value is None.
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
- None: Turn off the rotation mechanism.
|
|
732
|
-
- DeleteOldestNonDefaultVersionWhenLimitExceeded: When the number of permission policy versions exceeds the limit, the oldest and inactive version is deleted.
|
|
718
|
+
:param pulumi.Input[builtins.str] rotate_strategy: The automatic rotation mechanism of policy versions can delete historical policy versions. The default value is None. Valid values:
|
|
719
|
+
- `None`: Turn off the rotation mechanism.
|
|
720
|
+
- `DeleteOldestNonDefaultVersionWhenLimitExceeded`: When the number of permission policy versions exceeds the limit, the oldest and inactive version is deleted.
|
|
733
721
|
:param pulumi.Input[Sequence[pulumi.Input[Union['PolicyStatementArgs', 'PolicyStatementArgsDict']]]] statements: Field `statement` has been deprecated from provider version 1.49.0. New field `document` instead. See `statement` below.
|
|
734
722
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The list of tags on the policy.
|
|
735
723
|
:param pulumi.Input[builtins.str] type: The type of the policy.
|
|
@@ -835,11 +823,9 @@ class Policy(pulumi.CustomResource):
|
|
|
835
823
|
@pulumi.getter(name="rotateStrategy")
|
|
836
824
|
def rotate_strategy(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
837
825
|
"""
|
|
838
|
-
The automatic rotation mechanism of policy versions can delete historical policy versions. The default value is None.
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
- None: Turn off the rotation mechanism.
|
|
842
|
-
- DeleteOldestNonDefaultVersionWhenLimitExceeded: When the number of permission policy versions exceeds the limit, the oldest and inactive version is deleted.
|
|
826
|
+
The automatic rotation mechanism of policy versions can delete historical policy versions. The default value is None. Valid values:
|
|
827
|
+
- `None`: Turn off the rotation mechanism.
|
|
828
|
+
- `DeleteOldestNonDefaultVersionWhenLimitExceeded`: When the number of permission policy versions exceeds the limit, the oldest and inactive version is deleted.
|
|
843
829
|
"""
|
|
844
830
|
return pulumi.get(self, "rotate_strategy")
|
|
845
831
|
|
|
@@ -107,7 +107,9 @@ class RoleAttachment(pulumi.CustomResource):
|
|
|
107
107
|
"""
|
|
108
108
|
Provides a RAM role attachment resource to bind role for several ECS instances.
|
|
109
109
|
|
|
110
|
-
> **NOTE:**
|
|
110
|
+
> **NOTE:** Deprecated since v1.250.0.
|
|
111
|
+
|
|
112
|
+
> **DEPRECATED:** This resource has been deprecated from version `1.250.0`. Please use new resource alicloud_ecs_ram_role_attachment.
|
|
111
113
|
|
|
112
114
|
## Example Usage
|
|
113
115
|
|
|
@@ -196,7 +198,9 @@ class RoleAttachment(pulumi.CustomResource):
|
|
|
196
198
|
"""
|
|
197
199
|
Provides a RAM role attachment resource to bind role for several ECS instances.
|
|
198
200
|
|
|
199
|
-
> **NOTE:**
|
|
201
|
+
> **NOTE:** Deprecated since v1.250.0.
|
|
202
|
+
|
|
203
|
+
> **DEPRECATED:** This resource has been deprecated from version `1.250.0`. Please use new resource alicloud_ecs_ram_role_attachment.
|
|
200
204
|
|
|
201
205
|
## Example Usage
|
|
202
206
|
|
pulumi_alicloud/rds/__init__.py
CHANGED
|
@@ -17,6 +17,7 @@ from .database import *
|
|
|
17
17
|
from .db_instance_endpoint import *
|
|
18
18
|
from .db_instance_endpoint_address import *
|
|
19
19
|
from .db_node import *
|
|
20
|
+
from .db_proxy_public import *
|
|
20
21
|
from .ddr_instance import *
|
|
21
22
|
from .get_accounts import *
|
|
22
23
|
from .get_character_set_names import *
|