pulumi-alicloud 3.58.0a1720026262__py3-none-any.whl → 3.59.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-alicloud might be problematic. Click here for more details.

Files changed (30) hide show
  1. pulumi_alicloud/__init__.py +48 -0
  2. pulumi_alicloud/adb/resource_group.py +115 -119
  3. pulumi_alicloud/clickhouse/get_regions.py +2 -2
  4. pulumi_alicloud/cloudstoragegateway/gateway_cache_disk.py +150 -27
  5. pulumi_alicloud/dfs/file_system.py +52 -19
  6. pulumi_alicloud/ecs/_inputs.py +132 -8
  7. pulumi_alicloud/ecs/image.py +607 -121
  8. pulumi_alicloud/ecs/outputs.py +131 -8
  9. pulumi_alicloud/emrv2/_inputs.py +490 -0
  10. pulumi_alicloud/emrv2/cluster.py +14 -14
  11. pulumi_alicloud/emrv2/outputs.py +500 -0
  12. pulumi_alicloud/ens/__init__.py +2 -0
  13. pulumi_alicloud/ens/eip_instance_attachment.py +480 -0
  14. pulumi_alicloud/ens/instance.py +16 -17
  15. pulumi_alicloud/ens/nat_gateway.py +458 -0
  16. pulumi_alicloud/ess/eci_scaling_configuration.py +94 -0
  17. pulumi_alicloud/ess/scaling_group.py +94 -0
  18. pulumi_alicloud/ga/bandwidth_package_attachment.py +34 -34
  19. pulumi_alicloud/ga/listener.py +122 -0
  20. pulumi_alicloud/gpdb/__init__.py +4 -0
  21. pulumi_alicloud/gpdb/external_data_service.py +485 -0
  22. pulumi_alicloud/gpdb/remote_adb_data_source.py +763 -0
  23. pulumi_alicloud/gpdb/streaming_data_service.py +481 -0
  24. pulumi_alicloud/gpdb/streaming_data_source.py +645 -0
  25. pulumi_alicloud/pulumi-plugin.json +1 -1
  26. pulumi_alicloud/redis/tair_instance.py +161 -67
  27. {pulumi_alicloud-3.58.0a1720026262.dist-info → pulumi_alicloud-3.59.0.dist-info}/METADATA +1 -1
  28. {pulumi_alicloud-3.58.0a1720026262.dist-info → pulumi_alicloud-3.59.0.dist-info}/RECORD +30 -24
  29. {pulumi_alicloud-3.58.0a1720026262.dist-info → pulumi_alicloud-3.59.0.dist-info}/WHEEL +1 -1
  30. {pulumi_alicloud-3.58.0a1720026262.dist-info → pulumi_alicloud-3.59.0.dist-info}/top_level.txt +0 -0
