pulumi-alicloud 3.81.0a1750651450__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.

Files changed (35) hide show
  1. pulumi_alicloud/__init__.py +32 -0
  2. pulumi_alicloud/alikafka/__init__.py +2 -0
  3. pulumi_alicloud/alikafka/_inputs.py +450 -0
  4. pulumi_alicloud/alikafka/instance.py +331 -95
  5. pulumi_alicloud/alikafka/outputs.py +346 -0
  6. pulumi_alicloud/cloudfirewall/__init__.py +1 -0
  7. pulumi_alicloud/cloudfirewall/policy_advanced_config.py +165 -0
  8. pulumi_alicloud/ecs/get_ecs_key_pairs.py +57 -13
  9. pulumi_alicloud/ecs/get_ecs_launch_templates.py +15 -14
  10. pulumi_alicloud/ecs/get_key_pairs.py +1 -1
  11. pulumi_alicloud/ecs/instance.py +115 -0
  12. pulumi_alicloud/ecs/outputs.py +128 -80
  13. pulumi_alicloud/emrv2/_inputs.py +74 -0
  14. pulumi_alicloud/emrv2/outputs.py +65 -0
  15. pulumi_alicloud/esa/__init__.py +2 -0
  16. pulumi_alicloud/esa/certificate.py +7 -28
  17. pulumi_alicloud/esa/custom_scene_policy.py +484 -0
  18. pulumi_alicloud/esa/version.py +406 -0
  19. pulumi_alicloud/gpdb/instance.py +28 -28
  20. pulumi_alicloud/hbr/__init__.py +1 -0
  21. pulumi_alicloud/hbr/get_udm_snapshots.py +282 -0
  22. pulumi_alicloud/hbr/outputs.py +96 -0
  23. pulumi_alicloud/kms/secret.py +42 -28
  24. pulumi_alicloud/maxcompute/_inputs.py +26 -6
  25. pulumi_alicloud/maxcompute/outputs.py +18 -4
  26. pulumi_alicloud/maxcompute/project.py +48 -1
  27. pulumi_alicloud/mongodb/instance.py +63 -16
  28. pulumi_alicloud/mongodb/sharding_instance.py +249 -0
  29. pulumi_alicloud/pulumi-plugin.json +1 -1
  30. pulumi_alicloud/threatdetection/__init__.py +1 -0
  31. pulumi_alicloud/threatdetection/cycle_task.py +731 -0
  32. {pulumi_alicloud-3.81.0a1750651450.dist-info → pulumi_alicloud-3.82.0.dist-info}/METADATA +1 -1
  33. {pulumi_alicloud-3.81.0a1750651450.dist-info → pulumi_alicloud-3.82.0.dist-info}/RECORD +35 -28
  34. {pulumi_alicloud-3.81.0a1750651450.dist-info → pulumi_alicloud-3.82.0.dist-info}/WHEEL +0 -0
  35. {pulumi_alicloud-3.81.0a1750651450.dist-info → pulumi_alicloud-3.82.0.dist-info}/top_level.txt +0 -0
@@ -5317,12 +5317,13 @@ class GetEcsKeyPairsKeyPairResult(dict):
5317
5317
  resource_group_id: builtins.str,
5318
5318
  tags: Mapping[str, builtins.str]):
5319
5319
  """
5320
- :param builtins.str finger_print: The finger print of the key pair.
5320
+ :param builtins.str finger_print: The fingerprint of the key pair.
5321
5321
  :param builtins.str id: The ID of the Key Pair.
5322
- :param Sequence['GetEcsKeyPairsKeyPairInstanceArgs'] instances: A list of ECS instances that has been bound this key pair.
5323
- :param builtins.str key_name: The Key Pair Name.
5324
- :param builtins.str resource_group_id: The resource group Id.
5325
- :param Mapping[str, builtins.str] tags: The tags.
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.
5326
5327
  """
5327
5328
  pulumi.set(__self__, "finger_print", finger_print)
5328
5329
  pulumi.set(__self__, "id", id)
