pulumi-alicloud 3.64.0a1729196623__py3-none-any.whl → 3.64.0a1730118787__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 +16 -0
- pulumi_alicloud/amqp/instance.py +8 -8
- pulumi_alicloud/bss/get_open_api_pricing_modules.py +4 -4
- pulumi_alicloud/bss/get_open_api_products.py +4 -4
- pulumi_alicloud/cas/get_certificates.py +17 -1
- pulumi_alicloud/cas/get_service_certificates.py +153 -17
- pulumi_alicloud/cas/outputs.py +40 -36
- pulumi_alicloud/cen/instance.py +108 -53
- pulumi_alicloud/cloudfirewall/control_policy.py +524 -23
- pulumi_alicloud/cloudfirewall/instance.py +64 -36
- pulumi_alicloud/cs/_inputs.py +390 -26
- pulumi_alicloud/cs/get_serverless_kubernetes_clusters.py +2 -0
- pulumi_alicloud/cs/kubernetes.py +48 -35
- pulumi_alicloud/cs/managed_kubernetes.py +91 -35
- pulumi_alicloud/cs/node_pool.py +68 -14
- pulumi_alicloud/cs/outputs.py +293 -16
- pulumi_alicloud/cs/serverless_kubernetes.py +157 -63
- pulumi_alicloud/databasefilesystem/_inputs.py +0 -6
- pulumi_alicloud/databasefilesystem/instance.py +31 -0
- pulumi_alicloud/databasefilesystem/outputs.py +0 -4
- pulumi_alicloud/dns/get_alidns_records.py +26 -4
- pulumi_alicloud/dns/outputs.py +2 -2
- pulumi_alicloud/eais/instance.py +55 -57
- pulumi_alicloud/ecp/instance.py +177 -219
- pulumi_alicloud/ecs/disk.py +2 -2
- pulumi_alicloud/ecs/ecs_disk.py +142 -58
- pulumi_alicloud/ecs/ecs_key_pair.py +1 -1
- pulumi_alicloud/ecs/ecs_launch_template.py +169 -0
- pulumi_alicloud/ecs/get_ecs_launch_templates.py +172 -6
- pulumi_alicloud/ecs/instance.py +131 -98
- pulumi_alicloud/ecs/key_pair.py +1 -1
- pulumi_alicloud/ecs/launch_template.py +102 -0
- pulumi_alicloud/ecs/outputs.py +57 -24
- pulumi_alicloud/ens/disk.py +2 -2
- pulumi_alicloud/ens/disk_instance_attachment.py +2 -2
- pulumi_alicloud/ess/_inputs.py +342 -2
- pulumi_alicloud/ess/eci_scaling_configuration.py +202 -0
- pulumi_alicloud/ess/outputs.py +226 -2
- pulumi_alicloud/ess/scaling_configuration.py +376 -0
- pulumi_alicloud/ga/_inputs.py +57 -22
- pulumi_alicloud/ga/outputs.py +39 -15
- pulumi_alicloud/gpdb/__init__.py +1 -0
- pulumi_alicloud/gpdb/database.py +545 -0
- pulumi_alicloud/gpdb/instance.py +1 -1
- pulumi_alicloud/kvstore/instance.py +24 -5
- pulumi_alicloud/mse/cluster.py +149 -51
- pulumi_alicloud/mse/engine_namespace.py +176 -74
- pulumi_alicloud/mse/get_clusters.py +70 -10
- pulumi_alicloud/mse/get_engine_namespaces.py +93 -15
- pulumi_alicloud/mse/outputs.py +36 -8
- 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/polardb/cluster.py +162 -0
- pulumi_alicloud/privatelink/get_vpc_endpoint_services.py +51 -7
- pulumi_alicloud/privatelink/outputs.py +17 -6
- pulumi_alicloud/privatelink/vpc_endpoint_service_user.py +54 -17
- pulumi_alicloud/privatelink/vpc_endpoint_zone.py +7 -21
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/rds/instance.py +50 -3
- pulumi_alicloud/resourcemanager/get_folders.py +35 -28
- pulumi_alicloud/resourcemanager/outputs.py +8 -8
- pulumi_alicloud/servicemesh/_inputs.py +656 -174
- pulumi_alicloud/servicemesh/outputs.py +507 -117
- pulumi_alicloud/servicemesh/service_mesh.py +120 -78
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/_inputs.py +307 -0
- pulumi_alicloud/sls/collection_policy.py +561 -0
- pulumi_alicloud/sls/outputs.py +263 -0
- pulumi_alicloud/threatdetection/instance.py +331 -43
- {pulumi_alicloud-3.64.0a1729196623.dist-info → pulumi_alicloud-3.64.0a1730118787.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.64.0a1729196623.dist-info → pulumi_alicloud-3.64.0a1730118787.dist-info}/RECORD +76 -74
- {pulumi_alicloud-3.64.0a1729196623.dist-info → pulumi_alicloud-3.64.0a1730118787.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.64.0a1729196623.dist-info → pulumi_alicloud-3.64.0a1730118787.dist-info}/top_level.txt +0 -0
pulumi_alicloud/ess/outputs.py
CHANGED
|
@@ -22,12 +22,14 @@ __all__ = [
|
|
|
22
22
|
'EciScalingConfigurationContainerEnvironmentVar',
|
|
23
23
|
'EciScalingConfigurationContainerPort',
|
|
24
24
|
'EciScalingConfigurationContainerVolumeMount',
|
|
25
|
+
'EciScalingConfigurationDnsConfigOption',
|
|
25
26
|
'EciScalingConfigurationHostAlias',
|
|
26
27
|
'EciScalingConfigurationImageRegistryCredential',
|
|
27
28
|
'EciScalingConfigurationInitContainer',
|
|
28
29
|
'EciScalingConfigurationInitContainerEnvironmentVar',
|
|
29
30
|
'EciScalingConfigurationInitContainerPort',
|
|
30
31
|
'EciScalingConfigurationInitContainerVolumeMount',
|
|
32
|
+
'EciScalingConfigurationSecurityContextSysctl',
|
|
31
33
|
'EciScalingConfigurationVolume',
|
|
32
34
|
'EciScalingConfigurationVolumeConfigFileVolumeConfigFileToPath',
|
|
33
35
|
'ScalingConfigurationDataDisk',
|
|
@@ -329,6 +331,8 @@ class EciScalingConfigurationContainer(dict):
|
|
|
329
331
|
security_context_capability_adds: Optional[Sequence[str]] = None,
|
|
330
332
|
security_context_read_only_root_file_system: Optional[bool] = None,
|
|
331
333
|
security_context_run_as_user: Optional[int] = None,
|
|
334
|
+
stdin: Optional[bool] = None,
|
|
335
|
+
tty: Optional[bool] = None,
|
|
332
336
|
volume_mounts: Optional[Sequence['outputs.EciScalingConfigurationContainerVolumeMount']] = None,
|
|
333
337
|
working_dir: Optional[str] = None):
|
|
334
338
|
"""
|
|
@@ -369,6 +373,8 @@ class EciScalingConfigurationContainer(dict):
|
|
|
369
373
|
- NET_RAW: Allow raw sockets.
|
|
370
374
|
:param bool security_context_read_only_root_file_system: Mounts the container's root filesystem as read-only.
|
|
371
375
|
:param int security_context_run_as_user: Specifies user ID under which all processes run.
|
|
376
|
+
:param bool stdin: Specifies whether container N allocates buffer resources to standard input streams during its active runtime. If you do not specify this parameter, an end-of-file (EOF) error occurs.
|
|
377
|
+
:param bool tty: Specifies whether to enable the Interaction feature. Valid values: true, false.
|
|
372
378
|
:param Sequence['EciScalingConfigurationContainerVolumeMountArgs'] volume_mounts: The structure of volumeMounts.
|
|
373
379
|
See `volume_mounts` below for details.
|
|
374
380
|
:param str working_dir: The working directory of the container.
|
|
@@ -441,6 +447,10 @@ class EciScalingConfigurationContainer(dict):
|
|
|
441
447
|
pulumi.set(__self__, "security_context_read_only_root_file_system", security_context_read_only_root_file_system)
|
|
442
448
|
if security_context_run_as_user is not None:
|
|
443
449
|
pulumi.set(__self__, "security_context_run_as_user", security_context_run_as_user)
|
|
450
|
+
if stdin is not None:
|
|
451
|
+
pulumi.set(__self__, "stdin", stdin)
|
|
452
|
+
if tty is not None:
|
|
453
|
+
pulumi.set(__self__, "tty", tty)
|
|
444
454
|
if volume_mounts is not None:
|
|
445
455
|
pulumi.set(__self__, "volume_mounts", volume_mounts)
|
|
446
456
|
if working_dir is not None:
|
|
@@ -721,6 +731,22 @@ class EciScalingConfigurationContainer(dict):
|
|
|
721
731
|
"""
|
|
722
732
|
return pulumi.get(self, "security_context_run_as_user")
|
|
723
733
|
|
|
734
|
+
@property
|
|
735
|
+
@pulumi.getter
|
|
736
|
+
def stdin(self) -> Optional[bool]:
|
|
737
|
+
"""
|
|
738
|
+
Specifies whether container N allocates buffer resources to standard input streams during its active runtime. If you do not specify this parameter, an end-of-file (EOF) error occurs.
|
|
739
|
+
"""
|
|
740
|
+
return pulumi.get(self, "stdin")
|
|
741
|
+
|
|
742
|
+
@property
|
|
743
|
+
@pulumi.getter
|
|
744
|
+
def tty(self) -> Optional[bool]:
|
|
745
|
+
"""
|
|
746
|
+
Specifies whether to enable the Interaction feature. Valid values: true, false.
|
|
747
|
+
"""
|
|
748
|
+
return pulumi.get(self, "tty")
|
|
749
|
+
|
|
724
750
|
@property
|
|
725
751
|
@pulumi.getter(name="volumeMounts")
|
|
726
752
|
def volume_mounts(self) -> Optional[Sequence['outputs.EciScalingConfigurationContainerVolumeMount']]:
|
|
@@ -813,8 +839,12 @@ class EciScalingConfigurationContainerVolumeMount(dict):
|
|
|
813
839
|
suggest = None
|
|
814
840
|
if key == "mountPath":
|
|
815
841
|
suggest = "mount_path"
|
|
842
|
+
elif key == "mountPropagation":
|
|
843
|
+
suggest = "mount_propagation"
|
|
816
844
|
elif key == "readOnly":
|
|
817
845
|
suggest = "read_only"
|
|
846
|
+
elif key == "subPath":
|
|
847
|
+
suggest = "sub_path"
|
|
818
848
|
|
|
819
849
|
if suggest:
|
|
820
850
|
pulumi.log.warn(f"Key '{key}' not found in EciScalingConfigurationContainerVolumeMount. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -829,20 +859,31 @@ class EciScalingConfigurationContainerVolumeMount(dict):
|
|
|
829
859
|
|
|
830
860
|
def __init__(__self__, *,
|
|
831
861
|
mount_path: Optional[str] = None,
|
|
862
|
+
mount_propagation: Optional[str] = None,
|
|
832
863
|
name: Optional[str] = None,
|
|
833
|
-
read_only: Optional[bool] = None
|
|
864
|
+
read_only: Optional[bool] = None,
|
|
865
|
+
sub_path: Optional[str] = None):
|
|
834
866
|
if mount_path is not None:
|
|
835
867
|
pulumi.set(__self__, "mount_path", mount_path)
|
|
868
|
+
if mount_propagation is not None:
|
|
869
|
+
pulumi.set(__self__, "mount_propagation", mount_propagation)
|
|
836
870
|
if name is not None:
|
|
837
871
|
pulumi.set(__self__, "name", name)
|
|
838
872
|
if read_only is not None:
|
|
839
873
|
pulumi.set(__self__, "read_only", read_only)
|
|
874
|
+
if sub_path is not None:
|
|
875
|
+
pulumi.set(__self__, "sub_path", sub_path)
|
|
840
876
|
|
|
841
877
|
@property
|
|
842
878
|
@pulumi.getter(name="mountPath")
|
|
843
879
|
def mount_path(self) -> Optional[str]:
|
|
844
880
|
return pulumi.get(self, "mount_path")
|
|
845
881
|
|
|
882
|
+
@property
|
|
883
|
+
@pulumi.getter(name="mountPropagation")
|
|
884
|
+
def mount_propagation(self) -> Optional[str]:
|
|
885
|
+
return pulumi.get(self, "mount_propagation")
|
|
886
|
+
|
|
846
887
|
@property
|
|
847
888
|
@pulumi.getter
|
|
848
889
|
def name(self) -> Optional[str]:
|
|
@@ -853,6 +894,42 @@ class EciScalingConfigurationContainerVolumeMount(dict):
|
|
|
853
894
|
def read_only(self) -> Optional[bool]:
|
|
854
895
|
return pulumi.get(self, "read_only")
|
|
855
896
|
|
|
897
|
+
@property
|
|
898
|
+
@pulumi.getter(name="subPath")
|
|
899
|
+
def sub_path(self) -> Optional[str]:
|
|
900
|
+
return pulumi.get(self, "sub_path")
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
@pulumi.output_type
|
|
904
|
+
class EciScalingConfigurationDnsConfigOption(dict):
|
|
905
|
+
def __init__(__self__, *,
|
|
906
|
+
name: Optional[str] = None,
|
|
907
|
+
value: Optional[str] = None):
|
|
908
|
+
"""
|
|
909
|
+
:param str name: The option name.
|
|
910
|
+
:param str value: The option value.
|
|
911
|
+
"""
|
|
912
|
+
if name is not None:
|
|
913
|
+
pulumi.set(__self__, "name", name)
|
|
914
|
+
if value is not None:
|
|
915
|
+
pulumi.set(__self__, "value", value)
|
|
916
|
+
|
|
917
|
+
@property
|
|
918
|
+
@pulumi.getter
|
|
919
|
+
def name(self) -> Optional[str]:
|
|
920
|
+
"""
|
|
921
|
+
The option name.
|
|
922
|
+
"""
|
|
923
|
+
return pulumi.get(self, "name")
|
|
924
|
+
|
|
925
|
+
@property
|
|
926
|
+
@pulumi.getter
|
|
927
|
+
def value(self) -> Optional[str]:
|
|
928
|
+
"""
|
|
929
|
+
The option value.
|
|
930
|
+
"""
|
|
931
|
+
return pulumi.get(self, "value")
|
|
932
|
+
|
|
856
933
|
|
|
857
934
|
@pulumi.output_type
|
|
858
935
|
class EciScalingConfigurationHostAlias(dict):
|
|
@@ -1230,8 +1307,12 @@ class EciScalingConfigurationInitContainerVolumeMount(dict):
|
|
|
1230
1307
|
suggest = None
|
|
1231
1308
|
if key == "mountPath":
|
|
1232
1309
|
suggest = "mount_path"
|
|
1310
|
+
elif key == "mountPropagation":
|
|
1311
|
+
suggest = "mount_propagation"
|
|
1233
1312
|
elif key == "readOnly":
|
|
1234
1313
|
suggest = "read_only"
|
|
1314
|
+
elif key == "subPath":
|
|
1315
|
+
suggest = "sub_path"
|
|
1235
1316
|
|
|
1236
1317
|
if suggest:
|
|
1237
1318
|
pulumi.log.warn(f"Key '{key}' not found in EciScalingConfigurationInitContainerVolumeMount. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -1246,20 +1327,31 @@ class EciScalingConfigurationInitContainerVolumeMount(dict):
|
|
|
1246
1327
|
|
|
1247
1328
|
def __init__(__self__, *,
|
|
1248
1329
|
mount_path: Optional[str] = None,
|
|
1330
|
+
mount_propagation: Optional[str] = None,
|
|
1249
1331
|
name: Optional[str] = None,
|
|
1250
|
-
read_only: Optional[bool] = None
|
|
1332
|
+
read_only: Optional[bool] = None,
|
|
1333
|
+
sub_path: Optional[str] = None):
|
|
1251
1334
|
if mount_path is not None:
|
|
1252
1335
|
pulumi.set(__self__, "mount_path", mount_path)
|
|
1336
|
+
if mount_propagation is not None:
|
|
1337
|
+
pulumi.set(__self__, "mount_propagation", mount_propagation)
|
|
1253
1338
|
if name is not None:
|
|
1254
1339
|
pulumi.set(__self__, "name", name)
|
|
1255
1340
|
if read_only is not None:
|
|
1256
1341
|
pulumi.set(__self__, "read_only", read_only)
|
|
1342
|
+
if sub_path is not None:
|
|
1343
|
+
pulumi.set(__self__, "sub_path", sub_path)
|
|
1257
1344
|
|
|
1258
1345
|
@property
|
|
1259
1346
|
@pulumi.getter(name="mountPath")
|
|
1260
1347
|
def mount_path(self) -> Optional[str]:
|
|
1261
1348
|
return pulumi.get(self, "mount_path")
|
|
1262
1349
|
|
|
1350
|
+
@property
|
|
1351
|
+
@pulumi.getter(name="mountPropagation")
|
|
1352
|
+
def mount_propagation(self) -> Optional[str]:
|
|
1353
|
+
return pulumi.get(self, "mount_propagation")
|
|
1354
|
+
|
|
1263
1355
|
@property
|
|
1264
1356
|
@pulumi.getter
|
|
1265
1357
|
def name(self) -> Optional[str]:
|
|
@@ -1270,6 +1362,42 @@ class EciScalingConfigurationInitContainerVolumeMount(dict):
|
|
|
1270
1362
|
def read_only(self) -> Optional[bool]:
|
|
1271
1363
|
return pulumi.get(self, "read_only")
|
|
1272
1364
|
|
|
1365
|
+
@property
|
|
1366
|
+
@pulumi.getter(name="subPath")
|
|
1367
|
+
def sub_path(self) -> Optional[str]:
|
|
1368
|
+
return pulumi.get(self, "sub_path")
|
|
1369
|
+
|
|
1370
|
+
|
|
1371
|
+
@pulumi.output_type
|
|
1372
|
+
class EciScalingConfigurationSecurityContextSysctl(dict):
|
|
1373
|
+
def __init__(__self__, *,
|
|
1374
|
+
name: Optional[str] = None,
|
|
1375
|
+
value: Optional[str] = None):
|
|
1376
|
+
"""
|
|
1377
|
+
:param str name: The system name of the security context in which the elastic container instance is run.
|
|
1378
|
+
:param str value: The system value of the security context in which the elastic container instance is run.
|
|
1379
|
+
"""
|
|
1380
|
+
if name is not None:
|
|
1381
|
+
pulumi.set(__self__, "name", name)
|
|
1382
|
+
if value is not None:
|
|
1383
|
+
pulumi.set(__self__, "value", value)
|
|
1384
|
+
|
|
1385
|
+
@property
|
|
1386
|
+
@pulumi.getter
|
|
1387
|
+
def name(self) -> Optional[str]:
|
|
1388
|
+
"""
|
|
1389
|
+
The system name of the security context in which the elastic container instance is run.
|
|
1390
|
+
"""
|
|
1391
|
+
return pulumi.get(self, "name")
|
|
1392
|
+
|
|
1393
|
+
@property
|
|
1394
|
+
@pulumi.getter
|
|
1395
|
+
def value(self) -> Optional[str]:
|
|
1396
|
+
"""
|
|
1397
|
+
The system value of the security context in which the elastic container instance is run.
|
|
1398
|
+
"""
|
|
1399
|
+
return pulumi.get(self, "value")
|
|
1400
|
+
|
|
1273
1401
|
|
|
1274
1402
|
@pulumi.output_type
|
|
1275
1403
|
class EciScalingConfigurationVolume(dict):
|
|
@@ -1278,18 +1406,28 @@ class EciScalingConfigurationVolume(dict):
|
|
|
1278
1406
|
suggest = None
|
|
1279
1407
|
if key == "configFileVolumeConfigFileToPaths":
|
|
1280
1408
|
suggest = "config_file_volume_config_file_to_paths"
|
|
1409
|
+
elif key == "configFileVolumeDefaultMode":
|
|
1410
|
+
suggest = "config_file_volume_default_mode"
|
|
1281
1411
|
elif key == "diskVolumeDiskId":
|
|
1282
1412
|
suggest = "disk_volume_disk_id"
|
|
1283
1413
|
elif key == "diskVolumeDiskSize":
|
|
1284
1414
|
suggest = "disk_volume_disk_size"
|
|
1285
1415
|
elif key == "diskVolumeFsType":
|
|
1286
1416
|
suggest = "disk_volume_fs_type"
|
|
1417
|
+
elif key == "emptyDirVolumeMedium":
|
|
1418
|
+
suggest = "empty_dir_volume_medium"
|
|
1419
|
+
elif key == "emptyDirVolumeSizeLimit":
|
|
1420
|
+
suggest = "empty_dir_volume_size_limit"
|
|
1287
1421
|
elif key == "flexVolumeDriver":
|
|
1288
1422
|
suggest = "flex_volume_driver"
|
|
1289
1423
|
elif key == "flexVolumeFsType":
|
|
1290
1424
|
suggest = "flex_volume_fs_type"
|
|
1291
1425
|
elif key == "flexVolumeOptions":
|
|
1292
1426
|
suggest = "flex_volume_options"
|
|
1427
|
+
elif key == "hostPathVolumePath":
|
|
1428
|
+
suggest = "host_path_volume_path"
|
|
1429
|
+
elif key == "hostPathVolumeType":
|
|
1430
|
+
suggest = "host_path_volume_type"
|
|
1293
1431
|
elif key == "nfsVolumePath":
|
|
1294
1432
|
suggest = "nfs_volume_path"
|
|
1295
1433
|
elif key == "nfsVolumeReadOnly":
|
|
@@ -1310,12 +1448,17 @@ class EciScalingConfigurationVolume(dict):
|
|
|
1310
1448
|
|
|
1311
1449
|
def __init__(__self__, *,
|
|
1312
1450
|
config_file_volume_config_file_to_paths: Optional[Sequence['outputs.EciScalingConfigurationVolumeConfigFileVolumeConfigFileToPath']] = None,
|
|
1451
|
+
config_file_volume_default_mode: Optional[int] = None,
|
|
1313
1452
|
disk_volume_disk_id: Optional[str] = None,
|
|
1314
1453
|
disk_volume_disk_size: Optional[int] = None,
|
|
1315
1454
|
disk_volume_fs_type: Optional[str] = None,
|
|
1455
|
+
empty_dir_volume_medium: Optional[str] = None,
|
|
1456
|
+
empty_dir_volume_size_limit: Optional[str] = None,
|
|
1316
1457
|
flex_volume_driver: Optional[str] = None,
|
|
1317
1458
|
flex_volume_fs_type: Optional[str] = None,
|
|
1318
1459
|
flex_volume_options: Optional[str] = None,
|
|
1460
|
+
host_path_volume_path: Optional[str] = None,
|
|
1461
|
+
host_path_volume_type: Optional[str] = None,
|
|
1319
1462
|
name: Optional[str] = None,
|
|
1320
1463
|
nfs_volume_path: Optional[str] = None,
|
|
1321
1464
|
nfs_volume_read_only: Optional[bool] = None,
|
|
@@ -1324,14 +1467,19 @@ class EciScalingConfigurationVolume(dict):
|
|
|
1324
1467
|
"""
|
|
1325
1468
|
:param Sequence['EciScalingConfigurationVolumeConfigFileVolumeConfigFileToPathArgs'] config_file_volume_config_file_to_paths: ConfigFileVolumeConfigFileToPaths.
|
|
1326
1469
|
See `config_file_volume_config_file_to_paths` below for details.
|
|
1470
|
+
:param int config_file_volume_default_mode: The default permissions on the ConfigFileVolume.
|
|
1327
1471
|
:param str disk_volume_disk_id: The ID of DiskVolume.
|
|
1328
1472
|
:param int disk_volume_disk_size: The disk size of DiskVolume.
|
|
1329
1473
|
:param str disk_volume_fs_type: The system type of DiskVolume.
|
|
1474
|
+
:param str empty_dir_volume_medium: The storage medium of the EmptyDirVolume. If you leave this parameter empty, the file system of the node is used as the storage medium. If you set this parameter to memory, the memory is used as the storage medium.
|
|
1475
|
+
:param str empty_dir_volume_size_limit: The storage size of the EmptyDirVolume. Unit: GiB or MiB.
|
|
1330
1476
|
:param str flex_volume_driver: The name of the FlexVolume driver.
|
|
1331
1477
|
:param str flex_volume_fs_type: The type of the mounted file system. The default value is determined by the script
|
|
1332
1478
|
of FlexVolume.
|
|
1333
1479
|
:param str flex_volume_options: The list of FlexVolume objects. Each object is a key-value pair contained in a JSON
|
|
1334
1480
|
string.
|
|
1481
|
+
:param str host_path_volume_path: The absolute path on the host.
|
|
1482
|
+
:param str host_path_volume_type: The type of the host path. Examples: File, Directory, and Socket.
|
|
1335
1483
|
:param str name: The name of the volume.
|
|
1336
1484
|
:param str nfs_volume_path: The path to the NFS volume.
|
|
1337
1485
|
:param bool nfs_volume_read_only: The nfs volume read only. Default to `false`.
|
|
@@ -1342,18 +1490,28 @@ class EciScalingConfigurationVolume(dict):
|
|
|
1342
1490
|
"""
|
|
1343
1491
|
if config_file_volume_config_file_to_paths is not None:
|
|
1344
1492
|
pulumi.set(__self__, "config_file_volume_config_file_to_paths", config_file_volume_config_file_to_paths)
|
|
1493
|
+
if config_file_volume_default_mode is not None:
|
|
1494
|
+
pulumi.set(__self__, "config_file_volume_default_mode", config_file_volume_default_mode)
|
|
1345
1495
|
if disk_volume_disk_id is not None:
|
|
1346
1496
|
pulumi.set(__self__, "disk_volume_disk_id", disk_volume_disk_id)
|
|
1347
1497
|
if disk_volume_disk_size is not None:
|
|
1348
1498
|
pulumi.set(__self__, "disk_volume_disk_size", disk_volume_disk_size)
|
|
1349
1499
|
if disk_volume_fs_type is not None:
|
|
1350
1500
|
pulumi.set(__self__, "disk_volume_fs_type", disk_volume_fs_type)
|
|
1501
|
+
if empty_dir_volume_medium is not None:
|
|
1502
|
+
pulumi.set(__self__, "empty_dir_volume_medium", empty_dir_volume_medium)
|
|
1503
|
+
if empty_dir_volume_size_limit is not None:
|
|
1504
|
+
pulumi.set(__self__, "empty_dir_volume_size_limit", empty_dir_volume_size_limit)
|
|
1351
1505
|
if flex_volume_driver is not None:
|
|
1352
1506
|
pulumi.set(__self__, "flex_volume_driver", flex_volume_driver)
|
|
1353
1507
|
if flex_volume_fs_type is not None:
|
|
1354
1508
|
pulumi.set(__self__, "flex_volume_fs_type", flex_volume_fs_type)
|
|
1355
1509
|
if flex_volume_options is not None:
|
|
1356
1510
|
pulumi.set(__self__, "flex_volume_options", flex_volume_options)
|
|
1511
|
+
if host_path_volume_path is not None:
|
|
1512
|
+
pulumi.set(__self__, "host_path_volume_path", host_path_volume_path)
|
|
1513
|
+
if host_path_volume_type is not None:
|
|
1514
|
+
pulumi.set(__self__, "host_path_volume_type", host_path_volume_type)
|
|
1357
1515
|
if name is not None:
|
|
1358
1516
|
pulumi.set(__self__, "name", name)
|
|
1359
1517
|
if nfs_volume_path is not None:
|
|
@@ -1374,6 +1532,14 @@ class EciScalingConfigurationVolume(dict):
|
|
|
1374
1532
|
"""
|
|
1375
1533
|
return pulumi.get(self, "config_file_volume_config_file_to_paths")
|
|
1376
1534
|
|
|
1535
|
+
@property
|
|
1536
|
+
@pulumi.getter(name="configFileVolumeDefaultMode")
|
|
1537
|
+
def config_file_volume_default_mode(self) -> Optional[int]:
|
|
1538
|
+
"""
|
|
1539
|
+
The default permissions on the ConfigFileVolume.
|
|
1540
|
+
"""
|
|
1541
|
+
return pulumi.get(self, "config_file_volume_default_mode")
|
|
1542
|
+
|
|
1377
1543
|
@property
|
|
1378
1544
|
@pulumi.getter(name="diskVolumeDiskId")
|
|
1379
1545
|
def disk_volume_disk_id(self) -> Optional[str]:
|
|
@@ -1398,6 +1564,22 @@ class EciScalingConfigurationVolume(dict):
|
|
|
1398
1564
|
"""
|
|
1399
1565
|
return pulumi.get(self, "disk_volume_fs_type")
|
|
1400
1566
|
|
|
1567
|
+
@property
|
|
1568
|
+
@pulumi.getter(name="emptyDirVolumeMedium")
|
|
1569
|
+
def empty_dir_volume_medium(self) -> Optional[str]:
|
|
1570
|
+
"""
|
|
1571
|
+
The storage medium of the EmptyDirVolume. If you leave this parameter empty, the file system of the node is used as the storage medium. If you set this parameter to memory, the memory is used as the storage medium.
|
|
1572
|
+
"""
|
|
1573
|
+
return pulumi.get(self, "empty_dir_volume_medium")
|
|
1574
|
+
|
|
1575
|
+
@property
|
|
1576
|
+
@pulumi.getter(name="emptyDirVolumeSizeLimit")
|
|
1577
|
+
def empty_dir_volume_size_limit(self) -> Optional[str]:
|
|
1578
|
+
"""
|
|
1579
|
+
The storage size of the EmptyDirVolume. Unit: GiB or MiB.
|
|
1580
|
+
"""
|
|
1581
|
+
return pulumi.get(self, "empty_dir_volume_size_limit")
|
|
1582
|
+
|
|
1401
1583
|
@property
|
|
1402
1584
|
@pulumi.getter(name="flexVolumeDriver")
|
|
1403
1585
|
def flex_volume_driver(self) -> Optional[str]:
|
|
@@ -1424,6 +1606,22 @@ class EciScalingConfigurationVolume(dict):
|
|
|
1424
1606
|
"""
|
|
1425
1607
|
return pulumi.get(self, "flex_volume_options")
|
|
1426
1608
|
|
|
1609
|
+
@property
|
|
1610
|
+
@pulumi.getter(name="hostPathVolumePath")
|
|
1611
|
+
def host_path_volume_path(self) -> Optional[str]:
|
|
1612
|
+
"""
|
|
1613
|
+
The absolute path on the host.
|
|
1614
|
+
"""
|
|
1615
|
+
return pulumi.get(self, "host_path_volume_path")
|
|
1616
|
+
|
|
1617
|
+
@property
|
|
1618
|
+
@pulumi.getter(name="hostPathVolumeType")
|
|
1619
|
+
def host_path_volume_type(self) -> Optional[str]:
|
|
1620
|
+
"""
|
|
1621
|
+
The type of the host path. Examples: File, Directory, and Socket.
|
|
1622
|
+
"""
|
|
1623
|
+
return pulumi.get(self, "host_path_volume_type")
|
|
1624
|
+
|
|
1427
1625
|
@property
|
|
1428
1626
|
@pulumi.getter
|
|
1429
1627
|
def name(self) -> Optional[str]:
|
|
@@ -1471,13 +1669,17 @@ class EciScalingConfigurationVolume(dict):
|
|
|
1471
1669
|
class EciScalingConfigurationVolumeConfigFileVolumeConfigFileToPath(dict):
|
|
1472
1670
|
def __init__(__self__, *,
|
|
1473
1671
|
content: Optional[str] = None,
|
|
1672
|
+
mode: Optional[int] = None,
|
|
1474
1673
|
path: Optional[str] = None):
|
|
1475
1674
|
"""
|
|
1476
1675
|
:param str content: The content of the configuration file. Maximum size: 32 KB.
|
|
1676
|
+
:param int mode: The permissions on the ConfigFileVolume directory.
|
|
1477
1677
|
:param str path: The relative file path.
|
|
1478
1678
|
"""
|
|
1479
1679
|
if content is not None:
|
|
1480
1680
|
pulumi.set(__self__, "content", content)
|
|
1681
|
+
if mode is not None:
|
|
1682
|
+
pulumi.set(__self__, "mode", mode)
|
|
1481
1683
|
if path is not None:
|
|
1482
1684
|
pulumi.set(__self__, "path", path)
|
|
1483
1685
|
|
|
@@ -1489,6 +1691,14 @@ class EciScalingConfigurationVolumeConfigFileVolumeConfigFileToPath(dict):
|
|
|
1489
1691
|
"""
|
|
1490
1692
|
return pulumi.get(self, "content")
|
|
1491
1693
|
|
|
1694
|
+
@property
|
|
1695
|
+
@pulumi.getter
|
|
1696
|
+
def mode(self) -> Optional[int]:
|
|
1697
|
+
"""
|
|
1698
|
+
The permissions on the ConfigFileVolume directory.
|
|
1699
|
+
"""
|
|
1700
|
+
return pulumi.get(self, "mode")
|
|
1701
|
+
|
|
1492
1702
|
@property
|
|
1493
1703
|
@pulumi.getter
|
|
1494
1704
|
def path(self) -> Optional[str]:
|
|
@@ -1511,6 +1721,8 @@ class ScalingConfigurationDataDisk(dict):
|
|
|
1511
1721
|
suggest = "kms_key_id"
|
|
1512
1722
|
elif key == "performanceLevel":
|
|
1513
1723
|
suggest = "performance_level"
|
|
1724
|
+
elif key == "provisionedIops":
|
|
1725
|
+
suggest = "provisioned_iops"
|
|
1514
1726
|
elif key == "snapshotId":
|
|
1515
1727
|
suggest = "snapshot_id"
|
|
1516
1728
|
|
|
@@ -1535,6 +1747,7 @@ class ScalingConfigurationDataDisk(dict):
|
|
|
1535
1747
|
kms_key_id: Optional[str] = None,
|
|
1536
1748
|
name: Optional[str] = None,
|
|
1537
1749
|
performance_level: Optional[str] = None,
|
|
1750
|
+
provisioned_iops: Optional[int] = None,
|
|
1538
1751
|
size: Optional[int] = None,
|
|
1539
1752
|
snapshot_id: Optional[str] = None):
|
|
1540
1753
|
"""
|
|
@@ -1547,6 +1760,7 @@ class ScalingConfigurationDataDisk(dict):
|
|
|
1547
1760
|
:param str kms_key_id: The CMK ID for data disk N. Valid values of N: 1 to 16.
|
|
1548
1761
|
:param str name: The name of data disk N. Valid values of N: 1 to 16. It must be 2 to 128 characters in length. It must start with a letter and cannot start with http:// or https://. It can contain letters, digits, colons (:), underscores (_), and hyphens (-). Default value: null.
|
|
1549
1762
|
:param str performance_level: The performance level of the ESSD used as data disk.
|
|
1763
|
+
:param int provisioned_iops: IOPS measures the number of read and write operations that an Elastic Block Storage (EBS) device can process per second.
|
|
1550
1764
|
:param int size: Size of data disk, in GB. The value ranges [5,2000] for a cloud disk, [5,1024] for an ephemeral disk, [5,800] for an ephemeral_ssd disk, [20,32768] for cloud_efficiency, cloud_ssd, cloud_essd disk.
|
|
1551
1765
|
:param str snapshot_id: Snapshot used for creating the data disk. If this parameter is specified, the size parameter is neglected, and the size of the created disk is the size of the snapshot.
|
|
1552
1766
|
"""
|
|
@@ -1568,6 +1782,8 @@ class ScalingConfigurationDataDisk(dict):
|
|
|
1568
1782
|
pulumi.set(__self__, "name", name)
|
|
1569
1783
|
if performance_level is not None:
|
|
1570
1784
|
pulumi.set(__self__, "performance_level", performance_level)
|
|
1785
|
+
if provisioned_iops is not None:
|
|
1786
|
+
pulumi.set(__self__, "provisioned_iops", provisioned_iops)
|
|
1571
1787
|
if size is not None:
|
|
1572
1788
|
pulumi.set(__self__, "size", size)
|
|
1573
1789
|
if snapshot_id is not None:
|
|
@@ -1646,6 +1862,14 @@ class ScalingConfigurationDataDisk(dict):
|
|
|
1646
1862
|
"""
|
|
1647
1863
|
return pulumi.get(self, "performance_level")
|
|
1648
1864
|
|
|
1865
|
+
@property
|
|
1866
|
+
@pulumi.getter(name="provisionedIops")
|
|
1867
|
+
def provisioned_iops(self) -> Optional[int]:
|
|
1868
|
+
"""
|
|
1869
|
+
IOPS measures the number of read and write operations that an Elastic Block Storage (EBS) device can process per second.
|
|
1870
|
+
"""
|
|
1871
|
+
return pulumi.get(self, "provisioned_iops")
|
|
1872
|
+
|
|
1649
1873
|
@property
|
|
1650
1874
|
@pulumi.getter
|
|
1651
1875
|
def size(self) -> Optional[int]:
|