pulumi-gcp 8.42.0a1756709266__py3-none-any.whl → 8.42.0a1756968228__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/bigquery/app_profile.py +14 -49
- pulumi_gcp/bigquery/dataset_access.py +4 -8
- pulumi_gcp/bigquery/table.py +7 -21
- pulumi_gcp/bigtable/app_profile.py +14 -49
- pulumi_gcp/bigtable/table.py +42 -42
- pulumi_gcp/cloudbuild/worker_pool.py +28 -21
- pulumi_gcp/cloudfunctions/function.py +4 -8
- pulumi_gcp/composer/environment.py +28 -49
- pulumi_gcp/compute/instance_from_machine_image.py +75 -110
- pulumi_gcp/compute/instance_from_template.py +75 -110
- pulumi_gcp/compute/instance_group_manager.py +7 -14
- pulumi_gcp/compute/instance_template.py +7 -14
- pulumi_gcp/compute/interconnect.py +4 -8
- pulumi_gcp/compute/region_instance_group_manager.py +7 -14
- pulumi_gcp/container/aws_cluster.py +28 -42
- pulumi_gcp/container/aws_node_pool.py +28 -42
- pulumi_gcp/container/azure_cluster.py +35 -70
- pulumi_gcp/container/azure_node_pool.py +28 -42
- pulumi_gcp/dataplex/asset.py +28 -21
- pulumi_gcp/dataplex/zone.py +28 -21
- pulumi_gcp/dataproc/cluster.py +21 -14
- pulumi_gcp/dataproc/workflow_template.py +42 -105
- pulumi_gcp/logging/billing_account_bucket_config.py +7 -21
- pulumi_gcp/logging/folder_bucket_config.py +7 -21
- pulumi_gcp/logging/organization_bucket_config.py +7 -21
- pulumi_gcp/monitoring/dashboard.py +7 -14
- pulumi_gcp/organizations/project.py +7 -21
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/database_instance.py +7 -14
- pulumi_gcp/storage/bucket.py +7 -14
- {pulumi_gcp-8.42.0a1756709266.dist-info → pulumi_gcp-8.42.0a1756968228.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.42.0a1756709266.dist-info → pulumi_gcp-8.42.0a1756968228.dist-info}/RECORD +34 -34
- {pulumi_gcp-8.42.0a1756709266.dist-info → pulumi_gcp-8.42.0a1756968228.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.42.0a1756709266.dist-info → pulumi_gcp-8.42.0a1756968228.dist-info}/top_level.txt +0 -0
@@ -61,22 +61,19 @@ class InstanceFromMachineImageArgs:
|
|
61
61
|
- - -
|
62
62
|
:param pulumi.Input['InstanceFromMachineImageAdvancedMachineFeaturesArgs'] advanced_machine_features: Controls for advanced machine-related behavior features.
|
63
63
|
:param pulumi.Input[_builtins.bool] can_ip_forward: Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
|
64
|
-
:param pulumi.Input['InstanceFromMachineImageConfidentialInstanceConfigArgs'] confidential_instance_config: The Confidential VM config being used by the instance.
|
65
|
-
to create.
|
64
|
+
:param pulumi.Input['InstanceFromMachineImageConfidentialInstanceConfigArgs'] confidential_instance_config: The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
|
66
65
|
:param pulumi.Input[_builtins.bool] deletion_protection: Whether deletion protection is enabled on this instance.
|
67
66
|
:param pulumi.Input[_builtins.str] description: A brief description of the resource.
|
68
67
|
:param pulumi.Input[_builtins.str] desired_status: Desired status of the instance. Either "RUNNING", "SUSPENDED" or "TERMINATED".
|
69
68
|
:param pulumi.Input[_builtins.bool] enable_display: Whether the instance has virtual displays enabled.
|
70
69
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceFromMachineImageGuestAcceleratorArgs']]] guest_accelerators: List of the type and count of accelerator cards attached to the instance.
|
71
|
-
:param pulumi.Input[_builtins.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
|
72
|
-
labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not
|
73
|
-
exceed 253 characters. Changing this forces a new resource to be created.
|
70
|
+
:param pulumi.Input[_builtins.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 labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not exceed 253 characters. Changing this forces a new resource to be created.
|
74
71
|
:param pulumi.Input['InstanceFromMachineImageInstanceEncryptionKeyArgs'] instance_encryption_key: Encryption key used to provide data encryption on the given instance.
|
75
|
-
:param pulumi.Input[_builtins.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
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
72
|
+
:param pulumi.Input[_builtins.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.
|
73
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: A set of key/value label pairs assigned to the instance.
|
74
|
+
|
75
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
76
|
+
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
80
77
|
:param pulumi.Input[_builtins.str] machine_type: The machine type to create.
|
81
78
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] metadata: Metadata key/value pairs made available within the instance.
|
82
79
|
:param pulumi.Input[_builtins.str] metadata_startup_script: Metadata startup scripts made available within the instance.
|
@@ -84,12 +81,10 @@ class InstanceFromMachineImageArgs:
|
|
84
81
|
:param pulumi.Input[_builtins.str] name: A unique name for the resource, required by GCE.
|
85
82
|
Changing this forces a new resource to be created.
|
86
83
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceFromMachineImageNetworkInterfaceArgs']]] network_interfaces: The networks attached to the instance.
|
87
|
-
:param pulumi.Input['InstanceFromMachineImageNetworkPerformanceConfigArgs'] network_performance_config: Configures network performance settings for the instance. If not specified, the instance will be created with its
|
88
|
-
default network performance configuration.
|
84
|
+
:param pulumi.Input['InstanceFromMachineImageNetworkPerformanceConfigArgs'] network_performance_config: Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
|
89
85
|
:param pulumi.Input['InstanceFromMachineImageParamsArgs'] params: Stores additional params passed with the request, but not persisted as part of resource payload.
|
90
86
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] partner_metadata: Partner Metadata Map made available within the instance.
|
91
|
-
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs. If self_link is provided, this value is ignored. If neither
|
92
|
-
self_link nor project are provided, the provider project is used.
|
87
|
+
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs. If self_link is provided, this value is ignored. If neither self_link nor project are provided, the provider project is used.
|
93
88
|
:param pulumi.Input['InstanceFromMachineImageReservationAffinityArgs'] reservation_affinity: Specifies the reservations that this instance can consume from.
|
94
89
|
:param pulumi.Input[_builtins.str] resource_policies: A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
|
95
90
|
:param pulumi.Input['InstanceFromMachineImageSchedulingArgs'] scheduling: The scheduling strategy being used by the instance.
|
@@ -222,8 +217,7 @@ class InstanceFromMachineImageArgs:
|
|
222
217
|
@pulumi.getter(name="confidentialInstanceConfig")
|
223
218
|
def confidential_instance_config(self) -> Optional[pulumi.Input['InstanceFromMachineImageConfidentialInstanceConfigArgs']]:
|
224
219
|
"""
|
225
|
-
The Confidential VM config being used by the instance.
|
226
|
-
to create.
|
220
|
+
The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
|
227
221
|
"""
|
228
222
|
return pulumi.get(self, "confidential_instance_config")
|
229
223
|
|
@@ -295,9 +289,7 @@ class InstanceFromMachineImageArgs:
|
|
295
289
|
@pulumi.getter
|
296
290
|
def hostname(self) -> Optional[pulumi.Input[_builtins.str]]:
|
297
291
|
"""
|
298
|
-
A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid. Valid format is a series of
|
299
|
-
labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not
|
300
|
-
exceed 253 characters. Changing this forces a new resource to be created.
|
292
|
+
A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid. Valid format is a series of labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not exceed 253 characters. Changing this forces a new resource to be created.
|
301
293
|
"""
|
302
294
|
return pulumi.get(self, "hostname")
|
303
295
|
|
@@ -321,8 +313,7 @@ class InstanceFromMachineImageArgs:
|
|
321
313
|
@pulumi.getter(name="keyRevocationActionType")
|
322
314
|
def key_revocation_action_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
323
315
|
"""
|
324
|
-
Action to be taken when a customer's encryption key is revoked. Supports "STOP" and "NONE", with "NONE" being the
|
325
|
-
default.
|
316
|
+
Action to be taken when a customer's encryption key is revoked. Supports "STOP" and "NONE", with "NONE" being the default.
|
326
317
|
"""
|
327
318
|
return pulumi.get(self, "key_revocation_action_type")
|
328
319
|
|
@@ -334,9 +325,10 @@ class InstanceFromMachineImageArgs:
|
|
334
325
|
@pulumi.getter
|
335
326
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
336
327
|
"""
|
337
|
-
A set of key/value label pairs assigned to the instance.
|
338
|
-
|
339
|
-
|
328
|
+
A set of key/value label pairs assigned to the instance.
|
329
|
+
|
330
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
331
|
+
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
340
332
|
"""
|
341
333
|
return pulumi.get(self, "labels")
|
342
334
|
|
@@ -421,8 +413,7 @@ class InstanceFromMachineImageArgs:
|
|
421
413
|
@pulumi.getter(name="networkPerformanceConfig")
|
422
414
|
def network_performance_config(self) -> Optional[pulumi.Input['InstanceFromMachineImageNetworkPerformanceConfigArgs']]:
|
423
415
|
"""
|
424
|
-
Configures network performance settings for the instance. If not specified, the instance will be created with its
|
425
|
-
default network performance configuration.
|
416
|
+
Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
|
426
417
|
"""
|
427
418
|
return pulumi.get(self, "network_performance_config")
|
428
419
|
|
@@ -458,8 +449,7 @@ class InstanceFromMachineImageArgs:
|
|
458
449
|
@pulumi.getter
|
459
450
|
def project(self) -> Optional[pulumi.Input[_builtins.str]]:
|
460
451
|
"""
|
461
|
-
The ID of the project in which the resource belongs. If self_link is provided, this value is ignored. If neither
|
462
|
-
self_link nor project are provided, the provider project is used.
|
452
|
+
The ID of the project in which the resource belongs. If self_link is provided, this value is ignored. If neither self_link nor project are provided, the provider project is used.
|
463
453
|
"""
|
464
454
|
return pulumi.get(self, "project")
|
465
455
|
|
@@ -625,29 +615,26 @@ class _InstanceFromMachineImageState:
|
|
625
615
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceFromMachineImageAttachedDiskArgs']]] attached_disks: List of disks attached to the instance
|
626
616
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceFromMachineImageBootDiskArgs']]] boot_disks: The boot disk for the instance.
|
627
617
|
:param pulumi.Input[_builtins.bool] can_ip_forward: Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
|
628
|
-
:param pulumi.Input['InstanceFromMachineImageConfidentialInstanceConfigArgs'] confidential_instance_config: The Confidential VM config being used by the instance.
|
629
|
-
to create.
|
618
|
+
:param pulumi.Input['InstanceFromMachineImageConfidentialInstanceConfigArgs'] confidential_instance_config: The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
|
630
619
|
:param pulumi.Input[_builtins.str] cpu_platform: The CPU platform used by this instance.
|
631
620
|
:param pulumi.Input[_builtins.str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
632
|
-
:param pulumi.Input[_builtins.str] current_status: Current status of the instance.
|
633
|
-
|
634
|
-
|
621
|
+
:param pulumi.Input[_builtins.str] current_status: Current status of the instance.
|
622
|
+
This could be one of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED.
|
623
|
+
For more information about the status of the instance, see [Instance life cycle](https://cloud.google.com/compute/docs/instances/instance-life-cycle).
|
635
624
|
:param pulumi.Input[_builtins.bool] deletion_protection: Whether deletion protection is enabled on this instance.
|
636
625
|
:param pulumi.Input[_builtins.str] description: A brief description of the resource.
|
637
626
|
:param pulumi.Input[_builtins.str] desired_status: Desired status of the instance. Either "RUNNING", "SUSPENDED" or "TERMINATED".
|
638
627
|
:param pulumi.Input[_builtins.bool] enable_display: Whether the instance has virtual displays enabled.
|
639
628
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceFromMachineImageGuestAcceleratorArgs']]] guest_accelerators: List of the type and count of accelerator cards attached to the instance.
|
640
|
-
:param pulumi.Input[_builtins.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
|
641
|
-
labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not
|
642
|
-
exceed 253 characters. Changing this forces a new resource to be created.
|
629
|
+
:param pulumi.Input[_builtins.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 labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not exceed 253 characters. Changing this forces a new resource to be created.
|
643
630
|
:param pulumi.Input['InstanceFromMachineImageInstanceEncryptionKeyArgs'] instance_encryption_key: Encryption key used to provide data encryption on the given instance.
|
644
631
|
:param pulumi.Input[_builtins.str] instance_id: The server-assigned unique identifier of this instance.
|
645
|
-
:param pulumi.Input[_builtins.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
|
646
|
-
default.
|
632
|
+
:param pulumi.Input[_builtins.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.
|
647
633
|
:param pulumi.Input[_builtins.str] label_fingerprint: The unique fingerprint of the labels.
|
648
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: A set of key/value label pairs assigned to the instance.
|
649
|
-
|
650
|
-
|
634
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: A set of key/value label pairs assigned to the instance.
|
635
|
+
|
636
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
637
|
+
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
651
638
|
:param pulumi.Input[_builtins.str] machine_type: The machine type to create.
|
652
639
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] metadata: Metadata key/value pairs made available within the instance.
|
653
640
|
:param pulumi.Input[_builtins.str] metadata_fingerprint: The unique fingerprint of the metadata.
|
@@ -656,12 +643,10 @@ class _InstanceFromMachineImageState:
|
|
656
643
|
:param pulumi.Input[_builtins.str] name: A unique name for the resource, required by GCE.
|
657
644
|
Changing this forces a new resource to be created.
|
658
645
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceFromMachineImageNetworkInterfaceArgs']]] network_interfaces: The networks attached to the instance.
|
659
|
-
:param pulumi.Input['InstanceFromMachineImageNetworkPerformanceConfigArgs'] network_performance_config: Configures network performance settings for the instance. If not specified, the instance will be created with its
|
660
|
-
default network performance configuration.
|
646
|
+
:param pulumi.Input['InstanceFromMachineImageNetworkPerformanceConfigArgs'] network_performance_config: Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
|
661
647
|
:param pulumi.Input['InstanceFromMachineImageParamsArgs'] params: Stores additional params passed with the request, but not persisted as part of resource payload.
|
662
648
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] partner_metadata: Partner Metadata Map made available within the instance.
|
663
|
-
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs. If self_link is provided, this value is ignored. If neither
|
664
|
-
self_link nor project are provided, the provider project is used.
|
649
|
+
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs. If self_link is provided, this value is ignored. If neither self_link nor project are provided, the provider project is used.
|
665
650
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
|
666
651
|
:param pulumi.Input['InstanceFromMachineImageReservationAffinityArgs'] reservation_affinity: Specifies the reservations that this instance can consume from.
|
667
652
|
:param pulumi.Input[_builtins.str] resource_policies: A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
|
@@ -838,8 +823,7 @@ class _InstanceFromMachineImageState:
|
|
838
823
|
@pulumi.getter(name="confidentialInstanceConfig")
|
839
824
|
def confidential_instance_config(self) -> Optional[pulumi.Input['InstanceFromMachineImageConfidentialInstanceConfigArgs']]:
|
840
825
|
"""
|
841
|
-
The Confidential VM config being used by the instance.
|
842
|
-
to create.
|
826
|
+
The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
|
843
827
|
"""
|
844
828
|
return pulumi.get(self, "confidential_instance_config")
|
845
829
|
|
@@ -875,9 +859,9 @@ class _InstanceFromMachineImageState:
|
|
875
859
|
@pulumi.getter(name="currentStatus")
|
876
860
|
def current_status(self) -> Optional[pulumi.Input[_builtins.str]]:
|
877
861
|
"""
|
878
|
-
Current status of the instance.
|
879
|
-
|
880
|
-
|
862
|
+
Current status of the instance.
|
863
|
+
This could be one of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED.
|
864
|
+
For more information about the status of the instance, see [Instance life cycle](https://cloud.google.com/compute/docs/instances/instance-life-cycle).
|
881
865
|
"""
|
882
866
|
return pulumi.get(self, "current_status")
|
883
867
|
|
@@ -958,9 +942,7 @@ class _InstanceFromMachineImageState:
|
|
958
942
|
@pulumi.getter
|
959
943
|
def hostname(self) -> Optional[pulumi.Input[_builtins.str]]:
|
960
944
|
"""
|
961
|
-
A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid. Valid format is a series of
|
962
|
-
labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not
|
963
|
-
exceed 253 characters. Changing this forces a new resource to be created.
|
945
|
+
A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid. Valid format is a series of labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not exceed 253 characters. Changing this forces a new resource to be created.
|
964
946
|
"""
|
965
947
|
return pulumi.get(self, "hostname")
|
966
948
|
|
@@ -996,8 +978,7 @@ class _InstanceFromMachineImageState:
|
|
996
978
|
@pulumi.getter(name="keyRevocationActionType")
|
997
979
|
def key_revocation_action_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
998
980
|
"""
|
999
|
-
Action to be taken when a customer's encryption key is revoked. Supports "STOP" and "NONE", with "NONE" being the
|
1000
|
-
default.
|
981
|
+
Action to be taken when a customer's encryption key is revoked. Supports "STOP" and "NONE", with "NONE" being the default.
|
1001
982
|
"""
|
1002
983
|
return pulumi.get(self, "key_revocation_action_type")
|
1003
984
|
|
@@ -1021,9 +1002,10 @@ class _InstanceFromMachineImageState:
|
|
1021
1002
|
@pulumi.getter
|
1022
1003
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
1023
1004
|
"""
|
1024
|
-
A set of key/value label pairs assigned to the instance.
|
1025
|
-
|
1026
|
-
|
1005
|
+
A set of key/value label pairs assigned to the instance.
|
1006
|
+
|
1007
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
1008
|
+
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
1027
1009
|
"""
|
1028
1010
|
return pulumi.get(self, "labels")
|
1029
1011
|
|
@@ -1120,8 +1102,7 @@ class _InstanceFromMachineImageState:
|
|
1120
1102
|
@pulumi.getter(name="networkPerformanceConfig")
|
1121
1103
|
def network_performance_config(self) -> Optional[pulumi.Input['InstanceFromMachineImageNetworkPerformanceConfigArgs']]:
|
1122
1104
|
"""
|
1123
|
-
Configures network performance settings for the instance. If not specified, the instance will be created with its
|
1124
|
-
default network performance configuration.
|
1105
|
+
Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
|
1125
1106
|
"""
|
1126
1107
|
return pulumi.get(self, "network_performance_config")
|
1127
1108
|
|
@@ -1157,8 +1138,7 @@ class _InstanceFromMachineImageState:
|
|
1157
1138
|
@pulumi.getter
|
1158
1139
|
def project(self) -> Optional[pulumi.Input[_builtins.str]]:
|
1159
1140
|
"""
|
1160
|
-
The ID of the project in which the resource belongs. If self_link is provided, this value is ignored. If neither
|
1161
|
-
self_link nor project are provided, the provider project is used.
|
1141
|
+
The ID of the project in which the resource belongs. If self_link is provided, this value is ignored. If neither self_link nor project are provided, the provider project is used.
|
1162
1142
|
"""
|
1163
1143
|
return pulumi.get(self, "project")
|
1164
1144
|
|
@@ -1402,22 +1382,19 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1402
1382
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1403
1383
|
:param pulumi.Input[Union['InstanceFromMachineImageAdvancedMachineFeaturesArgs', 'InstanceFromMachineImageAdvancedMachineFeaturesArgsDict']] advanced_machine_features: Controls for advanced machine-related behavior features.
|
1404
1384
|
:param pulumi.Input[_builtins.bool] can_ip_forward: Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
|
1405
|
-
:param pulumi.Input[Union['InstanceFromMachineImageConfidentialInstanceConfigArgs', 'InstanceFromMachineImageConfidentialInstanceConfigArgsDict']] confidential_instance_config: The Confidential VM config being used by the instance.
|
1406
|
-
to create.
|
1385
|
+
:param pulumi.Input[Union['InstanceFromMachineImageConfidentialInstanceConfigArgs', 'InstanceFromMachineImageConfidentialInstanceConfigArgsDict']] confidential_instance_config: The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
|
1407
1386
|
:param pulumi.Input[_builtins.bool] deletion_protection: Whether deletion protection is enabled on this instance.
|
1408
1387
|
:param pulumi.Input[_builtins.str] description: A brief description of the resource.
|
1409
1388
|
:param pulumi.Input[_builtins.str] desired_status: Desired status of the instance. Either "RUNNING", "SUSPENDED" or "TERMINATED".
|
1410
1389
|
:param pulumi.Input[_builtins.bool] enable_display: Whether the instance has virtual displays enabled.
|
1411
1390
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceFromMachineImageGuestAcceleratorArgs', 'InstanceFromMachineImageGuestAcceleratorArgsDict']]]] guest_accelerators: List of the type and count of accelerator cards attached to the instance.
|
1412
|
-
:param pulumi.Input[_builtins.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
|
1413
|
-
labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not
|
1414
|
-
exceed 253 characters. Changing this forces a new resource to be created.
|
1391
|
+
:param pulumi.Input[_builtins.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 labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not exceed 253 characters. Changing this forces a new resource to be created.
|
1415
1392
|
:param pulumi.Input[Union['InstanceFromMachineImageInstanceEncryptionKeyArgs', 'InstanceFromMachineImageInstanceEncryptionKeyArgsDict']] instance_encryption_key: Encryption key used to provide data encryption on the given instance.
|
1416
|
-
:param pulumi.Input[_builtins.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
|
1417
|
-
|
1418
|
-
|
1419
|
-
|
1420
|
-
|
1393
|
+
:param pulumi.Input[_builtins.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.
|
1394
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: A set of key/value label pairs assigned to the instance.
|
1395
|
+
|
1396
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
1397
|
+
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
1421
1398
|
:param pulumi.Input[_builtins.str] machine_type: The machine type to create.
|
1422
1399
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] metadata: Metadata key/value pairs made available within the instance.
|
1423
1400
|
:param pulumi.Input[_builtins.str] metadata_startup_script: Metadata startup scripts made available within the instance.
|
@@ -1425,12 +1402,10 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1425
1402
|
:param pulumi.Input[_builtins.str] name: A unique name for the resource, required by GCE.
|
1426
1403
|
Changing this forces a new resource to be created.
|
1427
1404
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceFromMachineImageNetworkInterfaceArgs', 'InstanceFromMachineImageNetworkInterfaceArgsDict']]]] network_interfaces: The networks attached to the instance.
|
1428
|
-
:param pulumi.Input[Union['InstanceFromMachineImageNetworkPerformanceConfigArgs', 'InstanceFromMachineImageNetworkPerformanceConfigArgsDict']] network_performance_config: Configures network performance settings for the instance. If not specified, the instance will be created with its
|
1429
|
-
default network performance configuration.
|
1405
|
+
:param pulumi.Input[Union['InstanceFromMachineImageNetworkPerformanceConfigArgs', 'InstanceFromMachineImageNetworkPerformanceConfigArgsDict']] network_performance_config: Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
|
1430
1406
|
:param pulumi.Input[Union['InstanceFromMachineImageParamsArgs', 'InstanceFromMachineImageParamsArgsDict']] params: Stores additional params passed with the request, but not persisted as part of resource payload.
|
1431
1407
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] partner_metadata: Partner Metadata Map made available within the instance.
|
1432
|
-
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs. If self_link is provided, this value is ignored. If neither
|
1433
|
-
self_link nor project are provided, the provider project is used.
|
1408
|
+
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs. If self_link is provided, this value is ignored. If neither self_link nor project are provided, the provider project is used.
|
1434
1409
|
:param pulumi.Input[Union['InstanceFromMachineImageReservationAffinityArgs', 'InstanceFromMachineImageReservationAffinityArgsDict']] reservation_affinity: Specifies the reservations that this instance can consume from.
|
1435
1410
|
:param pulumi.Input[_builtins.str] resource_policies: A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
|
1436
1411
|
:param pulumi.Input[Union['InstanceFromMachineImageSchedulingArgs', 'InstanceFromMachineImageSchedulingArgsDict']] scheduling: The scheduling strategy being used by the instance.
|
@@ -1654,29 +1629,26 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1654
1629
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceFromMachineImageAttachedDiskArgs', 'InstanceFromMachineImageAttachedDiskArgsDict']]]] attached_disks: List of disks attached to the instance
|
1655
1630
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceFromMachineImageBootDiskArgs', 'InstanceFromMachineImageBootDiskArgsDict']]]] boot_disks: The boot disk for the instance.
|
1656
1631
|
:param pulumi.Input[_builtins.bool] can_ip_forward: Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
|
1657
|
-
:param pulumi.Input[Union['InstanceFromMachineImageConfidentialInstanceConfigArgs', 'InstanceFromMachineImageConfidentialInstanceConfigArgsDict']] confidential_instance_config: The Confidential VM config being used by the instance.
|
1658
|
-
to create.
|
1632
|
+
:param pulumi.Input[Union['InstanceFromMachineImageConfidentialInstanceConfigArgs', 'InstanceFromMachineImageConfidentialInstanceConfigArgsDict']] confidential_instance_config: The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
|
1659
1633
|
:param pulumi.Input[_builtins.str] cpu_platform: The CPU platform used by this instance.
|
1660
1634
|
:param pulumi.Input[_builtins.str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
1661
|
-
:param pulumi.Input[_builtins.str] current_status: Current status of the instance.
|
1662
|
-
|
1663
|
-
|
1635
|
+
:param pulumi.Input[_builtins.str] current_status: Current status of the instance.
|
1636
|
+
This could be one of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED.
|
1637
|
+
For more information about the status of the instance, see [Instance life cycle](https://cloud.google.com/compute/docs/instances/instance-life-cycle).
|
1664
1638
|
:param pulumi.Input[_builtins.bool] deletion_protection: Whether deletion protection is enabled on this instance.
|
1665
1639
|
:param pulumi.Input[_builtins.str] description: A brief description of the resource.
|
1666
1640
|
:param pulumi.Input[_builtins.str] desired_status: Desired status of the instance. Either "RUNNING", "SUSPENDED" or "TERMINATED".
|
1667
1641
|
:param pulumi.Input[_builtins.bool] enable_display: Whether the instance has virtual displays enabled.
|
1668
1642
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceFromMachineImageGuestAcceleratorArgs', 'InstanceFromMachineImageGuestAcceleratorArgsDict']]]] guest_accelerators: List of the type and count of accelerator cards attached to the instance.
|
1669
|
-
:param pulumi.Input[_builtins.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
|
1670
|
-
labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not
|
1671
|
-
exceed 253 characters. Changing this forces a new resource to be created.
|
1643
|
+
:param pulumi.Input[_builtins.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 labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not exceed 253 characters. Changing this forces a new resource to be created.
|
1672
1644
|
:param pulumi.Input[Union['InstanceFromMachineImageInstanceEncryptionKeyArgs', 'InstanceFromMachineImageInstanceEncryptionKeyArgsDict']] instance_encryption_key: Encryption key used to provide data encryption on the given instance.
|
1673
1645
|
:param pulumi.Input[_builtins.str] instance_id: The server-assigned unique identifier of this instance.
|
1674
|
-
:param pulumi.Input[_builtins.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
|
1675
|
-
default.
|
1646
|
+
:param pulumi.Input[_builtins.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.
|
1676
1647
|
:param pulumi.Input[_builtins.str] label_fingerprint: The unique fingerprint of the labels.
|
1677
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: A set of key/value label pairs assigned to the instance.
|
1678
|
-
|
1679
|
-
|
1648
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: A set of key/value label pairs assigned to the instance.
|
1649
|
+
|
1650
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
1651
|
+
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
1680
1652
|
:param pulumi.Input[_builtins.str] machine_type: The machine type to create.
|
1681
1653
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] metadata: Metadata key/value pairs made available within the instance.
|
1682
1654
|
:param pulumi.Input[_builtins.str] metadata_fingerprint: The unique fingerprint of the metadata.
|
@@ -1685,12 +1657,10 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1685
1657
|
:param pulumi.Input[_builtins.str] name: A unique name for the resource, required by GCE.
|
1686
1658
|
Changing this forces a new resource to be created.
|
1687
1659
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceFromMachineImageNetworkInterfaceArgs', 'InstanceFromMachineImageNetworkInterfaceArgsDict']]]] network_interfaces: The networks attached to the instance.
|
1688
|
-
:param pulumi.Input[Union['InstanceFromMachineImageNetworkPerformanceConfigArgs', 'InstanceFromMachineImageNetworkPerformanceConfigArgsDict']] network_performance_config: Configures network performance settings for the instance. If not specified, the instance will be created with its
|
1689
|
-
default network performance configuration.
|
1660
|
+
:param pulumi.Input[Union['InstanceFromMachineImageNetworkPerformanceConfigArgs', 'InstanceFromMachineImageNetworkPerformanceConfigArgsDict']] network_performance_config: Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
|
1690
1661
|
:param pulumi.Input[Union['InstanceFromMachineImageParamsArgs', 'InstanceFromMachineImageParamsArgsDict']] params: Stores additional params passed with the request, but not persisted as part of resource payload.
|
1691
1662
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] partner_metadata: Partner Metadata Map made available within the instance.
|
1692
|
-
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs. If self_link is provided, this value is ignored. If neither
|
1693
|
-
self_link nor project are provided, the provider project is used.
|
1663
|
+
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs. If self_link is provided, this value is ignored. If neither self_link nor project are provided, the provider project is used.
|
1694
1664
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
|
1695
1665
|
:param pulumi.Input[Union['InstanceFromMachineImageReservationAffinityArgs', 'InstanceFromMachineImageReservationAffinityArgsDict']] reservation_affinity: Specifies the reservations that this instance can consume from.
|
1696
1666
|
:param pulumi.Input[_builtins.str] resource_policies: A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
|
@@ -1807,8 +1777,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1807
1777
|
@pulumi.getter(name="confidentialInstanceConfig")
|
1808
1778
|
def confidential_instance_config(self) -> pulumi.Output['outputs.InstanceFromMachineImageConfidentialInstanceConfig']:
|
1809
1779
|
"""
|
1810
|
-
The Confidential VM config being used by the instance.
|
1811
|
-
to create.
|
1780
|
+
The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
|
1812
1781
|
"""
|
1813
1782
|
return pulumi.get(self, "confidential_instance_config")
|
1814
1783
|
|
@@ -1832,9 +1801,9 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1832
1801
|
@pulumi.getter(name="currentStatus")
|
1833
1802
|
def current_status(self) -> pulumi.Output[_builtins.str]:
|
1834
1803
|
"""
|
1835
|
-
Current status of the instance.
|
1836
|
-
|
1837
|
-
|
1804
|
+
Current status of the instance.
|
1805
|
+
This could be one of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED.
|
1806
|
+
For more information about the status of the instance, see [Instance life cycle](https://cloud.google.com/compute/docs/instances/instance-life-cycle).
|
1838
1807
|
"""
|
1839
1808
|
return pulumi.get(self, "current_status")
|
1840
1809
|
|
@@ -1887,9 +1856,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1887
1856
|
@pulumi.getter
|
1888
1857
|
def hostname(self) -> pulumi.Output[_builtins.str]:
|
1889
1858
|
"""
|
1890
|
-
A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid. Valid format is a series of
|
1891
|
-
labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not
|
1892
|
-
exceed 253 characters. Changing this forces a new resource to be created.
|
1859
|
+
A custom hostname for the instance. Must be a fully qualified DNS name and RFC-1035-valid. Valid format is a series of labels 1-63 characters long matching the regular expression a-z, concatenated with periods. The entire hostname must not exceed 253 characters. Changing this forces a new resource to be created.
|
1893
1860
|
"""
|
1894
1861
|
return pulumi.get(self, "hostname")
|
1895
1862
|
|
@@ -1913,8 +1880,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1913
1880
|
@pulumi.getter(name="keyRevocationActionType")
|
1914
1881
|
def key_revocation_action_type(self) -> pulumi.Output[_builtins.str]:
|
1915
1882
|
"""
|
1916
|
-
Action to be taken when a customer's encryption key is revoked. Supports "STOP" and "NONE", with "NONE" being the
|
1917
|
-
default.
|
1883
|
+
Action to be taken when a customer's encryption key is revoked. Supports "STOP" and "NONE", with "NONE" being the default.
|
1918
1884
|
"""
|
1919
1885
|
return pulumi.get(self, "key_revocation_action_type")
|
1920
1886
|
|
@@ -1930,9 +1896,10 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1930
1896
|
@pulumi.getter
|
1931
1897
|
def labels(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
1932
1898
|
"""
|
1933
|
-
A set of key/value label pairs assigned to the instance.
|
1934
|
-
|
1935
|
-
|
1899
|
+
A set of key/value label pairs assigned to the instance.
|
1900
|
+
|
1901
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
1902
|
+
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
1936
1903
|
"""
|
1937
1904
|
return pulumi.get(self, "labels")
|
1938
1905
|
|
@@ -1997,8 +1964,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
1997
1964
|
@pulumi.getter(name="networkPerformanceConfig")
|
1998
1965
|
def network_performance_config(self) -> pulumi.Output['outputs.InstanceFromMachineImageNetworkPerformanceConfig']:
|
1999
1966
|
"""
|
2000
|
-
Configures network performance settings for the instance. If not specified, the instance will be created with its
|
2001
|
-
default network performance configuration.
|
1967
|
+
Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
|
2002
1968
|
"""
|
2003
1969
|
return pulumi.get(self, "network_performance_config")
|
2004
1970
|
|
@@ -2022,8 +1988,7 @@ class InstanceFromMachineImage(pulumi.CustomResource):
|
|
2022
1988
|
@pulumi.getter
|
2023
1989
|
def project(self) -> pulumi.Output[_builtins.str]:
|
2024
1990
|
"""
|
2025
|
-
The ID of the project in which the resource belongs. If self_link is provided, this value is ignored. If neither
|
2026
|
-
self_link nor project are provided, the provider project is used.
|
1991
|
+
The ID of the project in which the resource belongs. If self_link is provided, this value is ignored. If neither self_link nor project are provided, the provider project is used.
|
2027
1992
|
"""
|
2028
1993
|
return pulumi.get(self, "project")
|
2029
1994
|
|