@@ -20,6 +20,7 @@ __all__ = [
20
20
  'EcsLaunchTemplateSystemDiskArgs',
21
21
  'EcsPrefixListEntryArgs',
22
22
  'ImageDiskDeviceMappingArgs',
23
+ 'ImageFeaturesArgs',
23
24
  'ImageImportDiskDeviceMappingArgs',
24
25
  'InstanceDataDiskArgs',
25
26
  'InstanceMaintenanceTimeArgs',
@@ -828,18 +829,46 @@ class ImageDiskDeviceMappingArgs:
828
829
  def __init__(__self__, *,
829
830
  device: Optional[pulumi.Input[str]] = None,
830
831
  disk_type: Optional[pulumi.Input[str]] = None,
832
+ format: Optional[pulumi.Input[str]] = None,
833
+ import_oss_bucket: Optional[pulumi.Input[str]] = None,
834
+ import_oss_object: Optional[pulumi.Input[str]] = None,
835
+ progress: Optional[pulumi.Input[str]] = None,
836
+ remain_time: Optional[pulumi.Input[int]] = None,
831
837
  size: Optional[pulumi.Input[int]] = None,
832
838
  snapshot_id: Optional[pulumi.Input[str]] = None):
833
839
  """
834
- :param pulumi.Input[str] device: Specifies the name of a disk in the combined custom image. Value range: /dev/xvda to /dev/xvdz.
835
- :param pulumi.Input[str] disk_type: Specifies the type of a disk in the combined custom image. If you specify this parameter, you can use a data disk snapshot as the data source of a system disk for creating an image. If it is not specified, the disk type is determined by the corresponding snapshot. Valid values: `system`, `data`,
836
- :param pulumi.Input[int] size: Specifies the size of a disk in the combined custom image, in GiB. Value range: 5 to 2000.
837
- :param pulumi.Input[str] snapshot_id: Specifies a snapshot that is used to create a combined custom image.
840
+ :param pulumi.Input[str] device: The device name of disk N in the custom image. Valid values:
841
+ - For disks other than basic disks, such as standard SSDs, ultra disks, and enhanced SSDs (ESSDs), the valid values range from /dev/vda to /dev/vdz in alphabetical order.
842
+ - For basic disks, the valid values range from /dev/xvda to /dev/xvdz in alphabetical order.
843
+ :param pulumi.Input[str] disk_type: The type of disk N in the custom image. You can specify this parameter to create the system disk of the custom image from a data disk snapshot. If you do not specify this parameter, the disk type is determined by the corresponding snapshot. Valid values:
844
+ - system: system disk. You can specify only one snapshot to use to create the system disk in the custom image.
845
+ - data: data disk. You can specify up to 16 snapshots to use to create data disks in the custom image.
846
+ :param pulumi.Input[str] format: Image format.
847
+ :param pulumi.Input[str] import_oss_bucket: Import the bucket of the OSS to which the image belongs.
848
+ :param pulumi.Input[str] import_oss_object: Import the object of the OSS to which the image file belongs.
849
+ :param pulumi.Input[str] progress: Copy the progress of the task.
850
+ :param pulumi.Input[int] remain_time: For an image being replicated, return the remaining time of the replication task, in seconds.
851
+ :param pulumi.Input[int] size: The size of disk N in the custom image. Unit: GiB. The valid values and default value of DiskDeviceMapping.N.Size vary based on the value of DiskDeviceMapping.N.SnapshotId.
852
+ - If no corresponding snapshot IDs are specified in the value of DiskDeviceMapping.N.SnapshotId, DiskDeviceMapping.N.Size has the following valid values and default values:
853
+ * For basic disks, the valid values range from 5 to 2000, and the default value is 5.
854
+ * For other disks, the valid values range from 20 to 32768, and the default value is 20.
855
+ - If a corresponding snapshot ID is specified in the value of DiskDeviceMapping.N.SnapshotId, the value of DiskDeviceMapping.N.Size must be greater than or equal to the size of the specified snapshot. The default value of DiskDeviceMapping.N.Size is the size of the specified snapshot.
856
+ :param pulumi.Input[str] snapshot_id: The ID of snapshot N to use to create the custom image. .
838
857
  """
839
858
  if device is not None:
840
859
  pulumi.set(__self__, "device", device)
841
860
  if disk_type is not None:
842
861
  pulumi.set(__self__, "disk_type", disk_type)
862
+ if format is not None:
863
+ pulumi.set(__self__, "format", format)
864
+ if import_oss_bucket is not None:
865
+ pulumi.set(__self__, "import_oss_bucket", import_oss_bucket)
866
+ if import_oss_object is not None:
867
+ pulumi.set(__self__, "import_oss_object", import_oss_object)
868
+ if progress is not None:
869
+ pulumi.set(__self__, "progress", progress)
870
+ if remain_time is not None:
871
+ pulumi.set(__self__, "remain_time", remain_time)
843
872
  if size is not None:
844
873
  pulumi.set(__self__, "size", size)
845
874
  if snapshot_id is not None:
@@ -849,7 +878,9 @@ class ImageDiskDeviceMappingArgs:
849
878
  @pulumi.getter
850
879
  def device(self) -> Optional[pulumi.Input[str]]:
851
880
  """
852
- Specifies the name of a disk in the combined custom image. Value range: /dev/xvda to /dev/xvdz.
881
+ The device name of disk N in the custom image. Valid values:
882
+ - For disks other than basic disks, such as standard SSDs, ultra disks, and enhanced SSDs (ESSDs), the valid values range from /dev/vda to /dev/vdz in alphabetical order.
883
+ - For basic disks, the valid values range from /dev/xvda to /dev/xvdz in alphabetical order.
853
884
  """
854
885
  return pulumi.get(self, "device")
855
886
 
@@ -861,7 +892,9 @@ class ImageDiskDeviceMappingArgs:
861
892
  @pulumi.getter(name="diskType")
862
893
  def disk_type(self) -> Optional[pulumi.Input[str]]:
863
894
  """
864
- Specifies the type of a disk in the combined custom image. If you specify this parameter, you can use a data disk snapshot as the data source of a system disk for creating an image. If it is not specified, the disk type is determined by the corresponding snapshot. Valid values: `system`, `data`,
895
+ The type of disk N in the custom image. You can specify this parameter to create the system disk of the custom image from a data disk snapshot. If you do not specify this parameter, the disk type is determined by the corresponding snapshot. Valid values:
896
+ - system: system disk. You can specify only one snapshot to use to create the system disk in the custom image.
897
+ - data: data disk. You can specify up to 16 snapshots to use to create data disks in the custom image.
865
898
  """
866
899
  return pulumi.get(self, "disk_type")
867
900
 
@@ -869,11 +902,75 @@ class ImageDiskDeviceMappingArgs:
869
902
  def disk_type(self, value: Optional[pulumi.Input[str]]):
870
903
  pulumi.set(self, "disk_type", value)
871
904
 
905
+ @property
906
+ @pulumi.getter
907
+ def format(self) -> Optional[pulumi.Input[str]]:
908
+ """
909
+ Image format.
910
+ """
911
+ return pulumi.get(self, "format")
912
+
913
+ @format.setter
914
+ def format(self, value: Optional[pulumi.Input[str]]):
915
+ pulumi.set(self, "format", value)
916
+
917
+ @property
918
+ @pulumi.getter(name="importOssBucket")
919
+ def import_oss_bucket(self) -> Optional[pulumi.Input[str]]:
920
+ """
921
+ Import the bucket of the OSS to which the image belongs.
922
+ """
923
+ return pulumi.get(self, "import_oss_bucket")
924
+
925
+ @import_oss_bucket.setter
926
+ def import_oss_bucket(self, value: Optional[pulumi.Input[str]]):
927
+ pulumi.set(self, "import_oss_bucket", value)
928
+
929
+ @property
930
+ @pulumi.getter(name="importOssObject")
931
+ def import_oss_object(self) -> Optional[pulumi.Input[str]]:
932
+ """
933
+ Import the object of the OSS to which the image file belongs.
934
+ """
935
+ return pulumi.get(self, "import_oss_object")
936
+
937
+ @import_oss_object.setter
938
+ def import_oss_object(self, value: Optional[pulumi.Input[str]]):
939
+ pulumi.set(self, "import_oss_object", value)
940
+
941
+ @property
942
+ @pulumi.getter
943
+ def progress(self) -> Optional[pulumi.Input[str]]:
944
+ """
945
+ Copy the progress of the task.
946
+ """
947
+ return pulumi.get(self, "progress")
948
+
949
+ @progress.setter
950
+ def progress(self, value: Optional[pulumi.Input[str]]):
951
+ pulumi.set(self, "progress", value)
952
+
953
+ @property
954
+ @pulumi.getter(name="remainTime")
955
+ def remain_time(self) -> Optional[pulumi.Input[int]]:
956
+ """
957
+ For an image being replicated, return the remaining time of the replication task, in seconds.
958
+ """
959
+ return pulumi.get(self, "remain_time")
960
+
961
+ @remain_time.setter
962
+ def remain_time(self, value: Optional[pulumi.Input[int]]):
963
+ pulumi.set(self, "remain_time", value)
964
+
872
965
  @property
873
966
  @pulumi.getter
874
967
  def size(self) -> Optional[pulumi.Input[int]]:
875
968
  """
876
- Specifies the size of a disk in the combined custom image, in GiB. Value range: 5 to 2000.
969
+ The size of disk N in the custom image. Unit: GiB. The valid values and default value of DiskDeviceMapping.N.Size vary based on the value of DiskDeviceMapping.N.SnapshotId.
970
+ - If no corresponding snapshot IDs are specified in the value of DiskDeviceMapping.N.SnapshotId, DiskDeviceMapping.N.Size has the following valid values and default values:
971
+ * For basic disks, the valid values range from 5 to 2000, and the default value is 5.
972
+ * For other disks, the valid values range from 20 to 32768, and the default value is 20.
973
+ - If a corresponding snapshot ID is specified in the value of DiskDeviceMapping.N.SnapshotId, the value of DiskDeviceMapping.N.Size must be greater than or equal to the size of the specified snapshot. The default value of DiskDeviceMapping.N.Size is the size of the specified snapshot.
877
974
  """
878
975
  return pulumi.get(self, "size")
879
976
 
@@ -885,7 +982,7 @@ class ImageDiskDeviceMappingArgs:
885
982
  @pulumi.getter(name="snapshotId")
886
983
  def snapshot_id(self) -> Optional[pulumi.Input[str]]:
887
984
  """
888
- Specifies a snapshot that is used to create a combined custom image.
985
+ The ID of snapshot N to use to create the custom image. .
889
986
  """
890
987
  return pulumi.get(self, "snapshot_id")
891
988
 
@@ -894,6 +991,33 @@ class ImageDiskDeviceMappingArgs:
894
991
  pulumi.set(self, "snapshot_id", value)
895
992
 
896
993
 
994
+ @pulumi.input_type
995
+ class ImageFeaturesArgs:
996
+ def __init__(__self__, *,
997
+ nvme_support: Optional[pulumi.Input[str]] = None):
998
+ """
999
+ :param pulumi.Input[str] nvme_support: Specifies whether to support the Non-Volatile Memory Express (NVMe) protocol. Valid values:
1000
+ - supported: The image supports NVMe. Instances created from this image also support NVMe.
1001
+ - unsupported: The image does not support NVMe. Instances created from this image do not support NVMe.
1002
+ """
1003
+ if nvme_support is not None:
1004
+ pulumi.set(__self__, "nvme_support", nvme_support)
1005
+
1006
+ @property
1007
+ @pulumi.getter(name="nvmeSupport")
1008
+ def nvme_support(self) -> Optional[pulumi.Input[str]]:
1009
+ """
1010
+ Specifies whether to support the Non-Volatile Memory Express (NVMe) protocol. Valid values:
1011
+ - supported: The image supports NVMe. Instances created from this image also support NVMe.
1012
+ - unsupported: The image does not support NVMe. Instances created from this image do not support NVMe.
1013
+ """
1014
+ return pulumi.get(self, "nvme_support")
1015
+
1016
+ @nvme_support.setter
1017
+ def nvme_support(self, value: Optional[pulumi.Input[str]]):
1018
+ pulumi.set(self, "nvme_support", value)
1019
+
1020
+
897
1021
  @pulumi.input_type
898
1022
  class ImageImportDiskDeviceMappingArgs:
899
1023
  def __init__(__self__, *,