@@ -5336,7 +5337,7 @@ class GetEcsKeyPairsKeyPairResult(dict):
5336
5337
  @pulumi.getter(name="fingerPrint")
5337
5338
  def finger_print(self) -> builtins.str:
5338
5339
  """
5339
- The finger print of the key pair.
5340
+ The fingerprint of the key pair.
5340
5341
  """
5341
5342
  return pulumi.get(self, "finger_print")
5342
5343
 
@@ -5352,7 +5353,7 @@ class GetEcsKeyPairsKeyPairResult(dict):
5352
5353
  @pulumi.getter
5353
5354
  def instances(self) -> Sequence['outputs.GetEcsKeyPairsKeyPairInstanceResult']:
5354
5355
  """
5355
- A list of ECS instances that has been bound this key pair.
5356
+ A list of ECS instances that has been bound this Key Pair.
5356
5357
  """
5357
5358
  return pulumi.get(self, "instances")
5358
5359
 
@@ -5360,20 +5361,23 @@ class GetEcsKeyPairsKeyPairResult(dict):
5360
5361
  @pulumi.getter(name="keyName")
5361
5362
  def key_name(self) -> builtins.str:
5362
5363
  """
5363
- The Key Pair Name.
5364
+ The name of the key pair.
5364
5365
  """
5365
5366
  return pulumi.get(self, "key_name")
5366
5367
 
5367
5368
  @property
5368
5369
  @pulumi.getter(name="keyPairName")
5369
5370
  def key_pair_name(self) -> builtins.str:
5371
+ """
5372
+ The name of the Key Pair.
5373
+ """
5370
5374
  return pulumi.get(self, "key_pair_name")
5371
5375
 
5372
5376
  @property
5373
5377
  @pulumi.getter(name="resourceGroupId")
5374
5378
  def resource_group_id(self) -> builtins.str:
5375
5379
  """
5376
- The resource group Id.
5380
+ The ID of the resource group.
5377
5381
  """
5378
5382
  return pulumi.get(self, "resource_group_id")
5379
5383
 
@@ -5381,7 +5385,7 @@ class GetEcsKeyPairsKeyPairResult(dict):
5381
5385
  @pulumi.getter
5382
5386
  def tags(self) -> Mapping[str, builtins.str]:
5383
5387
  """
5384
- The tags.
5388
+ A mapping of tags to assign to the resource.
5385
5389
  """
5386
5390
  return pulumi.get(self, "tags")
5387
5391
 
@@ -5402,13 +5406,18 @@ class GetEcsKeyPairsKeyPairInstanceResult(dict):
5402
5406
  status: builtins.str,
5403
5407
  vswitch_id: builtins.str):
5404
5408
  """
5405
- :param builtins.str availability_zone: The ID of the availability zone where the ECS instance is located.
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.
5406
5412
  :param builtins.str instance_id: The ID of the ECS instance.
5407
5413
  :param builtins.str instance_name: The name of the ECS instance.
5408
- :param builtins.str key_name: The Key Pair Name.
5414
+ :param builtins.str instance_type: The instance type of the instance.
5415
+ :param builtins.str key_name: The name of the key pair.
5409
5416
  :param builtins.str private_ip: The private IP address of the ECS instance.
5410
5417
  :param builtins.str public_ip: The public IP address or EIP of the ECS instance.
5411
- :param builtins.str vswitch_id: The ID of the vSwitch attached to the ECS instance.
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.
5412
5421
  """
5413
5422
  pulumi.set(__self__, "availability_zone", availability_zone)
5414
5423
  pulumi.set(__self__, "description", description)
@@ -5427,18 +5436,24 @@ class GetEcsKeyPairsKeyPairInstanceResult(dict):
5427
5436
  @pulumi.getter(name="availabilityZone")
5428
5437
  def availability_zone(self) -> builtins.str:
5429
5438
  """
5430
- The ID of the availability zone where the ECS instance is located.
5439
+ The zone ID of the instance.
5431
5440
  """
