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.

Files changed (48) hide show
  1. pulumi_alicloud/__init__.py +40 -0
  2. pulumi_alicloud/alb/_inputs.py +21 -105
  3. pulumi_alicloud/alb/get_load_balancers.py +169 -18
  4. pulumi_alicloud/alb/listener.py +28 -56
  5. pulumi_alicloud/alb/outputs.py +150 -105
  6. pulumi_alicloud/cs/_inputs.py +54 -0
  7. pulumi_alicloud/cs/get_kubernetes_version.py +4 -4
  8. pulumi_alicloud/cs/managed_kubernetes.py +129 -7
  9. pulumi_alicloud/cs/outputs.py +49 -0
  10. pulumi_alicloud/ecs/__init__.py +1 -0
  11. pulumi_alicloud/ecs/_inputs.py +40 -0
  12. pulumi_alicloud/ecs/get_dedicated_hosts.py +49 -22
  13. pulumi_alicloud/ecs/get_instances.py +4 -3
  14. pulumi_alicloud/ecs/instance.py +94 -0
  15. pulumi_alicloud/ecs/outputs.py +129 -39
  16. pulumi_alicloud/ecs/ram_role_attachment.py +406 -0
  17. pulumi_alicloud/eflo/__init__.py +1 -0
  18. pulumi_alicloud/eflo/vsc.py +433 -0
  19. pulumi_alicloud/elasticsearch/instance.py +7 -7
  20. pulumi_alicloud/ess/outputs.py +226 -4
  21. pulumi_alicloud/expressconnect/router_vpc_association.py +56 -49
  22. pulumi_alicloud/fc/__init__.py +1 -0
  23. pulumi_alicloud/fc/get_v3_triggers.py +277 -0
  24. pulumi_alicloud/fc/outputs.py +192 -0
  25. pulumi_alicloud/lindorm/__init__.py +1 -0
  26. pulumi_alicloud/lindorm/public_network.py +288 -0
  27. pulumi_alicloud/maxcompute/project.py +2 -4
  28. pulumi_alicloud/oos/get_parameters.py +72 -28
  29. pulumi_alicloud/oos/outputs.py +10 -10
  30. pulumi_alicloud/pai/__init__.py +1 -0
  31. pulumi_alicloud/pai/workspace_user_config.py +356 -0
  32. pulumi_alicloud/polardb/cluster.py +155 -0
  33. pulumi_alicloud/pulumi-plugin.json +1 -1
  34. pulumi_alicloud/pvtz/get_zone_records.py +66 -35
  35. pulumi_alicloud/pvtz/get_zones.py +49 -32
  36. pulumi_alicloud/pvtz/outputs.py +60 -56
  37. pulumi_alicloud/ram/policy.py +21 -35
  38. pulumi_alicloud/ram/role_attachment.py +6 -2
  39. pulumi_alicloud/rds/__init__.py +1 -0
  40. pulumi_alicloud/rds/db_proxy_public.py +512 -0
  41. pulumi_alicloud/rds/instance.py +35 -35
  42. pulumi_alicloud/sls/__init__.py +1 -0
  43. pulumi_alicloud/sls/get_alerts.py +463 -0
  44. pulumi_alicloud/sls/outputs.py +975 -0
  45. {pulumi_alicloud-3.79.0a1747977638.dist-info → pulumi_alicloud-3.79.0a1748578459.dist-info}/METADATA +1 -1
  46. {pulumi_alicloud-3.79.0a1747977638.dist-info → pulumi_alicloud-3.79.0a1748578459.dist-info}/RECORD +48 -41
  47. {pulumi_alicloud-3.79.0a1747977638.dist-info → pulumi_alicloud-3.79.0a1748578459.dist-info}/WHEEL +1 -1
  48. {pulumi_alicloud-3.79.0a1747977638.dist-info → pulumi_alicloud-3.79.0a1748578459.dist-info}/top_level.txt +0 -0
