pulumi-gcp 7.15.0__py3-none-any.whl → 7.15.0a1710918905__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_gcp/__init__.py +0 -94
- pulumi_gcp/accesscontextmanager/_inputs.py +58 -74
- pulumi_gcp/accesscontextmanager/outputs.py +58 -74
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/cloudrunv2/_inputs.py +2 -26
- pulumi_gcp/cloudrunv2/get_service.py +1 -11
- pulumi_gcp/cloudrunv2/outputs.py +2 -58
- pulumi_gcp/cloudrunv2/service.py +0 -54
- pulumi_gcp/compute/_inputs.py +4 -4
- pulumi_gcp/compute/outputs.py +4 -4
- pulumi_gcp/compute/region_network_endpoint_group.py +0 -30
- pulumi_gcp/config/__init__.pyi +0 -4
- pulumi_gcp/config/vars.py +0 -8
- pulumi_gcp/firebase/__init__.py +0 -1
- pulumi_gcp/firestore/_inputs.py +0 -69
- pulumi_gcp/firestore/database.py +0 -206
- pulumi_gcp/firestore/outputs.py +0 -80
- pulumi_gcp/gkeonprem/_inputs.py +3 -1
- pulumi_gcp/gkeonprem/outputs.py +3 -1
- pulumi_gcp/gkeonprem/v_mware_cluster.py +0 -2
- pulumi_gcp/iap/__init__.py +0 -5
- pulumi_gcp/iap/_inputs.py +0 -100
- pulumi_gcp/iap/outputs.py +0 -76
- pulumi_gcp/kms/__init__.py +0 -1
- pulumi_gcp/kms/_inputs.py +0 -246
- pulumi_gcp/kms/outputs.py +0 -242
- pulumi_gcp/networksecurity/__init__.py +0 -1
- pulumi_gcp/notebooks/instance.py +0 -8
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/provider.py +0 -40
- pulumi_gcp/pubsub/subscription.py +4 -4
- pulumi_gcp/securityposture/posture.py +2 -2
- pulumi_gcp/securityposture/posture_deployment.py +2 -2
- pulumi_gcp/storage/_inputs.py +15 -32
- pulumi_gcp/storage/outputs.py +14 -29
- pulumi_gcp/workstations/_inputs.py +4 -134
- pulumi_gcp/workstations/outputs.py +4 -152
- pulumi_gcp/workstations/workstation_config.py +0 -54
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1710918905.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1710918905.dist-info}/RECORD +42 -62
- pulumi_gcp/apphub/__init__.py +0 -15
- pulumi_gcp/apphub/_inputs.py +0 -1016
- pulumi_gcp/apphub/application.py +0 -775
- pulumi_gcp/apphub/get_discovered_service.py +0 -180
- pulumi_gcp/apphub/get_discovered_workload.py +0 -180
- pulumi_gcp/apphub/outputs.py +0 -1206
- pulumi_gcp/apphub/service.py +0 -1121
- pulumi_gcp/apphub/service_project_attachment.py +0 -516
- pulumi_gcp/apphub/workload.py +0 -1197
- pulumi_gcp/cloudquota/__init__.py +0 -9
- pulumi_gcp/cloudquota/get_s_quota_info.py +0 -322
- pulumi_gcp/cloudquota/outputs.py +0 -105
- pulumi_gcp/firebase/app_check_device_check_config.py +0 -572
- pulumi_gcp/iap/get_tunnel_dest_group_iam_policy.py +0 -172
- pulumi_gcp/iap/tunnel_dest_group.py +0 -524
- pulumi_gcp/iap/tunnel_dest_group_iam_binding.py +0 -858
- pulumi_gcp/iap/tunnel_dest_group_iam_member.py +0 -858
- pulumi_gcp/iap/tunnel_dest_group_iam_policy.py +0 -760
- pulumi_gcp/kms/ekm_connection.py +0 -610
- pulumi_gcp/networksecurity/firewall_endpoint_association.py +0 -753
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1710918905.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1710918905.dist-info}/top_level.txt +0 -0
@@ -17,8 +17,6 @@ __all__ = [
|
|
17
17
|
'WorkstationConfigCondition',
|
18
18
|
'WorkstationConfigContainer',
|
19
19
|
'WorkstationConfigEncryptionKey',
|
20
|
-
'WorkstationConfigEphemeralDirectory',
|
21
|
-
'WorkstationConfigEphemeralDirectoryGcePd',
|
22
20
|
'WorkstationConfigHost',
|
23
21
|
'WorkstationConfigHostGceInstance',
|
24
22
|
'WorkstationConfigHostGceInstanceAccelerator',
|
@@ -388,146 +386,6 @@ class WorkstationConfigEncryptionKey(dict):
|
|
388
386
|
return pulumi.get(self, "kms_key_service_account")
|
389
387
|
|
390
388
|
|
391
|
-
@pulumi.output_type
|
392
|
-
class WorkstationConfigEphemeralDirectory(dict):
|
393
|
-
@staticmethod
|
394
|
-
def __key_warning(key: str):
|
395
|
-
suggest = None
|
396
|
-
if key == "gcePd":
|
397
|
-
suggest = "gce_pd"
|
398
|
-
elif key == "mountPath":
|
399
|
-
suggest = "mount_path"
|
400
|
-
|
401
|
-
if suggest:
|
402
|
-
pulumi.log.warn(f"Key '{key}' not found in WorkstationConfigEphemeralDirectory. Access the value via the '{suggest}' property getter instead.")
|
403
|
-
|
404
|
-
def __getitem__(self, key: str) -> Any:
|
405
|
-
WorkstationConfigEphemeralDirectory.__key_warning(key)
|
406
|
-
return super().__getitem__(key)
|
407
|
-
|
408
|
-
def get(self, key: str, default = None) -> Any:
|
409
|
-
WorkstationConfigEphemeralDirectory.__key_warning(key)
|
410
|
-
return super().get(key, default)
|
411
|
-
|
412
|
-
def __init__(__self__, *,
|
413
|
-
gce_pd: Optional['outputs.WorkstationConfigEphemeralDirectoryGcePd'] = None,
|
414
|
-
mount_path: Optional[str] = None):
|
415
|
-
"""
|
416
|
-
:param 'WorkstationConfigEphemeralDirectoryGcePdArgs' gce_pd: An EphemeralDirectory backed by a Compute Engine persistent disk.
|
417
|
-
Structure is documented below.
|
418
|
-
:param str mount_path: Location of this directory in the running workstation.
|
419
|
-
"""
|
420
|
-
if gce_pd is not None:
|
421
|
-
pulumi.set(__self__, "gce_pd", gce_pd)
|
422
|
-
if mount_path is not None:
|
423
|
-
pulumi.set(__self__, "mount_path", mount_path)
|
424
|
-
|
425
|
-
@property
|
426
|
-
@pulumi.getter(name="gcePd")
|
427
|
-
def gce_pd(self) -> Optional['outputs.WorkstationConfigEphemeralDirectoryGcePd']:
|
428
|
-
"""
|
429
|
-
An EphemeralDirectory backed by a Compute Engine persistent disk.
|
430
|
-
Structure is documented below.
|
431
|
-
"""
|
432
|
-
return pulumi.get(self, "gce_pd")
|
433
|
-
|
434
|
-
@property
|
435
|
-
@pulumi.getter(name="mountPath")
|
436
|
-
def mount_path(self) -> Optional[str]:
|
437
|
-
"""
|
438
|
-
Location of this directory in the running workstation.
|
439
|
-
"""
|
440
|
-
return pulumi.get(self, "mount_path")
|
441
|
-
|
442
|
-
|
443
|
-
@pulumi.output_type
|
444
|
-
class WorkstationConfigEphemeralDirectoryGcePd(dict):
|
445
|
-
@staticmethod
|
446
|
-
def __key_warning(key: str):
|
447
|
-
suggest = None
|
448
|
-
if key == "diskType":
|
449
|
-
suggest = "disk_type"
|
450
|
-
elif key == "readOnly":
|
451
|
-
suggest = "read_only"
|
452
|
-
elif key == "sourceImage":
|
453
|
-
suggest = "source_image"
|
454
|
-
elif key == "sourceSnapshot":
|
455
|
-
suggest = "source_snapshot"
|
456
|
-
|
457
|
-
if suggest:
|
458
|
-
pulumi.log.warn(f"Key '{key}' not found in WorkstationConfigEphemeralDirectoryGcePd. Access the value via the '{suggest}' property getter instead.")
|
459
|
-
|
460
|
-
def __getitem__(self, key: str) -> Any:
|
461
|
-
WorkstationConfigEphemeralDirectoryGcePd.__key_warning(key)
|
462
|
-
return super().__getitem__(key)
|
463
|
-
|
464
|
-
def get(self, key: str, default = None) -> Any:
|
465
|
-
WorkstationConfigEphemeralDirectoryGcePd.__key_warning(key)
|
466
|
-
return super().get(key, default)
|
467
|
-
|
468
|
-
def __init__(__self__, *,
|
469
|
-
disk_type: Optional[str] = None,
|
470
|
-
read_only: Optional[bool] = None,
|
471
|
-
source_image: Optional[str] = None,
|
472
|
-
source_snapshot: Optional[str] = None):
|
473
|
-
"""
|
474
|
-
:param str disk_type: Type of the disk to use. Defaults to `"pd-standard"`.
|
475
|
-
:param bool read_only: Whether the disk is read only. If true, the disk may be shared by multiple VMs and `sourceSnapshot` must be set.
|
476
|
-
:param str source_image: Name of the disk image to use as the source for the disk.
|
477
|
-
Must be empty `sourceSnapshot` is set.
|
478
|
-
Updating `sourceImage` will update content in the ephemeral directory after the workstation is restarted.
|
479
|
-
:param str source_snapshot: Name of the snapshot to use as the source for the disk.
|
480
|
-
Must be empty if `sourceImage` is set.
|
481
|
-
Must be empty if `read_only` is false.
|
482
|
-
Updating `source_snapshot` will update content in the ephemeral directory after the workstation is restarted.
|
483
|
-
"""
|
484
|
-
if disk_type is not None:
|
485
|
-
pulumi.set(__self__, "disk_type", disk_type)
|
486
|
-
if read_only is not None:
|
487
|
-
pulumi.set(__self__, "read_only", read_only)
|
488
|
-
if source_image is not None:
|
489
|
-
pulumi.set(__self__, "source_image", source_image)
|
490
|
-
if source_snapshot is not None:
|
491
|
-
pulumi.set(__self__, "source_snapshot", source_snapshot)
|
492
|
-
|
493
|
-
@property
|
494
|
-
@pulumi.getter(name="diskType")
|
495
|
-
def disk_type(self) -> Optional[str]:
|
496
|
-
"""
|
497
|
-
Type of the disk to use. Defaults to `"pd-standard"`.
|
498
|
-
"""
|
499
|
-
return pulumi.get(self, "disk_type")
|
500
|
-
|
501
|
-
@property
|
502
|
-
@pulumi.getter(name="readOnly")
|
503
|
-
def read_only(self) -> Optional[bool]:
|
504
|
-
"""
|
505
|
-
Whether the disk is read only. If true, the disk may be shared by multiple VMs and `sourceSnapshot` must be set.
|
506
|
-
"""
|
507
|
-
return pulumi.get(self, "read_only")
|
508
|
-
|
509
|
-
@property
|
510
|
-
@pulumi.getter(name="sourceImage")
|
511
|
-
def source_image(self) -> Optional[str]:
|
512
|
-
"""
|
513
|
-
Name of the disk image to use as the source for the disk.
|
514
|
-
Must be empty `sourceSnapshot` is set.
|
515
|
-
Updating `sourceImage` will update content in the ephemeral directory after the workstation is restarted.
|
516
|
-
"""
|
517
|
-
return pulumi.get(self, "source_image")
|
518
|
-
|
519
|
-
@property
|
520
|
-
@pulumi.getter(name="sourceSnapshot")
|
521
|
-
def source_snapshot(self) -> Optional[str]:
|
522
|
-
"""
|
523
|
-
Name of the snapshot to use as the source for the disk.
|
524
|
-
Must be empty if `sourceImage` is set.
|
525
|
-
Must be empty if `read_only` is false.
|
526
|
-
Updating `source_snapshot` will update content in the ephemeral directory after the workstation is restarted.
|
527
|
-
"""
|
528
|
-
return pulumi.get(self, "source_snapshot")
|
529
|
-
|
530
|
-
|
531
389
|
@pulumi.output_type
|
532
390
|
class WorkstationConfigHost(dict):
|
533
391
|
@staticmethod
|
@@ -1029,16 +887,13 @@ class WorkstationConfigPersistentDirectoryGcePd(dict):
|
|
1029
887
|
size_gb: Optional[int] = None,
|
1030
888
|
source_snapshot: Optional[str] = None):
|
1031
889
|
"""
|
1032
|
-
:param str disk_type:
|
890
|
+
:param str disk_type: The type of the persistent disk for the home directory. Defaults to `pd-standard`.
|
1033
891
|
:param str fs_type: Type of file system that the disk should be formatted with. The workstation image must support this file system type. Must be empty if `sourceSnapshot` is set. Defaults to `ext4`.
|
1034
892
|
:param str reclaim_policy: Whether the persistent disk should be deleted when the workstation is deleted. Valid values are `DELETE` and `RETAIN`. Defaults to `DELETE`.
|
1035
893
|
Possible values are: `DELETE`, `RETAIN`.
|
1036
894
|
:param int size_gb: The GB capacity of a persistent home directory for each workstation created with this configuration. Must be empty if `sourceSnapshot` is set.
|
1037
895
|
Valid values are `10`, `50`, `100`, `200`, `500`, or `1000`. Defaults to `200`. If less than `200` GB, the `diskType` must be `pd-balanced` or `pd-ssd`.
|
1038
|
-
:param str source_snapshot: Name of the snapshot to use as the source for the disk.
|
1039
|
-
Must be empty if `sourceImage` is set.
|
1040
|
-
Must be empty if `read_only` is false.
|
1041
|
-
Updating `source_snapshot` will update content in the ephemeral directory after the workstation is restarted.
|
896
|
+
:param str source_snapshot: Name of the snapshot to use as the source for the disk. This can be the snapshot's `self_link`, `id`, or a string in the format of `projects/{project}/global/snapshots/{snapshot}`. If set, `sizeGb` and `fsType` must be empty. Can only be updated if it has an existing value.
|
1042
897
|
"""
|
1043
898
|
if disk_type is not None:
|
1044
899
|
pulumi.set(__self__, "disk_type", disk_type)
|
@@ -1055,7 +910,7 @@ class WorkstationConfigPersistentDirectoryGcePd(dict):
|
|
1055
910
|
@pulumi.getter(name="diskType")
|
1056
911
|
def disk_type(self) -> Optional[str]:
|
1057
912
|
"""
|
1058
|
-
|
913
|
+
The type of the persistent disk for the home directory. Defaults to `pd-standard`.
|
1059
914
|
"""
|
1060
915
|
return pulumi.get(self, "disk_type")
|
1061
916
|
|
@@ -1089,10 +944,7 @@ class WorkstationConfigPersistentDirectoryGcePd(dict):
|
|
1089
944
|
@pulumi.getter(name="sourceSnapshot")
|
1090
945
|
def source_snapshot(self) -> Optional[str]:
|
1091
946
|
"""
|
1092
|
-
Name of the snapshot to use as the source for the disk.
|
1093
|
-
Must be empty if `sourceImage` is set.
|
1094
|
-
Must be empty if `read_only` is false.
|
1095
|
-
Updating `source_snapshot` will update content in the ephemeral directory after the workstation is restarted.
|
947
|
+
Name of the snapshot to use as the source for the disk. This can be the snapshot's `self_link`, `id`, or a string in the format of `projects/{project}/global/snapshots/{snapshot}`. If set, `sizeGb` and `fsType` must be empty. Can only be updated if it has an existing value.
|
1096
948
|
"""
|
1097
949
|
return pulumi.get(self, "source_snapshot")
|
1098
950
|
|
@@ -25,7 +25,6 @@ class WorkstationConfigArgs:
|
|
25
25
|
display_name: Optional[pulumi.Input[str]] = None,
|
26
26
|
enable_audit_agent: Optional[pulumi.Input[bool]] = None,
|
27
27
|
encryption_key: Optional[pulumi.Input['WorkstationConfigEncryptionKeyArgs']] = None,
|
28
|
-
ephemeral_directories: Optional[pulumi.Input[Sequence[pulumi.Input['WorkstationConfigEphemeralDirectoryArgs']]]] = None,
|
29
28
|
host: Optional[pulumi.Input['WorkstationConfigHostArgs']] = None,
|
30
29
|
idle_timeout: Optional[pulumi.Input[str]] = None,
|
31
30
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -55,8 +54,6 @@ class WorkstationConfigArgs:
|
|
55
54
|
If the customer-managed encryption key is rotated, when the workstation instance is stopped, the system attempts to recreate the persistent disk with the new version of the key. Be sure to keep older versions of the key until the persistent disk is recreated. Otherwise, data on the persistent disk will be lost.
|
56
55
|
If the encryption key is revoked, the workstation session will automatically be stopped within 7 hours.
|
57
56
|
Structure is documented below.
|
58
|
-
:param pulumi.Input[Sequence[pulumi.Input['WorkstationConfigEphemeralDirectoryArgs']]] ephemeral_directories: Ephemeral directories which won't persist across workstation sessions.
|
59
|
-
Structure is documented below.
|
60
57
|
:param pulumi.Input['WorkstationConfigHostArgs'] host: Runtime host for a workstation.
|
61
58
|
Structure is documented below.
|
62
59
|
:param pulumi.Input[str] idle_timeout: How long to wait before automatically stopping an instance that hasn't recently received any user traffic. A value of 0 indicates that this instance should never time out from idleness. Defaults to 20 minutes.
|
@@ -90,8 +87,6 @@ class WorkstationConfigArgs:
|
|
90
87
|
pulumi.set(__self__, "enable_audit_agent", enable_audit_agent)
|
91
88
|
if encryption_key is not None:
|
92
89
|
pulumi.set(__self__, "encryption_key", encryption_key)
|
93
|
-
if ephemeral_directories is not None:
|
94
|
-
pulumi.set(__self__, "ephemeral_directories", ephemeral_directories)
|
95
90
|
if host is not None:
|
96
91
|
pulumi.set(__self__, "host", host)
|
97
92
|
if idle_timeout is not None:
|
@@ -227,19 +222,6 @@ class WorkstationConfigArgs:
|
|
227
222
|
def encryption_key(self, value: Optional[pulumi.Input['WorkstationConfigEncryptionKeyArgs']]):
|
228
223
|
pulumi.set(self, "encryption_key", value)
|
229
224
|
|
230
|
-
@property
|
231
|
-
@pulumi.getter(name="ephemeralDirectories")
|
232
|
-
def ephemeral_directories(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkstationConfigEphemeralDirectoryArgs']]]]:
|
233
|
-
"""
|
234
|
-
Ephemeral directories which won't persist across workstation sessions.
|
235
|
-
Structure is documented below.
|
236
|
-
"""
|
237
|
-
return pulumi.get(self, "ephemeral_directories")
|
238
|
-
|
239
|
-
@ephemeral_directories.setter
|
240
|
-
def ephemeral_directories(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['WorkstationConfigEphemeralDirectoryArgs']]]]):
|
241
|
-
pulumi.set(self, "ephemeral_directories", value)
|
242
|
-
|
243
225
|
@property
|
244
226
|
@pulumi.getter
|
245
227
|
def host(self) -> Optional[pulumi.Input['WorkstationConfigHostArgs']]:
|
@@ -360,7 +342,6 @@ class _WorkstationConfigState:
|
|
360
342
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
361
343
|
enable_audit_agent: Optional[pulumi.Input[bool]] = None,
|
362
344
|
encryption_key: Optional[pulumi.Input['WorkstationConfigEncryptionKeyArgs']] = None,
|
363
|
-
ephemeral_directories: Optional[pulumi.Input[Sequence[pulumi.Input['WorkstationConfigEphemeralDirectoryArgs']]]] = None,
|
364
345
|
etag: Optional[pulumi.Input[str]] = None,
|
365
346
|
host: Optional[pulumi.Input['WorkstationConfigHostArgs']] = None,
|
366
347
|
idle_timeout: Optional[pulumi.Input[str]] = None,
|
@@ -398,8 +379,6 @@ class _WorkstationConfigState:
|
|
398
379
|
If the customer-managed encryption key is rotated, when the workstation instance is stopped, the system attempts to recreate the persistent disk with the new version of the key. Be sure to keep older versions of the key until the persistent disk is recreated. Otherwise, data on the persistent disk will be lost.
|
399
380
|
If the encryption key is revoked, the workstation session will automatically be stopped within 7 hours.
|
400
381
|
Structure is documented below.
|
401
|
-
:param pulumi.Input[Sequence[pulumi.Input['WorkstationConfigEphemeralDirectoryArgs']]] ephemeral_directories: Ephemeral directories which won't persist across workstation sessions.
|
402
|
-
Structure is documented below.
|
403
382
|
:param pulumi.Input[str] etag: Checksum computed by the server.
|
404
383
|
May be sent on update and delete requests to ensure that the client has an up-to-date value before proceeding.
|
405
384
|
:param pulumi.Input['WorkstationConfigHostArgs'] host: Runtime host for a workstation.
|
@@ -452,8 +431,6 @@ class _WorkstationConfigState:
|
|
452
431
|
pulumi.set(__self__, "enable_audit_agent", enable_audit_agent)
|
453
432
|
if encryption_key is not None:
|
454
433
|
pulumi.set(__self__, "encryption_key", encryption_key)
|
455
|
-
if ephemeral_directories is not None:
|
456
|
-
pulumi.set(__self__, "ephemeral_directories", ephemeral_directories)
|
457
434
|
if etag is not None:
|
458
435
|
pulumi.set(__self__, "etag", etag)
|
459
436
|
if host is not None:
|
@@ -626,19 +603,6 @@ class _WorkstationConfigState:
|
|
626
603
|
def encryption_key(self, value: Optional[pulumi.Input['WorkstationConfigEncryptionKeyArgs']]):
|
627
604
|
pulumi.set(self, "encryption_key", value)
|
628
605
|
|
629
|
-
@property
|
630
|
-
@pulumi.getter(name="ephemeralDirectories")
|
631
|
-
def ephemeral_directories(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkstationConfigEphemeralDirectoryArgs']]]]:
|
632
|
-
"""
|
633
|
-
Ephemeral directories which won't persist across workstation sessions.
|
634
|
-
Structure is documented below.
|
635
|
-
"""
|
636
|
-
return pulumi.get(self, "ephemeral_directories")
|
637
|
-
|
638
|
-
@ephemeral_directories.setter
|
639
|
-
def ephemeral_directories(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['WorkstationConfigEphemeralDirectoryArgs']]]]):
|
640
|
-
pulumi.set(self, "ephemeral_directories", value)
|
641
|
-
|
642
606
|
@property
|
643
607
|
@pulumi.getter
|
644
608
|
def etag(self) -> Optional[pulumi.Input[str]]:
|
@@ -845,7 +809,6 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
845
809
|
display_name: Optional[pulumi.Input[str]] = None,
|
846
810
|
enable_audit_agent: Optional[pulumi.Input[bool]] = None,
|
847
811
|
encryption_key: Optional[pulumi.Input[pulumi.InputType['WorkstationConfigEncryptionKeyArgs']]] = None,
|
848
|
-
ephemeral_directories: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkstationConfigEphemeralDirectoryArgs']]]]] = None,
|
849
812
|
host: Optional[pulumi.Input[pulumi.InputType['WorkstationConfigHostArgs']]] = None,
|
850
813
|
idle_timeout: Optional[pulumi.Input[str]] = None,
|
851
814
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1236,8 +1199,6 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
1236
1199
|
If the customer-managed encryption key is rotated, when the workstation instance is stopped, the system attempts to recreate the persistent disk with the new version of the key. Be sure to keep older versions of the key until the persistent disk is recreated. Otherwise, data on the persistent disk will be lost.
|
1237
1200
|
If the encryption key is revoked, the workstation session will automatically be stopped within 7 hours.
|
1238
1201
|
Structure is documented below.
|
1239
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkstationConfigEphemeralDirectoryArgs']]]] ephemeral_directories: Ephemeral directories which won't persist across workstation sessions.
|
1240
|
-
Structure is documented below.
|
1241
1202
|
:param pulumi.Input[pulumi.InputType['WorkstationConfigHostArgs']] host: Runtime host for a workstation.
|
1242
1203
|
Structure is documented below.
|
1243
1204
|
:param pulumi.Input[str] idle_timeout: How long to wait before automatically stopping an instance that hasn't recently received any user traffic. A value of 0 indicates that this instance should never time out from idleness. Defaults to 20 minutes.
|
@@ -1652,7 +1613,6 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
1652
1613
|
display_name: Optional[pulumi.Input[str]] = None,
|
1653
1614
|
enable_audit_agent: Optional[pulumi.Input[bool]] = None,
|
1654
1615
|
encryption_key: Optional[pulumi.Input[pulumi.InputType['WorkstationConfigEncryptionKeyArgs']]] = None,
|
1655
|
-
ephemeral_directories: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkstationConfigEphemeralDirectoryArgs']]]]] = None,
|
1656
1616
|
host: Optional[pulumi.Input[pulumi.InputType['WorkstationConfigHostArgs']]] = None,
|
1657
1617
|
idle_timeout: Optional[pulumi.Input[str]] = None,
|
1658
1618
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1679,7 +1639,6 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
1679
1639
|
__props__.__dict__["display_name"] = display_name
|
1680
1640
|
__props__.__dict__["enable_audit_agent"] = enable_audit_agent
|
1681
1641
|
__props__.__dict__["encryption_key"] = encryption_key
|
1682
|
-
__props__.__dict__["ephemeral_directories"] = ephemeral_directories
|
1683
1642
|
__props__.__dict__["host"] = host
|
1684
1643
|
__props__.__dict__["idle_timeout"] = idle_timeout
|
1685
1644
|
__props__.__dict__["labels"] = labels
|
@@ -1729,7 +1688,6 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
1729
1688
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1730
1689
|
enable_audit_agent: Optional[pulumi.Input[bool]] = None,
|
1731
1690
|
encryption_key: Optional[pulumi.Input[pulumi.InputType['WorkstationConfigEncryptionKeyArgs']]] = None,
|
1732
|
-
ephemeral_directories: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkstationConfigEphemeralDirectoryArgs']]]]] = None,
|
1733
1691
|
etag: Optional[pulumi.Input[str]] = None,
|
1734
1692
|
host: Optional[pulumi.Input[pulumi.InputType['WorkstationConfigHostArgs']]] = None,
|
1735
1693
|
idle_timeout: Optional[pulumi.Input[str]] = None,
|
@@ -1772,8 +1730,6 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
1772
1730
|
If the customer-managed encryption key is rotated, when the workstation instance is stopped, the system attempts to recreate the persistent disk with the new version of the key. Be sure to keep older versions of the key until the persistent disk is recreated. Otherwise, data on the persistent disk will be lost.
|
1773
1731
|
If the encryption key is revoked, the workstation session will automatically be stopped within 7 hours.
|
1774
1732
|
Structure is documented below.
|
1775
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkstationConfigEphemeralDirectoryArgs']]]] ephemeral_directories: Ephemeral directories which won't persist across workstation sessions.
|
1776
|
-
Structure is documented below.
|
1777
1733
|
:param pulumi.Input[str] etag: Checksum computed by the server.
|
1778
1734
|
May be sent on update and delete requests to ensure that the client has an up-to-date value before proceeding.
|
1779
1735
|
:param pulumi.Input[pulumi.InputType['WorkstationConfigHostArgs']] host: Runtime host for a workstation.
|
@@ -1819,7 +1775,6 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
1819
1775
|
__props__.__dict__["effective_labels"] = effective_labels
|
1820
1776
|
__props__.__dict__["enable_audit_agent"] = enable_audit_agent
|
1821
1777
|
__props__.__dict__["encryption_key"] = encryption_key
|
1822
|
-
__props__.__dict__["ephemeral_directories"] = ephemeral_directories
|
1823
1778
|
__props__.__dict__["etag"] = etag
|
1824
1779
|
__props__.__dict__["host"] = host
|
1825
1780
|
__props__.__dict__["idle_timeout"] = idle_timeout
|
@@ -1934,15 +1889,6 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
1934
1889
|
"""
|
1935
1890
|
return pulumi.get(self, "encryption_key")
|
1936
1891
|
|
1937
|
-
@property
|
1938
|
-
@pulumi.getter(name="ephemeralDirectories")
|
1939
|
-
def ephemeral_directories(self) -> pulumi.Output[Sequence['outputs.WorkstationConfigEphemeralDirectory']]:
|
1940
|
-
"""
|
1941
|
-
Ephemeral directories which won't persist across workstation sessions.
|
1942
|
-
Structure is documented below.
|
1943
|
-
"""
|
1944
|
-
return pulumi.get(self, "ephemeral_directories")
|
1945
|
-
|
1946
1892
|
@property
|
1947
1893
|
@pulumi.getter
|
1948
1894
|
def etag(self) -> pulumi.Output[str]:
|