5432
5441
  return pulumi.get(self, "availability_zone")
5433
5442
 
5434
5443
  @property
5435
5444
  @pulumi.getter
5436
5445
  def description(self) -> builtins.str:
5446
+ """
5447
+ The description of the ECS instance.
5448
+ """
5437
5449
  return pulumi.get(self, "description")
5438
5450
 
5439
5451
  @property
5440
5452
  @pulumi.getter(name="imageId")
5441
5453
  def image_id(self) -> builtins.str:
5454
+ """
5455
+ The image ID of the instance.
5456
+ """
5442
5457
  return pulumi.get(self, "image_id")
5443
5458
 
5444
5459
  @property
@@ -5460,13 +5475,16 @@ class GetEcsKeyPairsKeyPairInstanceResult(dict):
5460
5475
  @property
5461
5476
  @pulumi.getter(name="instanceType")
5462
5477
  def instance_type(self) -> builtins.str:
5478
+ """
5479
+ The instance type of the instance.
5480
+ """
5463
5481
  return pulumi.get(self, "instance_type")
5464
5482
 
5465
5483
  @property
5466
5484
  @pulumi.getter(name="keyName")
5467
5485
  def key_name(self) -> builtins.str:
5468
5486
  """
5469
- The Key Pair Name.
5487
+ The name of the key pair.
5470
5488
  """
5471
5489
  return pulumi.get(self, "key_name")
5472
5490
 
@@ -5489,18 +5507,24 @@ class GetEcsKeyPairsKeyPairInstanceResult(dict):
5489
5507
  @property
5490
5508
  @pulumi.getter(name="regionId")
5491
5509
  def region_id(self) -> builtins.str:
5510
+ """
5511
+ The region ID of the instance.
5512
+ """
5492
5513
  return pulumi.get(self, "region_id")
5493
5514
 
5494
5515
  @property
5495
5516
  @pulumi.getter
5496
5517
  def status(self) -> builtins.str:
5518
+ """
5519
+ The status of the instance.
5520
+ """
5497
5521
  return pulumi.get(self, "status")
5498
5522
 
5499
5523
  @property
5500
5524
  @pulumi.getter(name="vswitchId")
5501
5525
  def vswitch_id(self) -> builtins.str:
5502
5526
  """
5503
- The ID of the vSwitch attached to the ECS instance.
5527
+ The ID of the vSwitch.
5504
5528
  """
5505
5529
  return pulumi.get(self, "vswitch_id")
5506
5530
 
@@ -5516,12 +5540,13 @@ class GetEcsKeyPairsPairResult(dict):
5516
5540
  resource_group_id: builtins.str,
5517
5541
  tags: Mapping[str, builtins.str]):
5518
5542
  """
5519
- :param builtins.str finger_print: The finger print of the key pair.
5543
+ :param builtins.str finger_print: The fingerprint of the key pair.
5520
5544
  :param builtins.str id: The ID of the Key Pair.
5521
- :param Sequence['GetEcsKeyPairsPairInstanceArgs'] instances: A list of ECS instances that has been bound this key pair.
5522
- :param builtins.str key_name: The Key Pair Name.
5523
- :param builtins.str resource_group_id: The Resource Group Id.
5524
- :param Mapping[str, builtins.str] tags: The tags.
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.
5525
5550
  """
5526
5551
  pulumi.set(__self__, "finger_print", finger_print)
5527
5552
  pulumi.set(__self__, "id", id)
@@ -5535,7 +5560,7 @@ class GetEcsKeyPairsPairResult(dict):
5535
5560
  @pulumi.getter(name="fingerPrint")
5536
5561
  def finger_print(self) -> builtins.str:
5537
5562
  """
5538
- The finger print of the key pair.
5563
+ The fingerprint of the key pair.
5539
5564
  """
5540
5565
  return pulumi.get(self, "finger_print")
5541
5566
 
@@ -5551,7 +5576,7 @@ class GetEcsKeyPairsPairResult(dict):
5551
5576
  @pulumi.getter
