pulumi-alicloud 3.65.0a1730524658__py3-none-any.whl → 3.65.0a1730759410__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.

@@ -26,6 +26,7 @@ class ScalingGroupArgs:
26
26
  alb_server_groups: Optional[pulumi.Input[Sequence[pulumi.Input['ScalingGroupAlbServerGroupArgs']]]] = None,
27
27
  allocation_strategy: Optional[pulumi.Input[str]] = None,
28
28
  az_balance: Optional[pulumi.Input[bool]] = None,
29
+ container_group_id: Optional[pulumi.Input[str]] = None,
29
30
  db_instance_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
30
31
  default_cooldown: Optional[pulumi.Input[int]] = None,
31
32
  desired_capacity: Optional[pulumi.Input[int]] = None,
@@ -62,6 +63,7 @@ class ScalingGroupArgs:
62
63
  :param pulumi.Input[Sequence[pulumi.Input['ScalingGroupAlbServerGroupArgs']]] alb_server_groups: If a Serve ALB instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server ALB instance. See `alb_server_group` below for details.
63
64
  :param pulumi.Input[str] allocation_strategy: The allocation policy of instances. Auto Scaling selects instance types based on the allocation policy to create instances. The policy can be applied to pay-as-you-go instances and preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
64
65
  :param pulumi.Input[bool] az_balance: Specifies whether to evenly distribute instances in the scaling group across multiple zones. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
66
+ :param pulumi.Input[str] container_group_id: The ID of the elastic container instance.
65
67
  :param pulumi.Input[Sequence[pulumi.Input[str]]] db_instance_ids: If an RDS instance is specified in the scaling group, the scaling group automatically attaches the Intranet IP addresses of its ECS instances to the RDS access whitelist.
66
68
  - The specified RDS instance must be in running status.
67
69
  - The specified RDS instance’s whitelist must have room for more IP addresses.
@@ -70,7 +72,7 @@ class ScalingGroupArgs:
70
72
  :param pulumi.Input[bool] group_deletion_protection: Specifies whether the scaling group deletion protection is enabled. `true` or `false`, Default value: `false`.
71
73
  :param pulumi.Input[str] group_type: Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
72
74
  :param pulumi.Input[str] health_check_type: Resource type within scaling group. Optional values: ECS, ECI, NONE, LOAD_BALANCER. Default to ECS.
73
- :param pulumi.Input[Sequence[pulumi.Input[str]]] health_check_types: The health check modes of the scaling group. Valid values: ECS, ECI, NONE, LOAD_BALANCER.
75
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] health_check_types: The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
74
76
  :param pulumi.Input[str] instance_id: The ID of the instance from which Auto Scaling obtains the required configuration information and uses the information to automatically create a scaling configuration.