@@ -45,6 +45,7 @@ __all__ = [
45
45
  'GetCommandsCommandResult',
46
46
  'GetDedicatedHostsHostResult',
47
47
  'GetDedicatedHostsHostCapacityResult',
48
+ 'GetDedicatedHostsHostInstanceResult',
48
49
  'GetDedicatedHostsHostNetworkAttributeResult',
49
50
  'GetDedicatedHostsHostOperationLockResult',
50
51
  'GetDedicatedHostsOperationLockResult',
@@ -1257,12 +1258,16 @@ class InstanceDataDisk(dict):
1257
1258
  suggest = None
1258
1259
  if key == "autoSnapshotPolicyId":
1259
1260
  suggest = "auto_snapshot_policy_id"
1261
+ elif key == "burstingEnabled":
1262
+ suggest = "bursting_enabled"
1260
1263
  elif key == "deleteWithInstance":
1261
1264
  suggest = "delete_with_instance"
1262
1265
  elif key == "kmsKeyId":
1263
1266
  suggest = "kms_key_id"
1264
1267
  elif key == "performanceLevel":
1265
1268
  suggest = "performance_level"
1269
+ elif key == "provisionedIops":
1270
+ suggest = "provisioned_iops"
1266
1271
  elif key == "snapshotId":
1267
1272
  suggest = "snapshot_id"
1268
1273
 
@@ -1280,6 +1285,7 @@ class InstanceDataDisk(dict):
1280
1285
  def __init__(__self__, *,
1281
1286
  size: builtins.int,
1282
1287
  auto_snapshot_policy_id: Optional[builtins.str] = None,
1288
+ bursting_enabled: Optional[builtins.bool] = None,
1283
1289
  category: Optional[builtins.str] = None,
1284
1290
  delete_with_instance: Optional[builtins.bool] = None,
1285
1291
  description: Optional[builtins.str] = None,
@@ -1288,6 +1294,7 @@ class InstanceDataDisk(dict):
1288
1294
  kms_key_id: Optional[builtins.str] = None,
1289
1295
  name: Optional[builtins.str] = None,
1290
1296
  performance_level: Optional[builtins.str] = None,
1297
+ provisioned_iops: Optional[builtins.int] = None,
1291
1298
  snapshot_id: Optional[builtins.str] = None):
1292
1299
  """
1293
1300
  :param builtins.int size: The size of the data disk.
@@ -1297,6 +1304,7 @@ class InstanceDataDisk(dict):
1297
1304
  - cloud_essd:[20, 32768]
1298
1305
  - ephemeral_ssd: [5, 800]
1299
1306
  :param builtins.str auto_snapshot_policy_id: The ID of the automatic snapshot policy applied to the system disk.
1307
+ :param builtins.bool bursting_enabled: Specifies whether to enable the performance burst feature for the system disk. Valid values:
1300
1308
  :param builtins.str category: The category of the disk:
1301
1309
  :param builtins.bool delete_with_instance: Delete this data disk when the instance is destroyed. It only works on cloud, cloud_efficiency, cloud_essd, cloud_ssd disk. If the category of this data disk was ephemeral_ssd, please don't set this param. Default value: `true`.
1302
1310
  :param builtins.str description: The description of the data disk.
@@ -1310,11 +1318,14 @@ class InstanceDataDisk(dict):
1310
1318
  - `PL2`: A single ESSD can deliver up to 100,000 random read/write IOPS.
1311
1319
  - `PL3`: A single ESSD can deliver up to 1,000,000 random read/write IOPS.
1312
1320
  Default to `PL1`.
1321
+ :param builtins.int provisioned_iops: The provisioned read/write IOPS of the ESSD AutoPL disk to use as the data disk.
1313
1322
  :param builtins.str snapshot_id: The snapshot ID used to initialize the data disk. If the size specified by snapshot is greater that the size of the disk, use the size specified by snapshot as the size of the data disk.
1314
1323
  """
1315
1324
  pulumi.set(__self__, "size", size)
1316
1325
  if auto_snapshot_policy_id is not None:
1317
1326
  pulumi.set(__self__, "auto_snapshot_policy_id", auto_snapshot_policy_id)
1327
+ if bursting_enabled is not None:
1328
+ pulumi.set(__self__, "bursting_enabled", bursting_enabled)
1318
1329
  if category is not None:
1319
1330
  pulumi.set(__self__, "category", category)
1320
1331
  if delete_with_instance is not None:
@@ -1331,6 +1342,8 @@ class InstanceDataDisk(dict):
1331
1342
  pulumi.set(__self__, "name", name)
1332
1343
  if performance_level is not None:
1333
1344
  pulumi.set(__self__, "performance_level", performance_level)
1345
+ if provisioned_iops is not None:
1346
+ pulumi.set(__self__, "provisioned_iops", provisioned_iops)
1334
1347
  if snapshot_id is not None:
1335
1348
  pulumi.set(__self__, "snapshot_id", snapshot_id)
1336
1349
 
@@ -1355,6 +1368,14 @@ class InstanceDataDisk(dict):
1355
1368
  """
1356
1369
  return pulumi.get(self, "auto_snapshot_policy_id")
1357
1370
 
1371
+ @property
1372
+ @pulumi.getter(name="burstingEnabled")
1373
+ def bursting_enabled(self) -> Optional[builtins.bool]:
1374
+ """
1375
+ Specifies whether to enable the performance burst feature for the system disk. Valid values:
1376
+ """
1377
+ return pulumi.get(self, "bursting_enabled")
1378
+
1358
1379
  @property
1359
1380
  @pulumi.getter
1360
1381
  def category(self) -> Optional[builtins.str]:
@@ -1424,6 +1445,14 @@ class InstanceDataDisk(dict):
1424
1445
  """
1425
1446
  return pulumi.get(self, "performance_level")
1426
1447
 
1448
+ @property
1449
+ @pulumi.getter(name="provisionedIops")
1450
+ def provisioned_iops(self) -> Optional[builtins.int]:
1451
+ """
1452
+ The provisioned read/write IOPS of the ESSD AutoPL disk to use as the data disk.
1453
+ """
1454
+ return pulumi.get(self, "provisioned_iops")
1455
+
1427
1456
  @property
1428
1457
  @pulumi.getter(name="snapshotId")
1429
1458
  def snapshot_id(self) -> Optional[builtins.str]:
@@ -2724,6 +2753,7 @@ class GetDedicatedHostsHostResult(dict):
2724
2753
  expired_time: builtins.str,
2725
2754
  gpu_spec: builtins.str,
2726
2755
  id: builtins.str,
2756
+ instances: Sequence['outputs.GetDedicatedHostsHostInstanceResult'],
2727
2757
  machine_id: builtins.str,
2728
2758
  network_attributes: Sequence['outputs.GetDedicatedHostsHostNetworkAttributeResult'],
2729
2759
  operation_locks: Sequence['outputs.GetDedicatedHostsHostOperationLockResult'],
@@ -2742,9 +2772,9 @@ class GetDedicatedHostsHostResult(dict):
2742
2772
  :param builtins.str action_on_maintenance: The policy used to migrate the instances from the dedicated host when the dedicated host fails or needs to be repaired online.
2743
2773
  :param builtins.str auto_placement: Specifies whether to add the dedicated host to the resource pool for automatic deployment.
2744
2774
  :param builtins.str auto_release_time: The automatic release time of the dedicated host.
2745
- :param Sequence['GetDedicatedHostsHostCapacityArgs'] capacities: (Available in 1.123.1+) A collection of proprietary host performance indicators.
2775
+ :param Sequence['GetDedicatedHostsHostCapacityArgs'] capacities: (Available since v1.123.1) A collection of proprietary host performance indicators.
2746
2776
  :param builtins.int cores: A mapping of tags to assign to the resource.
2747
- :param builtins.float cpu_over_commit_ratio: (Available in 1.123.1+) CPU oversold ratio.
2777
+ :param builtins.float cpu_over_commit_ratio: (Available since v1.123.1) CPU oversold ratio.
2748
2778
  :param builtins.str dedicated_host_id: The ID of ECS Dedicated Host.
2749
2779
  :param builtins.str dedicated_host_name: The name of ECS Dedicated Host.
2750
2780
  :param builtins.str dedicated_host_type: The type of the dedicated host.
@@ -2752,18 +2782,19 @@ class GetDedicatedHostsHostResult(dict):
2752
2782
  :param builtins.str expired_time: The expiration time of the subscription dedicated host.
2753
2783
  :param builtins.str gpu_spec: The GPU model.
2754
2784
  :param builtins.str id: ID of the ECS Dedicated Host.
2785
+ :param Sequence['GetDedicatedHostsHostInstanceArgs'] instances: (Available since v1.250.0) The ECS instances that were created on the dedicated host.
2755
2786
  :param builtins.str machine_id: The machine code of the dedicated host.
2756
2787
  :param Sequence['GetDedicatedHostsHostNetworkAttributeArgs'] network_attributes: dedicated host network parameters. contains the following attributes:
2757
- :param Sequence['GetDedicatedHostsHostOperationLockArgs'] operation_locks: The reason why the dedicated host resource is locked.
2788
+ :param Sequence['GetDedicatedHostsHostOperationLockArgs'] operation_locks: The reason why the dedicated host resource is locked. See `operation_locks` below.
2758
2789
  :param builtins.str payment_type: The billing method of the dedicated host.
2759
2790
  :param builtins.int physical_gpus: The number of physical GPUs.
2760
2791
  :param builtins.str resource_group_id: The ID of the resource group to which the ECS Dedicated Host belongs.
2761
2792
  :param builtins.str sale_cycle: The unit of the subscription billing method.
2762
2793
  :param builtins.int sockets: The number of physical CPUs.
2763
- :param builtins.str status: The status of the ECS Dedicated Host. validate value: `Available`, `Creating`, `PermanentFailure`, `Released`, `UnderAssessment`.
2764
- :param Sequence[builtins.str] supported_custom_instance_type_families: (Available in 1.123.1+) A custom instance type family supported by a dedicated host.
2765
- :param Sequence[builtins.str] supported_instance_type_families: (Available in 1.123.1+) ECS instance type family supported by the dedicated host.
2766
- :param Sequence[builtins.str] supported_instance_types_lists: The list of ECS instance
2794
+ :param builtins.str status: The status of the ECS Dedicated Host. Valid Value: `Available`, `Creating`, `PermanentFailure`, `Released`, `UnderAssessment`.
2795
+ :param Sequence[builtins.str] supported_custom_instance_type_families: (Available since v1.123.1) A custom instance type family supported by a dedicated host.
2796
+ :param Sequence[builtins.str] supported_instance_type_families: (Available since v1.123.1) ECS instance type family supported by the dedicated host.
2797
+ :param Sequence[builtins.str] supported_instance_types_lists: The list of ECS instance.
2767
2798
  :param Mapping[str, builtins.str] tags: A mapping of tags to assign to the resource.
2768
2799
  :param builtins.str zone_id: The zone ID of the ECS Dedicated Host.
2769
2800
  """
@@ -2780,6 +2811,7 @@ class GetDedicatedHostsHostResult(dict):
2780
2811
  pulumi.set(__self__, "expired_time", expired_time)
2781
2812
  pulumi.set(__self__, "gpu_spec", gpu_spec)
2782
2813
  pulumi.set(__self__, "id", id)
2814
+ pulumi.set(__self__, "instances", instances)
2783
2815
  pulumi.set(__self__, "machine_id", machine_id)
2784
2816
  pulumi.set(__self__, "network_attributes", network_attributes)
2785
2817
  pulumi.set(__self__, "operation_locks", operation_locks)
@@ -2823,7 +2855,7 @@ class GetDedicatedHostsHostResult(dict):
2823
2855
  @pulumi.getter
2824
2856
  def capacities(self) -> Sequence['outputs.GetDedicatedHostsHostCapacityResult']:
2825
2857
  """
2826
- (Available in 1.123.1+) A collection of proprietary host performance indicators.
2858
+ (Available since v1.123.1) A collection of proprietary host performance indicators.
2827
2859
  """
2828
2860
  return pulumi.get(self, "capacities")
2829
2861
 
@@ -2839,7 +2871,7 @@ class GetDedicatedHostsHostResult(dict):
2839
2871
  @pulumi.getter(name="cpuOverCommitRatio")
2840
2872
  def cpu_over_commit_ratio(self) -> builtins.float:
2841
2873
  """
2842
- (Available in 1.123.1+) CPU oversold ratio.
2874
+ (Available since v1.123.1) CPU oversold ratio.
2843
2875
  """
2844
2876
  return pulumi.get(self, "cpu_over_commit_ratio")
2845
2877
 
@@ -2899,6 +2931,14 @@ class GetDedicatedHostsHostResult(dict):
2899
2931
  """
2900
2932
  return pulumi.get(self, "id")
2901
2933
 
2934
+ @property
2935
+ @pulumi.getter
2936
+ def instances(self) -> Sequence['outputs.GetDedicatedHostsHostInstanceResult']:
2937
+ """
2938
+ (Available since v1.250.0) The ECS instances that were created on the dedicated host.
2939
+ """
2940
+ return pulumi.get(self, "instances")
2941
+
2902
2942
  @property
2903
2943
  @pulumi.getter(name="machineId")
2904
2944
  def machine_id(self) -> builtins.str:
@@ -2919,7 +2959,7 @@ class GetDedicatedHostsHostResult(dict):
2919
2959
  @pulumi.getter(name="operationLocks")
2920
2960
  def operation_locks(self) -> Sequence['outputs.GetDedicatedHostsHostOperationLockResult']:
2921
2961
  """
2922
- The reason why the dedicated host resource is locked.
2962
+ The reason why the dedicated host resource is locked. See `operation_locks` below.
2923
2963
  """
2924
2964
  return pulumi.get(self, "operation_locks")
2925
2965
 
@@ -2967,7 +3007,7 @@ class GetDedicatedHostsHostResult(dict):
2967
3007
  @pulumi.getter
2968
3008
  def status(self) -> builtins.str:
2969
3009
  """
2970
- The status of the ECS Dedicated Host. validate value: `Available`, `Creating`, `PermanentFailure`, `Released`, `UnderAssessment`.
3010
+ The status of the ECS Dedicated Host. Valid Value: `Available`, `Creating`, `PermanentFailure`, `Released`, `UnderAssessment`.
2971
3011
  """
2972
3012
  return pulumi.get(self, "status")
2973
3013
 
@@ -2975,7 +3015,7 @@ class GetDedicatedHostsHostResult(dict):
2975
3015
  @pulumi.getter(name="supportedCustomInstanceTypeFamilies")
2976
3016
  def supported_custom_instance_type_families(self) -> Sequence[builtins.str]:
2977
3017
  """
2978
- (Available in 1.123.1+) A custom instance type family supported by a dedicated host.
3018
+ (Available since v1.123.1) A custom instance type family supported by a dedicated host.
2979
3019
  """
2980
3020
  return pulumi.get(self, "supported_custom_instance_type_families")
2981
3021
 
@@ -2983,7 +3023,7 @@ class GetDedicatedHostsHostResult(dict):
2983
3023
  @pulumi.getter(name="supportedInstanceTypeFamilies")
2984
3024
  def supported_instance_type_families(self) -> Sequence[builtins.str]:
2985
3025
  """
2986
- (Available in 1.123.1+) ECS instance type family supported by the dedicated host.
3026
+ (Available since v1.123.1) ECS instance type family supported by the dedicated host.
2987
3027
  """
2988
3028
  return pulumi.get(self, "supported_instance_type_families")
2989
3029
 
@@ -2991,7 +3031,7 @@ class GetDedicatedHostsHostResult(dict):
2991
3031
  @pulumi.getter(name="supportedInstanceTypesLists")
2992
3032
  def supported_instance_types_lists(self) -> Sequence[builtins.str]:
2993
3033
  """
2994
- The list of ECS instance
3034
+ The list of ECS instance.
2995
3035
  """
2996
3036
  return pulumi.get(self, "supported_instance_types_lists")
2997
3037
 
@@ -3118,6 +3158,57 @@ class GetDedicatedHostsHostCapacityResult(dict):
3118
3158
  return pulumi.get(self, "total_vgpus")
3119
3159
 
3120
3160
 
3161
+ @pulumi.output_type
3162
+ class GetDedicatedHostsHostInstanceResult(dict):
3163
+ def __init__(__self__, *,
3164
+ instance_id: builtins.str,
3165
+ instance_owner_id: builtins.int,
3166
+ instance_type: builtins.str,
3167
+ socket_id: builtins.str):
3168
+ """
3169
+ :param builtins.str instance_id: The ID of the ECS instance.
3170
+ :param builtins.int instance_owner_id: The ID of the ECS instance owner.
3171
+ :param builtins.str instance_type: The instance type of the ECS instance that was created on the dedicated host.
3172
+ :param builtins.str socket_id: The ID of the socket to which the ECS instance belongs.
3173
+ """
3174
+ pulumi.set(__self__, "instance_id", instance_id)
3175
+ pulumi.set(__self__, "instance_owner_id", instance_owner_id)
3176
+ pulumi.set(__self__, "instance_type", instance_type)
3177
+ pulumi.set(__self__, "socket_id", socket_id)
3178
+
3179
+ @property
3180
+ @pulumi.getter(name="instanceId")
3181
+ def instance_id(self) -> builtins.str:
3182
+ """
3183
+ The ID of the ECS instance.
3184
+ """
3185
+ return pulumi.get(self, "instance_id")
3186
+
3187
+ @property
3188
+ @pulumi.getter(name="instanceOwnerId")
3189
+ def instance_owner_id(self) -> builtins.int:
3190
+ """
3191
+ The ID of the ECS instance owner.
3192
+ """
3193
+ return pulumi.get(self, "instance_owner_id")
3194
+
3195
+ @property
3196
+ @pulumi.getter(name="instanceType")
3197
+ def instance_type(self) -> builtins.str:
3198
+ """
3199
+ The instance type of the ECS instance that was created on the dedicated host.
3200
+ """
3201
+ return pulumi.get(self, "instance_type")
3202
+
3203
+ @property
3204
+ @pulumi.getter(name="socketId")
3205
+ def socket_id(self) -> builtins.str:
3206
+ """
3207
+ The ID of the socket to which the ECS instance belongs.
3208
+ """
3209
+ return pulumi.get(self, "socket_id")
3210
+
3211
+
3121
3212
  @pulumi.output_type
3122
3213
  class GetDedicatedHostsHostNetworkAttributeResult(dict):
3123
3214
  def __init__(__self__, *,
@@ -3125,7 +3216,7 @@ class GetDedicatedHostsHostNetworkAttributeResult(dict):
3125
3216
  udp_timeout: builtins.int):
3126
3217
  """
3127
3218
  :param builtins.int slb_udp_timeout: The timeout period for a UDP session between Server Load Balancer (SLB) and the dedicated host. Unit: seconds.
3128
- :param builtins.int udp_timeout: (Available in 1.123.1+) The timeout period for a UDP session between a user and an Alibaba Cloud service on the dedicated host. Unit: seconds.
3219
+ :param builtins.int udp_timeout: (Available since v1.123.1) The timeout period for a UDP session between a user and an Alibaba Cloud service on the dedicated host. Unit: seconds.
3129
3220
  """
3130
3221
  pulumi.set(__self__, "slb_udp_timeout", slb_udp_timeout)
3131
3222
  pulumi.set(__self__, "udp_timeout", udp_timeout)
@@ -3142,7 +3233,7 @@ class GetDedicatedHostsHostNetworkAttributeResult(dict):
3142
3233
  @pulumi.getter(name="udpTimeout")
3143
3234
  def udp_timeout(self) -> builtins.int:
3144
3235
  """
3145
- (Available in 1.123.1+) The timeout period for a UDP session between a user and an Alibaba Cloud service on the dedicated host. Unit: seconds.
3236
+ (Available since v1.123.1) The timeout period for a UDP session between a user and an Alibaba Cloud service on the dedicated host. Unit: seconds.
3146
3237
  """
3147
3238
  return pulumi.get(self, "udp_timeout")
3148
3239
 
@@ -9114,9 +9205,9 @@ class GetInstancesInstanceResult(dict):
9114
9205
  security_groups: Sequence[builtins.str],
9115
9206
  spot_strategy: builtins.str,
9116
9207
  status: builtins.str,
9208
+ tags: Mapping[str, builtins.str],
9117
9209
  vpc_id: builtins.str,
9118
- vswitch_id: builtins.str,
9119
- tags: Optional[Mapping[str, builtins.str]] = None):
9210
+ vswitch_id: builtins.str):
9120
9211
  """
9121
9212
  :param builtins.str availability_zone: Availability zone where instances are located.
9122
9213
  :param builtins.str creation_time: Instance creation time.
@@ -9139,8 +9230,6 @@ class GetInstancesInstanceResult(dict):
9139
9230
  :param Sequence[builtins.str] security_groups: List of security group IDs the instance belongs to.
9140
9231
  :param builtins.str spot_strategy: Spot strategy the instance is using.
9141
9232
  :param builtins.str status: Instance status. Valid values: "Creating", "Starting", "Running", "Stopping" and "Stopped". If undefined, all statuses are considered.
9142
- :param builtins.str vpc_id: ID of the VPC linked to the instances.
9143
- :param builtins.str vswitch_id: ID of the vSwitch linked to the instances.
9144
9233
  :param Mapping[str, builtins.str] tags: A map of tags assigned to the ECS instances. It must be in the format:
9145
9234
  ```python
9146
9235
  import pulumi
@@ -9151,6 +9240,8 @@ class GetInstancesInstanceResult(dict):
9151
9240
  "tagKey2": "tagValue2",
9152
9241
  })
9153
9242
  ```
9243
+ :param builtins.str vpc_id: ID of the VPC linked to the instances.
9244
+ :param builtins.str vswitch_id: ID of the vSwitch linked to the instances.
9154
9245
  """