5552
5577
  def instances(self) -> Sequence['outputs.GetEcsKeyPairsPairInstanceResult']:
5553
5578
  """
5554
- A list of ECS instances that has been bound this key pair.
5579
+ A list of ECS instances that has been bound this Key Pair.
5555
5580
  """
5556
5581
  return pulumi.get(self, "instances")
5557
5582
 
@@ -5559,20 +5584,23 @@ class GetEcsKeyPairsPairResult(dict):
5559
5584
  @pulumi.getter(name="keyName")
5560
5585
  def key_name(self) -> builtins.str:
5561
5586
  """
5562
- The Key Pair Name.
5587
+ The name of the key pair.
5563
5588
  """
5564
5589
  return pulumi.get(self, "key_name")
5565
5590
 
5566
5591
  @property
5567
5592
  @pulumi.getter(name="keyPairName")
5568
5593
  def key_pair_name(self) -> builtins.str:
5594
+ """
5595
+ The name of the Key Pair.
5596
+ """
5569
5597
  return pulumi.get(self, "key_pair_name")
5570
5598
 
5571
5599
  @property
5572
5600
  @pulumi.getter(name="resourceGroupId")
5573
5601
  def resource_group_id(self) -> builtins.str:
5574
5602
  """
5575
- The Resource Group Id.
5603
+ The ID of the resource group.
5576
5604
  """
5577
5605
  return pulumi.get(self, "resource_group_id")
5578
5606
 
@@ -5580,7 +5608,7 @@ class GetEcsKeyPairsPairResult(dict):
5580
5608
  @pulumi.getter
5581
5609
  def tags(self) -> Mapping[str, builtins.str]:
5582
5610
  """
5583
- The tags.
5611
+ A mapping of tags to assign to the resource.
5584
5612
  """
5585
5613
  return pulumi.get(self, "tags")
5586
5614
 
@@ -5601,13 +5629,18 @@ class GetEcsKeyPairsPairInstanceResult(dict):
5601
5629
  status: builtins.str,
5602
5630
  vswitch_id: builtins.str):
5603
5631
  """
5604
- :param builtins.str availability_zone: The ID of the availability zone where the ECS instance is located.
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.
5605
5635
  :param builtins.str instance_id: The ID of the ECS instance.
5606
5636
  :param builtins.str instance_name: The name of the ECS instance.
5607
- :param builtins.str key_name: The Key Pair Name.
5637
+ :param builtins.str instance_type: The instance type of the instance.
5638
+ :param builtins.str key_name: The name of the key pair.
5608
5639
  :param builtins.str private_ip: The private IP address of the ECS instance.
5609
5640
  :param builtins.str public_ip: The public IP address or EIP of the ECS instance.
5610
- :param builtins.str vswitch_id: The ID of the vSwitch attached to the ECS instance.
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.
5611
5644
  """
5612
5645
  pulumi.set(__self__, "availability_zone", availability_zone)
5613
5646
  pulumi.set(__self__, "description", description)
@@ -5626,18 +5659,24 @@ class GetEcsKeyPairsPairInstanceResult(dict):
5626
5659
  @pulumi.getter(name="availabilityZone")
5627
5660
  def availability_zone(self) -> builtins.str:
5628
5661
  """
5629
- The ID of the availability zone where the ECS instance is located.
5662
+ The zone ID of the instance.
5630
5663
  """
5631
5664
  return pulumi.get(self, "availability_zone")
5632
5665
 
5633
5666
  @property
5634
5667
  @pulumi.getter
5635
5668
  def description(self) -> builtins.str:
5669
+ """
5670
+ The description of the ECS instance.
5671
+ """
5636
5672
  return pulumi.get(self, "description")
5637
5673
 
5638
5674
  @property
5639
5675
  @pulumi.getter(name="imageId")
5640
5676
  def image_id(self) -> builtins.str:
5677
+ """
5678
+ The image ID of the instance.
5679
+ """
5641
5680
  return pulumi.get(self, "image_id")