75
77
  :param pulumi.Input[str] launch_template_id: Instance launch template ID, scaling group obtains launch configuration from instance launch template, see [Launch Template](https://www.alibabacloud.com/help/doc-detail/73916.html). Creating scaling group from launch template enable group automatically.
76
78
  :param pulumi.Input[Sequence[pulumi.Input['ScalingGroupLaunchTemplateOverrideArgs']]] launch_template_overrides: The details of the instance types that are specified by using the Extend Instance Type of Launch Template feature. See `launch_template_override` below for details.
@@ -111,6 +113,8 @@ class ScalingGroupArgs:
111
113
  pulumi.set(__self__, "allocation_strategy", allocation_strategy)
112
114
  if az_balance is not None:
113
115
  pulumi.set(__self__, "az_balance", az_balance)
116
+ if container_group_id is not None:
117
+ pulumi.set(__self__, "container_group_id", container_group_id)
114
118
  if db_instance_ids is not None:
115
119
  pulumi.set(__self__, "db_instance_ids", db_instance_ids)
116
120
  if default_cooldown is not None:
@@ -231,6 +235,18 @@ class ScalingGroupArgs:
231
235
  def az_balance(self, value: Optional[pulumi.Input[bool]]):
232
236
  pulumi.set(self, "az_balance", value)
233
237
 
238
+ @property
239
+ @pulumi.getter(name="containerGroupId")
240
+ def container_group_id(self) -> Optional[pulumi.Input[str]]:
241
+ """
242
+ The ID of the elastic container instance.
243
+ """
244
+ return pulumi.get(self, "container_group_id")
245
+
246
+ @container_group_id.setter
247
+ def container_group_id(self, value: Optional[pulumi.Input[str]]):
248
+ pulumi.set(self, "container_group_id", value)
249
+
234
250
  @property
235
251
  @pulumi.getter(name="dbInstanceIds")
236
252
  def db_instance_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -309,7 +325,7 @@ class ScalingGroupArgs:
309
325
  @pulumi.getter(name="healthCheckTypes")
310
326
  def health_check_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
311
327
  """
312
- The health check modes of the scaling group. Valid values: ECS, ECI, NONE, LOAD_BALANCER.
328
+ The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
313
329
  """
314
330
  return pulumi.get(self, "health_check_types")
315
331
 
@@ -576,6 +592,7 @@ class _ScalingGroupState:
576
592
  alb_server_groups: Optional[pulumi.Input[Sequence[pulumi.Input['ScalingGroupAlbServerGroupArgs']]]] = None,
577
593
  allocation_strategy: Optional[pulumi.Input[str]] = None,
578
594
  az_balance: Optional[pulumi.Input[bool]] = None,
595
+ container_group_id: Optional[pulumi.Input[str]] = None,
579
596
  db_instance_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
580
597
  default_cooldown: Optional[pulumi.Input[int]] = None,
581
598
  desired_capacity: Optional[pulumi.Input[int]] = None,
@@ -610,6 +627,7 @@ class _ScalingGroupState:
610
627
  :param pulumi.Input[Sequence[pulumi.Input['ScalingGroupAlbServerGroupArgs']]] alb_server_groups: If a Serve ALB instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server ALB instance. See `alb_server_group` below for details.
611
628
  :param pulumi.Input[str] allocation_strategy: The allocation policy of instances. Auto Scaling selects instance types based on the allocation policy to create instances. The policy can be applied to pay-as-you-go instances and preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
612
629
  :param pulumi.Input[bool] az_balance: Specifies whether to evenly distribute instances in the scaling group across multiple zones. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
630
+ :param pulumi.Input[str] container_group_id: The ID of the elastic container instance.
613
631
  :param pulumi.Input[Sequence[pulumi.Input[str]]] db_instance_ids: If an RDS instance is specified in the scaling group, the scaling group automatically attaches the Intranet IP addresses of its ECS instances to the RDS access whitelist.
614
632
  - The specified RDS instance must be in running status.
615
633
  - The specified RDS instance’s whitelist must have room for more IP addresses.
@@ -618,7 +636,7 @@ class _ScalingGroupState:
618
636
  :param pulumi.Input[bool] group_deletion_protection: Specifies whether the scaling group deletion protection is enabled. `true` or `false`, Default value: `false`.
619
637
  :param pulumi.Input[str] group_type: Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
620
638
  :param pulumi.Input[str] health_check_type: Resource type within scaling group. Optional values: ECS, ECI, NONE, LOAD_BALANCER. Default to ECS.
621
- :param pulumi.Input[Sequence[pulumi.Input[str]]] health_check_types: The health check modes of the scaling group. Valid values: ECS, ECI, NONE, LOAD_BALANCER.
639
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] health_check_types: The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
622
640
  :param pulumi.Input[str] instance_id: The ID of the instance from which Auto Scaling obtains the required configuration information and uses the information to automatically create a scaling configuration.
