pulumi-alicloud 3.65.0a1730524658__py3-none-any.whl → 3.65.1__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 +19 -0
- pulumi_alicloud/alb/load_balancer.py +1 -1
- pulumi_alicloud/arms/environment.py +7 -7
- pulumi_alicloud/arms/get_remote_writes.py +4 -4
- pulumi_alicloud/arms/prometheus_alert_rule.py +58 -0
- pulumi_alicloud/arms/remote_write.py +2 -2
- pulumi_alicloud/cen/transit_router_route_table_association.py +72 -68
- pulumi_alicloud/cen/transit_router_vbr_attachment.py +96 -74
- pulumi_alicloud/cloudstoragegateway/gateway.py +134 -58
- pulumi_alicloud/cms/hybrid_monitor_fc_task.py +28 -26
- pulumi_alicloud/cr/chain.py +22 -14
- pulumi_alicloud/cr/chart_repository.py +14 -6
- pulumi_alicloud/cr/repo.py +8 -8
- pulumi_alicloud/cr/vpc_endpoint_linked_vpc.py +14 -6
- pulumi_alicloud/cs/_inputs.py +6 -6
- pulumi_alicloud/cs/outputs.py +4 -4
- pulumi_alicloud/databasefilesystem/instance_attachment.py +59 -63
- pulumi_alicloud/databasefilesystem/snapshot.py +53 -109
- pulumi_alicloud/ecs/instance.py +7 -7
- pulumi_alicloud/ess/scaling_configuration.py +8 -8
- pulumi_alicloud/ess/scaling_group.py +54 -7
- pulumi_alicloud/fc/_inputs.py +3 -3
- pulumi_alicloud/fc/outputs.py +2 -2
- pulumi_alicloud/fc/trigger.py +202 -138
- pulumi_alicloud/ga/custom_routing_endpoint_traffic_policy.py +48 -44
- pulumi_alicloud/governance/_inputs.py +54 -0
- pulumi_alicloud/governance/account.py +49 -14
- pulumi_alicloud/governance/outputs.py +51 -0
- pulumi_alicloud/gpdb/instance.py +196 -15
- pulumi_alicloud/kms/get_secrets.py +5 -5
- pulumi_alicloud/kms/instance.py +28 -0
- pulumi_alicloud/kms/outputs.py +18 -18
- pulumi_alicloud/mse/__init__.py +2 -0
- pulumi_alicloud/mse/get_nacos_configs.py +394 -0
- pulumi_alicloud/mse/nacos_config.py +762 -0
- pulumi_alicloud/mse/outputs.py +129 -0
- pulumi_alicloud/nas/data_flow.py +6 -6
- pulumi_alicloud/nas/fileset.py +6 -6
- pulumi_alicloud/nas/lifecycle_policy.py +6 -6
- pulumi_alicloud/nas/recycle_bin.py +6 -6
- pulumi_alicloud/nas/snapshot.py +6 -6
- pulumi_alicloud/ocean/base_instance.py +2 -2
- pulumi_alicloud/pai/__init__.py +8 -0
- pulumi_alicloud/pai/workspace_workspace.py +447 -0
- pulumi_alicloud/polardb/cluster.py +14 -14
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/redis/tair_instance.py +1102 -71
- pulumi_alicloud/threatdetection/honeypot_preset.py +2 -0
- pulumi_alicloud/vpc/subnet.py +59 -27
- pulumi_alicloud/vpc/switch.py +104 -87
- pulumi_alicloud/vpn/gateway_vco_route.py +28 -8
- {pulumi_alicloud-3.65.0a1730524658.dist-info → pulumi_alicloud-3.65.1.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.65.0a1730524658.dist-info → pulumi_alicloud-3.65.1.dist-info}/RECORD +55 -51
- {pulumi_alicloud-3.65.0a1730524658.dist-info → pulumi_alicloud-3.65.1.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.65.0a1730524658.dist-info → pulumi_alicloud-3.65.1.dist-info}/top_level.txt +0 -0
|
@@ -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,
|
|
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,
|
|
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,
|
|
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,
|
|
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,
|
|
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,
|
|
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,
|
|
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
|
|
pulumi_alicloud/fc/_inputs.py
CHANGED
|
@@ -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
|
|
pulumi_alicloud/fc/outputs.py
CHANGED
|
@@ -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
|
|