5642
5681
 
5643
5682
  @property
@@ -5659,13 +5698,16 @@ class GetEcsKeyPairsPairInstanceResult(dict):
5659
5698
  @property
5660
5699
  @pulumi.getter(name="instanceType")
5661
5700
  def instance_type(self) -> builtins.str:
5701
+ """
5702
+ The instance type of the instance.
5703
+ """
5662
5704
  return pulumi.get(self, "instance_type")
5663
5705
 
5664
5706
  @property
5665
5707
  @pulumi.getter(name="keyName")
5666
5708
  def key_name(self) -> builtins.str:
5667
5709
  """
5668
- The Key Pair Name.
5710
+ The name of the key pair.
5669
5711
  """
5670
5712
  return pulumi.get(self, "key_name")
5671
5713
 
@@ -5688,18 +5730,24 @@ class GetEcsKeyPairsPairInstanceResult(dict):
5688
5730
  @property
5689
5731
  @pulumi.getter(name="regionId")
5690
5732
  def region_id(self) -> builtins.str:
5733
+ """
5734
+ The region ID of the instance.
5735
+ """
5691
5736
  return pulumi.get(self, "region_id")
5692
5737
 
5693
5738
  @property
5694
5739
  @pulumi.getter
5695
5740
  def status(self) -> builtins.str:
5741
+ """
5742
+ The status of the instance.
5743
+ """
5696
5744
  return pulumi.get(self, "status")
5697
5745
 
5698
5746
  @property
5699
5747
  @pulumi.getter(name="vswitchId")
5700
5748
  def vswitch_id(self) -> builtins.str:
5701
5749
  """
5702
- The ID of the vSwitch attached to the ECS instance.
5750
+ The ID of the vSwitch.
5703
5751
  """
5704
5752
  return pulumi.get(self, "vswitch_id")
5705
5753
 
@@ -5754,32 +5802,32 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
5754
5802
  vswitch_id: builtins.str,
5755
5803
  zone_id: builtins.str):
5756
5804
  """
5757
- :param builtins.str auto_release_time: (Optional) Instance auto release time.
5758
- :param builtins.str created_by: CreatedBy.
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.
5759
5807
  :param Sequence['GetEcsLaunchTemplatesTemplateDataDiskArgs'] data_disks: The list of data disks created with instance.
5760
- :param builtins.int default_version_number: The Default Version Number.
5761
- :param builtins.str deployment_set_id: The Deployment Set Id.
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.
5762
5810
  :param builtins.str description: System disk description.
5763
- :param builtins.bool enable_vm_os_config: Whether to enable the instance operating system configuration.
5764
- :param builtins.str host_name: Instance 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.
5765
5813
  :param builtins.str http_endpoint: Whether to enable access to instance metadata.
5766
5814
  :param builtins.int http_put_response_hop_limit: The HTTP PUT response hop limit required for instance metadata requests.
5767
5815
  :param builtins.str http_tokens: Whether to use the hardened mode (IMDSv2) when accessing instance metadata.
5768
5816
  :param builtins.str id: The ID of the Launch Template.
5769
- :param builtins.str image_id: The Image Id.
5770
- :param builtins.str image_owner_alias: Mirror source.
5771
- :param builtins.str instance_charge_type: Internet bandwidth billing method.
5772
- :param builtins.str instance_name: The Instance Name.
5773
- :param builtins.str instance_type: Instance type.
5774
- :param builtins.str internet_charge_type: Internet bandwidth billing method.
5775
- :param builtins.int internet_max_bandwidth_in: The maximum inbound bandwidth from the Internet network, measured in Mbit/s.
5776
- :param builtins.int internet_max_bandwidth_out: Maximum outbound bandwidth from the Internet, its unit of measurement is Mbit/s.
5777
- :param builtins.str io_optimized: Whether it is an I/O-optimized instance or not.
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.
5778
5826
  :param builtins.str key_pair_name: The name of the key pair.
5779
- :param builtins.int latest_version_number: The Latest Version Number.
5827
+ :param builtins.int latest_version_number: The latest version number of the launch template.
5780
5828
  :param builtins.str launch_template_id: The ID of the Launch Template.
5781
- :param builtins.str launch_template_name: The Launch Template Name.
5782
- :param builtins.str modified_time: The Modified Time.
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.
5783
5831
  :param Sequence['GetEcsLaunchTemplatesTemplateNetworkInterfaceArgs'] network_interfaces: The list of network interfaces created with instance.
5784
5832
  :param builtins.str network_type: Network type of the instance.
5785
5833
  :param builtins.bool password_inherit: Whether to use the password preset by the mirror.
@@ -5788,17 +5836,17 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
5788
5836
  :param builtins.str ram_role_name: The RAM role name of the instance.
5789
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.
5790
5838
  :param builtins.str security_enhancement_strategy: Whether or not to activate the security enhancement feature and install network security software free of charge.
5791
- :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.
5792
5840
  :param Sequence[builtins.str] security_group_ids: The security group IDs.
5793
5841
  :param builtins.str spot_duration: The protection period of the preemptible instance.
5794
5842
  :param builtins.float spot_price_limit: Sets the maximum hourly instance price.
5795
5843
  :param builtins.str spot_strategy: The spot strategy for a Pay-As-You-Go instance.
5796
5844
  :param Sequence['GetEcsLaunchTemplatesTemplateSystemDiskArgs'] system_disks: The System Disk.
5797
- :param Mapping[str, builtins.str] template_tags: The template tags.
5798
- :param builtins.str user_data: The User Data.
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.
5799
5847
  :param builtins.str version_description: The Version Description.
5800
5848
  :param builtins.str vpc_id: VpcId.
5801
- :param builtins.str vswitch_id: The vswitch id.
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.
5802
5850
  :param builtins.str zone_id: The Zone Id.
5803
5851
  """