623
641
  :param pulumi.Input[str] launch_template_id: Instance launch template ID, scaling group obtains launch configuration from instance launch template, see [Launch Template](https://www.alibabacloud.com/help/doc-detail/73916.html). Creating scaling group from launch template enable group automatically.
624
642
  :param pulumi.Input[Sequence[pulumi.Input['ScalingGroupLaunchTemplateOverrideArgs']]] launch_template_overrides: The details of the instance types that are specified by using the Extend Instance Type of Launch Template feature. See `launch_template_override` below for details.
@@ -661,6 +679,8 @@ class _ScalingGroupState:
661
679
  pulumi.set(__self__, "allocation_strategy", allocation_strategy)
662
680
  if az_balance is not None:
663
681
  pulumi.set(__self__, "az_balance", az_balance)
682
+ if container_group_id is not None:
683
+ pulumi.set(__self__, "container_group_id", container_group_id)
664
684
  if db_instance_ids is not None:
665
685
  pulumi.set(__self__, "db_instance_ids", db_instance_ids)
666
686
  if default_cooldown is not None:
@@ -759,6 +779,18 @@ class _ScalingGroupState:
759
779
  def az_balance(self, value: Optional[pulumi.Input[bool]]):
760
780
  pulumi.set(self, "az_balance", value)
761
781
 
782
+ @property
783
+ @pulumi.getter(name="containerGroupId")
784
+ def container_group_id(self) -> Optional[pulumi.Input[str]]:
785
+ """
786
+ The ID of the elastic container instance.
787
+ """
788
+ return pulumi.get(self, "container_group_id")
789
+
790
+ @container_group_id.setter
791
+ def container_group_id(self, value: Optional[pulumi.Input[str]]):
792
+ pulumi.set(self, "container_group_id", value)
793
+
762
794
  @property
763
795
  @pulumi.getter(name="dbInstanceIds")
764
796
  def db_instance_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -837,7 +869,7 @@ class _ScalingGroupState:
837
869
  @pulumi.getter(name="healthCheckTypes")
838
870
  def health_check_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
839
871
  """
840
- The health check modes of the scaling group. Valid values: ECS, ECI, NONE, LOAD_BALANCER.
872
+ The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
841
873
  """
842
874
  return pulumi.get(self, "health_check_types")
843
875
 
@@ -1132,6 +1164,7 @@ class ScalingGroup(pulumi.CustomResource):
1132
1164
  alb_server_groups: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScalingGroupAlbServerGroupArgs', 'ScalingGroupAlbServerGroupArgsDict']]]]] = None,
1133
1165
  allocation_strategy: Optional[pulumi.Input[str]] = None,
1134
1166
  az_balance: Optional[pulumi.Input[bool]] = None,
1167
+ container_group_id: Optional[pulumi.Input[str]] = None,
1135
1168
  db_instance_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1136
1169
  default_cooldown: Optional[pulumi.Input[int]] = None,
1137
1170
  desired_capacity: Optional[pulumi.Input[int]] = None,
@@ -1254,6 +1287,7 @@ class ScalingGroup(pulumi.CustomResource):
1254
1287
  :param pulumi.Input[Sequence[pulumi.Input[Union['ScalingGroupAlbServerGroupArgs', 'ScalingGroupAlbServerGroupArgsDict']]]] alb_server_groups: If a Serve ALB instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server ALB instance. See `alb_server_group` below for details.
1255
1288
  :param pulumi.Input[str] allocation_strategy: The allocation policy of instances. Auto Scaling selects instance types based on the allocation policy to create instances. The policy can be applied to pay-as-you-go instances and preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
1256
1289
  :param pulumi.Input[bool] az_balance: Specifies whether to evenly distribute instances in the scaling group across multiple zones. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
1290
+ :param pulumi.Input[str] container_group_id: The ID of the elastic container instance.
1257
1291
  :param pulumi.Input[Sequence[pulumi.Input[str]]] db_instance_ids: If an RDS instance is specified in the scaling group, the scaling group automatically attaches the Intranet IP addresses of its ECS instances to the RDS access whitelist.
1258
1292
  - The specified RDS instance must be in running status.
1259
1293
  - The specified RDS instance’s whitelist must have room for more IP addresses.
@@ -1262,7 +1296,7 @@ class ScalingGroup(pulumi.CustomResource):
1262
1296
  :param pulumi.Input[bool] group_deletion_protection: Specifies whether the scaling group deletion protection is enabled. `true` or `false`, Default value: `false`.
1263
1297
  :param pulumi.Input[str] group_type: Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
1264
1298
  :param pulumi.Input[str] health_check_type: Resource type within scaling group. Optional values: ECS, ECI, NONE, LOAD_BALANCER. Default to ECS.
1265
- :param pulumi.Input[Sequence[pulumi.Input[str]]] health_check_types: The health check modes of the scaling group. Valid values: ECS, ECI, NONE, LOAD_BALANCER.
1299
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] health_check_types: The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
1266
1300
  :param pulumi.Input[str] instance_id: The ID of the instance from which Auto Scaling obtains the required configuration information and uses the information to automatically create a scaling configuration.