9155
9246
  pulumi.set(__self__, "availability_zone", availability_zone)
9156
9247
  pulumi.set(__self__, "creation_time", creation_time)
@@ -9173,10 +9264,9 @@ class GetInstancesInstanceResult(dict):
9173
9264
  pulumi.set(__self__, "security_groups", security_groups)
9174
9265
  pulumi.set(__self__, "spot_strategy", spot_strategy)
9175
9266
  pulumi.set(__self__, "status", status)
9267
+ pulumi.set(__self__, "tags", tags)
9176
9268
  pulumi.set(__self__, "vpc_id", vpc_id)
9177
9269
  pulumi.set(__self__, "vswitch_id", vswitch_id)
9178
- if tags is not None:
9179
- pulumi.set(__self__, "tags", tags)
9180
9270
 
9181
9271
  @property
9182
9272
  @pulumi.getter(name="availabilityZone")
@@ -9346,25 +9436,9 @@ class GetInstancesInstanceResult(dict):
9346
9436
  """
9347
9437
  return pulumi.get(self, "status")
9348
9438
 
9349
- @property
9350
- @pulumi.getter(name="vpcId")
9351
- def vpc_id(self) -> builtins.str:
9352
- """
9353
- ID of the VPC linked to the instances.
9354
- """
9355
- return pulumi.get(self, "vpc_id")
9356
-
9357
- @property
9358
- @pulumi.getter(name="vswitchId")
9359
- def vswitch_id(self) -> builtins.str:
9360
- """
9361
- ID of the vSwitch linked to the instances.
9362
- """
9363
- return pulumi.get(self, "vswitch_id")
9364
-
9365
9439
  @property
9366
9440
  @pulumi.getter
9367
- def tags(self) -> Optional[Mapping[str, builtins.str]]:
9441
+ def tags(self) -> Mapping[str, builtins.str]:
9368
9442
  """
9369
9443
  A map of tags assigned to the ECS instances. It must be in the format:
9370
9444
  ```python
@@ -9379,6 +9453,22 @@ class GetInstancesInstanceResult(dict):
9379
9453
  """
9380
9454
  return pulumi.get(self, "tags")
9381
9455
 
9456
+ @property
9457
+ @pulumi.getter(name="vpcId")
9458
+ def vpc_id(self) -> builtins.str:
9459
+ """
9460
+ ID of the VPC linked to the instances.
9461
+ """
9462
+ return pulumi.get(self, "vpc_id")
9463
+
9464
+ @property
9465
+ @pulumi.getter(name="vswitchId")
9466
+ def vswitch_id(self) -> builtins.str:
9467
+ """
9468
+ ID of the vSwitch linked to the instances.
9469
+ """
9470
+ return pulumi.get(self, "vswitch_id")
9471
+
9382
9472
 
9383
9473
  @pulumi.output_type
9384
9474
  class GetInstancesInstanceDiskDeviceMappingResult(dict):