5804
5852
  pulumi.set(__self__, "auto_release_time", auto_release_time)
@@ -5852,7 +5900,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
5852
5900
  @pulumi.getter(name="autoReleaseTime")
5853
5901
  def auto_release_time(self) -> builtins.str:
5854
5902
  """
5855
- (Optional) Instance auto release time.
5903
+ The automatic release time of the instance.
5856
5904
  """
5857
5905
  return pulumi.get(self, "auto_release_time")
5858
5906
 
@@ -5860,7 +5908,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
5860
5908
  @pulumi.getter(name="createdBy")
5861
5909
  def created_by(self) -> builtins.str:
5862
5910
  """
5863
- CreatedBy.
5911
+ The ID of the Alibaba Cloud account that created the launch template.
5864
5912
  """
5865
5913
  return pulumi.get(self, "created_by")
5866
5914
 
@@ -5876,7 +5924,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
5876
5924
  @pulumi.getter(name="defaultVersionNumber")
5877
5925
  def default_version_number(self) -> builtins.int:
5878
5926
  """
5879
- The Default Version Number.
5927
+ The default version number of the launch template.
5880
5928
  """
5881
5929
  return pulumi.get(self, "default_version_number")
5882
5930
 
@@ -5884,7 +5932,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
5884
5932
  @pulumi.getter(name="deploymentSetId")
5885
5933
  def deployment_set_id(self) -> builtins.str:
5886
5934
  """
5887
- The Deployment Set Id.
5935
+ The ID of the deployment set.
5888
5936
  """
5889
5937
  return pulumi.get(self, "deployment_set_id")
5890
5938
 
@@ -5900,7 +5948,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
5900
5948
  @pulumi.getter(name="enableVmOsConfig")
5901
5949
  def enable_vm_os_config(self) -> builtins.bool:
5902
5950
  """
5903
- Whether to enable the instance operating system configuration.
5951
+ Indicates whether the operating system configuration of the instance is enabled.
5904
5952
  """
5905
5953
  return pulumi.get(self, "enable_vm_os_config")
5906
5954
 