1267
1301
  :param pulumi.Input[str] launch_template_id: Instance launch template ID, scaling group obtains launch configuration from instance launch template, see [Launch Template](https://www.alibabacloud.com/help/doc-detail/73916.html). Creating scaling group from launch template enable group automatically.
1268
1302
  :param pulumi.Input[Sequence[pulumi.Input[Union['ScalingGroupLaunchTemplateOverrideArgs', 'ScalingGroupLaunchTemplateOverrideArgsDict']]]] launch_template_overrides: The details of the instance types that are specified by using the Extend Instance Type of Launch Template feature. See `launch_template_override` below for details.
@@ -1410,6 +1444,7 @@ class ScalingGroup(pulumi.CustomResource):
1410
1444
  alb_server_groups: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScalingGroupAlbServerGroupArgs', 'ScalingGroupAlbServerGroupArgsDict']]]]] = None,
1411
1445
  allocation_strategy: Optional[pulumi.Input[str]] = None,
1412
1446
  az_balance: Optional[pulumi.Input[bool]] = None,
1447
+ container_group_id: Optional[pulumi.Input[str]] = None,
1413
1448
  db_instance_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1414
1449
  default_cooldown: Optional[pulumi.Input[int]] = None,
1415
1450
  desired_capacity: Optional[pulumi.Input[int]] = None,
@@ -1451,6 +1486,7 @@ class ScalingGroup(pulumi.CustomResource):
1451
1486
  __props__.__dict__["alb_server_groups"] = alb_server_groups
1452
1487
  __props__.__dict__["allocation_strategy"] = allocation_strategy
1453
1488
  __props__.__dict__["az_balance"] = az_balance
1489
+ __props__.__dict__["container_group_id"] = container_group_id
1454
1490
  __props__.__dict__["db_instance_ids"] = db_instance_ids
1455
1491
  __props__.__dict__["default_cooldown"] = default_cooldown
1456
1492
  __props__.__dict__["desired_capacity"] = desired_capacity
@@ -1497,6 +1533,7 @@ class ScalingGroup(pulumi.CustomResource):
1497
1533
  alb_server_groups: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScalingGroupAlbServerGroupArgs', 'ScalingGroupAlbServerGroupArgsDict']]]]] = None,
1498
1534
  allocation_strategy: Optional[pulumi.Input[str]] = None,
1499
1535
  az_balance: Optional[pulumi.Input[bool]] = None,
1536
+ container_group_id: Optional[pulumi.Input[str]] = None,
1500
1537
  db_instance_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1501
1538
  default_cooldown: Optional[pulumi.Input[int]] = None,
1502
1539
  desired_capacity: Optional[pulumi.Input[int]] = None,
@@ -1536,6 +1573,7 @@ class ScalingGroup(pulumi.CustomResource):
1536
1573
  :param pulumi.Input[Sequence[pulumi.Input[Union['ScalingGroupAlbServerGroupArgs', 'ScalingGroupAlbServerGroupArgsDict']]]] alb_server_groups: If a Serve ALB instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server ALB instance. See `alb_server_group` below for details.
1537
1574
  :param pulumi.Input[str] allocation_strategy: The allocation policy of instances. Auto Scaling selects instance types based on the allocation policy to create instances. The policy can be applied to pay-as-you-go instances and preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
1538
1575
  :param pulumi.Input[bool] az_balance: Specifies whether to evenly distribute instances in the scaling group across multiple zones. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
1576
+ :param pulumi.Input[str] container_group_id: The ID of the elastic container instance.
1539
1577
  :param pulumi.Input[Sequence[pulumi.Input[str]]] db_instance_ids: If an RDS instance is specified in the scaling group, the scaling group automatically attaches the Intranet IP addresses of its ECS instances to the RDS access whitelist.
1540
1578
  - The specified RDS instance must be in running status.
1541
1579
  - The specified RDS instance’s whitelist must have room for more IP addresses.
@@ -1544,7 +1582,7 @@ class ScalingGroup(pulumi.CustomResource):
1544
1582
  :param pulumi.Input[bool] group_deletion_protection: Specifies whether the scaling group deletion protection is enabled. `true` or `false`, Default value: `false`.
1545
1583
  :param pulumi.Input[str] group_type: Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
1546
1584
  :param pulumi.Input[str] health_check_type: Resource type within scaling group. Optional values: ECS, ECI, NONE, LOAD_BALANCER. Default to ECS.
1547
- :param pulumi.Input[Sequence[pulumi.Input[str]]] health_check_types: The health check modes of the scaling group. Valid values: ECS, ECI, NONE, LOAD_BALANCER.
1585
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] health_check_types: The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
1548
1586
  :param pulumi.Input[str] instance_id: The ID of the instance from which Auto Scaling obtains the required configuration information and uses the information to automatically create a scaling configuration.
