pulumi-gcp 8.25.0a1743575622__py3-none-any.whl → 8.25.0a1743706148__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 +104 -0
- pulumi_gcp/_inputs.py +48 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +324 -12
- pulumi_gcp/accesscontextmanager/outputs.py +204 -12
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
- pulumi_gcp/apigee/__init__.py +1 -0
- pulumi_gcp/apigee/_inputs.py +58 -0
- pulumi_gcp/apigee/dns_zone.py +491 -0
- pulumi_gcp/apigee/outputs.py +53 -0
- pulumi_gcp/bigquery/reservation_assignment.py +7 -7
- pulumi_gcp/bigtable/table.py +8 -8
- pulumi_gcp/chronicle/data_access_label.py +2 -2
- pulumi_gcp/chronicle/data_access_scope.py +16 -0
- pulumi_gcp/chronicle/reference_list.py +16 -0
- pulumi_gcp/chronicle/retrohunt.py +16 -0
- pulumi_gcp/chronicle/rule.py +16 -0
- pulumi_gcp/chronicle/rule_deployment.py +16 -0
- pulumi_gcp/chronicle/watchlist.py +16 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +20 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
- pulumi_gcp/cloudrunv2/_inputs.py +20 -0
- pulumi_gcp/cloudrunv2/outputs.py +25 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +2011 -43
- pulumi_gcp/compute/backend_service.py +121 -3
- pulumi_gcp/compute/get_backend_service.py +15 -4
- pulumi_gcp/compute/get_instance.py +12 -1
- pulumi_gcp/compute/get_region_backend_service.py +482 -0
- pulumi_gcp/compute/get_router.py +12 -1
- pulumi_gcp/compute/get_subnetwork.py +43 -1
- pulumi_gcp/compute/instance.py +47 -0
- pulumi_gcp/compute/instance_from_machine_image.py +94 -0
- pulumi_gcp/compute/instance_from_template.py +47 -0
- pulumi_gcp/compute/outputs.py +3578 -139
- pulumi_gcp/compute/public_delegated_prefix.py +69 -15
- pulumi_gcp/compute/router.py +54 -0
- pulumi_gcp/compute/subnetwork.py +35 -5
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/outputs.py +27 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +12 -12
- pulumi_gcp/container/cluster.py +47 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/get_registry_image.py +4 -0
- pulumi_gcp/container/get_registry_repository.py +4 -0
- pulumi_gcp/container/outputs.py +8 -8
- pulumi_gcp/container/registry.py +4 -0
- pulumi_gcp/datafusion/instance.py +68 -0
- pulumi_gcp/dataproc/__init__.py +8 -0
- pulumi_gcp/dataproc/_inputs.py +196 -0
- pulumi_gcp/dataproc/get_metastore_database_iam_policy.py +193 -0
- pulumi_gcp/dataproc/get_metastore_table_iam_policy.py +210 -0
- pulumi_gcp/dataproc/metastore_database_iam_binding.py +848 -0
- pulumi_gcp/dataproc/metastore_database_iam_member.py +848 -0
- pulumi_gcp/dataproc/metastore_database_iam_policy.py +687 -0
- pulumi_gcp/dataproc/metastore_federation.py +38 -2
- pulumi_gcp/dataproc/metastore_table_iam_binding.py +895 -0
- pulumi_gcp/dataproc/metastore_table_iam_member.py +895 -0
- pulumi_gcp/dataproc/metastore_table_iam_policy.py +734 -0
- pulumi_gcp/dataproc/outputs.py +112 -0
- pulumi_gcp/datastream/_inputs.py +311 -94
- pulumi_gcp/datastream/connection_profile.py +40 -0
- pulumi_gcp/datastream/outputs.py +244 -51
- pulumi_gcp/datastream/stream.py +216 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/sitemap.py +504 -0
- pulumi_gcp/eventarc/__init__.py +1 -0
- pulumi_gcp/eventarc/enrollment.py +980 -0
- pulumi_gcp/firebase/__init__.py +1 -0
- pulumi_gcp/firebase/_inputs.py +484 -0
- pulumi_gcp/firebase/app_hosting_build.py +1232 -0
- pulumi_gcp/firebase/outputs.py +333 -0
- pulumi_gcp/identityplatform/_inputs.py +91 -0
- pulumi_gcp/identityplatform/outputs.py +73 -0
- pulumi_gcp/identityplatform/tenant.py +56 -0
- pulumi_gcp/managedkafka/cluster.py +2 -2
- pulumi_gcp/memorystore/__init__.py +1 -0
- pulumi_gcp/memorystore/_inputs.py +826 -0
- pulumi_gcp/memorystore/get_instance.py +23 -1
- pulumi_gcp/memorystore/instance.py +344 -23
- pulumi_gcp/memorystore/instance_desired_user_created_endpoints.py +843 -0
- pulumi_gcp/memorystore/outputs.py +889 -8
- pulumi_gcp/networksecurity/_inputs.py +473 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +44 -16
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +94 -36
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +53 -8
- pulumi_gcp/networksecurity/outputs.py +291 -1
- pulumi_gcp/networksecurity/security_profile.py +8 -0
- pulumi_gcp/organizations/__init__.py +1 -0
- pulumi_gcp/organizations/get_iam_custom_roles.py +164 -0
- pulumi_gcp/organizations/outputs.py +96 -0
- pulumi_gcp/parametermanager/get_parameter.py +16 -1
- pulumi_gcp/parametermanager/get_parameter_version.py +19 -1
- pulumi_gcp/parametermanager/get_parameter_version_render.py +4 -0
- pulumi_gcp/parametermanager/get_parameters.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +8 -0
- pulumi_gcp/parametermanager/get_regional_parameters.py +4 -0
- pulumi_gcp/parametermanager/outputs.py +11 -0
- pulumi_gcp/parametermanager/parameter.py +88 -0
- pulumi_gcp/parametermanager/parameter_version.py +74 -0
- pulumi_gcp/parametermanager/regional_parameter.py +12 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +12 -0
- pulumi_gcp/provider.py +15 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +136 -0
- pulumi_gcp/redis/cluster.py +54 -0
- pulumi_gcp/redis/outputs.py +114 -0
- pulumi_gcp/secretmanager/regional_secret_version.py +0 -16
- pulumi_gcp/storage/__init__.py +4 -0
- pulumi_gcp/storage/_inputs.py +596 -0
- pulumi_gcp/storage/bucket.py +7 -7
- pulumi_gcp/storage/control_folder_intelligence_config.py +420 -0
- pulumi_gcp/storage/control_organization_intelligence_config.py +420 -0
- pulumi_gcp/storage/control_project_intelligence_config.py +49 -7
- pulumi_gcp/storage/get_bucket_object_content.py +16 -1
- pulumi_gcp/storage/get_control_folder_intelligence_config.py +160 -0
- pulumi_gcp/storage/get_control_organization_intelligence_config.py +160 -0
- pulumi_gcp/storage/get_control_project_intelligence_config.py +32 -2
- pulumi_gcp/storage/outputs.py +2132 -1312
- pulumi_gcp/workbench/instance.py +14 -2
- {pulumi_gcp-8.25.0a1743575622.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.25.0a1743575622.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/RECORD +126 -107
- {pulumi_gcp-8.25.0a1743575622.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.25.0a1743575622.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/instance.py
CHANGED
@@ -35,6 +35,7 @@ class InstanceArgs:
|
|
35
35
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
36
36
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceGuestAcceleratorArgs']]]] = None,
|
37
37
|
hostname: Optional[pulumi.Input[str]] = None,
|
38
|
+
instance_encryption_key: Optional[pulumi.Input['InstanceInstanceEncryptionKeyArgs']] = None,
|
38
39
|
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
39
40
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
40
41
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -90,6 +91,7 @@ class InstanceArgs:
|
|
90
91
|
:param pulumi.Input[str] hostname: A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid.
|
91
92
|
Valid format is a series of labels 1-63 characters long matching the regular expression `a-z`, concatenated with periods.
|
92
93
|
The entire hostname must not exceed 253 characters. Changing this forces a new resource to be created.
|
94
|
+
:param pulumi.Input['InstanceInstanceEncryptionKeyArgs'] instance_encryption_key: Configuration for data encryption on the instance with encryption keys. Structure is documented below.
|
93
95
|
:param pulumi.Input[str] key_revocation_action_type: Action to be taken when a customer's encryption key is revoked. Supports `STOP` and `NONE`, with `NONE` being the default.
|
94
96
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A map of key/value label pairs to assign to the instance.
|
95
97
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
@@ -174,6 +176,8 @@ class InstanceArgs:
|
|
174
176
|
pulumi.set(__self__, "guest_accelerators", guest_accelerators)
|
175
177
|
if hostname is not None:
|
176
178
|
pulumi.set(__self__, "hostname", hostname)
|
179
|
+
if instance_encryption_key is not None:
|
180
|
+
pulumi.set(__self__, "instance_encryption_key", instance_encryption_key)
|
177
181
|
if key_revocation_action_type is not None:
|
178
182
|
pulumi.set(__self__, "key_revocation_action_type", key_revocation_action_type)
|
179
183
|
if labels is not None:
|
@@ -400,6 +404,18 @@ class InstanceArgs:
|
|
400
404
|
def hostname(self, value: Optional[pulumi.Input[str]]):
|
401
405
|
pulumi.set(self, "hostname", value)
|
402
406
|
|
407
|
+
@property
|
408
|
+
@pulumi.getter(name="instanceEncryptionKey")
|
409
|
+
def instance_encryption_key(self) -> Optional[pulumi.Input['InstanceInstanceEncryptionKeyArgs']]:
|
410
|
+
"""
|
411
|
+
Configuration for data encryption on the instance with encryption keys. Structure is documented below.
|
412
|
+
"""
|
413
|
+
return pulumi.get(self, "instance_encryption_key")
|
414
|
+
|
415
|
+
@instance_encryption_key.setter
|
416
|
+
def instance_encryption_key(self, value: Optional[pulumi.Input['InstanceInstanceEncryptionKeyArgs']]):
|
417
|
+
pulumi.set(self, "instance_encryption_key", value)
|
418
|
+
|
403
419
|
@property
|
404
420
|
@pulumi.getter(name="keyRevocationActionType")
|
405
421
|
def key_revocation_action_type(self) -> Optional[pulumi.Input[str]]:
|
@@ -676,6 +692,7 @@ class _InstanceState:
|
|
676
692
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
677
693
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceGuestAcceleratorArgs']]]] = None,
|
678
694
|
hostname: Optional[pulumi.Input[str]] = None,
|
695
|
+
instance_encryption_key: Optional[pulumi.Input['InstanceInstanceEncryptionKeyArgs']] = None,
|
679
696
|
instance_id: Optional[pulumi.Input[str]] = None,
|
680
697
|
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
681
698
|
label_fingerprint: Optional[pulumi.Input[str]] = None,
|
@@ -730,6 +747,7 @@ class _InstanceState:
|
|
730
747
|
:param pulumi.Input[str] hostname: A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid.
|
731
748
|
Valid format is a series of labels 1-63 characters long matching the regular expression `a-z`, concatenated with periods.
|
732
749
|
The entire hostname must not exceed 253 characters. Changing this forces a new resource to be created.
|
750
|
+
:param pulumi.Input['InstanceInstanceEncryptionKeyArgs'] instance_encryption_key: Configuration for data encryption on the instance with encryption keys. Structure is documented below.
|
733
751
|
:param pulumi.Input[str] instance_id: The server-assigned unique identifier of this instance.
|
734
752
|
:param pulumi.Input[str] key_revocation_action_type: Action to be taken when a customer's encryption key is revoked. Supports `STOP` and `NONE`, with `NONE` being the default.
|
735
753
|
:param pulumi.Input[str] label_fingerprint: The unique fingerprint of the labels.
|
@@ -840,6 +858,8 @@ class _InstanceState:
|
|
840
858
|
pulumi.set(__self__, "guest_accelerators", guest_accelerators)
|
841
859
|
if hostname is not None:
|
842
860
|
pulumi.set(__self__, "hostname", hostname)
|
861
|
+
if instance_encryption_key is not None:
|
862
|
+
pulumi.set(__self__, "instance_encryption_key", instance_encryption_key)
|
843
863
|
if instance_id is not None:
|
844
864
|
pulumi.set(__self__, "instance_id", instance_id)
|
845
865
|
if key_revocation_action_type is not None:
|
@@ -1095,6 +1115,18 @@ class _InstanceState:
|
|
1095
1115
|
def hostname(self, value: Optional[pulumi.Input[str]]):
|
1096
1116
|
pulumi.set(self, "hostname", value)
|
1097
1117
|
|
1118
|
+
@property
|
1119
|
+
@pulumi.getter(name="instanceEncryptionKey")
|
1120
|
+
def instance_encryption_key(self) -> Optional[pulumi.Input['InstanceInstanceEncryptionKeyArgs']]:
|
1121
|
+
"""
|
1122
|
+
Configuration for data encryption on the instance with encryption keys. Structure is documented below.
|
1123
|
+
"""
|
1124
|
+
return pulumi.get(self, "instance_encryption_key")
|
1125
|
+
|
1126
|
+
@instance_encryption_key.setter
|
1127
|
+
def instance_encryption_key(self, value: Optional[pulumi.Input['InstanceInstanceEncryptionKeyArgs']]):
|
1128
|
+
pulumi.set(self, "instance_encryption_key", value)
|
1129
|
+
|
1098
1130
|
@property
|
1099
1131
|
@pulumi.getter(name="instanceId")
|
1100
1132
|
def instance_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -1476,6 +1508,7 @@ class Instance(pulumi.CustomResource):
|
|
1476
1508
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
1477
1509
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceGuestAcceleratorArgs', 'InstanceGuestAcceleratorArgsDict']]]]] = None,
|
1478
1510
|
hostname: Optional[pulumi.Input[str]] = None,
|
1511
|
+
instance_encryption_key: Optional[pulumi.Input[Union['InstanceInstanceEncryptionKeyArgs', 'InstanceInstanceEncryptionKeyArgsDict']]] = None,
|
1479
1512
|
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
1480
1513
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1481
1514
|
machine_type: Optional[pulumi.Input[str]] = None,
|
@@ -1634,6 +1667,7 @@ class Instance(pulumi.CustomResource):
|
|
1634
1667
|
:param pulumi.Input[str] hostname: A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid.
|
1635
1668
|
Valid format is a series of labels 1-63 characters long matching the regular expression `a-z`, concatenated with periods.
|
1636
1669
|
The entire hostname must not exceed 253 characters. Changing this forces a new resource to be created.
|
1670
|
+
:param pulumi.Input[Union['InstanceInstanceEncryptionKeyArgs', 'InstanceInstanceEncryptionKeyArgsDict']] instance_encryption_key: Configuration for data encryption on the instance with encryption keys. Structure is documented below.
|
1637
1671
|
:param pulumi.Input[str] key_revocation_action_type: Action to be taken when a customer's encryption key is revoked. Supports `STOP` and `NONE`, with `NONE` being the default.
|
1638
1672
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A map of key/value label pairs to assign to the instance.
|
1639
1673
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
@@ -1852,6 +1886,7 @@ class Instance(pulumi.CustomResource):
|
|
1852
1886
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
1853
1887
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceGuestAcceleratorArgs', 'InstanceGuestAcceleratorArgsDict']]]]] = None,
|
1854
1888
|
hostname: Optional[pulumi.Input[str]] = None,
|
1889
|
+
instance_encryption_key: Optional[pulumi.Input[Union['InstanceInstanceEncryptionKeyArgs', 'InstanceInstanceEncryptionKeyArgsDict']]] = None,
|
1855
1890
|
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
1856
1891
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1857
1892
|
machine_type: Optional[pulumi.Input[str]] = None,
|
@@ -1895,6 +1930,7 @@ class Instance(pulumi.CustomResource):
|
|
1895
1930
|
__props__.__dict__["enable_display"] = enable_display
|
1896
1931
|
__props__.__dict__["guest_accelerators"] = guest_accelerators
|
1897
1932
|
__props__.__dict__["hostname"] = hostname
|
1933
|
+
__props__.__dict__["instance_encryption_key"] = instance_encryption_key
|
1898
1934
|
__props__.__dict__["key_revocation_action_type"] = key_revocation_action_type
|
1899
1935
|
__props__.__dict__["labels"] = labels
|
1900
1936
|
if machine_type is None and not opts.urn:
|
@@ -1957,6 +1993,7 @@ class Instance(pulumi.CustomResource):
|
|
1957
1993
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
1958
1994
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceGuestAcceleratorArgs', 'InstanceGuestAcceleratorArgsDict']]]]] = None,
|
1959
1995
|
hostname: Optional[pulumi.Input[str]] = None,
|
1996
|
+
instance_encryption_key: Optional[pulumi.Input[Union['InstanceInstanceEncryptionKeyArgs', 'InstanceInstanceEncryptionKeyArgsDict']]] = None,
|
1960
1997
|
instance_id: Optional[pulumi.Input[str]] = None,
|
1961
1998
|
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
1962
1999
|
label_fingerprint: Optional[pulumi.Input[str]] = None,
|
@@ -2016,6 +2053,7 @@ class Instance(pulumi.CustomResource):
|
|
2016
2053
|
:param pulumi.Input[str] hostname: A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid.
|
2017
2054
|
Valid format is a series of labels 1-63 characters long matching the regular expression `a-z`, concatenated with periods.
|
2018
2055
|
The entire hostname must not exceed 253 characters. Changing this forces a new resource to be created.
|
2056
|
+
:param pulumi.Input[Union['InstanceInstanceEncryptionKeyArgs', 'InstanceInstanceEncryptionKeyArgsDict']] instance_encryption_key: Configuration for data encryption on the instance with encryption keys. Structure is documented below.
|
2019
2057
|
:param pulumi.Input[str] instance_id: The server-assigned unique identifier of this instance.
|
2020
2058
|
:param pulumi.Input[str] key_revocation_action_type: Action to be taken when a customer's encryption key is revoked. Supports `STOP` and `NONE`, with `NONE` being the default.
|
2021
2059
|
:param pulumi.Input[str] label_fingerprint: The unique fingerprint of the labels.
|
@@ -2114,6 +2152,7 @@ class Instance(pulumi.CustomResource):
|
|
2114
2152
|
__props__.__dict__["enable_display"] = enable_display
|
2115
2153
|
__props__.__dict__["guest_accelerators"] = guest_accelerators
|
2116
2154
|
__props__.__dict__["hostname"] = hostname
|
2155
|
+
__props__.__dict__["instance_encryption_key"] = instance_encryption_key
|
2117
2156
|
__props__.__dict__["instance_id"] = instance_id
|
2118
2157
|
__props__.__dict__["key_revocation_action_type"] = key_revocation_action_type
|
2119
2158
|
__props__.__dict__["label_fingerprint"] = label_fingerprint
|
@@ -2280,6 +2319,14 @@ class Instance(pulumi.CustomResource):
|
|
2280
2319
|
"""
|
2281
2320
|
return pulumi.get(self, "hostname")
|
2282
2321
|
|
2322
|
+
@property
|
2323
|
+
@pulumi.getter(name="instanceEncryptionKey")
|
2324
|
+
def instance_encryption_key(self) -> pulumi.Output[Optional['outputs.InstanceInstanceEncryptionKey']]:
|
2325
|
+
"""
|
2326
|
+
Configuration for data encryption on the instance with encryption keys. Structure is documented below.
|
2327
|
+
"""
|
2328
|
+
return pulumi.get(self, "instance_encryption_key")
|
2329
|
+
|
2283
2330
|
@property
|
2284
2331
|
@pulumi.getter(name="instanceId")
|
2285
2332
|
def instance_id(self) -> pulumi.Output[str]:
|
@@ -32,6 +32,7 @@ class InstanceFromMachineImageArgs:
|
|
32
32
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
33
33
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceFromMachineImageGuestAcceleratorArgs']]]] = None,
|
34
34
|
hostname: Optional[pulumi.Input[str]] = None,
|
35
|
+
instance_encryption_key: Optional[pulumi.Input['InstanceFromMachineImageInstanceEncryptionKeyArgs']] = None,
|
35
36
|
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
36
37
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
37
38
|
machine_type: Optional[pulumi.Input[str]] = None,
|
@@ -49,6 +50,7 @@ class InstanceFromMachineImageArgs:
|
|
49
50
|
scheduling: Optional[pulumi.Input['InstanceFromMachineImageSchedulingArgs']] = None,
|
50
51
|
service_account: Optional[pulumi.Input['InstanceFromMachineImageServiceAccountArgs']] = None,
|
51
52
|
shielded_instance_config: Optional[pulumi.Input['InstanceFromMachineImageShieldedInstanceConfigArgs']] = None,
|
53
|
+
source_machine_image_encryption_key: Optional[pulumi.Input['InstanceFromMachineImageSourceMachineImageEncryptionKeyArgs']] = None,
|
52
54
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
53
55
|
zone: Optional[pulumi.Input[str]] = None):
|
54
56
|
"""
|
@@ -69,6 +71,7 @@ class InstanceFromMachineImageArgs:
|
|
69
71
|
:param pulumi.Input[str] hostname: A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid. Valid format is a series of
|
70
72
|
labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not
|
71
73
|
exceed 253 characters. Changing this forces a new resource to be created.
|
74
|
+
:param pulumi.Input['InstanceFromMachineImageInstanceEncryptionKeyArgs'] instance_encryption_key: Encryption key used to provide data encryption on the given instance.
|
72
75
|
:param pulumi.Input[str] key_revocation_action_type: Action to be taken when a customer's encryption key is revoked. Supports "STOP" and "NONE", with "NONE" being the
|
73
76
|
default.
|
74
77
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A set of key/value label pairs assigned to the instance. **Note**: This field is non-authoritative, and will only manage
|
@@ -92,6 +95,7 @@ class InstanceFromMachineImageArgs:
|
|
92
95
|
:param pulumi.Input['InstanceFromMachineImageSchedulingArgs'] scheduling: The scheduling strategy being used by the instance.
|
93
96
|
:param pulumi.Input['InstanceFromMachineImageServiceAccountArgs'] service_account: The service account to attach to the instance.
|
94
97
|
:param pulumi.Input['InstanceFromMachineImageShieldedInstanceConfigArgs'] shielded_instance_config: The shielded vm config being used by the instance.
|
98
|
+
:param pulumi.Input['InstanceFromMachineImageSourceMachineImageEncryptionKeyArgs'] source_machine_image_encryption_key: Encryption key for the source machine image.
|
95
99
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The list of tags attached to the instance.
|
96
100
|
:param pulumi.Input[str] zone: The zone that the machine should be created in. If not
|
97
101
|
set, the provider zone is used.
|
@@ -123,6 +127,8 @@ class InstanceFromMachineImageArgs:
|
|
123
127
|
pulumi.set(__self__, "guest_accelerators", guest_accelerators)
|
124
128
|
if hostname is not None:
|
125
129
|
pulumi.set(__self__, "hostname", hostname)
|
130
|
+
if instance_encryption_key is not None:
|
131
|
+
pulumi.set(__self__, "instance_encryption_key", instance_encryption_key)
|
126
132
|
if key_revocation_action_type is not None:
|
127
133
|
pulumi.set(__self__, "key_revocation_action_type", key_revocation_action_type)
|
128
134
|
if labels is not None:
|
@@ -157,6 +163,8 @@ class InstanceFromMachineImageArgs:
|
|
157
163
|
pulumi.set(__self__, "service_account", service_account)
|
158
164
|
if shielded_instance_config is not None:
|
159
165
|
pulumi.set(__self__, "shielded_instance_config", shielded_instance_config)
|
166
|
+
if source_machine_image_encryption_key is not None:
|
167
|
+
pulumi.set(__self__, "source_machine_image_encryption_key", source_machine_image_encryption_key)
|
160
168
|
if tags is not None:
|
161
169
|
pulumi.set(__self__, "tags", tags)
|
162
170
|
if zone is not None:
|
@@ -297,6 +305,18 @@ class InstanceFromMachineImageArgs:
|
|
297
305
|
def hostname(self, value: Optional[pulumi.Input[str]]):
|
298
306
|
pulumi.set(self, "hostname", value)
|
299
307
|
|
308
|
+
@property
|
309
|
+
@pulumi.getter(name="instanceEncryptionKey")
|
310
|
+
def instance_encryption_key(self) -> Optional[pulumi.Input['InstanceFromMachineImageInstanceEncryptionKeyArgs']]:
|
311
|
+
"""
|
312
|
+
Encryption key used to provide data encryption on the given instance.
|
313
|
+
"""
|
314
|
+
return pulumi.get(self, "instance_encryption_key")
|
315
|
+
|
316
|
+
@instance_encryption_key.setter
|
317
|
+
def instance_encryption_key(self, value: Optional[pulumi.Input['InstanceFromMachineImageInstanceEncryptionKeyArgs']]):
|
318
|
+
pulumi.set(self, "instance_encryption_key", value)
|
319
|
+
|
300
320
|
@property
|
301
321
|
@pulumi.getter(name="keyRevocationActionType")
|
302
322
|
def key_revocation_action_type(self) -> Optional[pulumi.Input[str]]:
|
@@ -507,6 +527,18 @@ class InstanceFromMachineImageArgs:
|
|
507
527
|
def shielded_instance_config(self, value: Optional[pulumi.Input['InstanceFromMachineImageShieldedInstanceConfigArgs']]):
|
508
528
|
pulumi.set(self, "shielded_instance_config", value)
|
509
529
|
|
530
|
+
@property
|
531
|
+
@pulumi.getter(name="sourceMachineImageEncryptionKey")
|
532
|
+
def source_machine_image_encryption_key(self) -> Optional[pulumi.Input['InstanceFromMachineImageSourceMachineImageEncryptionKeyArgs']]:
|
533
|
+
"""
|
534
|
+
Encryption key for the source machine image.
|
535
|
+
"""
|
536
|
+
return pulumi.get(self, "source_machine_image_encryption_key")
|
537
|
+
|
538
|
+
@source_machine_image_encryption_key.setter
|
539
|
+
def source_machine_image_encryption_key(self, value: Optional[pulumi.Input['InstanceFromMachineImageSourceMachineImageEncryptionKeyArgs']]):
|
540
|
+
pulumi.set(self, "source_machine_image_encryption_key", value)
|
541
|
+
|
510
542
|
@property
|
511
543
|
@pulumi.getter
|
512
544
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -558,6 +590,7 @@ class _InstanceFromMachineImageState:
|
|
558
590
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
559
591
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceFromMachineImageGuestAcceleratorArgs']]]] = None,
|
560
592
|
hostname: Optional[pulumi.Input[str]] = None,
|
593
|
+
instance_encryption_key: Optional[pulumi.Input['InstanceFromMachineImageInstanceEncryptionKeyArgs']] = None,
|
561
594
|
instance_id: Optional[pulumi.Input[str]] = None,
|
562
595
|
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
563
596
|
label_fingerprint: Optional[pulumi.Input[str]] = None,
|
@@ -582,6 +615,7 @@ class _InstanceFromMachineImageState:
|
|
582
615
|
service_account: Optional[pulumi.Input['InstanceFromMachineImageServiceAccountArgs']] = None,
|
583
616
|
shielded_instance_config: Optional[pulumi.Input['InstanceFromMachineImageShieldedInstanceConfigArgs']] = None,
|
584
617
|
source_machine_image: Optional[pulumi.Input[str]] = None,
|
618
|
+
source_machine_image_encryption_key: Optional[pulumi.Input['InstanceFromMachineImageSourceMachineImageEncryptionKeyArgs']] = None,
|
585
619
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
586
620
|
tags_fingerprint: Optional[pulumi.Input[str]] = None,
|
587
621
|
zone: Optional[pulumi.Input[str]] = None):
|
@@ -606,6 +640,7 @@ class _InstanceFromMachineImageState:
|
|
606
640
|
:param pulumi.Input[str] hostname: A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid. Valid format is a series of
|
607
641
|
labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not
|
608
642
|
exceed 253 characters. Changing this forces a new resource to be created.
|
643
|
+
:param pulumi.Input['InstanceFromMachineImageInstanceEncryptionKeyArgs'] instance_encryption_key: Encryption key used to provide data encryption on the given instance.
|
609
644
|
:param pulumi.Input[str] instance_id: The server-assigned unique identifier of this instance.
|
610
645
|
:param pulumi.Input[str] key_revocation_action_type: Action to be taken when a customer's encryption key is revoked. Supports "STOP" and "NONE", with "NONE" being the
|
611
646
|
default.
|
@@ -639,6 +674,7 @@ class _InstanceFromMachineImageState:
|
|
639
674
|
image to create the instance based on.
|
640
675
|
|
641
676
|
- - -
|
677
|
+
:param pulumi.Input['InstanceFromMachineImageSourceMachineImageEncryptionKeyArgs'] source_machine_image_encryption_key: Encryption key for the source machine image.
|
642
678
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The list of tags attached to the instance.
|
643
679
|
:param pulumi.Input[str] tags_fingerprint: The unique fingerprint of the tags.
|
644
680
|
:param pulumi.Input[str] zone: The zone that the machine should be created in. If not
|
@@ -682,6 +718,8 @@ class _InstanceFromMachineImageState:
|
|
682
718
|
pulumi.set(__self__, "guest_accelerators", guest_accelerators)
|
683
719
|
if hostname is not None:
|
684
720
|
pulumi.set(__self__, "hostname", hostname)
|
721
|
+
if instance_encryption_key is not None:
|
722
|
+
pulumi.set(__self__, "instance_encryption_key", instance_encryption_key)
|
685
723
|
if instance_id is not None:
|
686
724
|
pulumi.set(__self__, "instance_id", instance_id)
|
687
725
|
if key_revocation_action_type is not None:
|
@@ -730,6 +768,8 @@ class _InstanceFromMachineImageState:
|
|
730
768
|
pulumi.set(__self__, "shielded_instance_config", shielded_instance_config)
|
731
769
|
if source_machine_image is not None:
|
732
770
|
pulumi.set(__self__, "source_machine_image", source_machine_image)
|
771
|
+
if source_machine_image_encryption_key is not None:
|
772
|
+
pulumi.set(__self__, "source_machine_image_encryption_key", source_machine_image_encryption_key)
|
733
773
|
if tags is not None:
|
734
774
|
pulumi.set(__self__, "tags", tags)
|
735
775
|
if tags_fingerprint is not None:
|
@@ -928,6 +968,18 @@ class _InstanceFromMachineImageState:
|
|
928
968
|
def hostname(self, value: Optional[pulumi.Input[str]]):
|
929
969
|
pulumi.set(self, "hostname", value)
|
930
970
|
|
971
|
+
@property
|
972
|
+
@pulumi.getter(name="instanceEncryptionKey")
|
973
|
+
def instance_encryption_key(self) -> Optional[pulumi.Input['InstanceFromMachineImageInstanceEncryptionKeyArgs']]:
|
974
|
+
"""
|
975
|
+
Encryption key used to provide data encryption on the given instance.
|
976
|
+
"""
|
977
|
+
return pulumi.get(self, "instance_encryption_key")
|
978
|
+
|
979
|
+
@instance_encryption_key.setter
|
980
|
+
def instance_encryption_key(self, value: Optional[pulumi.Input['InstanceFromMachineImageInstanceEncryptionKeyArgs']]):
|
981
|
+
pulumi.set(self, "instance_encryption_key", value)
|
982
|
+
|
931
983
|
@property
|
932
984
|
@pulumi.getter(name="instanceId")
|
933
985
|
def instance_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -1225,6 +1277,18 @@ class _InstanceFromMachineImageState:
|
|
1225
1277
|
def source_machine_image(self, value: Optional[pulumi.Input[str]]):
|
1226
1278
|
pulumi.set(self, "source_machine_image", value)
|
1227
1279
|
|
1280
|
+
@property
|
1281
|
+
@pulumi.getter(name="sourceMachineImageEncryptionKey")
|
1282
|
+
def source_machine_image_encryption_key(self) -> Optional[pulumi.Input['InstanceFromMachineImageSourceMachineImageEncryptionKeyArgs']]:
|
1283
|
+
"""
|
1284
|
+
Encryption key for the source machine image.
|
1285
|
+
"""
|
1286
|
+
return pulumi.get(self, "source_machine_image_encryption_key")
|
1287
|
+
|
1288
|
+
@source_machine_image_encryption_key.setter
|
1289
|
+
def source_machine_image_encryption_key(self, value: Optional[pulumi.Input['InstanceFromMachineImageSourceMachineImageEncryptionKeyArgs']]):
|
1290
|
+
pulumi.set(self, "source_machine_image_encryption_key", value)
|
1291
|
+
|
1228
1292
|
@property
|
1229
1293
|
@pulumi.getter
|
1230
1294
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -1284,6 +1348,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1284
1348
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
1285
1349
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceFromMachineImageGuestAcceleratorArgs', 'InstanceFromMachineImageGuestAcceleratorArgsDict']]]]] = None,
|
1286
1350
|
hostname: Optional[pulumi.Input[str]] = None,
|
1351
|
+
instance_encryption_key: Optional[pulumi.Input[Union['InstanceFromMachineImageInstanceEncryptionKeyArgs', 'InstanceFromMachineImageInstanceEncryptionKeyArgsDict']]] = None,
|
1287
1352
|
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
1288
1353
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1289
1354
|
machine_type: Optional[pulumi.Input[str]] = None,
|
@@ -1302,6 +1367,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1302
1367
|
service_account: Optional[pulumi.Input[Union['InstanceFromMachineImageServiceAccountArgs', 'InstanceFromMachineImageServiceAccountArgsDict']]] = None,
|
1303
1368
|
shielded_instance_config: Optional[pulumi.Input[Union['InstanceFromMachineImageShieldedInstanceConfigArgs', 'InstanceFromMachineImageShieldedInstanceConfigArgsDict']]] = None,
|
1304
1369
|
source_machine_image: Optional[pulumi.Input[str]] = None,
|
1370
|
+
source_machine_image_encryption_key: Optional[pulumi.Input[Union['InstanceFromMachineImageSourceMachineImageEncryptionKeyArgs', 'InstanceFromMachineImageSourceMachineImageEncryptionKeyArgsDict']]] = None,
|
1305
1371
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1306
1372
|
zone: Optional[pulumi.Input[str]] = None,
|
1307
1373
|
__props__=None):
|
@@ -1345,6 +1411,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1345
1411
|
:param pulumi.Input[str] hostname: A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid. Valid format is a series of
|
1346
1412
|
labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not
|
1347
1413
|
exceed 253 characters. Changing this forces a new resource to be created.
|
1414
|
+
:param pulumi.Input[Union['InstanceFromMachineImageInstanceEncryptionKeyArgs', 'InstanceFromMachineImageInstanceEncryptionKeyArgsDict']] instance_encryption_key: Encryption key used to provide data encryption on the given instance.
|
1348
1415
|
:param pulumi.Input[str] key_revocation_action_type: Action to be taken when a customer's encryption key is revoked. Supports "STOP" and "NONE", with "NONE" being the
|
1349
1416
|
default.
|
1350
1417
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A set of key/value label pairs assigned to the instance. **Note**: This field is non-authoritative, and will only manage
|
@@ -1372,6 +1439,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1372
1439
|
image to create the instance based on.
|
1373
1440
|
|
1374
1441
|
- - -
|
1442
|
+
:param pulumi.Input[Union['InstanceFromMachineImageSourceMachineImageEncryptionKeyArgs', 'InstanceFromMachineImageSourceMachineImageEncryptionKeyArgsDict']] source_machine_image_encryption_key: Encryption key for the source machine image.
|
1375
1443
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The list of tags attached to the instance.
|
1376
1444
|
:param pulumi.Input[str] zone: The zone that the machine should be created in. If not
|
1377
1445
|
set, the provider zone is used.
|
@@ -1439,6 +1507,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1439
1507
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
1440
1508
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceFromMachineImageGuestAcceleratorArgs', 'InstanceFromMachineImageGuestAcceleratorArgsDict']]]]] = None,
|
1441
1509
|
hostname: Optional[pulumi.Input[str]] = None,
|
1510
|
+
instance_encryption_key: Optional[pulumi.Input[Union['InstanceFromMachineImageInstanceEncryptionKeyArgs', 'InstanceFromMachineImageInstanceEncryptionKeyArgsDict']]] = None,
|
1442
1511
|
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
1443
1512
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1444
1513
|
machine_type: Optional[pulumi.Input[str]] = None,
|
@@ -1457,6 +1526,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1457
1526
|
service_account: Optional[pulumi.Input[Union['InstanceFromMachineImageServiceAccountArgs', 'InstanceFromMachineImageServiceAccountArgsDict']]] = None,
|
1458
1527
|
shielded_instance_config: Optional[pulumi.Input[Union['InstanceFromMachineImageShieldedInstanceConfigArgs', 'InstanceFromMachineImageShieldedInstanceConfigArgsDict']]] = None,
|
1459
1528
|
source_machine_image: Optional[pulumi.Input[str]] = None,
|
1529
|
+
source_machine_image_encryption_key: Optional[pulumi.Input[Union['InstanceFromMachineImageSourceMachineImageEncryptionKeyArgs', 'InstanceFromMachineImageSourceMachineImageEncryptionKeyArgsDict']]] = None,
|
1460
1530
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1461
1531
|
zone: Optional[pulumi.Input[str]] = None,
|
1462
1532
|
__props__=None):
|
@@ -1478,6 +1548,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1478
1548
|
__props__.__dict__["enable_display"] = enable_display
|
1479
1549
|
__props__.__dict__["guest_accelerators"] = guest_accelerators
|
1480
1550
|
__props__.__dict__["hostname"] = hostname
|
1551
|
+
__props__.__dict__["instance_encryption_key"] = instance_encryption_key
|
1481
1552
|
__props__.__dict__["key_revocation_action_type"] = key_revocation_action_type
|
1482
1553
|
__props__.__dict__["labels"] = labels
|
1483
1554
|
__props__.__dict__["machine_type"] = machine_type
|
@@ -1498,6 +1569,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1498
1569
|
if source_machine_image is None and not opts.urn:
|
1499
1570
|
raise TypeError("Missing required property 'source_machine_image'")
|
1500
1571
|
__props__.__dict__["source_machine_image"] = source_machine_image
|
1572
|
+
__props__.__dict__["source_machine_image_encryption_key"] = source_machine_image_encryption_key
|
1501
1573
|
__props__.__dict__["tags"] = tags
|
1502
1574
|
__props__.__dict__["zone"] = zone
|
1503
1575
|
__props__.__dict__["attached_disks"] = None
|
@@ -1541,6 +1613,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1541
1613
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
1542
1614
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceFromMachineImageGuestAcceleratorArgs', 'InstanceFromMachineImageGuestAcceleratorArgsDict']]]]] = None,
|
1543
1615
|
hostname: Optional[pulumi.Input[str]] = None,
|
1616
|
+
instance_encryption_key: Optional[pulumi.Input[Union['InstanceFromMachineImageInstanceEncryptionKeyArgs', 'InstanceFromMachineImageInstanceEncryptionKeyArgsDict']]] = None,
|
1544
1617
|
instance_id: Optional[pulumi.Input[str]] = None,
|
1545
1618
|
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
1546
1619
|
label_fingerprint: Optional[pulumi.Input[str]] = None,
|
@@ -1565,6 +1638,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1565
1638
|
service_account: Optional[pulumi.Input[Union['InstanceFromMachineImageServiceAccountArgs', 'InstanceFromMachineImageServiceAccountArgsDict']]] = None,
|
1566
1639
|
shielded_instance_config: Optional[pulumi.Input[Union['InstanceFromMachineImageShieldedInstanceConfigArgs', 'InstanceFromMachineImageShieldedInstanceConfigArgsDict']]] = None,
|
1567
1640
|
source_machine_image: Optional[pulumi.Input[str]] = None,
|
1641
|
+
source_machine_image_encryption_key: Optional[pulumi.Input[Union['InstanceFromMachineImageSourceMachineImageEncryptionKeyArgs', 'InstanceFromMachineImageSourceMachineImageEncryptionKeyArgsDict']]] = None,
|
1568
1642
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1569
1643
|
tags_fingerprint: Optional[pulumi.Input[str]] = None,
|
1570
1644
|
zone: Optional[pulumi.Input[str]] = None) -> 'InstanceFromMachineImage':
|
@@ -1594,6 +1668,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1594
1668
|
:param pulumi.Input[str] hostname: A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid. Valid format is a series of
|
1595
1669
|
labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not
|
1596
1670
|
exceed 253 characters. Changing this forces a new resource to be created.
|
1671
|
+
:param pulumi.Input[Union['InstanceFromMachineImageInstanceEncryptionKeyArgs', 'InstanceFromMachineImageInstanceEncryptionKeyArgsDict']] instance_encryption_key: Encryption key used to provide data encryption on the given instance.
|
1597
1672
|
:param pulumi.Input[str] instance_id: The server-assigned unique identifier of this instance.
|
1598
1673
|
:param pulumi.Input[str] key_revocation_action_type: Action to be taken when a customer's encryption key is revoked. Supports "STOP" and "NONE", with "NONE" being the
|
1599
1674
|
default.
|
@@ -1627,6 +1702,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1627
1702
|
image to create the instance based on.
|
1628
1703
|
|
1629
1704
|
- - -
|
1705
|
+
:param pulumi.Input[Union['InstanceFromMachineImageSourceMachineImageEncryptionKeyArgs', 'InstanceFromMachineImageSourceMachineImageEncryptionKeyArgsDict']] source_machine_image_encryption_key: Encryption key for the source machine image.
|
1630
1706
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The list of tags attached to the instance.
|
1631
1707
|
:param pulumi.Input[str] tags_fingerprint: The unique fingerprint of the tags.
|
1632
1708
|
:param pulumi.Input[str] zone: The zone that the machine should be created in. If not
|
@@ -1658,6 +1734,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1658
1734
|
__props__.__dict__["enable_display"] = enable_display
|
1659
1735
|
__props__.__dict__["guest_accelerators"] = guest_accelerators
|
1660
1736
|
__props__.__dict__["hostname"] = hostname
|
1737
|
+
__props__.__dict__["instance_encryption_key"] = instance_encryption_key
|
1661
1738
|
__props__.__dict__["instance_id"] = instance_id
|
1662
1739
|
__props__.__dict__["key_revocation_action_type"] = key_revocation_action_type
|
1663
1740
|
__props__.__dict__["label_fingerprint"] = label_fingerprint
|
@@ -1682,6 +1759,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1682
1759
|
__props__.__dict__["service_account"] = service_account
|
1683
1760
|
__props__.__dict__["shielded_instance_config"] = shielded_instance_config
|
1684
1761
|
__props__.__dict__["source_machine_image"] = source_machine_image
|
1762
|
+
__props__.__dict__["source_machine_image_encryption_key"] = source_machine_image_encryption_key
|
1685
1763
|
__props__.__dict__["tags"] = tags
|
1686
1764
|
__props__.__dict__["tags_fingerprint"] = tags_fingerprint
|
1687
1765
|
__props__.__dict__["zone"] = zone
|
@@ -1814,6 +1892,14 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1814
1892
|
"""
|
1815
1893
|
return pulumi.get(self, "hostname")
|
1816
1894
|
|
1895
|
+
@property
|
1896
|
+
@pulumi.getter(name="instanceEncryptionKey")
|
1897
|
+
def instance_encryption_key(self) -> pulumi.Output['outputs.InstanceFromMachineImageInstanceEncryptionKey']:
|
1898
|
+
"""
|
1899
|
+
Encryption key used to provide data encryption on the given instance.
|
1900
|
+
"""
|
1901
|
+
return pulumi.get(self, "instance_encryption_key")
|
1902
|
+
|
1817
1903
|
@property
|
1818
1904
|
@pulumi.getter(name="instanceId")
|
1819
1905
|
def instance_id(self) -> pulumi.Output[str]:
|
@@ -2015,6 +2101,14 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
2015
2101
|
"""
|
2016
2102
|
return pulumi.get(self, "source_machine_image")
|
2017
2103
|
|
2104
|
+
@property
|
2105
|
+
@pulumi.getter(name="sourceMachineImageEncryptionKey")
|
2106
|
+
def source_machine_image_encryption_key(self) -> pulumi.Output[Optional['outputs.InstanceFromMachineImageSourceMachineImageEncryptionKey']]:
|
2107
|
+
"""
|
2108
|
+
Encryption key for the source machine image.
|
2109
|
+
"""
|
2110
|
+
return pulumi.get(self, "source_machine_image_encryption_key")
|
2111
|
+
|
2018
2112
|
@property
|
2019
2113
|
@pulumi.getter
|
2020
2114
|
def tags(self) -> pulumi.Output[Sequence[str]]:
|
@@ -34,6 +34,7 @@ class InstanceFromTemplateArgs:
|
|
34
34
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
35
35
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceFromTemplateGuestAcceleratorArgs']]]] = None,
|
36
36
|
hostname: Optional[pulumi.Input[str]] = None,
|
37
|
+
instance_encryption_key: Optional[pulumi.Input['InstanceFromTemplateInstanceEncryptionKeyArgs']] = None,
|
37
38
|
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
38
39
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
39
40
|
machine_type: Optional[pulumi.Input[str]] = None,
|
@@ -75,6 +76,7 @@ class InstanceFromTemplateArgs:
|
|
75
76
|
:param pulumi.Input[str] hostname: A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid. Valid format is a series of
|
76
77
|
labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not
|
77
78
|
exceed 253 characters. Changing this forces a new resource to be created.
|
79
|
+
:param pulumi.Input['InstanceFromTemplateInstanceEncryptionKeyArgs'] instance_encryption_key: Encryption key used to provide data encryption on the given instance.
|
78
80
|
:param pulumi.Input[str] key_revocation_action_type: Action to be taken when a customer's encryption key is revoked. Supports "STOP" and "NONE", with "NONE" being the
|
79
81
|
default.
|
80
82
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A set of key/value label pairs assigned to the instance. **Note**: This field is non-authoritative, and will only manage
|
@@ -132,6 +134,8 @@ class InstanceFromTemplateArgs:
|
|
132
134
|
pulumi.set(__self__, "guest_accelerators", guest_accelerators)
|
133
135
|
if hostname is not None:
|
134
136
|
pulumi.set(__self__, "hostname", hostname)
|
137
|
+
if instance_encryption_key is not None:
|
138
|
+
pulumi.set(__self__, "instance_encryption_key", instance_encryption_key)
|
135
139
|
if key_revocation_action_type is not None:
|
136
140
|
pulumi.set(__self__, "key_revocation_action_type", key_revocation_action_type)
|
137
141
|
if labels is not None:
|
@@ -333,6 +337,18 @@ class InstanceFromTemplateArgs:
|
|
333
337
|
def hostname(self, value: Optional[pulumi.Input[str]]):
|
334
338
|
pulumi.set(self, "hostname", value)
|
335
339
|
|
340
|
+
@property
|
341
|
+
@pulumi.getter(name="instanceEncryptionKey")
|
342
|
+
def instance_encryption_key(self) -> Optional[pulumi.Input['InstanceFromTemplateInstanceEncryptionKeyArgs']]:
|
343
|
+
"""
|
344
|
+
Encryption key used to provide data encryption on the given instance.
|
345
|
+
"""
|
346
|
+
return pulumi.get(self, "instance_encryption_key")
|
347
|
+
|
348
|
+
@instance_encryption_key.setter
|
349
|
+
def instance_encryption_key(self, value: Optional[pulumi.Input['InstanceFromTemplateInstanceEncryptionKeyArgs']]):
|
350
|
+
pulumi.set(self, "instance_encryption_key", value)
|
351
|
+
|
336
352
|
@property
|
337
353
|
@pulumi.getter(name="keyRevocationActionType")
|
338
354
|
def key_revocation_action_type(self) -> Optional[pulumi.Input[str]]:
|
@@ -604,6 +620,7 @@ class _InstanceFromTemplateState:
|
|
604
620
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
605
621
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceFromTemplateGuestAcceleratorArgs']]]] = None,
|
606
622
|
hostname: Optional[pulumi.Input[str]] = None,
|
623
|
+
instance_encryption_key: Optional[pulumi.Input['InstanceFromTemplateInstanceEncryptionKeyArgs']] = None,
|
607
624
|
instance_id: Optional[pulumi.Input[str]] = None,
|
608
625
|
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
609
626
|
label_fingerprint: Optional[pulumi.Input[str]] = None,
|
@@ -652,6 +669,7 @@ class _InstanceFromTemplateState:
|
|
652
669
|
:param pulumi.Input[str] hostname: A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid. Valid format is a series of
|
653
670
|
labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not
|
654
671
|
exceed 253 characters. Changing this forces a new resource to be created.
|
672
|
+
:param pulumi.Input['InstanceFromTemplateInstanceEncryptionKeyArgs'] instance_encryption_key: Encryption key used to provide data encryption on the given instance.
|
655
673
|
:param pulumi.Input[str] instance_id: The server-assigned unique identifier of this instance.
|
656
674
|
:param pulumi.Input[str] key_revocation_action_type: Action to be taken when a customer's encryption key is revoked. Supports "STOP" and "NONE", with "NONE" being the
|
657
675
|
default.
|
@@ -727,6 +745,8 @@ class _InstanceFromTemplateState:
|
|
727
745
|
pulumi.set(__self__, "guest_accelerators", guest_accelerators)
|
728
746
|
if hostname is not None:
|
729
747
|
pulumi.set(__self__, "hostname", hostname)
|
748
|
+
if instance_encryption_key is not None:
|
749
|
+
pulumi.set(__self__, "instance_encryption_key", instance_encryption_key)
|
730
750
|
if instance_id is not None:
|
731
751
|
pulumi.set(__self__, "instance_id", instance_id)
|
732
752
|
if key_revocation_action_type is not None:
|
@@ -973,6 +993,18 @@ class _InstanceFromTemplateState:
|
|
973
993
|
def hostname(self, value: Optional[pulumi.Input[str]]):
|
974
994
|
pulumi.set(self, "hostname", value)
|
975
995
|
|
996
|
+
@property
|
997
|
+
@pulumi.getter(name="instanceEncryptionKey")
|
998
|
+
def instance_encryption_key(self) -> Optional[pulumi.Input['InstanceFromTemplateInstanceEncryptionKeyArgs']]:
|
999
|
+
"""
|
1000
|
+
Encryption key used to provide data encryption on the given instance.
|
1001
|
+
"""
|
1002
|
+
return pulumi.get(self, "instance_encryption_key")
|
1003
|
+
|
1004
|
+
@instance_encryption_key.setter
|
1005
|
+
def instance_encryption_key(self, value: Optional[pulumi.Input['InstanceFromTemplateInstanceEncryptionKeyArgs']]):
|
1006
|
+
pulumi.set(self, "instance_encryption_key", value)
|
1007
|
+
|
976
1008
|
@property
|
977
1009
|
@pulumi.getter(name="instanceId")
|
978
1010
|
def instance_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -1330,6 +1362,7 @@ class InstanceFromTemplate(pulumi.CustomResource):
|
|
1330
1362
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
1331
1363
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceFromTemplateGuestAcceleratorArgs', 'InstanceFromTemplateGuestAcceleratorArgsDict']]]]] = None,
|
1332
1364
|
hostname: Optional[pulumi.Input[str]] = None,
|
1365
|
+
instance_encryption_key: Optional[pulumi.Input[Union['InstanceFromTemplateInstanceEncryptionKeyArgs', 'InstanceFromTemplateInstanceEncryptionKeyArgsDict']]] = None,
|
1333
1366
|
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
1334
1367
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1335
1368
|
machine_type: Optional[pulumi.Input[str]] = None,
|
@@ -1414,6 +1447,7 @@ class InstanceFromTemplate(pulumi.CustomResource):
|
|
1414
1447
|
:param pulumi.Input[str] hostname: A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid. Valid format is a series of
|
1415
1448
|
labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not
|
1416
1449
|
exceed 253 characters. Changing this forces a new resource to be created.
|
1450
|
+
:param pulumi.Input[Union['InstanceFromTemplateInstanceEncryptionKeyArgs', 'InstanceFromTemplateInstanceEncryptionKeyArgsDict']] instance_encryption_key: Encryption key used to provide data encryption on the given instance.
|
1417
1451
|
:param pulumi.Input[str] key_revocation_action_type: Action to be taken when a customer's encryption key is revoked. Supports "STOP" and "NONE", with "NONE" being the
|
1418
1452
|
default.
|
1419
1453
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A set of key/value label pairs assigned to the instance. **Note**: This field is non-authoritative, and will only manage
|
@@ -1530,6 +1564,7 @@ class InstanceFromTemplate(pulumi.CustomResource):
|
|
1530
1564
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
1531
1565
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceFromTemplateGuestAcceleratorArgs', 'InstanceFromTemplateGuestAcceleratorArgsDict']]]]] = None,
|
1532
1566
|
hostname: Optional[pulumi.Input[str]] = None,
|
1567
|
+
instance_encryption_key: Optional[pulumi.Input[Union['InstanceFromTemplateInstanceEncryptionKeyArgs', 'InstanceFromTemplateInstanceEncryptionKeyArgsDict']]] = None,
|
1533
1568
|
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
1534
1569
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1535
1570
|
machine_type: Optional[pulumi.Input[str]] = None,
|
@@ -1572,6 +1607,7 @@ class InstanceFromTemplate(pulumi.CustomResource):
|
|
1572
1607
|
__props__.__dict__["enable_display"] = enable_display
|
1573
1608
|
__props__.__dict__["guest_accelerators"] = guest_accelerators
|
1574
1609
|
__props__.__dict__["hostname"] = hostname
|
1610
|
+
__props__.__dict__["instance_encryption_key"] = instance_encryption_key
|
1575
1611
|
__props__.__dict__["key_revocation_action_type"] = key_revocation_action_type
|
1576
1612
|
__props__.__dict__["labels"] = labels
|
1577
1613
|
__props__.__dict__["machine_type"] = machine_type
|
@@ -1633,6 +1669,7 @@ class InstanceFromTemplate(pulumi.CustomResource):
|
|
1633
1669
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
1634
1670
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceFromTemplateGuestAcceleratorArgs', 'InstanceFromTemplateGuestAcceleratorArgsDict']]]]] = None,
|
1635
1671
|
hostname: Optional[pulumi.Input[str]] = None,
|
1672
|
+
instance_encryption_key: Optional[pulumi.Input[Union['InstanceFromTemplateInstanceEncryptionKeyArgs', 'InstanceFromTemplateInstanceEncryptionKeyArgsDict']]] = None,
|
1636
1673
|
instance_id: Optional[pulumi.Input[str]] = None,
|
1637
1674
|
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
1638
1675
|
label_fingerprint: Optional[pulumi.Input[str]] = None,
|
@@ -1686,6 +1723,7 @@ class InstanceFromTemplate(pulumi.CustomResource):
|
|
1686
1723
|
:param pulumi.Input[str] hostname: A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid. Valid format is a series of
|
1687
1724
|
labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not
|
1688
1725
|
exceed 253 characters. Changing this forces a new resource to be created.
|
1726
|
+
:param pulumi.Input[Union['InstanceFromTemplateInstanceEncryptionKeyArgs', 'InstanceFromTemplateInstanceEncryptionKeyArgsDict']] instance_encryption_key: Encryption key used to provide data encryption on the given instance.
|
1689
1727
|
:param pulumi.Input[str] instance_id: The server-assigned unique identifier of this instance.
|
1690
1728
|
:param pulumi.Input[str] key_revocation_action_type: Action to be taken when a customer's encryption key is revoked. Supports "STOP" and "NONE", with "NONE" being the
|
1691
1729
|
default.
|
@@ -1749,6 +1787,7 @@ class InstanceFromTemplate(pulumi.CustomResource):
|
|
1749
1787
|
__props__.__dict__["enable_display"] = enable_display
|
1750
1788
|
__props__.__dict__["guest_accelerators"] = guest_accelerators
|
1751
1789
|
__props__.__dict__["hostname"] = hostname
|
1790
|
+
__props__.__dict__["instance_encryption_key"] = instance_encryption_key
|
1752
1791
|
__props__.__dict__["instance_id"] = instance_id
|
1753
1792
|
__props__.__dict__["key_revocation_action_type"] = key_revocation_action_type
|
1754
1793
|
__props__.__dict__["label_fingerprint"] = label_fingerprint
|
@@ -1905,6 +1944,14 @@ class InstanceFromTemplate(pulumi.CustomResource):
|
|
1905
1944
|
"""
|
1906
1945
|
return pulumi.get(self, "hostname")
|
1907
1946
|
|
1947
|
+
@property
|
1948
|
+
@pulumi.getter(name="instanceEncryptionKey")
|
1949
|
+
def instance_encryption_key(self) -> pulumi.Output['outputs.InstanceFromTemplateInstanceEncryptionKey']:
|
1950
|
+
"""
|
1951
|
+
Encryption key used to provide data encryption on the given instance.
|
1952
|
+
"""
|
1953
|
+
return pulumi.get(self, "instance_encryption_key")
|
1954
|
+
|
1908
1955
|
@property
|
1909
1956
|
@pulumi.getter(name="instanceId")
|
1910
1957
|
def instance_id(self) -> pulumi.Output[str]:
|