pulumi-alicloud 3.56.0a1715923185__py3-none-any.whl → 3.56.0a1716440817__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.
- pulumi_alicloud/cs/_inputs.py +128 -16
- pulumi_alicloud/cs/edge_kubernetes.py +29 -15
- pulumi_alicloud/cs/kubernetes.py +54 -7
- pulumi_alicloud/cs/managed_kubernetes.py +34 -0
- pulumi_alicloud/cs/outputs.py +150 -16
- pulumi_alicloud/ecs/_inputs.py +49 -1
- pulumi_alicloud/ecs/ecs_deployment_set.py +9 -9
- pulumi_alicloud/ecs/eip.py +68 -0
- pulumi_alicloud/ecs/eip_address.py +115 -0
- pulumi_alicloud/ecs/instance.py +166 -126
- pulumi_alicloud/ecs/outputs.py +43 -1
- pulumi_alicloud/ess/_inputs.py +2 -2
- pulumi_alicloud/ess/outputs.py +2 -2
- pulumi_alicloud/ess/scaling_group.py +7 -7
- pulumi_alicloud/kms/instance.py +218 -128
- pulumi_alicloud/message/service_queue.py +100 -82
- pulumi_alicloud/nas/access_rule.py +38 -18
- pulumi_alicloud/nas/auto_snapshot_policy.py +111 -26
- pulumi_alicloud/privatelink/vpc_endpoint.py +124 -41
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/simpleapplicationserver/snapshot.py +4 -4
- {pulumi_alicloud-3.56.0a1715923185.dist-info → pulumi_alicloud-3.56.0a1716440817.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.56.0a1715923185.dist-info → pulumi_alicloud-3.56.0a1716440817.dist-info}/RECORD +25 -25
- {pulumi_alicloud-3.56.0a1715923185.dist-info → pulumi_alicloud-3.56.0a1716440817.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.56.0a1715923185.dist-info → pulumi_alicloud-3.56.0a1716440817.dist-info}/top_level.txt +0 -0
pulumi_alicloud/ecs/outputs.py
CHANGED
|
@@ -1256,6 +1256,12 @@ class InstanceNetworkInterfaces(dict):
|
|
|
1256
1256
|
suggest = None
|
|
1257
1257
|
if key == "networkInterfaceId":
|
|
1258
1258
|
suggest = "network_interface_id"
|
|
1259
|
+
elif key == "networkInterfaceTrafficMode":
|
|
1260
|
+
suggest = "network_interface_traffic_mode"
|
|
1261
|
+
elif key == "securityGroupIds":
|
|
1262
|
+
suggest = "security_group_ids"
|
|
1263
|
+
elif key == "vswitchId":
|
|
1264
|
+
suggest = "vswitch_id"
|
|
1259
1265
|
|
|
1260
1266
|
if suggest:
|
|
1261
1267
|
pulumi.log.warn(f"Key '{key}' not found in InstanceNetworkInterfaces. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -1269,12 +1275,24 @@ class InstanceNetworkInterfaces(dict):
|
|
|
1269
1275
|
return super().get(key, default)
|
|
1270
1276
|
|
|
1271
1277
|
def __init__(__self__, *,
|
|
1272
|
-
network_interface_id: Optional[str] = None
|
|
1278
|
+
network_interface_id: Optional[str] = None,
|
|
1279
|
+
network_interface_traffic_mode: Optional[str] = None,
|
|
1280
|
+
security_group_ids: Optional[Sequence[str]] = None,
|
|
1281
|
+
vswitch_id: Optional[str] = None):
|
|
1273
1282
|
"""
|
|
1274
1283
|
:param str network_interface_id: The ID of the secondary ENI.
|
|
1284
|
+
:param str network_interface_traffic_mode: The communication mode of the ENI. Default value: `Standard`. Valid values:
|
|
1285
|
+
:param Sequence[str] security_group_ids: The ID of security group N to which to assign ENI N.
|
|
1286
|
+
:param str vswitch_id: The ID of the vSwitch to which to connect ENI N.
|
|
1275
1287
|
"""
|
|
1276
1288
|
if network_interface_id is not None:
|
|
1277
1289
|
pulumi.set(__self__, "network_interface_id", network_interface_id)
|
|
1290
|
+
if network_interface_traffic_mode is not None:
|
|
1291
|
+
pulumi.set(__self__, "network_interface_traffic_mode", network_interface_traffic_mode)
|
|
1292
|
+
if security_group_ids is not None:
|
|
1293
|
+
pulumi.set(__self__, "security_group_ids", security_group_ids)
|
|
1294
|
+
if vswitch_id is not None:
|
|
1295
|
+
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
1278
1296
|
|
|
1279
1297
|
@property
|
|
1280
1298
|
@pulumi.getter(name="networkInterfaceId")
|
|
@@ -1284,6 +1302,30 @@ class InstanceNetworkInterfaces(dict):
|
|
|
1284
1302
|
"""
|
|
1285
1303
|
return pulumi.get(self, "network_interface_id")
|
|
1286
1304
|
|
|
1305
|
+
@property
|
|
1306
|
+
@pulumi.getter(name="networkInterfaceTrafficMode")
|
|
1307
|
+
def network_interface_traffic_mode(self) -> Optional[str]:
|
|
1308
|
+
"""
|
|
1309
|
+
The communication mode of the ENI. Default value: `Standard`. Valid values:
|
|
1310
|
+
"""
|
|
1311
|
+
return pulumi.get(self, "network_interface_traffic_mode")
|
|
1312
|
+
|
|
1313
|
+
@property
|
|
1314
|
+
@pulumi.getter(name="securityGroupIds")
|
|
1315
|
+
def security_group_ids(self) -> Optional[Sequence[str]]:
|
|
1316
|
+
"""
|
|
1317
|
+
The ID of security group N to which to assign ENI N.
|
|
1318
|
+
"""
|
|
1319
|
+
return pulumi.get(self, "security_group_ids")
|
|
1320
|
+
|
|
1321
|
+
@property
|
|
1322
|
+
@pulumi.getter(name="vswitchId")
|
|
1323
|
+
def vswitch_id(self) -> Optional[str]:
|
|
1324
|
+
"""
|
|
1325
|
+
The ID of the vSwitch to which to connect ENI N.
|
|
1326
|
+
"""
|
|
1327
|
+
return pulumi.get(self, "vswitch_id")
|
|
1328
|
+
|
|
1287
1329
|
|
|
1288
1330
|
@pulumi.output_type
|
|
1289
1331
|
class LaunchTemplateDataDisk(dict):
|
pulumi_alicloud/ess/_inputs.py
CHANGED
|
@@ -1533,7 +1533,7 @@ class ScalingConfigurationDataDiskArgs:
|
|
|
1533
1533
|
snapshot_id: Optional[pulumi.Input[str]] = None):
|
|
1534
1534
|
"""
|
|
1535
1535
|
:param pulumi.Input[str] auto_snapshot_policy_id: The id of auto snapshot policy for data disk.
|
|
1536
|
-
:param pulumi.Input[str] category: Category of data disk. The parameter value options are `ephemeral_ssd`, `cloud_efficiency`, `cloud_ssd` and `cloud`.
|
|
1536
|
+
:param pulumi.Input[str] category: Category of data disk. The parameter value options are `ephemeral_ssd`, `cloud_efficiency`, `cloud_ssd` , `cloud_essd` and `cloud`.
|
|
1537
1537
|
:param pulumi.Input[bool] delete_with_instance: Whether to delete data disks attached on ecs when release ecs instance. Optional value: `true` or `false`, default to `true`.
|
|
1538
1538
|
:param pulumi.Input[str] description: The description of data disk N. Valid values of N: 1 to 16. The description must be 2 to 256 characters in length and cannot start with http:// or https://.
|
|
1539
1539
|
:param pulumi.Input[str] device: The mount point of data disk N. Valid values of N: 1 to 16. If this parameter is not specified, the system automatically allocates a mount point to created ECS instances. The name of the mount point ranges from /dev/xvdb to /dev/xvdz in alphabetical order.
|
|
@@ -1586,7 +1586,7 @@ class ScalingConfigurationDataDiskArgs:
|
|
|
1586
1586
|
@pulumi.getter
|
|
1587
1587
|
def category(self) -> Optional[pulumi.Input[str]]:
|
|
1588
1588
|
"""
|
|
1589
|
-
Category of data disk. The parameter value options are `ephemeral_ssd`, `cloud_efficiency`, `cloud_ssd` and `cloud`.
|
|
1589
|
+
Category of data disk. The parameter value options are `ephemeral_ssd`, `cloud_efficiency`, `cloud_ssd` , `cloud_essd` and `cloud`.
|
|
1590
1590
|
"""
|
|
1591
1591
|
return pulumi.get(self, "category")
|
|
1592
1592
|
|
pulumi_alicloud/ess/outputs.py
CHANGED
|
@@ -1436,7 +1436,7 @@ class ScalingConfigurationDataDisk(dict):
|
|
|
1436
1436
|
snapshot_id: Optional[str] = None):
|
|
1437
1437
|
"""
|
|
1438
1438
|
:param str auto_snapshot_policy_id: The id of auto snapshot policy for data disk.
|
|
1439
|
-
:param str category: Category of data disk. The parameter value options are `ephemeral_ssd`, `cloud_efficiency`, `cloud_ssd` and `cloud`.
|
|
1439
|
+
:param str category: Category of data disk. The parameter value options are `ephemeral_ssd`, `cloud_efficiency`, `cloud_ssd` , `cloud_essd` and `cloud`.
|
|
1440
1440
|
:param bool delete_with_instance: Whether to delete data disks attached on ecs when release ecs instance. Optional value: `true` or `false`, default to `true`.
|
|
1441
1441
|
:param str description: The description of data disk N. Valid values of N: 1 to 16. The description must be 2 to 256 characters in length and cannot start with http:// or https://.
|
|
1442
1442
|
:param str device: The mount point of data disk N. Valid values of N: 1 to 16. If this parameter is not specified, the system automatically allocates a mount point to created ECS instances. The name of the mount point ranges from /dev/xvdb to /dev/xvdz in alphabetical order.
|
|
@@ -1482,7 +1482,7 @@ class ScalingConfigurationDataDisk(dict):
|
|
|
1482
1482
|
@pulumi.getter
|
|
1483
1483
|
def category(self) -> Optional[str]:
|
|
1484
1484
|
"""
|
|
1485
|
-
Category of data disk. The parameter value options are `ephemeral_ssd`, `cloud_efficiency`, `cloud_ssd` and `cloud`.
|
|
1485
|
+
Category of data disk. The parameter value options are `ephemeral_ssd`, `cloud_efficiency`, `cloud_ssd` , `cloud_essd` and `cloud`.
|
|
1486
1486
|
"""
|
|
1487
1487
|
return pulumi.get(self, "category")
|
|
1488
1488
|
|
|
@@ -52,7 +52,7 @@ class ScalingGroupArgs:
|
|
|
52
52
|
:param pulumi.Input[int] desired_capacity: Expected number of ECS instances in the scaling group. Value range: [min_size, max_size].
|
|
53
53
|
:param pulumi.Input[bool] group_deletion_protection: Specifies whether the scaling group deletion protection is enabled. `true` or `false`, Default value: `false`.
|
|
54
54
|
:param pulumi.Input[str] group_type: Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
|
|
55
|
-
:param pulumi.Input[str] health_check_type: Resource type within scaling group. Optional values: ECS, NONE. Default to ECS.
|
|
55
|
+
:param pulumi.Input[str] health_check_type: Resource type within scaling group. Optional values: ECS, NONE, LOAD_BALANCER. Default to ECS.
|
|
56
56
|
: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.
|
|
57
57
|
: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.
|
|
58
58
|
:param pulumi.Input[str] launch_template_version: The version number of the launch template. Valid values are the version number, `Latest`, or `Default`, Default value: `Default`.
|
|
@@ -220,7 +220,7 @@ class ScalingGroupArgs:
|
|
|
220
220
|
@pulumi.getter(name="healthCheckType")
|
|
221
221
|
def health_check_type(self) -> Optional[pulumi.Input[str]]:
|
|
222
222
|
"""
|
|
223
|
-
Resource type within scaling group. Optional values: ECS, NONE. Default to ECS.
|
|
223
|
+
Resource type within scaling group. Optional values: ECS, NONE, LOAD_BALANCER. Default to ECS.
|
|
224
224
|
"""
|
|
225
225
|
return pulumi.get(self, "health_check_type")
|
|
226
226
|
|
|
@@ -458,7 +458,7 @@ class _ScalingGroupState:
|
|
|
458
458
|
:param pulumi.Input[int] desired_capacity: Expected number of ECS instances in the scaling group. Value range: [min_size, max_size].
|
|
459
459
|
:param pulumi.Input[bool] group_deletion_protection: Specifies whether the scaling group deletion protection is enabled. `true` or `false`, Default value: `false`.
|
|
460
460
|
:param pulumi.Input[str] group_type: Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
|
|
461
|
-
:param pulumi.Input[str] health_check_type: Resource type within scaling group. Optional values: ECS, NONE. Default to ECS.
|
|
461
|
+
:param pulumi.Input[str] health_check_type: Resource type within scaling group. Optional values: ECS, NONE, LOAD_BALANCER. Default to ECS.
|
|
462
462
|
: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.
|
|
463
463
|
: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.
|
|
464
464
|
:param pulumi.Input[str] launch_template_version: The version number of the launch template. Valid values are the version number, `Latest`, or `Default`, Default value: `Default`.
|
|
@@ -606,7 +606,7 @@ class _ScalingGroupState:
|
|
|
606
606
|
@pulumi.getter(name="healthCheckType")
|
|
607
607
|
def health_check_type(self) -> Optional[pulumi.Input[str]]:
|
|
608
608
|
"""
|
|
609
|
-
Resource type within scaling group. Optional values: ECS, NONE. Default to ECS.
|
|
609
|
+
Resource type within scaling group. Optional values: ECS, NONE, LOAD_BALANCER. Default to ECS.
|
|
610
610
|
"""
|
|
611
611
|
return pulumi.get(self, "health_check_type")
|
|
612
612
|
|
|
@@ -960,7 +960,7 @@ class ScalingGroup(pulumi.CustomResource):
|
|
|
960
960
|
:param pulumi.Input[int] desired_capacity: Expected number of ECS instances in the scaling group. Value range: [min_size, max_size].
|
|
961
961
|
:param pulumi.Input[bool] group_deletion_protection: Specifies whether the scaling group deletion protection is enabled. `true` or `false`, Default value: `false`.
|
|
962
962
|
:param pulumi.Input[str] group_type: Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
|
|
963
|
-
:param pulumi.Input[str] health_check_type: Resource type within scaling group. Optional values: ECS, NONE. Default to ECS.
|
|
963
|
+
:param pulumi.Input[str] health_check_type: Resource type within scaling group. Optional values: ECS, NONE, LOAD_BALANCER. Default to ECS.
|
|
964
964
|
: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.
|
|
965
965
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['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.
|
|
966
966
|
:param pulumi.Input[str] launch_template_version: The version number of the launch template. Valid values are the version number, `Latest`, or `Default`, Default value: `Default`.
|
|
@@ -1206,7 +1206,7 @@ class ScalingGroup(pulumi.CustomResource):
|
|
|
1206
1206
|
:param pulumi.Input[int] desired_capacity: Expected number of ECS instances in the scaling group. Value range: [min_size, max_size].
|
|
1207
1207
|
:param pulumi.Input[bool] group_deletion_protection: Specifies whether the scaling group deletion protection is enabled. `true` or `false`, Default value: `false`.
|
|
1208
1208
|
:param pulumi.Input[str] group_type: Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
|
|
1209
|
-
:param pulumi.Input[str] health_check_type: Resource type within scaling group. Optional values: ECS, NONE. Default to ECS.
|
|
1209
|
+
:param pulumi.Input[str] health_check_type: Resource type within scaling group. Optional values: ECS, NONE, LOAD_BALANCER. Default to ECS.
|
|
1210
1210
|
: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.
|
|
1211
1211
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['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.
|
|
1212
1212
|
:param pulumi.Input[str] launch_template_version: The version number of the launch template. Valid values are the version number, `Latest`, or `Default`, Default value: `Default`.
|
|
@@ -1313,7 +1313,7 @@ class ScalingGroup(pulumi.CustomResource):
|
|
|
1313
1313
|
@pulumi.getter(name="healthCheckType")
|
|
1314
1314
|
def health_check_type(self) -> pulumi.Output[str]:
|
|
1315
1315
|
"""
|
|
1316
|
-
Resource type within scaling group. Optional values: ECS, NONE. Default to ECS.
|
|
1316
|
+
Resource type within scaling group. Optional values: ECS, NONE, LOAD_BALANCER. Default to ECS.
|
|
1317
1317
|
"""
|
|
1318
1318
|
return pulumi.get(self, "health_check_type")
|
|
1319
1319
|
|