1549
1587
  :param pulumi.Input[str] launch_template_id: Instance launch template ID, scaling group obtains launch configuration from instance launch template, see [Launch Template](https://www.alibabacloud.com/help/doc-detail/73916.html). Creating scaling group from launch template enable group automatically.
1550
1588
  :param pulumi.Input[Sequence[pulumi.Input[Union['ScalingGroupLaunchTemplateOverrideArgs', 'ScalingGroupLaunchTemplateOverrideArgsDict']]]] launch_template_overrides: The details of the instance types that are specified by using the Extend Instance Type of Launch Template feature. See `launch_template_override` below for details.
@@ -1588,6 +1626,7 @@ class ScalingGroup(pulumi.CustomResource):
1588
1626
  __props__.__dict__["alb_server_groups"] = alb_server_groups
1589
1627
  __props__.__dict__["allocation_strategy"] = allocation_strategy
1590
1628
  __props__.__dict__["az_balance"] = az_balance
1629
+ __props__.__dict__["container_group_id"] = container_group_id
1591
1630
  __props__.__dict__["db_instance_ids"] = db_instance_ids
1592
1631
  __props__.__dict__["default_cooldown"] = default_cooldown
1593
1632
  __props__.__dict__["desired_capacity"] = desired_capacity
@@ -1643,6 +1682,14 @@ class ScalingGroup(pulumi.CustomResource):
1643
1682
  """
1644
1683
  return pulumi.get(self, "az_balance")
1645
1684
 
1685
+ @property
1686
+ @pulumi.getter(name="containerGroupId")
1687
+ def container_group_id(self) -> pulumi.Output[Optional[str]]:
1688
+ """
1689
+ The ID of the elastic container instance.
1690
+ """
1691
+ return pulumi.get(self, "container_group_id")
1692
+
1646
1693
  @property
1647
1694
  @pulumi.getter(name="dbInstanceIds")
1648
1695
  def db_instance_ids(self) -> pulumi.Output[Optional[Sequence[str]]]:
@@ -1697,7 +1744,7 @@ class ScalingGroup(pulumi.CustomResource):
1697
1744
  @pulumi.getter(name="healthCheckTypes")
1698
1745
  def health_check_types(self) -> pulumi.Output[Optional[Sequence[str]]]:
1699
1746
  """
1700
- The health check modes of the scaling group. Valid values: ECS, ECI, NONE, LOAD_BALANCER.
1747
+ The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
1701
1748
  """
1702
1749
  return pulumi.get(self, "health_check_types")
1703
1750
 
@@ -2313,7 +2313,7 @@ if not MYPY:
2313
2313
  class V3FunctionCustomContainerConfigArgsDict(TypedDict):
2314
2314
  acceleration_info: NotRequired[pulumi.Input['V3FunctionCustomContainerConfigAccelerationInfoArgsDict']]
2315
2315
  """
2316
- Image Acceleration Information (Obsolete).
2316
+ (Deprecated) Image Acceleration Information (Obsolete).
2317
2317
  """
2318
2318
  acceleration_type: NotRequired[pulumi.Input[str]]
2319
2319
  """
@@ -2363,7 +2363,7 @@ class V3FunctionCustomContainerConfigArgs:
2363
2363
  port: Optional[pulumi.Input[int]] = None,
2364
2364
  resolved_image_uri: Optional[pulumi.Input[str]] = None):