@@ -5908,7 +5956,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
5908
5956
  @pulumi.getter(name="hostName")
5909
5957
  def host_name(self) -> builtins.str:
5910
5958
  """
5911
- Instance host name.
5959
+ The hostname of the instance.
5912
5960
  """
5913
5961
  return pulumi.get(self, "host_name")
5914
5962
 
@@ -5948,7 +5996,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
5948
5996
  @pulumi.getter(name="imageId")
5949
5997
  def image_id(self) -> builtins.str:
5950
5998
  """
5951
- The Image Id.
5999
+ The ID of the image.
5952
6000
  """
5953
6001
  return pulumi.get(self, "image_id")
5954
6002
 
@@ -5956,7 +6004,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
5956
6004
  @pulumi.getter(name="imageOwnerAlias")
5957
6005
  def image_owner_alias(self) -> builtins.str:
5958
6006
  """
5959
- Mirror source.
6007
+ The source of the image.
5960
6008
  """
5961
6009
  return pulumi.get(self, "image_owner_alias")
5962
6010
 
@@ -5964,7 +6012,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
5964
6012
  @pulumi.getter(name="instanceChargeType")
5965
6013
  def instance_charge_type(self) -> builtins.str:
5966
6014
  """
5967
- Internet bandwidth billing method.
6015
+ The billing method of the instance.
5968
6016
  """
5969
6017
  return pulumi.get(self, "instance_charge_type")
5970
6018
 
@@ -5972,7 +6020,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
5972
6020
  @pulumi.getter(name="instanceName")
5973
6021
  def instance_name(self) -> builtins.str:
5974
6022
  """
5975
- The Instance Name.
6023
+ The name of the instance.
5976
6024
  """
5977
6025
  return pulumi.get(self, "instance_name")
5978
6026
 
@@ -5980,7 +6028,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
5980
6028
  @pulumi.getter(name="instanceType")
5981
6029
  def instance_type(self) -> builtins.str:
5982
6030
  """
5983
- Instance type.
6031
+ The instance type of the instance.
5984
6032
  """
5985
6033
  return pulumi.get(self, "instance_type")
5986
6034
 
@@ -5988,7 +6036,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
5988
6036
  @pulumi.getter(name="internetChargeType")
5989
6037
  def internet_charge_type(self) -> builtins.str:
5990
6038
  """
5991
- Internet bandwidth billing method.
6039
+ The billing method for network usage.
5992
6040
  """
5993
6041
  return pulumi.get(self, "internet_charge_type")
5994
6042
 
@@ -5996,7 +6044,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
5996
6044
  @pulumi.getter(name="internetMaxBandwidthIn")
5997
6045
  def internet_max_bandwidth_in(self) -> builtins.int:
5998
6046
  """
5999
- The maximum inbound bandwidth from the Internet network, measured in Mbit/s.
6047
+ The maximum inbound public bandwidth.
6000
6048
  """
6001
6049
  return pulumi.get(self, "internet_max_bandwidth_in")
6002
6050
 
@@ -6004,7 +6052,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
6004
6052
  @pulumi.getter(name="internetMaxBandwidthOut")
6005
6053
  def internet_max_bandwidth_out(self) -> builtins.int:
6006
6054
  """
6007
- Maximum outbound bandwidth from the Internet, its unit of measurement is Mbit/s.
6055
+ The maximum outbound public bandwidth.
6008
6056
  """
6009
6057
  return pulumi.get(self, "internet_max_bandwidth_out")
6010
6058
 
@@ -6012,7 +6060,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
6012
6060
  @pulumi.getter(name="ioOptimized")
6013
6061
  def io_optimized(self) -> builtins.str:
6014
6062
  """
6015
- Whether it is an I/O-optimized instance or not.
6063
+ Indicates whether the instance is I/O optimized.
6016
6064
  """
6017
6065
  return pulumi.get(self, "io_optimized")
6018
6066
 
@@ -6028,7 +6076,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
6028
6076
  @pulumi.getter(name="latestVersionNumber")
