pulumi-alicloud 3.81.0a1750224117__py3-none-any.whl → 3.82.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.
- pulumi_alicloud/__init__.py +40 -0
- pulumi_alicloud/alikafka/__init__.py +2 -0
- pulumi_alicloud/alikafka/_inputs.py +450 -0
- pulumi_alicloud/alikafka/instance.py +331 -95
- pulumi_alicloud/alikafka/outputs.py +346 -0
- pulumi_alicloud/cdn/get_service.py +4 -4
- pulumi_alicloud/cen/get_transit_router_route_table_propagations.py +116 -21
- pulumi_alicloud/cen/get_transit_router_route_tables.py +35 -29
- pulumi_alicloud/cen/get_transit_router_vpn_attachments.py +178 -59
- pulumi_alicloud/cen/outputs.py +56 -41
- pulumi_alicloud/cloudfirewall/__init__.py +1 -0
- pulumi_alicloud/cloudfirewall/policy_advanced_config.py +165 -0
- pulumi_alicloud/cs/_inputs.py +54 -0
- pulumi_alicloud/cs/node_pool.py +158 -45
- pulumi_alicloud/cs/outputs.py +51 -0
- pulumi_alicloud/dfs/vsc_mount_point.py +4 -4
- pulumi_alicloud/ecs/_inputs.py +66 -0
- pulumi_alicloud/ecs/ecs_network_interface.py +47 -0
- pulumi_alicloud/ecs/get_ecs_key_pairs.py +57 -13
- pulumi_alicloud/ecs/get_ecs_launch_templates.py +15 -14
- pulumi_alicloud/ecs/get_key_pairs.py +1 -1
- pulumi_alicloud/ecs/instance.py +115 -0
- pulumi_alicloud/ecs/outputs.py +176 -80
- pulumi_alicloud/eflo/node_group.py +103 -7
- pulumi_alicloud/emrv2/_inputs.py +74 -0
- pulumi_alicloud/emrv2/outputs.py +65 -0
- pulumi_alicloud/esa/__init__.py +2 -0
- pulumi_alicloud/esa/certificate.py +7 -28
- pulumi_alicloud/esa/custom_scene_policy.py +484 -0
- pulumi_alicloud/esa/version.py +406 -0
- pulumi_alicloud/eventbridge/service_linked_role.py +25 -31
- pulumi_alicloud/ga/forwarding_rule.py +2 -2
- pulumi_alicloud/gpdb/instance.py +28 -28
- pulumi_alicloud/hbr/__init__.py +1 -0
- pulumi_alicloud/hbr/get_udm_snapshots.py +282 -0
- pulumi_alicloud/hbr/ots_backup_plan.py +2 -2
- pulumi_alicloud/hbr/outputs.py +96 -0
- pulumi_alicloud/hbr/replication_vault.py +167 -41
- pulumi_alicloud/hbr/vault.py +21 -7
- pulumi_alicloud/kms/secret.py +42 -28
- pulumi_alicloud/maxcompute/_inputs.py +26 -6
- pulumi_alicloud/maxcompute/outputs.py +18 -4
- pulumi_alicloud/maxcompute/project.py +50 -3
- pulumi_alicloud/message/__init__.py +1 -0
- pulumi_alicloud/message/service_service.py +132 -0
- pulumi_alicloud/message/service_subscription.py +37 -23
- pulumi_alicloud/mns/get_service.py +8 -4
- pulumi_alicloud/mongodb/instance.py +63 -16
- pulumi_alicloud/mongodb/sharding_instance.py +249 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/role.py +306 -105
- pulumi_alicloud/rds/_inputs.py +0 -9
- pulumi_alicloud/rds/custom.py +360 -31
- pulumi_alicloud/rds/outputs.py +0 -6
- pulumi_alicloud/threatdetection/__init__.py +1 -0
- pulumi_alicloud/threatdetection/cycle_task.py +731 -0
- pulumi_alicloud/vpc/network_interface.py +34 -0
- {pulumi_alicloud-3.81.0a1750224117.dist-info → pulumi_alicloud-3.82.0.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.81.0a1750224117.dist-info → pulumi_alicloud-3.82.0.dist-info}/RECORD +61 -53
- {pulumi_alicloud-3.81.0a1750224117.dist-info → pulumi_alicloud-3.82.0.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.81.0a1750224117.dist-info → pulumi_alicloud-3.82.0.dist-info}/top_level.txt +0 -0
pulumi_alicloud/ecs/outputs.py
CHANGED
|
@@ -571,6 +571,8 @@ class EcsLaunchTemplateDataDisk(dict):
|
|
|
571
571
|
suggest = None
|
|
572
572
|
if key == "deleteWithInstance":
|
|
573
573
|
suggest = "delete_with_instance"
|
|
574
|
+
elif key == "kmsKeyId":
|
|
575
|
+
suggest = "kms_key_id"
|
|
574
576
|
elif key == "performanceLevel":
|
|
575
577
|
suggest = "performance_level"
|
|
576
578
|
elif key == "snapshotId":
|
|
@@ -593,6 +595,7 @@ class EcsLaunchTemplateDataDisk(dict):
|
|
|
593
595
|
description: Optional[builtins.str] = None,
|
|
594
596
|
device: Optional[builtins.str] = None,
|
|
595
597
|
encrypted: Optional[builtins.bool] = None,
|
|
598
|
+
kms_key_id: Optional[builtins.str] = None,
|
|
596
599
|
name: Optional[builtins.str] = None,
|
|
597
600
|
performance_level: Optional[builtins.str] = None,
|
|
598
601
|
size: Optional[builtins.int] = None,
|
|
@@ -603,6 +606,7 @@ class EcsLaunchTemplateDataDisk(dict):
|
|
|
603
606
|
:param builtins.str description: The description of the data disk.
|
|
604
607
|
:param builtins.str device: The mount point of the data disk.
|
|
605
608
|
:param builtins.bool encrypted: Encrypted the data in this disk.
|
|
609
|
+
:param builtins.str kms_key_id: The ID of the KMS key used for the data disk.
|
|
606
610
|
:param builtins.str name: The name of the data disk.
|
|
607
611
|
:param builtins.str performance_level: The performance level of the ESSD used as the data disk.
|
|
608
612
|
:param builtins.int size: The size of the data disk.
|
|
@@ -618,6 +622,8 @@ class EcsLaunchTemplateDataDisk(dict):
|
|
|
618
622
|
pulumi.set(__self__, "device", device)
|
|
619
623
|
if encrypted is not None:
|
|
620
624
|
pulumi.set(__self__, "encrypted", encrypted)
|
|
625
|
+
if kms_key_id is not None:
|
|
626
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
|
621
627
|
if name is not None:
|
|
622
628
|
pulumi.set(__self__, "name", name)
|
|
623
629
|
if performance_level is not None:
|
|
@@ -667,6 +673,14 @@ class EcsLaunchTemplateDataDisk(dict):
|
|
|
667
673
|
"""
|
|
668
674
|
return pulumi.get(self, "encrypted")
|
|
669
675
|
|
|
676
|
+
@property
|
|
677
|
+
@pulumi.getter(name="kmsKeyId")
|
|
678
|
+
def kms_key_id(self) -> Optional[builtins.str]:
|
|
679
|
+
"""
|
|
680
|
+
The ID of the KMS key used for the data disk.
|
|
681
|
+
"""
|
|
682
|
+
return pulumi.get(self, "kms_key_id")
|
|
683
|
+
|
|
670
684
|
@property
|
|
671
685
|
@pulumi.getter
|
|
672
686
|
def name(self) -> Optional[builtins.str]:
|
|
@@ -809,6 +823,8 @@ class EcsLaunchTemplateSystemDisk(dict):
|
|
|
809
823
|
suggest = None
|
|
810
824
|
if key == "deleteWithInstance":
|
|
811
825
|
suggest = "delete_with_instance"
|
|
826
|
+
elif key == "kmsKeyId":
|
|
827
|
+
suggest = "kms_key_id"
|
|
812
828
|
elif key == "performanceLevel":
|
|
813
829
|
suggest = "performance_level"
|
|
814
830
|
|
|
@@ -829,6 +845,7 @@ class EcsLaunchTemplateSystemDisk(dict):
|
|
|
829
845
|
description: Optional[builtins.str] = None,
|
|
830
846
|
encrypted: Optional[builtins.bool] = None,
|
|
831
847
|
iops: Optional[builtins.str] = None,
|
|
848
|
+
kms_key_id: Optional[builtins.str] = None,
|
|
832
849
|
name: Optional[builtins.str] = None,
|
|
833
850
|
performance_level: Optional[builtins.str] = None,
|
|
834
851
|
size: Optional[builtins.int] = None):
|
|
@@ -838,6 +855,7 @@ class EcsLaunchTemplateSystemDisk(dict):
|
|
|
838
855
|
:param builtins.str description: System disk description. It cannot begin with http:// or https://.
|
|
839
856
|
:param builtins.bool encrypted: Specifies whether the system disk is encrypted.
|
|
840
857
|
:param builtins.str iops: The Iops.
|
|
858
|
+
:param builtins.str kms_key_id: The ID of the KMS key to use for the system disk.
|
|
841
859
|
:param builtins.str name: System disk name. The name is a string of 2 to 128 characters. It must begin with an English or a Chinese character. It can contain A-Z, a-z, Chinese characters, numbers, periods (.), colons (:), underscores (_), and hyphens (-).
|
|
842
860
|
:param builtins.str performance_level: The performance level of the ESSD used as the system disk. Valid Values: `PL0`, `PL1`, `PL2`, and `PL3`. Default to: `PL0`.
|
|
843
861
|
:param builtins.int size: Size of the system disk, measured in GB. Value range: [20, 500].
|
|
@@ -852,6 +870,8 @@ class EcsLaunchTemplateSystemDisk(dict):
|
|
|
852
870
|
pulumi.set(__self__, "encrypted", encrypted)
|
|
853
871
|
if iops is not None:
|
|
854
872
|
pulumi.set(__self__, "iops", iops)
|
|
873
|
+
if kms_key_id is not None:
|
|
874
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
|
855
875
|
if name is not None:
|
|
856
876
|
pulumi.set(__self__, "name", name)
|
|
857
877
|
if performance_level is not None:
|
|
@@ -899,6 +919,14 @@ class EcsLaunchTemplateSystemDisk(dict):
|
|
|
899
919
|
"""
|
|
900
920
|
return pulumi.get(self, "iops")
|
|
901
921
|
|
|
922
|
+
@property
|
|
923
|
+
@pulumi.getter(name="kmsKeyId")
|
|
924
|
+
def kms_key_id(self) -> Optional[builtins.str]:
|
|
925
|
+
"""
|
|
926
|
+
The ID of the KMS key to use for the system disk.
|
|
927
|
+
"""
|
|
928
|
+
return pulumi.get(self, "kms_key_id")
|
|
929
|
+
|
|
902
930
|
@property
|
|
903
931
|
@pulumi.getter
|
|
904
932
|
def name(self) -> Optional[builtins.str]:
|
|
@@ -1665,6 +1693,8 @@ class LaunchTemplateDataDisk(dict):
|
|
|
1665
1693
|
suggest = None
|
|
1666
1694
|
if key == "deleteWithInstance":
|
|
1667
1695
|
suggest = "delete_with_instance"
|
|
1696
|
+
elif key == "kmsKeyId":
|
|
1697
|
+
suggest = "kms_key_id"
|
|
1668
1698
|
elif key == "performanceLevel":
|
|
1669
1699
|
suggest = "performance_level"
|
|
1670
1700
|
elif key == "snapshotId":
|
|
@@ -1687,6 +1717,7 @@ class LaunchTemplateDataDisk(dict):
|
|
|
1687
1717
|
description: Optional[builtins.str] = None,
|
|
1688
1718
|
device: Optional[builtins.str] = None,
|
|
1689
1719
|
encrypted: Optional[builtins.bool] = None,
|
|
1720
|
+
kms_key_id: Optional[builtins.str] = None,
|
|
1690
1721
|
name: Optional[builtins.str] = None,
|
|
1691
1722
|
performance_level: Optional[builtins.str] = None,
|
|
1692
1723
|
size: Optional[builtins.int] = None,
|
|
@@ -1726,6 +1757,8 @@ class LaunchTemplateDataDisk(dict):
|
|
|
1726
1757
|
pulumi.set(__self__, "device", device)
|
|
1727
1758
|
if encrypted is not None:
|
|
1728
1759
|
pulumi.set(__self__, "encrypted", encrypted)
|
|
1760
|
+
if kms_key_id is not None:
|
|
1761
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
|
1729
1762
|
if name is not None:
|
|
1730
1763
|
pulumi.set(__self__, "name", name)
|
|
1731
1764
|
if performance_level is not None:
|
|
@@ -1783,6 +1816,11 @@ class LaunchTemplateDataDisk(dict):
|
|
|
1783
1816
|
"""
|
|
1784
1817
|
return pulumi.get(self, "encrypted")
|
|
1785
1818
|
|
|
1819
|
+
@property
|
|
1820
|
+
@pulumi.getter(name="kmsKeyId")
|
|
1821
|
+
def kms_key_id(self) -> Optional[builtins.str]:
|
|
1822
|
+
return pulumi.get(self, "kms_key_id")
|
|
1823
|
+
|
|
1786
1824
|
@property
|
|
1787
1825
|
@pulumi.getter
|
|
1788
1826
|
def name(self) -> Optional[builtins.str]:
|
|
@@ -1923,6 +1961,8 @@ class LaunchTemplateSystemDisk(dict):
|
|
|
1923
1961
|
suggest = None
|
|
1924
1962
|
if key == "deleteWithInstance":
|
|
1925
1963
|
suggest = "delete_with_instance"
|
|
1964
|
+
elif key == "kmsKeyId":
|
|
1965
|
+
suggest = "kms_key_id"
|
|
1926
1966
|
elif key == "performanceLevel":
|
|
1927
1967
|
suggest = "performance_level"
|
|
1928
1968
|
|
|
@@ -1943,6 +1983,7 @@ class LaunchTemplateSystemDisk(dict):
|
|
|
1943
1983
|
description: Optional[builtins.str] = None,
|
|
1944
1984
|
encrypted: Optional[builtins.bool] = None,
|
|
1945
1985
|
iops: Optional[builtins.str] = None,
|
|
1986
|
+
kms_key_id: Optional[builtins.str] = None,
|
|
1946
1987
|
name: Optional[builtins.str] = None,
|
|
1947
1988
|
performance_level: Optional[builtins.str] = None,
|
|
1948
1989
|
size: Optional[builtins.int] = None):
|
|
@@ -1980,6 +2021,8 @@ class LaunchTemplateSystemDisk(dict):
|
|
|
1980
2021
|
pulumi.set(__self__, "encrypted", encrypted)
|
|
1981
2022
|
if iops is not None:
|
|
1982
2023
|
pulumi.set(__self__, "iops", iops)
|
|
2024
|
+
if kms_key_id is not None:
|
|
2025
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
|
1983
2026
|
if name is not None:
|
|
1984
2027
|
pulumi.set(__self__, "name", name)
|
|
1985
2028
|
if performance_level is not None:
|
|
@@ -2035,6 +2078,11 @@ class LaunchTemplateSystemDisk(dict):
|
|
|
2035
2078
|
def iops(self) -> Optional[builtins.str]:
|
|
2036
2079
|
return pulumi.get(self, "iops")
|
|
2037
2080
|
|
|
2081
|
+
@property
|
|
2082
|
+
@pulumi.getter(name="kmsKeyId")
|
|
2083
|
+
def kms_key_id(self) -> Optional[builtins.str]:
|
|
2084
|
+
return pulumi.get(self, "kms_key_id")
|
|
2085
|
+
|
|
2038
2086
|
@property
|
|
2039
2087
|
@pulumi.getter
|
|
2040
2088
|
def name(self) -> Optional[builtins.str]:
|
|
@@ -5269,12 +5317,13 @@ class GetEcsKeyPairsKeyPairResult(dict):
|
|
|
5269
5317
|
resource_group_id: builtins.str,
|
|
5270
5318
|
tags: Mapping[str, builtins.str]):
|
|
5271
5319
|
"""
|
|
5272
|
-
:param builtins.str finger_print: The
|
|
5320
|
+
:param builtins.str finger_print: The fingerprint of the key pair.
|
|
5273
5321
|
:param builtins.str id: The ID of the Key Pair.
|
|
5274
|
-
:param Sequence['GetEcsKeyPairsKeyPairInstanceArgs'] instances: A list of ECS instances that has been bound this
|
|
5275
|
-
:param builtins.str key_name: The
|
|
5276
|
-
:param builtins.str
|
|
5277
|
-
:param
|
|
5322
|
+
:param Sequence['GetEcsKeyPairsKeyPairInstanceArgs'] instances: A list of ECS instances that has been bound this Key Pair.
|
|
5323
|
+
:param builtins.str key_name: The name of the key pair.
|
|
5324
|
+
:param builtins.str key_pair_name: The name of the Key Pair.
|
|
5325
|
+
:param builtins.str resource_group_id: The ID of the resource group.
|
|
5326
|
+
:param Mapping[str, builtins.str] tags: A mapping of tags to assign to the resource.
|
|
5278
5327
|
"""
|
|
5279
5328
|
pulumi.set(__self__, "finger_print", finger_print)
|
|
5280
5329
|
pulumi.set(__self__, "id", id)
|
|
@@ -5288,7 +5337,7 @@ class GetEcsKeyPairsKeyPairResult(dict):
|
|
|
5288
5337
|
@pulumi.getter(name="fingerPrint")
|
|
5289
5338
|
def finger_print(self) -> builtins.str:
|
|
5290
5339
|
"""
|
|
5291
|
-
The
|
|
5340
|
+
The fingerprint of the key pair.
|
|
5292
5341
|
"""
|
|
5293
5342
|
return pulumi.get(self, "finger_print")
|
|
5294
5343
|
|
|
@@ -5304,7 +5353,7 @@ class GetEcsKeyPairsKeyPairResult(dict):
|
|
|
5304
5353
|
@pulumi.getter
|
|
5305
5354
|
def instances(self) -> Sequence['outputs.GetEcsKeyPairsKeyPairInstanceResult']:
|
|
5306
5355
|
"""
|
|
5307
|
-
A list of ECS instances that has been bound this
|
|
5356
|
+
A list of ECS instances that has been bound this Key Pair.
|
|
5308
5357
|
"""
|
|
5309
5358
|
return pulumi.get(self, "instances")
|
|
5310
5359
|
|
|
@@ -5312,20 +5361,23 @@ class GetEcsKeyPairsKeyPairResult(dict):
|
|
|
5312
5361
|
@pulumi.getter(name="keyName")
|
|
5313
5362
|
def key_name(self) -> builtins.str:
|
|
5314
5363
|
"""
|
|
5315
|
-
The
|
|
5364
|
+
The name of the key pair.
|
|
5316
5365
|
"""
|
|
5317
5366
|
return pulumi.get(self, "key_name")
|
|
5318
5367
|
|
|
5319
5368
|
@property
|
|
5320
5369
|
@pulumi.getter(name="keyPairName")
|
|
5321
5370
|
def key_pair_name(self) -> builtins.str:
|
|
5371
|
+
"""
|
|
5372
|
+
The name of the Key Pair.
|
|
5373
|
+
"""
|
|
5322
5374
|
return pulumi.get(self, "key_pair_name")
|
|
5323
5375
|
|
|
5324
5376
|
@property
|
|
5325
5377
|
@pulumi.getter(name="resourceGroupId")
|
|
5326
5378
|
def resource_group_id(self) -> builtins.str:
|
|
5327
5379
|
"""
|
|
5328
|
-
The resource group
|
|
5380
|
+
The ID of the resource group.
|
|
5329
5381
|
"""
|
|
5330
5382
|
return pulumi.get(self, "resource_group_id")
|
|
5331
5383
|
|
|
@@ -5333,7 +5385,7 @@ class GetEcsKeyPairsKeyPairResult(dict):
|
|
|
5333
5385
|
@pulumi.getter
|
|
5334
5386
|
def tags(self) -> Mapping[str, builtins.str]:
|
|
5335
5387
|
"""
|
|
5336
|
-
|
|
5388
|
+
A mapping of tags to assign to the resource.
|
|
5337
5389
|
"""
|
|
5338
5390
|
return pulumi.get(self, "tags")
|
|
5339
5391
|
|
|
@@ -5354,13 +5406,18 @@ class GetEcsKeyPairsKeyPairInstanceResult(dict):
|
|
|
5354
5406
|
status: builtins.str,
|
|
5355
5407
|
vswitch_id: builtins.str):
|
|
5356
5408
|
"""
|
|
5357
|
-
:param builtins.str availability_zone: The ID of the
|
|
5409
|
+
:param builtins.str availability_zone: The zone ID of the instance.
|
|
5410
|
+
:param builtins.str description: The description of the ECS instance.
|
|
5411
|
+
:param builtins.str image_id: The image ID of the instance.
|
|
5358
5412
|
:param builtins.str instance_id: The ID of the ECS instance.
|
|
5359
5413
|
:param builtins.str instance_name: The name of the ECS instance.
|
|
5360
|
-
:param builtins.str
|
|
5414
|
+
:param builtins.str instance_type: The instance type of the instance.
|
|
5415
|
+
:param builtins.str key_name: The name of the key pair.
|
|
5361
5416
|
:param builtins.str private_ip: The private IP address of the ECS instance.
|
|
5362
5417
|
:param builtins.str public_ip: The public IP address or EIP of the ECS instance.
|
|
5363
|
-
:param builtins.str
|
|
5418
|
+
:param builtins.str region_id: The region ID of the instance.
|
|
5419
|
+
:param builtins.str status: The status of the instance.
|
|
5420
|
+
:param builtins.str vswitch_id: The ID of the vSwitch.
|
|
5364
5421
|
"""
|
|
5365
5422
|
pulumi.set(__self__, "availability_zone", availability_zone)
|
|
5366
5423
|
pulumi.set(__self__, "description", description)
|
|
@@ -5379,18 +5436,24 @@ class GetEcsKeyPairsKeyPairInstanceResult(dict):
|
|
|
5379
5436
|
@pulumi.getter(name="availabilityZone")
|
|
5380
5437
|
def availability_zone(self) -> builtins.str:
|
|
5381
5438
|
"""
|
|
5382
|
-
The ID of the
|
|
5439
|
+
The zone ID of the instance.
|
|
5383
5440
|
"""
|
|
5384
5441
|
return pulumi.get(self, "availability_zone")
|
|
5385
5442
|
|
|
5386
5443
|
@property
|
|
5387
5444
|
@pulumi.getter
|
|
5388
5445
|
def description(self) -> builtins.str:
|
|
5446
|
+
"""
|
|
5447
|
+
The description of the ECS instance.
|
|
5448
|
+
"""
|
|
5389
5449
|
return pulumi.get(self, "description")
|
|
5390
5450
|
|
|
5391
5451
|
@property
|
|
5392
5452
|
@pulumi.getter(name="imageId")
|
|
5393
5453
|
def image_id(self) -> builtins.str:
|
|
5454
|
+
"""
|
|
5455
|
+
The image ID of the instance.
|
|
5456
|
+
"""
|
|
5394
5457
|
return pulumi.get(self, "image_id")
|
|
5395
5458
|
|
|
5396
5459
|
@property
|
|
@@ -5412,13 +5475,16 @@ class GetEcsKeyPairsKeyPairInstanceResult(dict):
|
|
|
5412
5475
|
@property
|
|
5413
5476
|
@pulumi.getter(name="instanceType")
|
|
5414
5477
|
def instance_type(self) -> builtins.str:
|
|
5478
|
+
"""
|
|
5479
|
+
The instance type of the instance.
|
|
5480
|
+
"""
|
|
5415
5481
|
return pulumi.get(self, "instance_type")
|
|
5416
5482
|
|
|
5417
5483
|
@property
|
|
5418
5484
|
@pulumi.getter(name="keyName")
|
|
5419
5485
|
def key_name(self) -> builtins.str:
|
|
5420
5486
|
"""
|
|
5421
|
-
The
|
|
5487
|
+
The name of the key pair.
|
|
5422
5488
|
"""
|
|
5423
5489
|
return pulumi.get(self, "key_name")
|
|
5424
5490
|
|
|
@@ -5441,18 +5507,24 @@ class GetEcsKeyPairsKeyPairInstanceResult(dict):
|
|
|
5441
5507
|
@property
|
|
5442
5508
|
@pulumi.getter(name="regionId")
|
|
5443
5509
|
def region_id(self) -> builtins.str:
|
|
5510
|
+
"""
|
|
5511
|
+
The region ID of the instance.
|
|
5512
|
+
"""
|
|
5444
5513
|
return pulumi.get(self, "region_id")
|
|
5445
5514
|
|
|
5446
5515
|
@property
|
|
5447
5516
|
@pulumi.getter
|
|
5448
5517
|
def status(self) -> builtins.str:
|
|
5518
|
+
"""
|
|
5519
|
+
The status of the instance.
|
|
5520
|
+
"""
|
|
5449
5521
|
return pulumi.get(self, "status")
|
|
5450
5522
|
|
|
5451
5523
|
@property
|
|
5452
5524
|
@pulumi.getter(name="vswitchId")
|
|
5453
5525
|
def vswitch_id(self) -> builtins.str:
|
|
5454
5526
|
"""
|
|
5455
|
-
The ID of the vSwitch
|
|
5527
|
+
The ID of the vSwitch.
|
|
5456
5528
|
"""
|
|
5457
5529
|
return pulumi.get(self, "vswitch_id")
|
|
5458
5530
|
|
|
@@ -5468,12 +5540,13 @@ class GetEcsKeyPairsPairResult(dict):
|
|
|
5468
5540
|
resource_group_id: builtins.str,
|
|
5469
5541
|
tags: Mapping[str, builtins.str]):
|
|
5470
5542
|
"""
|
|
5471
|
-
:param builtins.str finger_print: The
|
|
5543
|
+
:param builtins.str finger_print: The fingerprint of the key pair.
|
|
5472
5544
|
:param builtins.str id: The ID of the Key Pair.
|
|
5473
|
-
:param Sequence['GetEcsKeyPairsPairInstanceArgs'] instances: A list of ECS instances that has been bound this
|
|
5474
|
-
:param builtins.str key_name: The
|
|
5475
|
-
:param builtins.str
|
|
5476
|
-
:param
|
|
5545
|
+
:param Sequence['GetEcsKeyPairsPairInstanceArgs'] instances: A list of ECS instances that has been bound this Key Pair.
|
|
5546
|
+
:param builtins.str key_name: The name of the key pair.
|
|
5547
|
+
:param builtins.str key_pair_name: The name of the Key Pair.
|
|
5548
|
+
:param builtins.str resource_group_id: The ID of the resource group.
|
|
5549
|
+
:param Mapping[str, builtins.str] tags: A mapping of tags to assign to the resource.
|
|
5477
5550
|
"""
|
|
5478
5551
|
pulumi.set(__self__, "finger_print", finger_print)
|
|
5479
5552
|
pulumi.set(__self__, "id", id)
|
|
@@ -5487,7 +5560,7 @@ class GetEcsKeyPairsPairResult(dict):
|
|
|
5487
5560
|
@pulumi.getter(name="fingerPrint")
|
|
5488
5561
|
def finger_print(self) -> builtins.str:
|
|
5489
5562
|
"""
|
|
5490
|
-
The
|
|
5563
|
+
The fingerprint of the key pair.
|
|
5491
5564
|
"""
|
|
5492
5565
|
return pulumi.get(self, "finger_print")
|
|
5493
5566
|
|
|
@@ -5503,7 +5576,7 @@ class GetEcsKeyPairsPairResult(dict):
|
|
|
5503
5576
|
@pulumi.getter
|
|
5504
5577
|
def instances(self) -> Sequence['outputs.GetEcsKeyPairsPairInstanceResult']:
|
|
5505
5578
|
"""
|
|
5506
|
-
A list of ECS instances that has been bound this
|
|
5579
|
+
A list of ECS instances that has been bound this Key Pair.
|
|
5507
5580
|
"""
|
|
5508
5581
|
return pulumi.get(self, "instances")
|
|
5509
5582
|
|
|
@@ -5511,20 +5584,23 @@ class GetEcsKeyPairsPairResult(dict):
|
|
|
5511
5584
|
@pulumi.getter(name="keyName")
|
|
5512
5585
|
def key_name(self) -> builtins.str:
|
|
5513
5586
|
"""
|
|
5514
|
-
The
|
|
5587
|
+
The name of the key pair.
|
|
5515
5588
|
"""
|
|
5516
5589
|
return pulumi.get(self, "key_name")
|
|
5517
5590
|
|
|
5518
5591
|
@property
|
|
5519
5592
|
@pulumi.getter(name="keyPairName")
|
|
5520
5593
|
def key_pair_name(self) -> builtins.str:
|
|
5594
|
+
"""
|
|
5595
|
+
The name of the Key Pair.
|
|
5596
|
+
"""
|
|
5521
5597
|
return pulumi.get(self, "key_pair_name")
|
|
5522
5598
|
|
|
5523
5599
|
@property
|
|
5524
5600
|
@pulumi.getter(name="resourceGroupId")
|
|
5525
5601
|
def resource_group_id(self) -> builtins.str:
|
|
5526
5602
|
"""
|
|
5527
|
-
The
|
|
5603
|
+
The ID of the resource group.
|
|
5528
5604
|
"""
|
|
5529
5605
|
return pulumi.get(self, "resource_group_id")
|
|
5530
5606
|
|
|
@@ -5532,7 +5608,7 @@ class GetEcsKeyPairsPairResult(dict):
|
|
|
5532
5608
|
@pulumi.getter
|
|
5533
5609
|
def tags(self) -> Mapping[str, builtins.str]:
|
|
5534
5610
|
"""
|
|
5535
|
-
|
|
5611
|
+
A mapping of tags to assign to the resource.
|
|
5536
5612
|
"""
|
|
5537
5613
|
return pulumi.get(self, "tags")
|
|
5538
5614
|
|
|
@@ -5553,13 +5629,18 @@ class GetEcsKeyPairsPairInstanceResult(dict):
|
|
|
5553
5629
|
status: builtins.str,
|
|
5554
5630
|
vswitch_id: builtins.str):
|
|
5555
5631
|
"""
|
|
5556
|
-
:param builtins.str availability_zone: The ID of the
|
|
5632
|
+
:param builtins.str availability_zone: The zone ID of the instance.
|
|
5633
|
+
:param builtins.str description: The description of the ECS instance.
|
|
5634
|
+
:param builtins.str image_id: The image ID of the instance.
|
|
5557
5635
|
:param builtins.str instance_id: The ID of the ECS instance.
|
|
5558
5636
|
:param builtins.str instance_name: The name of the ECS instance.
|
|
5559
|
-
:param builtins.str
|
|
5637
|
+
:param builtins.str instance_type: The instance type of the instance.
|
|
5638
|
+
:param builtins.str key_name: The name of the key pair.
|
|
5560
5639
|
:param builtins.str private_ip: The private IP address of the ECS instance.
|
|
5561
5640
|
:param builtins.str public_ip: The public IP address or EIP of the ECS instance.
|
|
5562
|
-
:param builtins.str
|
|
5641
|
+
:param builtins.str region_id: The region ID of the instance.
|
|
5642
|
+
:param builtins.str status: The status of the instance.
|
|
5643
|
+
:param builtins.str vswitch_id: The ID of the vSwitch.
|
|
5563
5644
|
"""
|
|
5564
5645
|
pulumi.set(__self__, "availability_zone", availability_zone)
|
|
5565
5646
|
pulumi.set(__self__, "description", description)
|
|
@@ -5578,18 +5659,24 @@ class GetEcsKeyPairsPairInstanceResult(dict):
|
|
|
5578
5659
|
@pulumi.getter(name="availabilityZone")
|
|
5579
5660
|
def availability_zone(self) -> builtins.str:
|
|
5580
5661
|
"""
|
|
5581
|
-
The ID of the
|
|
5662
|
+
The zone ID of the instance.
|
|
5582
5663
|
"""
|
|
5583
5664
|
return pulumi.get(self, "availability_zone")
|
|
5584
5665
|
|
|
5585
5666
|
@property
|
|
5586
5667
|
@pulumi.getter
|
|
5587
5668
|
def description(self) -> builtins.str:
|
|
5669
|
+
"""
|
|
5670
|
+
The description of the ECS instance.
|
|
5671
|
+
"""
|
|
5588
5672
|
return pulumi.get(self, "description")
|
|
5589
5673
|
|
|
5590
5674
|
@property
|
|
5591
5675
|
@pulumi.getter(name="imageId")
|
|
5592
5676
|
def image_id(self) -> builtins.str:
|
|
5677
|
+
"""
|
|
5678
|
+
The image ID of the instance.
|
|
5679
|
+
"""
|
|
5593
5680
|
return pulumi.get(self, "image_id")
|
|
5594
5681
|
|
|
5595
5682
|
@property
|
|
@@ -5611,13 +5698,16 @@ class GetEcsKeyPairsPairInstanceResult(dict):
|
|
|
5611
5698
|
@property
|
|
5612
5699
|
@pulumi.getter(name="instanceType")
|
|
5613
5700
|
def instance_type(self) -> builtins.str:
|
|
5701
|
+
"""
|
|
5702
|
+
The instance type of the instance.
|
|
5703
|
+
"""
|
|
5614
5704
|
return pulumi.get(self, "instance_type")
|
|
5615
5705
|
|
|
5616
5706
|
@property
|
|
5617
5707
|
@pulumi.getter(name="keyName")
|
|
5618
5708
|
def key_name(self) -> builtins.str:
|
|
5619
5709
|
"""
|
|
5620
|
-
The
|
|
5710
|
+
The name of the key pair.
|
|
5621
5711
|
"""
|
|
5622
5712
|
return pulumi.get(self, "key_name")
|
|
5623
5713
|
|
|
@@ -5640,18 +5730,24 @@ class GetEcsKeyPairsPairInstanceResult(dict):
|
|
|
5640
5730
|
@property
|
|
5641
5731
|
@pulumi.getter(name="regionId")
|
|
5642
5732
|
def region_id(self) -> builtins.str:
|
|
5733
|
+
"""
|
|
5734
|
+
The region ID of the instance.
|
|
5735
|
+
"""
|
|
5643
5736
|
return pulumi.get(self, "region_id")
|
|
5644
5737
|
|
|
5645
5738
|
@property
|
|
5646
5739
|
@pulumi.getter
|
|
5647
5740
|
def status(self) -> builtins.str:
|
|
5741
|
+
"""
|
|
5742
|
+
The status of the instance.
|
|
5743
|
+
"""
|
|
5648
5744
|
return pulumi.get(self, "status")
|
|
5649
5745
|
|
|
5650
5746
|
@property
|
|
5651
5747
|
@pulumi.getter(name="vswitchId")
|
|
5652
5748
|
def vswitch_id(self) -> builtins.str:
|
|
5653
5749
|
"""
|
|
5654
|
-
The ID of the vSwitch
|
|
5750
|
+
The ID of the vSwitch.
|
|
5655
5751
|
"""
|
|
5656
5752
|
return pulumi.get(self, "vswitch_id")
|
|
5657
5753
|
|
|
@@ -5706,32 +5802,32 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5706
5802
|
vswitch_id: builtins.str,
|
|
5707
5803
|
zone_id: builtins.str):
|
|
5708
5804
|
"""
|
|
5709
|
-
:param builtins.str auto_release_time:
|
|
5710
|
-
:param builtins.str created_by:
|
|
5805
|
+
:param builtins.str auto_release_time: The automatic release time of the instance.
|
|
5806
|
+
:param builtins.str created_by: The ID of the Alibaba Cloud account that created the launch template.
|
|
5711
5807
|
:param Sequence['GetEcsLaunchTemplatesTemplateDataDiskArgs'] data_disks: The list of data disks created with instance.
|
|
5712
|
-
:param builtins.int default_version_number: The
|
|
5713
|
-
:param builtins.str deployment_set_id: The
|
|
5808
|
+
:param builtins.int default_version_number: The default version number of the launch template.
|
|
5809
|
+
:param builtins.str deployment_set_id: The ID of the deployment set.
|
|
5714
5810
|
:param builtins.str description: System disk description.
|
|
5715
|
-
:param builtins.bool enable_vm_os_config:
|
|
5716
|
-
:param builtins.str host_name:
|
|
5811
|
+
:param builtins.bool enable_vm_os_config: Indicates whether the operating system configuration of the instance is enabled.
|
|
5812
|
+
:param builtins.str host_name: The hostname of the instance.
|
|
5717
5813
|
:param builtins.str http_endpoint: Whether to enable access to instance metadata.
|
|
5718
5814
|
:param builtins.int http_put_response_hop_limit: The HTTP PUT response hop limit required for instance metadata requests.
|
|
5719
5815
|
:param builtins.str http_tokens: Whether to use the hardened mode (IMDSv2) when accessing instance metadata.
|
|
5720
5816
|
:param builtins.str id: The ID of the Launch Template.
|
|
5721
|
-
:param builtins.str image_id: The
|
|
5722
|
-
:param builtins.str image_owner_alias:
|
|
5723
|
-
:param builtins.str instance_charge_type:
|
|
5724
|
-
:param builtins.str instance_name: The
|
|
5725
|
-
:param builtins.str instance_type:
|
|
5726
|
-
:param builtins.str internet_charge_type:
|
|
5727
|
-
:param builtins.int internet_max_bandwidth_in: The maximum inbound bandwidth
|
|
5728
|
-
:param builtins.int internet_max_bandwidth_out:
|
|
5729
|
-
:param builtins.str io_optimized:
|
|
5817
|
+
:param builtins.str image_id: The ID of the image.
|
|
5818
|
+
:param builtins.str image_owner_alias: The source of the image.
|
|
5819
|
+
:param builtins.str instance_charge_type: The billing method of the instance.
|
|
5820
|
+
:param builtins.str instance_name: The name of the instance.
|
|
5821
|
+
:param builtins.str instance_type: The instance type of the instance.
|
|
5822
|
+
:param builtins.str internet_charge_type: The billing method for network usage.
|
|
5823
|
+
:param builtins.int internet_max_bandwidth_in: The maximum inbound public bandwidth.
|
|
5824
|
+
:param builtins.int internet_max_bandwidth_out: The maximum outbound public bandwidth.
|
|
5825
|
+
:param builtins.str io_optimized: Indicates whether the instance is I/O optimized.
|
|
5730
5826
|
:param builtins.str key_pair_name: The name of the key pair.
|
|
5731
|
-
:param builtins.int latest_version_number: The
|
|
5827
|
+
:param builtins.int latest_version_number: The latest version number of the launch template.
|
|
5732
5828
|
:param builtins.str launch_template_id: The ID of the Launch Template.
|
|
5733
|
-
:param builtins.str launch_template_name: The
|
|
5734
|
-
:param builtins.str modified_time: The
|
|
5829
|
+
:param builtins.str launch_template_name: The name of the launch template.
|
|
5830
|
+
:param builtins.str modified_time: The time when a version was added to or deleted from the launch template.
|
|
5735
5831
|
:param Sequence['GetEcsLaunchTemplatesTemplateNetworkInterfaceArgs'] network_interfaces: The list of network interfaces created with instance.
|
|
5736
5832
|
:param builtins.str network_type: Network type of the instance.
|
|
5737
5833
|
:param builtins.bool password_inherit: Whether to use the password preset by the mirror.
|
|
@@ -5740,17 +5836,17 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5740
5836
|
:param builtins.str ram_role_name: The RAM role name of the instance.
|
|
5741
5837
|
:param builtins.str resource_group_id: The ID of the resource group to which to assign the instance, Elastic Block Storage (EBS) device, and ENI.
|
|
5742
5838
|
:param builtins.str security_enhancement_strategy: Whether or not to activate the security enhancement feature and install network security software free of charge.
|
|
5743
|
-
:param builtins.str security_group_id: The security group ID.
|
|
5839
|
+
:param builtins.str security_group_id: The security group ID must be one in the same VPC.
|
|
5744
5840
|
:param Sequence[builtins.str] security_group_ids: The security group IDs.
|
|
5745
5841
|
:param builtins.str spot_duration: The protection period of the preemptible instance.
|
|
5746
5842
|
:param builtins.float spot_price_limit: Sets the maximum hourly instance price.
|
|
5747
5843
|
:param builtins.str spot_strategy: The spot strategy for a Pay-As-You-Go instance.
|
|
5748
5844
|
:param Sequence['GetEcsLaunchTemplatesTemplateSystemDiskArgs'] system_disks: The System Disk.
|
|
5749
|
-
:param Mapping[str, builtins.str] template_tags: The template
|
|
5750
|
-
:param builtins.str user_data: The
|
|
5845
|
+
:param Mapping[str, builtins.str] template_tags: The tags of the launch template.
|
|
5846
|
+
:param builtins.str user_data: The user data of the instance.
|
|
5751
5847
|
:param builtins.str version_description: The Version Description.
|
|
5752
5848
|
:param builtins.str vpc_id: VpcId.
|
|
5753
|
-
:param builtins.str vswitch_id: The
|
|
5849
|
+
:param builtins.str vswitch_id: The vSwitch ID for ENI. The instance must be in the same zone of the same VPC network as the ENI, but they may belong to different VSwitches.
|
|
5754
5850
|
:param builtins.str zone_id: The Zone Id.
|
|
5755
5851
|
"""
|
|
5756
5852
|
pulumi.set(__self__, "auto_release_time", auto_release_time)
|
|
@@ -5804,7 +5900,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5804
5900
|
@pulumi.getter(name="autoReleaseTime")
|
|
5805
5901
|
def auto_release_time(self) -> builtins.str:
|
|
5806
5902
|
"""
|
|
5807
|
-
|
|
5903
|
+
The automatic release time of the instance.
|
|
5808
5904
|
"""
|
|
5809
5905
|
return pulumi.get(self, "auto_release_time")
|
|
5810
5906
|
|
|
@@ -5812,7 +5908,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5812
5908
|
@pulumi.getter(name="createdBy")
|
|
5813
5909
|
def created_by(self) -> builtins.str:
|
|
5814
5910
|
"""
|
|
5815
|
-
|
|
5911
|
+
The ID of the Alibaba Cloud account that created the launch template.
|
|
5816
5912
|
"""
|
|
5817
5913
|
return pulumi.get(self, "created_by")
|
|
5818
5914
|
|
|
@@ -5828,7 +5924,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5828
5924
|
@pulumi.getter(name="defaultVersionNumber")
|
|
5829
5925
|
def default_version_number(self) -> builtins.int:
|
|
5830
5926
|
"""
|
|
5831
|
-
The
|
|
5927
|
+
The default version number of the launch template.
|
|
5832
5928
|
"""
|
|
5833
5929
|
return pulumi.get(self, "default_version_number")
|
|
5834
5930
|
|
|
@@ -5836,7 +5932,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5836
5932
|
@pulumi.getter(name="deploymentSetId")
|
|
5837
5933
|
def deployment_set_id(self) -> builtins.str:
|
|
5838
5934
|
"""
|
|
5839
|
-
The
|
|
5935
|
+
The ID of the deployment set.
|
|
5840
5936
|
"""
|
|
5841
5937
|
return pulumi.get(self, "deployment_set_id")
|
|
5842
5938
|
|
|
@@ -5852,7 +5948,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5852
5948
|
@pulumi.getter(name="enableVmOsConfig")
|
|
5853
5949
|
def enable_vm_os_config(self) -> builtins.bool:
|
|
5854
5950
|
"""
|
|
5855
|
-
|
|
5951
|
+
Indicates whether the operating system configuration of the instance is enabled.
|
|
5856
5952
|
"""
|
|
5857
5953
|
return pulumi.get(self, "enable_vm_os_config")
|
|
5858
5954
|
|
|
@@ -5860,7 +5956,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5860
5956
|
@pulumi.getter(name="hostName")
|
|
5861
5957
|
def host_name(self) -> builtins.str:
|
|
5862
5958
|
"""
|
|
5863
|
-
|
|
5959
|
+
The hostname of the instance.
|
|
5864
5960
|
"""
|
|
5865
5961
|
return pulumi.get(self, "host_name")
|
|
5866
5962
|
|
|
@@ -5900,7 +5996,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5900
5996
|
@pulumi.getter(name="imageId")
|
|
5901
5997
|
def image_id(self) -> builtins.str:
|
|
5902
5998
|
"""
|
|
5903
|
-
The
|
|
5999
|
+
The ID of the image.
|
|
5904
6000
|
"""
|
|
5905
6001
|
return pulumi.get(self, "image_id")
|
|
5906
6002
|
|
|
@@ -5908,7 +6004,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5908
6004
|
@pulumi.getter(name="imageOwnerAlias")
|
|
5909
6005
|
def image_owner_alias(self) -> builtins.str:
|
|
5910
6006
|
"""
|
|
5911
|
-
|
|
6007
|
+
The source of the image.
|
|
5912
6008
|
"""
|
|
5913
6009
|
return pulumi.get(self, "image_owner_alias")
|
|
5914
6010
|
|
|
@@ -5916,7 +6012,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5916
6012
|
@pulumi.getter(name="instanceChargeType")
|
|
5917
6013
|
def instance_charge_type(self) -> builtins.str:
|
|
5918
6014
|
"""
|
|
5919
|
-
|
|
6015
|
+
The billing method of the instance.
|
|
5920
6016
|
"""
|
|
5921
6017
|
return pulumi.get(self, "instance_charge_type")
|
|
5922
6018
|
|
|
@@ -5924,7 +6020,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5924
6020
|
@pulumi.getter(name="instanceName")
|
|
5925
6021
|
def instance_name(self) -> builtins.str:
|
|
5926
6022
|
"""
|
|
5927
|
-
The
|
|
6023
|
+
The name of the instance.
|
|
5928
6024
|
"""
|
|
5929
6025
|
return pulumi.get(self, "instance_name")
|
|
5930
6026
|
|
|
@@ -5932,7 +6028,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5932
6028
|
@pulumi.getter(name="instanceType")
|
|
5933
6029
|
def instance_type(self) -> builtins.str:
|
|
5934
6030
|
"""
|
|
5935
|
-
|
|
6031
|
+
The instance type of the instance.
|
|
5936
6032
|
"""
|
|
5937
6033
|
return pulumi.get(self, "instance_type")
|
|
5938
6034
|
|
|
@@ -5940,7 +6036,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5940
6036
|
@pulumi.getter(name="internetChargeType")
|
|
5941
6037
|
def internet_charge_type(self) -> builtins.str:
|
|
5942
6038
|
"""
|
|
5943
|
-
|
|
6039
|
+
The billing method for network usage.
|
|
5944
6040
|
"""
|
|
5945
6041
|
return pulumi.get(self, "internet_charge_type")
|
|
5946
6042
|
|
|
@@ -5948,7 +6044,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5948
6044
|
@pulumi.getter(name="internetMaxBandwidthIn")
|
|
5949
6045
|
def internet_max_bandwidth_in(self) -> builtins.int:
|
|
5950
6046
|
"""
|
|
5951
|
-
The maximum inbound bandwidth
|
|
6047
|
+
The maximum inbound public bandwidth.
|
|
5952
6048
|
"""
|
|
5953
6049
|
return pulumi.get(self, "internet_max_bandwidth_in")
|
|
5954
6050
|
|
|
@@ -5956,7 +6052,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5956
6052
|
@pulumi.getter(name="internetMaxBandwidthOut")
|
|
5957
6053
|
def internet_max_bandwidth_out(self) -> builtins.int:
|
|
5958
6054
|
"""
|
|
5959
|
-
|
|
6055
|
+
The maximum outbound public bandwidth.
|
|
5960
6056
|
"""
|
|
5961
6057
|
return pulumi.get(self, "internet_max_bandwidth_out")
|
|
5962
6058
|
|
|
@@ -5964,7 +6060,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5964
6060
|
@pulumi.getter(name="ioOptimized")
|
|
5965
6061
|
def io_optimized(self) -> builtins.str:
|
|
5966
6062
|
"""
|
|
5967
|
-
|
|
6063
|
+
Indicates whether the instance is I/O optimized.
|
|
5968
6064
|
"""
|
|
5969
6065
|
return pulumi.get(self, "io_optimized")
|
|
5970
6066
|
|
|
@@ -5980,7 +6076,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5980
6076
|
@pulumi.getter(name="latestVersionNumber")
|
|
5981
6077
|
def latest_version_number(self) -> builtins.int:
|
|
5982
6078
|
"""
|
|
5983
|
-
The
|
|
6079
|
+
The latest version number of the launch template.
|
|
5984
6080
|
"""
|
|
5985
6081
|
return pulumi.get(self, "latest_version_number")
|
|
5986
6082
|
|
|
@@ -5996,7 +6092,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
5996
6092
|
@pulumi.getter(name="launchTemplateName")
|
|
5997
6093
|
def launch_template_name(self) -> builtins.str:
|
|
5998
6094
|
"""
|
|
5999
|
-
The
|
|
6095
|
+
The name of the launch template.
|
|
6000
6096
|
"""
|
|
6001
6097
|
return pulumi.get(self, "launch_template_name")
|
|
6002
6098
|
|
|
@@ -6004,7 +6100,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
6004
6100
|
@pulumi.getter(name="modifiedTime")
|
|
6005
6101
|
def modified_time(self) -> builtins.str:
|
|
6006
6102
|
"""
|
|
6007
|
-
The
|
|
6103
|
+
The time when a version was added to or deleted from the launch template.
|
|
6008
6104
|
"""
|
|
6009
6105
|
return pulumi.get(self, "modified_time")
|
|
6010
6106
|
|
|
@@ -6076,7 +6172,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
6076
6172
|
@pulumi.getter(name="securityGroupId")
|
|
6077
6173
|
def security_group_id(self) -> builtins.str:
|
|
6078
6174
|
"""
|
|
6079
|
-
The security group ID.
|
|
6175
|
+
The security group ID must be one in the same VPC.
|
|
6080
6176
|
"""
|
|
6081
6177
|
return pulumi.get(self, "security_group_id")
|
|
6082
6178
|
|
|
@@ -6124,7 +6220,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
6124
6220
|
@pulumi.getter(name="templateTags")
|
|
6125
6221
|
def template_tags(self) -> Mapping[str, builtins.str]:
|
|
6126
6222
|
"""
|
|
6127
|
-
The template
|
|
6223
|
+
The tags of the launch template.
|
|
6128
6224
|
"""
|
|
6129
6225
|
return pulumi.get(self, "template_tags")
|
|
6130
6226
|
|
|
@@ -6132,7 +6228,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
6132
6228
|
@pulumi.getter(name="userData")
|
|
6133
6229
|
def user_data(self) -> builtins.str:
|
|
6134
6230
|
"""
|
|
6135
|
-
The
|
|
6231
|
+
The user data of the instance.
|
|
6136
6232
|
"""
|
|
6137
6233
|
return pulumi.get(self, "user_data")
|
|
6138
6234
|
|
|
@@ -6156,7 +6252,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
|
|
|
6156
6252
|
@pulumi.getter(name="vswitchId")
|
|
6157
6253
|
def vswitch_id(self) -> builtins.str:
|
|
6158
6254
|
"""
|
|
6159
|
-
The
|
|
6255
|
+
The vSwitch ID for ENI. The instance must be in the same zone of the same VPC network as the ENI, but they may belong to different VSwitches.
|
|
6160
6256
|
"""
|
|
6161
6257
|
return pulumi.get(self, "vswitch_id")
|
|
6162
6258
|
|
|
@@ -6276,8 +6372,8 @@ class GetEcsLaunchTemplatesTemplateNetworkInterfaceResult(dict):
|
|
|
6276
6372
|
:param builtins.str description: System disk description.
|
|
6277
6373
|
:param builtins.str name: System disk name.
|
|
6278
6374
|
:param builtins.str primary_ip: The primary private IP address of the ENI.
|
|
6279
|
-
:param builtins.str security_group_id: The security group ID.
|
|
6280
|
-
:param builtins.str vswitch_id: The
|
|
6375
|
+
:param builtins.str security_group_id: The security group ID must be one in the same VPC.
|
|
6376
|
+
:param builtins.str vswitch_id: The vSwitch ID for ENI. The instance must be in the same zone of the same VPC network as the ENI, but they may belong to different VSwitches.
|
|
6281
6377
|
"""
|
|
6282
6378
|
pulumi.set(__self__, "description", description)
|
|
6283
6379
|
pulumi.set(__self__, "name", name)
|
|
@@ -6313,7 +6409,7 @@ class GetEcsLaunchTemplatesTemplateNetworkInterfaceResult(dict):
|
|
|
6313
6409
|
@pulumi.getter(name="securityGroupId")
|
|
6314
6410
|
def security_group_id(self) -> builtins.str:
|
|
6315
6411
|
"""
|
|
6316
|
-
The security group ID.
|
|
6412
|
+
The security group ID must be one in the same VPC.
|
|
6317
6413
|
"""
|
|
6318
6414
|
return pulumi.get(self, "security_group_id")
|
|
6319
6415
|
|
|
@@ -6321,7 +6417,7 @@ class GetEcsLaunchTemplatesTemplateNetworkInterfaceResult(dict):
|
|
|
6321
6417
|
@pulumi.getter(name="vswitchId")
|
|
6322
6418
|
def vswitch_id(self) -> builtins.str:
|
|
6323
6419
|
"""
|
|
6324
|
-
The
|
|
6420
|
+
The vSwitch ID for ENI. The instance must be in the same zone of the same VPC network as the ENI, but they may belong to different VSwitches.
|
|
6325
6421
|
"""
|
|
6326
6422
|
return pulumi.get(self, "vswitch_id")
|
|
6327
6423
|
|