pulumi-alicloud 3.60.0a1721884766__py3-none-any.whl → 3.60.0a1721971165__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/_utilities.py +2 -0
- pulumi_alicloud/cen/get_transit_router_service.py +2 -2
- pulumi_alicloud/cloudfirewall/control_policy_order.py +60 -44
- pulumi_alicloud/cs/node_pool.py +7 -7
- pulumi_alicloud/dcdn/_inputs.py +23 -27
- pulumi_alicloud/dcdn/domain.py +366 -217
- pulumi_alicloud/dcdn/outputs.py +18 -22
- pulumi_alicloud/directmail/get_domains.py +31 -24
- pulumi_alicloud/directmail/outputs.py +131 -32
- pulumi_alicloud/eci/_inputs.py +8 -0
- pulumi_alicloud/eci/outputs.py +8 -0
- pulumi_alicloud/ecs/_inputs.py +40 -8
- pulumi_alicloud/ecs/ecs_disk.py +7 -0
- pulumi_alicloud/ecs/instance.py +304 -102
- pulumi_alicloud/ecs/outputs.py +37 -9
- pulumi_alicloud/maxcompute/_inputs.py +44 -42
- pulumi_alicloud/maxcompute/outputs.py +44 -42
- pulumi_alicloud/maxcompute/project.py +230 -66
- pulumi_alicloud/polardb/cluster.py +28 -28
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/rdc/organization.py +2 -2
- pulumi_alicloud/slb/_inputs.py +8 -8
- pulumi_alicloud/slb/outputs.py +8 -8
- pulumi_alicloud/slb/server_group.py +140 -84
- pulumi_alicloud/vpc/_inputs.py +18 -12
- pulumi_alicloud/vpc/network.py +332 -134
- pulumi_alicloud/vpc/outputs.py +18 -12
- pulumi_alicloud/vpc/public_ip_address_pool.py +118 -10
- {pulumi_alicloud-3.60.0a1721884766.dist-info → pulumi_alicloud-3.60.0a1721971165.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.60.0a1721884766.dist-info → pulumi_alicloud-3.60.0a1721971165.dist-info}/RECORD +32 -32
- {pulumi_alicloud-3.60.0a1721884766.dist-info → pulumi_alicloud-3.60.0a1721971165.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.60.0a1721884766.dist-info → pulumi_alicloud-3.60.0a1721971165.dist-info}/top_level.txt +0 -0
pulumi_alicloud/ecs/_inputs.py
CHANGED
|
@@ -1371,32 +1371,52 @@ class InstanceMaintenanceTimeArgs:
|
|
|
1371
1371
|
@pulumi.input_type
|
|
1372
1372
|
class InstanceNetworkInterfacesArgs:
|
|
1373
1373
|
def __init__(__self__, *,
|
|
1374
|
+
network_card_index: Optional[pulumi.Input[int]] = None,
|
|
1374
1375
|
network_interface_id: Optional[pulumi.Input[str]] = None,
|
|
1375
1376
|
network_interface_traffic_mode: Optional[pulumi.Input[str]] = None,
|
|
1377
|
+
queue_pair_number: Optional[pulumi.Input[int]] = None,
|
|
1376
1378
|
security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1377
1379
|
vswitch_id: Optional[pulumi.Input[str]] = None):
|
|
1378
1380
|
"""
|
|
1379
|
-
:param pulumi.Input[
|
|
1380
|
-
:param pulumi.Input[str]
|
|
1381
|
+
:param pulumi.Input[int] network_card_index: The index of the network card for Secondary ENI.
|
|
1382
|
+
:param pulumi.Input[str] network_interface_id: The ID of the Secondary ENI.
|
|
1383
|
+
:param pulumi.Input[str] network_interface_traffic_mode: The communication mode of the Secondary ENI. Default value: `Standard`. Valid values:
|
|
1381
1384
|
- `Standard`: Uses the TCP communication mode.
|
|
1382
1385
|
- `HighPerformance`: Uses the remote direct memory access (RDMA) communication mode with Elastic RDMA Interface (ERI) enabled.
|
|
1383
|
-
:param pulumi.Input[
|
|
1384
|
-
:param pulumi.Input[str]
|
|
1386
|
+
:param pulumi.Input[int] queue_pair_number: The number of queues supported by the ERI.
|
|
1387
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] security_group_ids: The ID of security group N to which to assign Secondary ENI N.
|
|
1388
|
+
:param pulumi.Input[str] vswitch_id: The ID of the vSwitch to which to connect Secondary ENI N.
|
|
1385
1389
|
"""
|
|
1390
|
+
if network_card_index is not None:
|
|
1391
|
+
pulumi.set(__self__, "network_card_index", network_card_index)
|
|
1386
1392
|
if network_interface_id is not None:
|
|
1387
1393
|
pulumi.set(__self__, "network_interface_id", network_interface_id)
|
|
1388
1394
|
if network_interface_traffic_mode is not None:
|
|
1389
1395
|
pulumi.set(__self__, "network_interface_traffic_mode", network_interface_traffic_mode)
|
|
1396
|
+
if queue_pair_number is not None:
|
|
1397
|
+
pulumi.set(__self__, "queue_pair_number", queue_pair_number)
|
|
1390
1398
|
if security_group_ids is not None:
|
|
1391
1399
|
pulumi.set(__self__, "security_group_ids", security_group_ids)
|
|
1392
1400
|
if vswitch_id is not None:
|
|
1393
1401
|
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
1394
1402
|
|
|
1403
|
+
@property
|
|
1404
|
+
@pulumi.getter(name="networkCardIndex")
|
|
1405
|
+
def network_card_index(self) -> Optional[pulumi.Input[int]]:
|
|
1406
|
+
"""
|
|
1407
|
+
The index of the network card for Secondary ENI.
|
|
1408
|
+
"""
|
|
1409
|
+
return pulumi.get(self, "network_card_index")
|
|
1410
|
+
|
|
1411
|
+
@network_card_index.setter
|
|
1412
|
+
def network_card_index(self, value: Optional[pulumi.Input[int]]):
|
|
1413
|
+
pulumi.set(self, "network_card_index", value)
|
|
1414
|
+
|
|
1395
1415
|
@property
|
|
1396
1416
|
@pulumi.getter(name="networkInterfaceId")
|
|
1397
1417
|
def network_interface_id(self) -> Optional[pulumi.Input[str]]:
|
|
1398
1418
|
"""
|
|
1399
|
-
The ID of the
|
|
1419
|
+
The ID of the Secondary ENI.
|
|
1400
1420
|
"""
|
|
1401
1421
|
return pulumi.get(self, "network_interface_id")
|
|
1402
1422
|
|
|
@@ -1408,7 +1428,7 @@ class InstanceNetworkInterfacesArgs:
|
|
|
1408
1428
|
@pulumi.getter(name="networkInterfaceTrafficMode")
|
|
1409
1429
|
def network_interface_traffic_mode(self) -> Optional[pulumi.Input[str]]:
|
|
1410
1430
|
"""
|
|
1411
|
-
The communication mode of the ENI. Default value: `Standard`. Valid values:
|
|
1431
|
+
The communication mode of the Secondary ENI. Default value: `Standard`. Valid values:
|
|
1412
1432
|
- `Standard`: Uses the TCP communication mode.
|
|
1413
1433
|
- `HighPerformance`: Uses the remote direct memory access (RDMA) communication mode with Elastic RDMA Interface (ERI) enabled.
|
|
1414
1434
|
"""
|
|
@@ -1418,11 +1438,23 @@ class InstanceNetworkInterfacesArgs:
|
|
|
1418
1438
|
def network_interface_traffic_mode(self, value: Optional[pulumi.Input[str]]):
|
|
1419
1439
|
pulumi.set(self, "network_interface_traffic_mode", value)
|
|
1420
1440
|
|
|
1441
|
+
@property
|
|
1442
|
+
@pulumi.getter(name="queuePairNumber")
|
|
1443
|
+
def queue_pair_number(self) -> Optional[pulumi.Input[int]]:
|
|
1444
|
+
"""
|
|
1445
|
+
The number of queues supported by the ERI.
|
|
1446
|
+
"""
|
|
1447
|
+
return pulumi.get(self, "queue_pair_number")
|
|
1448
|
+
|
|
1449
|
+
@queue_pair_number.setter
|
|
1450
|
+
def queue_pair_number(self, value: Optional[pulumi.Input[int]]):
|
|
1451
|
+
pulumi.set(self, "queue_pair_number", value)
|
|
1452
|
+
|
|
1421
1453
|
@property
|
|
1422
1454
|
@pulumi.getter(name="securityGroupIds")
|
|
1423
1455
|
def security_group_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1424
1456
|
"""
|
|
1425
|
-
The ID of security group N to which to assign ENI N.
|
|
1457
|
+
The ID of security group N to which to assign Secondary ENI N.
|
|
1426
1458
|
"""
|
|
1427
1459
|
return pulumi.get(self, "security_group_ids")
|
|
1428
1460
|
|
|
@@ -1434,7 +1466,7 @@ class InstanceNetworkInterfacesArgs:
|
|
|
1434
1466
|
@pulumi.getter(name="vswitchId")
|
|
1435
1467
|
def vswitch_id(self) -> Optional[pulumi.Input[str]]:
|
|
1436
1468
|
"""
|
|
1437
|
-
The ID of the vSwitch to which to connect ENI N.
|
|
1469
|
+
The ID of the vSwitch to which to connect Secondary ENI N.
|
|
1438
1470
|
"""
|
|
1439
1471
|
return pulumi.get(self, "vswitch_id")
|
|
1440
1472
|
|
pulumi_alicloud/ecs/ecs_disk.py
CHANGED
|
@@ -56,6 +56,7 @@ class EcsDiskArgs:
|
|
|
56
56
|
:param pulumi.Input[str] name: Field `name` has been deprecated from provider version 1.122.0. New field `disk_name` instead.
|
|
57
57
|
:param pulumi.Input[str] payment_type: Payment method for disk. Valid values: `PayAsYouGo`, `Subscription`. Default to `PayAsYouGo`. If you want to change the disk payment type, the `instance_id` is required.
|
|
58
58
|
:param pulumi.Input[str] performance_level: Specifies the performance level of an ESSD when you create the ESSD. Valid values:
|
|
59
|
+
* `PL0`: A single ESSD delivers up to 10,000 random read/write IOPS.
|
|
59
60
|
* `PL1`: A single ESSD delivers up to 50,000 random read/write IOPS.
|
|
60
61
|
* `PL2`: A single ESSD delivers up to 100,000 random read/write IOPS.
|
|
61
62
|
* `PL3`: A single ESSD delivers up to 1,000,000 random read/write IOPS.
|
|
@@ -306,6 +307,7 @@ class EcsDiskArgs:
|
|
|
306
307
|
def performance_level(self) -> Optional[pulumi.Input[str]]:
|
|
307
308
|
"""
|
|
308
309
|
Specifies the performance level of an ESSD when you create the ESSD. Valid values:
|
|
310
|
+
* `PL0`: A single ESSD delivers up to 10,000 random read/write IOPS.
|
|
309
311
|
* `PL1`: A single ESSD delivers up to 50,000 random read/write IOPS.
|
|
310
312
|
* `PL2`: A single ESSD delivers up to 100,000 random read/write IOPS.
|
|
311
313
|
* `PL3`: A single ESSD delivers up to 1,000,000 random read/write IOPS.
|
|
@@ -459,6 +461,7 @@ class _EcsDiskState:
|
|
|
459
461
|
:param pulumi.Input[str] name: Field `name` has been deprecated from provider version 1.122.0. New field `disk_name` instead.
|
|
460
462
|
:param pulumi.Input[str] payment_type: Payment method for disk. Valid values: `PayAsYouGo`, `Subscription`. Default to `PayAsYouGo`. If you want to change the disk payment type, the `instance_id` is required.
|
|
461
463
|
:param pulumi.Input[str] performance_level: Specifies the performance level of an ESSD when you create the ESSD. Valid values:
|
|
464
|
+
* `PL0`: A single ESSD delivers up to 10,000 random read/write IOPS.
|
|
462
465
|
* `PL1`: A single ESSD delivers up to 50,000 random read/write IOPS.
|
|
463
466
|
* `PL2`: A single ESSD delivers up to 100,000 random read/write IOPS.
|
|
464
467
|
* `PL3`: A single ESSD delivers up to 1,000,000 random read/write IOPS.
|
|
@@ -712,6 +715,7 @@ class _EcsDiskState:
|
|
|
712
715
|
def performance_level(self) -> Optional[pulumi.Input[str]]:
|
|
713
716
|
"""
|
|
714
717
|
Specifies the performance level of an ESSD when you create the ESSD. Valid values:
|
|
718
|
+
* `PL0`: A single ESSD delivers up to 10,000 random read/write IOPS.
|
|
715
719
|
* `PL1`: A single ESSD delivers up to 50,000 random read/write IOPS.
|
|
716
720
|
* `PL2`: A single ESSD delivers up to 100,000 random read/write IOPS.
|
|
717
721
|
* `PL3`: A single ESSD delivers up to 1,000,000 random read/write IOPS.
|
|
@@ -888,6 +892,7 @@ class EcsDisk(pulumi.CustomResource):
|
|
|
888
892
|
:param pulumi.Input[str] name: Field `name` has been deprecated from provider version 1.122.0. New field `disk_name` instead.
|
|
889
893
|
:param pulumi.Input[str] payment_type: Payment method for disk. Valid values: `PayAsYouGo`, `Subscription`. Default to `PayAsYouGo`. If you want to change the disk payment type, the `instance_id` is required.
|
|
890
894
|
:param pulumi.Input[str] performance_level: Specifies the performance level of an ESSD when you create the ESSD. Valid values:
|
|
895
|
+
* `PL0`: A single ESSD delivers up to 10,000 random read/write IOPS.
|
|
891
896
|
* `PL1`: A single ESSD delivers up to 50,000 random read/write IOPS.
|
|
892
897
|
* `PL2`: A single ESSD delivers up to 100,000 random read/write IOPS.
|
|
893
898
|
* `PL3`: A single ESSD delivers up to 1,000,000 random read/write IOPS.
|
|
@@ -1046,6 +1051,7 @@ class EcsDisk(pulumi.CustomResource):
|
|
|
1046
1051
|
:param pulumi.Input[str] name: Field `name` has been deprecated from provider version 1.122.0. New field `disk_name` instead.
|
|
1047
1052
|
:param pulumi.Input[str] payment_type: Payment method for disk. Valid values: `PayAsYouGo`, `Subscription`. Default to `PayAsYouGo`. If you want to change the disk payment type, the `instance_id` is required.
|
|
1048
1053
|
:param pulumi.Input[str] performance_level: Specifies the performance level of an ESSD when you create the ESSD. Valid values:
|
|
1054
|
+
* `PL0`: A single ESSD delivers up to 10,000 random read/write IOPS.
|
|
1049
1055
|
* `PL1`: A single ESSD delivers up to 50,000 random read/write IOPS.
|
|
1050
1056
|
* `PL2`: A single ESSD delivers up to 100,000 random read/write IOPS.
|
|
1051
1057
|
* `PL3`: A single ESSD delivers up to 1,000,000 random read/write IOPS.
|
|
@@ -1213,6 +1219,7 @@ class EcsDisk(pulumi.CustomResource):
|
|
|
1213
1219
|
def performance_level(self) -> pulumi.Output[str]:
|
|
1214
1220
|
"""
|
|
1215
1221
|
Specifies the performance level of an ESSD when you create the ESSD. Valid values:
|
|
1222
|
+
* `PL0`: A single ESSD delivers up to 10,000 random read/write IOPS.
|
|
1216
1223
|
* `PL1`: A single ESSD delivers up to 50,000 random read/write IOPS.
|
|
1217
1224
|
* `PL2`: A single ESSD delivers up to 100,000 random read/write IOPS.
|
|
1218
1225
|
* `PL3`: A single ESSD delivers up to 1,000,000 random read/write IOPS.
|