2365
2365
  """
2366
- :param pulumi.Input['V3FunctionCustomContainerConfigAccelerationInfoArgs'] acceleration_info: Image Acceleration Information (Obsolete).
2366
+ :param pulumi.Input['V3FunctionCustomContainerConfigAccelerationInfoArgs'] acceleration_info: (Deprecated) Image Acceleration Information (Obsolete).
2367
2367
  :param pulumi.Input[str] acceleration_type: Whether to enable Image acceleration. Default: The Default value, indicating that image acceleration is enabled. None: indicates that image acceleration is disabled. (Obsolete).
2368
2368
  :param pulumi.Input[str] acr_instance_id: ACR Enterprise version Image Repository ID, which must be entered when using ACR Enterprise version image. (Obsolete).
2369
2369
  :param pulumi.Input[Sequence[pulumi.Input[str]]] commands: Container startup parameters.
@@ -2406,7 +2406,7 @@ class V3FunctionCustomContainerConfigArgs:
2406
2406
  @_utilities.deprecated("""Field 'acceleration_info' has been deprecated from provider version 1.228.0. Image Acceleration Information (Obsolete)""")
2407
2407
  def acceleration_info(self) -> Optional[pulumi.Input['V3FunctionCustomContainerConfigAccelerationInfoArgs']]:
2408
2408
  """
2409
- Image Acceleration Information (Obsolete).
2409
+ (Deprecated) Image Acceleration Information (Obsolete).
2410
2410
  """
2411
2411
  return pulumi.get(self, "acceleration_info")
2412
2412
 
@@ -1831,7 +1831,7 @@ class V3FunctionCustomContainerConfig(dict):
1831
1831
  port: Optional[int] = None,
1832
1832
  resolved_image_uri: Optional[str] = None):
1833
1833
  """
1834
- :param 'V3FunctionCustomContainerConfigAccelerationInfoArgs' acceleration_info: Image Acceleration Information (Obsolete).
1834
+ :param 'V3FunctionCustomContainerConfigAccelerationInfoArgs' acceleration_info: (Deprecated) Image Acceleration Information (Obsolete).
1835
1835
  :param str acceleration_type: Whether to enable Image acceleration. Default: The Default value, indicating that image acceleration is enabled. None: indicates that image acceleration is disabled. (Obsolete).
1836
1836
  :param str acr_instance_id: ACR Enterprise version Image Repository ID, which must be entered when using ACR Enterprise version image. (Obsolete).
1837
1837
  :param Sequence[str] commands: Container startup parameters.
@@ -1865,7 +1865,7 @@ class V3FunctionCustomContainerConfig(dict):
1865
1865
  @_utilities.deprecated("""Field 'acceleration_info' has been deprecated from provider version 1.228.0. Image Acceleration Information (Obsolete)""")
1866
1866
  def acceleration_info(self) -> Optional['outputs.V3FunctionCustomContainerConfigAccelerationInfo']:
1867
1867
  """
1868
- Image Acceleration Information (Obsolete).
1868
+ (Deprecated) Image Acceleration Information (Obsolete).
1869
1869
  """
1870
1870
  return pulumi.get(self, "acceleration_info")
1871
1871
 
@@ -120,7 +120,7 @@ class GetSecretsResult:
120
120
  @pulumi.getter
121
121
  def tags(self) -> Optional[Mapping[str, str]]:
122
122
  """
123
- (Optional) A mapping of tags to assign to the resource.
123
+ A mapping of tags to assign to the resource.
124
124
  """
125
125
  return pulumi.get(self, "tags")
126
126
 