6029
6077
  def latest_version_number(self) -> builtins.int:
6030
6078
  """
6031
- The Latest Version Number.
6079
+ The latest version number of the launch template.
6032
6080
  """
6033
6081
  return pulumi.get(self, "latest_version_number")
6034
6082
 
@@ -6044,7 +6092,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
6044
6092
  @pulumi.getter(name="launchTemplateName")
6045
6093
  def launch_template_name(self) -> builtins.str:
6046
6094
  """
6047
- The Launch Template Name.
6095
+ The name of the launch template.
6048
6096
  """
6049
6097
  return pulumi.get(self, "launch_template_name")
6050
6098
 
@@ -6052,7 +6100,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
6052
6100
  @pulumi.getter(name="modifiedTime")
6053
6101
  def modified_time(self) -> builtins.str:
6054
6102
  """
6055
- The Modified Time.
6103
+ The time when a version was added to or deleted from the launch template.
6056
6104
  """
6057
6105
  return pulumi.get(self, "modified_time")
6058
6106
 
@@ -6124,7 +6172,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
6124
6172
  @pulumi.getter(name="securityGroupId")
6125
6173
  def security_group_id(self) -> builtins.str:
6126
6174
  """
6127
- The security group ID.
6175
+ The security group ID must be one in the same VPC.
6128
6176
  """
6129
6177
  return pulumi.get(self, "security_group_id")
6130
6178
 
@@ -6172,7 +6220,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
6172
6220
  @pulumi.getter(name="templateTags")
6173
6221
  def template_tags(self) -> Mapping[str, builtins.str]:
6174
6222
  """
6175
- The template tags.
6223
+ The tags of the launch template.
6176
6224
  """
6177
6225
  return pulumi.get(self, "template_tags")
6178
6226
 
@@ -6180,7 +6228,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
6180
6228
  @pulumi.getter(name="userData")
6181
6229
  def user_data(self) -> builtins.str:
6182
6230
  """
6183
- The User Data.
6231
+ The user data of the instance.
6184
6232
  """
6185
6233
  return pulumi.get(self, "user_data")
6186
6234
 
@@ -6204,7 +6252,7 @@ class GetEcsLaunchTemplatesTemplateResult(dict):
6204
6252
  @pulumi.getter(name="vswitchId")
6205
6253
  def vswitch_id(self) -> builtins.str:
6206
6254
  """
6207
- The vswitch id.
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.
6208
6256
  """
6209
6257
  return pulumi.get(self, "vswitch_id")
6210
6258
 
@@ -6324,8 +6372,8 @@ class GetEcsLaunchTemplatesTemplateNetworkInterfaceResult(dict):
6324
6372
  :param builtins.str description: System disk description.
6325
6373
  :param builtins.str name: System disk name.
6326
6374
  :param builtins.str primary_ip: The primary private IP address of the ENI.
6327
- :param builtins.str security_group_id: The security group ID.
6328
- :param builtins.str vswitch_id: The vswitch id.
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.
6329
6377
  """
6330
6378
  pulumi.set(__self__, "description", description)
6331
6379
  pulumi.set(__self__, "name", name)
@@ -6361,7 +6409,7 @@ class GetEcsLaunchTemplatesTemplateNetworkInterfaceResult(dict):
6361
6409
  @pulumi.getter(name="securityGroupId")
6362
6410
  def security_group_id(self) -> builtins.str:
6363
6411
  """
6364
- The security group ID.
6412
+ The security group ID must be one in the same VPC.
6365
6413
  """
6366
6414
  return pulumi.get(self, "security_group_id")
6367
6415
 
@@ -6369,7 +6417,7 @@ class GetEcsLaunchTemplatesTemplateNetworkInterfaceResult(dict):
6369
6417
  @pulumi.getter(name="vswitchId")
6370
6418
  def vswitch_id(self) -> builtins.str:
6371
6419
  """
6372
- The vswitch id.
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.
6373
6421
  """
6374
6422
  return pulumi.get(self, "vswitch_id")
6375
6423