@@ -154,7 +154,7 @@ def get_secrets(enable_details: Optional[bool] = None,
154
154
  """
155
155
  This data source provides a list of KMS Secrets in an Alibaba Cloud account according to the specified filters.
156
156
 
157
- > **NOTE:** Available in v1.86.0+.
157
+ > **NOTE:** Available since v1.86.0.
158
158
 
159
159
  ## Example Usage
160
160
 
@@ -180,7 +180,7 @@ def get_secrets(enable_details: Optional[bool] = None,
180
180
  :param Sequence[str] ids: A list of KMS Secret ids. The value is same as KMS secret_name.
181
181
  :param str name_regex: A regex string to filter the results by the KMS secret_name.
182
182
  :param str output_file: File name where to save data source results (after running `pulumi preview`).
183
- :param Mapping[str, str] tags: A mapping of tags to assign to the resource.
183
+ :param Mapping[str, str] tags: A mapping of tags to assign to the resource, and can be used to filter secrets.
184
184
  """
185
185
  __args__ = dict()
186
186
  __args__['enableDetails'] = enable_details
@@ -215,7 +215,7 @@ def get_secrets_output(enable_details: Optional[pulumi.Input[Optional[bool]]] =
215
215
  """
216
216
  This data source provides a list of KMS Secrets in an Alibaba Cloud account according to the specified filters.
217
217
 
218
- > **NOTE:** Available in v1.86.0+.
218
+ > **NOTE:** Available since v1.86.0.
219
219
 
220
220
  ## Example Usage
221
221
 
@@ -241,7 +241,7 @@ def get_secrets_output(enable_details: Optional[pulumi.Input[Optional[bool]]] =
241
241
  :param Sequence[str] ids: A list of KMS Secret ids. The value is same as KMS secret_name.
242
242
  :param str name_regex: A regex string to filter the results by the KMS secret_name.
243
243
  :param str output_file: File name where to save data source results (after running `pulumi preview`).
244
- :param Mapping[str, str] tags: A mapping of tags to assign to the resource.
244
+ :param Mapping[str, str] tags: A mapping of tags to assign to the resource, and can be used to filter secrets.
245
245
  """
246
246
  __args__ = dict()
247
247
  __args__['enableDetails'] = enable_details
@@ -486,18 +486,18 @@ class GetSecretsSecretResult(dict):
486
486
  version_id: str,
487
487
  version_stages: Sequence[str]):
488
488
  """
489
- :param str arn: (Available in 1.124.0+) A mapping of tags to assign to the resource.
490
- :param str description: (Available in 1.124.0+) The description of the secret.
491
- :param str encryption_key_id: (Available in 1.124.0+) The ID of the KMS CMK that is used to encrypt the secret value.
489
+ :param str arn: (Available since v1.124.0) A mapping of tags to assign to the resource.
490
+ :param str description: (Available since v1.124.0) The description of the secret.
491
+ :param str encryption_key_id: (Available since v1.124.0) The ID of the KMS CMK that is used to encrypt the secret value.
492
492
  :param str id: ID of the Kms Secret. The value is same as KMS secret_name.
493
493
  :param str planned_delete_time: Schedule deletion time.
494
- :param str secret_data: (Available in 1.124.0+) The value of the secret that you want to create.
495
- :param str secret_data_type: (Available in 1.124.0+) The type of the secret data value.
494
+ :param str secret_data: (Available since v1.124.0) The value of the secret that you want to create.
495
+ :param str secret_data_type: (Available since v1.124.0) The type of the secret data value.
496
496
  :param str secret_name: Name of the KMS Secret.
497
- :param str secret_type: (Available in 1.124.0+) The type of the secret.
498
- :param Mapping[str, str] tags: A mapping of tags to assign to the resource.
499
- :param str version_id: (Available in 1.124.0+) The version number of the initial version.
500
- :param Sequence[str] version_stages: (Available in 1.124.0+) The stage labels that mark the new secret version.
497
+ :param str secret_type: (Available since v1.124.0) The type of the secret.
498
+ :param Mapping[str, str] tags: A mapping of tags to assign to the resource, and can be used to filter secrets.
499
+ :param str version_id: (Available since v1.124.0) The version number of the initial version.
500
+ :param Sequence[str] version_stages: (Available since v1.124.0) The stage labels that mark the new secret version.
501
501
  """
502
502
  pulumi.set(__self__, "arn", arn)
503
503
  pulumi.set(__self__, "description", description)
@@ -516,7 +516,7 @@ class GetSecretsSecretResult(dict):
516
516
  @pulumi.getter
517
517
  def arn(self) -> str:
518
518
  """
519
- (Available in 1.124.0+) A mapping of tags to assign to the resource.
519
+ (Available since v1.124.0) A mapping of tags to assign to the resource.
520
520
  """
521
521
  return pulumi.get(self, "arn")
522
522
 
@@ -524,7 +524,7 @@ class GetSecretsSecretResult(dict):
524
524
  @pulumi.getter
525
525
  def description(self) -> str:
526
526
  """
527
- (Available in 1.124.0+) The description of the secret.
527
+ (Available since v1.124.0) The description of the secret.
528
528
  """
529
529
  return pulumi.get(self, "description")
530
530
 
@@ -532,7 +532,7 @@ class GetSecretsSecretResult(dict):
532
532
  @pulumi.getter(name="encryptionKeyId")
533
533
  def encryption_key_id(self) -> str:
534
534
  """
535
- (Available in 1.124.0+) The ID of the KMS CMK that is used to encrypt the secret value.
535
+ (Available since v1.124.0) The ID of the KMS CMK that is used to encrypt the secret value.
536
536
  """
537
537
  return pulumi.get(self, "encryption_key_id")
538
538
 
@@ -556,7 +556,7 @@ class GetSecretsSecretResult(dict):
556
556
  @pulumi.getter(name="secretData")
557
557
  def secret_data(self) -> str:
558
558
  """
559
- (Available in 1.124.0+) The value of the secret that you want to create.
559
+ (Available since v1.124.0) The value of the secret that you want to create.
560
560
  """
561
561
  return pulumi.get(self, "secret_data")
562
562
 
@@ -564,7 +564,7 @@ class GetSecretsSecretResult(dict):
564
564
  @pulumi.getter(name="secretDataType")
565
565
  def secret_data_type(self) -> str:
566
566
  """
567
- (Available in 1.124.0+) The type of the secret data value.
567
+ (Available since v1.124.0) The type of the secret data value.
568
568
  """
569
569
  return pulumi.get(self, "secret_data_type")
570
570
 
@@ -580,7 +580,7 @@ class GetSecretsSecretResult(dict):
580
580
  @pulumi.getter(name="secretType")
581
581
  def secret_type(self) -> str:
582
582
  """
583
- (Available in 1.124.0+) The type of the secret.
583
+ (Available since v1.124.0) The type of the secret.
584
584
  """
585
585
  return pulumi.get(self, "secret_type")
586
586
 
@@ -588,7 +588,7 @@ class GetSecretsSecretResult(dict):
588
588
  @pulumi.getter
589
589
  def tags(self) -> Mapping[str, str]:
590
590
  """
591
- A mapping of tags to assign to the resource.
591
+ A mapping of tags to assign to the resource, and can be used to filter secrets.
592
592
  """
593
593
  return pulumi.get(self, "tags")
594
594
 
@@ -596,7 +596,7 @@ class GetSecretsSecretResult(dict):
596
596
  @pulumi.getter(name="versionId")
597
597
  def version_id(self) -> str:
598
598
  """
599
- (Available in 1.124.0+) The version number of the initial version.
599
+ (Available since v1.124.0) The version number of the initial version.
600
600
  """
601
601
  return pulumi.get(self, "version_id")
602
602
 
@@ -604,7 +604,7 @@ class GetSecretsSecretResult(dict):
604
604
  @pulumi.getter(name="versionStages")
605
605
  def version_stages(self) -> Sequence[str]:
606
606
  """
607
- (Available in 1.124.0+) The stage labels that mark the new secret version.
607
+ (Available since v1.124.0) The stage labels that mark the new secret version.
608
608
  """
609
609
  return pulumi.get(self, "version_stages")
610
610
 
@@ -11,7 +11,9 @@ from .gateway import *
11
11
  from .get_clusters import *
12
12
  from .get_engine_namespaces import *
13
13
  from .get_gateways import *
14
+ from .get_nacos_configs import *
14
15
  from .get_znodes import *
16
+ from .nacos_config import *
15
17
  from .znode import *
16
18
  from ._inputs import *
17
19
  from . import outputs