1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. compute
  5. InstanceFromMachineImage
Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi

gcp.compute.InstanceFromMachineImage

Explore with Pulumi AI

gcp logo
Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Manages a VM instance resource within GCE. For more information see the official documentation and API.

    This resource is specifically to create a compute instance from a given source_machine_image. To create an instance without a machine image, use the gcp.compute.Instance resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const tpl = new gcp.compute.InstanceFromMachineImage("tpl", {
        name: "instance-from-machine-image",
        zone: "us-central1-a",
        sourceMachineImage: "projects/PROJECT-ID/global/machineImages/NAME",
        canIpForward: false,
        labels: {
            my_key: "my_value",
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    tpl = gcp.compute.InstanceFromMachineImage("tpl",
        name="instance-from-machine-image",
        zone="us-central1-a",
        source_machine_image="projects/PROJECT-ID/global/machineImages/NAME",
        can_ip_forward=False,
        labels={
            "my_key": "my_value",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := compute.NewInstanceFromMachineImage(ctx, "tpl", &compute.InstanceFromMachineImageArgs{
    			Name:               pulumi.String("instance-from-machine-image"),
    			Zone:               pulumi.String("us-central1-a"),
    			SourceMachineImage: pulumi.String("projects/PROJECT-ID/global/machineImages/NAME"),
    			CanIpForward:       pulumi.Bool(false),
    			Labels: pulumi.StringMap{
    				"my_key": pulumi.String("my_value"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var tpl = new Gcp.Compute.InstanceFromMachineImage("tpl", new()
        {
            Name = "instance-from-machine-image",
            Zone = "us-central1-a",
            SourceMachineImage = "projects/PROJECT-ID/global/machineImages/NAME",
            CanIpForward = false,
            Labels = 
            {
                { "my_key", "my_value" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.compute.InstanceFromMachineImage;
    import com.pulumi.gcp.compute.InstanceFromMachineImageArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var tpl = new InstanceFromMachineImage("tpl", InstanceFromMachineImageArgs.builder()        
                .name("instance-from-machine-image")
                .zone("us-central1-a")
                .sourceMachineImage("projects/PROJECT-ID/global/machineImages/NAME")
                .canIpForward(false)
                .labels(Map.of("my_key", "my_value"))
                .build());
    
        }
    }
    
    resources:
      tpl:
        type: gcp:compute:InstanceFromMachineImage
        properties:
          name: instance-from-machine-image
          zone: us-central1-a
          sourceMachineImage: projects/PROJECT-ID/global/machineImages/NAME
          canIpForward: false
          labels:
            my_key: my_value
    

    Create InstanceFromMachineImage Resource

    new InstanceFromMachineImage(name: string, args: InstanceFromMachineImageArgs, opts?: CustomResourceOptions);
    @overload
    def InstanceFromMachineImage(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 advanced_machine_features: Optional[InstanceFromMachineImageAdvancedMachineFeaturesArgs] = None,
                                 allow_stopping_for_update: Optional[bool] = None,
                                 can_ip_forward: Optional[bool] = None,
                                 confidential_instance_config: Optional[InstanceFromMachineImageConfidentialInstanceConfigArgs] = None,
                                 deletion_protection: Optional[bool] = None,
                                 description: Optional[str] = None,
                                 desired_status: Optional[str] = None,
                                 enable_display: Optional[bool] = None,
                                 guest_accelerators: Optional[Sequence[InstanceFromMachineImageGuestAcceleratorArgs]] = None,
                                 hostname: Optional[str] = None,
                                 labels: Optional[Mapping[str, str]] = None,
                                 machine_type: Optional[str] = None,
                                 metadata: Optional[Mapping[str, str]] = None,
                                 metadata_startup_script: Optional[str] = None,
                                 min_cpu_platform: Optional[str] = None,
                                 name: Optional[str] = None,
                                 network_interfaces: Optional[Sequence[InstanceFromMachineImageNetworkInterfaceArgs]] = None,
                                 network_performance_config: Optional[InstanceFromMachineImageNetworkPerformanceConfigArgs] = None,
                                 params: Optional[InstanceFromMachineImageParamsArgs] = None,
                                 project: Optional[str] = None,
                                 reservation_affinity: Optional[InstanceFromMachineImageReservationAffinityArgs] = None,
                                 resource_policies: Optional[str] = None,
                                 scheduling: Optional[InstanceFromMachineImageSchedulingArgs] = None,
                                 service_account: Optional[InstanceFromMachineImageServiceAccountArgs] = None,
                                 shielded_instance_config: Optional[InstanceFromMachineImageShieldedInstanceConfigArgs] = None,
                                 source_machine_image: Optional[str] = None,
                                 tags: Optional[Sequence[str]] = None,
                                 zone: Optional[str] = None)
    @overload
    def InstanceFromMachineImage(resource_name: str,
                                 args: InstanceFromMachineImageArgs,
                                 opts: Optional[ResourceOptions] = None)
    func NewInstanceFromMachineImage(ctx *Context, name string, args InstanceFromMachineImageArgs, opts ...ResourceOption) (*InstanceFromMachineImage, error)
    public InstanceFromMachineImage(string name, InstanceFromMachineImageArgs args, CustomResourceOptions? opts = null)
    public InstanceFromMachineImage(String name, InstanceFromMachineImageArgs args)
    public InstanceFromMachineImage(String name, InstanceFromMachineImageArgs args, CustomResourceOptions options)
    
    type: gcp:compute:InstanceFromMachineImage
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args InstanceFromMachineImageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args InstanceFromMachineImageArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args InstanceFromMachineImageArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InstanceFromMachineImageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InstanceFromMachineImageArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    InstanceFromMachineImage Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The InstanceFromMachineImage resource accepts the following input properties:

    SourceMachineImage string
    Name or self link of a machine image to create the instance based on.


    AdvancedMachineFeatures InstanceFromMachineImageAdvancedMachineFeatures
    Controls for advanced machine-related behavior features.
    AllowStoppingForUpdate bool
    If true, allows Terraform to stop the instance to update its properties. If you try to update a property that requires stopping the instance without setting this field, the update will fail.
    CanIpForward bool
    Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
    ConfidentialInstanceConfig InstanceFromMachineImageConfidentialInstanceConfig
    The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
    DeletionProtection bool
    Whether deletion protection is enabled on this instance.
    Description string
    A brief description of the resource.
    DesiredStatus string
    Desired status of the instance. Either "RUNNING" or "TERMINATED".
    EnableDisplay bool
    Whether the instance has virtual displays enabled.
    GuestAccelerators List<InstanceFromMachineImageGuestAccelerator>
    List of the type and count of accelerator cards attached to the instance.
    Hostname string
    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.
    Labels Dictionary<string, string>
    A set of key/value label pairs assigned to the instance. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
    MachineType string
    The machine type to create.
    Metadata Dictionary<string, string>
    Metadata key/value pairs made available within the instance.
    MetadataStartupScript string
    Metadata startup scripts made available within the instance.
    MinCpuPlatform string
    The minimum CPU platform specified for the VM instance.
    Name string
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    NetworkInterfaces List<InstanceFromMachineImageNetworkInterface>
    The networks attached to the instance.
    NetworkPerformanceConfig InstanceFromMachineImageNetworkPerformanceConfig
    Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
    Params InstanceFromMachineImageParams
    Stores additional params passed with the request, but not persisted as part of resource payload.
    Project string
    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.
    ReservationAffinity InstanceFromMachineImageReservationAffinity
    Specifies the reservations that this instance can consume from.
    ResourcePolicies string
    A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
    Scheduling InstanceFromMachineImageScheduling
    The scheduling strategy being used by the instance.
    ServiceAccount InstanceFromMachineImageServiceAccount
    The service account to attach to the instance.
    ShieldedInstanceConfig InstanceFromMachineImageShieldedInstanceConfig
    The shielded vm config being used by the instance.
    Tags List<string>
    The list of tags attached to the instance.
    Zone string

    The zone that the machine should be created in. If not set, the provider zone is used.

    In addition to these, most* arguments from gcp.compute.Instance are supported as a way to override the properties in the machine image. All exported attributes from gcp.compute.Instance are likewise exported here.

    Warning: *Due to API limitations, disk overrides are currently disabled. This includes the "boot_disk", "attached_disk", and "scratch_disk" fields.

    SourceMachineImage string
    Name or self link of a machine image to create the instance based on.


    AdvancedMachineFeatures InstanceFromMachineImageAdvancedMachineFeaturesArgs
    Controls for advanced machine-related behavior features.
    AllowStoppingForUpdate bool
    If true, allows Terraform to stop the instance to update its properties. If you try to update a property that requires stopping the instance without setting this field, the update will fail.
    CanIpForward bool
    Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
    ConfidentialInstanceConfig InstanceFromMachineImageConfidentialInstanceConfigArgs
    The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
    DeletionProtection bool
    Whether deletion protection is enabled on this instance.
    Description string
    A brief description of the resource.
    DesiredStatus string
    Desired status of the instance. Either "RUNNING" or "TERMINATED".
    EnableDisplay bool
    Whether the instance has virtual displays enabled.
    GuestAccelerators []InstanceFromMachineImageGuestAcceleratorArgs
    List of the type and count of accelerator cards attached to the instance.
    Hostname string
    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.
    Labels map[string]string
    A set of key/value label pairs assigned to the instance. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
    MachineType string
    The machine type to create.
    Metadata map[string]string
    Metadata key/value pairs made available within the instance.
    MetadataStartupScript string
    Metadata startup scripts made available within the instance.
    MinCpuPlatform string
    The minimum CPU platform specified for the VM instance.
    Name string
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    NetworkInterfaces []InstanceFromMachineImageNetworkInterfaceArgs
    The networks attached to the instance.
    NetworkPerformanceConfig InstanceFromMachineImageNetworkPerformanceConfigArgs
    Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
    Params InstanceFromMachineImageParamsArgs
    Stores additional params passed with the request, but not persisted as part of resource payload.
    Project string
    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.
    ReservationAffinity InstanceFromMachineImageReservationAffinityArgs
    Specifies the reservations that this instance can consume from.
    ResourcePolicies string
    A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
    Scheduling InstanceFromMachineImageSchedulingArgs
    The scheduling strategy being used by the instance.
    ServiceAccount InstanceFromMachineImageServiceAccountArgs
    The service account to attach to the instance.
    ShieldedInstanceConfig InstanceFromMachineImageShieldedInstanceConfigArgs
    The shielded vm config being used by the instance.
    Tags []string
    The list of tags attached to the instance.
    Zone string

    The zone that the machine should be created in. If not set, the provider zone is used.

    In addition to these, most* arguments from gcp.compute.Instance are supported as a way to override the properties in the machine image. All exported attributes from gcp.compute.Instance are likewise exported here.

    Warning: *Due to API limitations, disk overrides are currently disabled. This includes the "boot_disk", "attached_disk", and "scratch_disk" fields.

    sourceMachineImage String
    Name or self link of a machine image to create the instance based on.


    advancedMachineFeatures InstanceFromMachineImageAdvancedMachineFeatures
    Controls for advanced machine-related behavior features.
    allowStoppingForUpdate Boolean
    If true, allows Terraform to stop the instance to update its properties. If you try to update a property that requires stopping the instance without setting this field, the update will fail.
    canIpForward Boolean
    Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
    confidentialInstanceConfig InstanceFromMachineImageConfidentialInstanceConfig
    The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
    deletionProtection Boolean
    Whether deletion protection is enabled on this instance.
    description String
    A brief description of the resource.
    desiredStatus String
    Desired status of the instance. Either "RUNNING" or "TERMINATED".
    enableDisplay Boolean
    Whether the instance has virtual displays enabled.
    guestAccelerators List<InstanceFromMachineImageGuestAccelerator>
    List of the type and count of accelerator cards attached to the instance.
    hostname String
    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.
    labels Map<String,String>
    A set of key/value label pairs assigned to the instance. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
    machineType String
    The machine type to create.
    metadata Map<String,String>
    Metadata key/value pairs made available within the instance.
    metadataStartupScript String
    Metadata startup scripts made available within the instance.
    minCpuPlatform String
    The minimum CPU platform specified for the VM instance.
    name String
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    networkInterfaces List<InstanceFromMachineImageNetworkInterface>
    The networks attached to the instance.
    networkPerformanceConfig InstanceFromMachineImageNetworkPerformanceConfig
    Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
    params InstanceFromMachineImageParams
    Stores additional params passed with the request, but not persisted as part of resource payload.
    project String
    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.
    reservationAffinity InstanceFromMachineImageReservationAffinity
    Specifies the reservations that this instance can consume from.
    resourcePolicies String
    A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
    scheduling InstanceFromMachineImageScheduling
    The scheduling strategy being used by the instance.
    serviceAccount InstanceFromMachineImageServiceAccount
    The service account to attach to the instance.
    shieldedInstanceConfig InstanceFromMachineImageShieldedInstanceConfig
    The shielded vm config being used by the instance.
    tags List<String>
    The list of tags attached to the instance.
    zone String

    The zone that the machine should be created in. If not set, the provider zone is used.

    In addition to these, most* arguments from gcp.compute.Instance are supported as a way to override the properties in the machine image. All exported attributes from gcp.compute.Instance are likewise exported here.

    Warning: *Due to API limitations, disk overrides are currently disabled. This includes the "boot_disk", "attached_disk", and "scratch_disk" fields.

    sourceMachineImage string
    Name or self link of a machine image to create the instance based on.


    advancedMachineFeatures InstanceFromMachineImageAdvancedMachineFeatures
    Controls for advanced machine-related behavior features.
    allowStoppingForUpdate boolean
    If true, allows Terraform to stop the instance to update its properties. If you try to update a property that requires stopping the instance without setting this field, the update will fail.
    canIpForward boolean
    Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
    confidentialInstanceConfig InstanceFromMachineImageConfidentialInstanceConfig
    The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
    deletionProtection boolean
    Whether deletion protection is enabled on this instance.
    description string
    A brief description of the resource.
    desiredStatus string
    Desired status of the instance. Either "RUNNING" or "TERMINATED".
    enableDisplay boolean
    Whether the instance has virtual displays enabled.
    guestAccelerators InstanceFromMachineImageGuestAccelerator[]
    List of the type and count of accelerator cards attached to the instance.
    hostname string
    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.
    labels {[key: string]: string}
    A set of key/value label pairs assigned to the instance. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
    machineType string
    The machine type to create.
    metadata {[key: string]: string}
    Metadata key/value pairs made available within the instance.
    metadataStartupScript string
    Metadata startup scripts made available within the instance.
    minCpuPlatform string
    The minimum CPU platform specified for the VM instance.
    name string
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    networkInterfaces InstanceFromMachineImageNetworkInterface[]
    The networks attached to the instance.
    networkPerformanceConfig InstanceFromMachineImageNetworkPerformanceConfig
    Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
    params InstanceFromMachineImageParams
    Stores additional params passed with the request, but not persisted as part of resource payload.
    project string
    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.
    reservationAffinity InstanceFromMachineImageReservationAffinity
    Specifies the reservations that this instance can consume from.
    resourcePolicies string
    A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
    scheduling InstanceFromMachineImageScheduling
    The scheduling strategy being used by the instance.
    serviceAccount InstanceFromMachineImageServiceAccount
    The service account to attach to the instance.
    shieldedInstanceConfig InstanceFromMachineImageShieldedInstanceConfig
    The shielded vm config being used by the instance.
    tags string[]
    The list of tags attached to the instance.
    zone string

    The zone that the machine should be created in. If not set, the provider zone is used.

    In addition to these, most* arguments from gcp.compute.Instance are supported as a way to override the properties in the machine image. All exported attributes from gcp.compute.Instance are likewise exported here.

    Warning: *Due to API limitations, disk overrides are currently disabled. This includes the "boot_disk", "attached_disk", and "scratch_disk" fields.

    source_machine_image str
    Name or self link of a machine image to create the instance based on.


    advanced_machine_features InstanceFromMachineImageAdvancedMachineFeaturesArgs
    Controls for advanced machine-related behavior features.
    allow_stopping_for_update bool
    If true, allows Terraform to stop the instance to update its properties. If you try to update a property that requires stopping the instance without setting this field, the update will fail.
    can_ip_forward bool
    Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
    confidential_instance_config InstanceFromMachineImageConfidentialInstanceConfigArgs
    The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
    deletion_protection bool
    Whether deletion protection is enabled on this instance.
    description str
    A brief description of the resource.
    desired_status str
    Desired status of the instance. Either "RUNNING" or "TERMINATED".
    enable_display bool
    Whether the instance has virtual displays enabled.
    guest_accelerators Sequence[InstanceFromMachineImageGuestAcceleratorArgs]
    List of the type and count of accelerator cards attached to the instance.
    hostname str
    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.
    labels Mapping[str, str]
    A set of key/value label pairs assigned to the instance. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
    machine_type str
    The machine type to create.
    metadata Mapping[str, str]
    Metadata key/value pairs made available within the instance.
    metadata_startup_script str
    Metadata startup scripts made available within the instance.
    min_cpu_platform str
    The minimum CPU platform specified for the VM instance.
    name str
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    network_interfaces Sequence[InstanceFromMachineImageNetworkInterfaceArgs]
    The networks attached to the instance.
    network_performance_config InstanceFromMachineImageNetworkPerformanceConfigArgs
    Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
    params InstanceFromMachineImageParamsArgs
    Stores additional params passed with the request, but not persisted as part of resource payload.
    project str
    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.
    reservation_affinity InstanceFromMachineImageReservationAffinityArgs
    Specifies the reservations that this instance can consume from.
    resource_policies str
    A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
    scheduling InstanceFromMachineImageSchedulingArgs
    The scheduling strategy being used by the instance.
    service_account InstanceFromMachineImageServiceAccountArgs
    The service account to attach to the instance.
    shielded_instance_config InstanceFromMachineImageShieldedInstanceConfigArgs
    The shielded vm config being used by the instance.
    tags Sequence[str]
    The list of tags attached to the instance.
    zone str

    The zone that the machine should be created in. If not set, the provider zone is used.

    In addition to these, most* arguments from gcp.compute.Instance are supported as a way to override the properties in the machine image. All exported attributes from gcp.compute.Instance are likewise exported here.

    Warning: *Due to API limitations, disk overrides are currently disabled. This includes the "boot_disk", "attached_disk", and "scratch_disk" fields.

    sourceMachineImage String
    Name or self link of a machine image to create the instance based on.


    advancedMachineFeatures Property Map
    Controls for advanced machine-related behavior features.
    allowStoppingForUpdate Boolean
    If true, allows Terraform to stop the instance to update its properties. If you try to update a property that requires stopping the instance without setting this field, the update will fail.
    canIpForward Boolean
    Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
    confidentialInstanceConfig Property Map
    The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
    deletionProtection Boolean
    Whether deletion protection is enabled on this instance.
    description String
    A brief description of the resource.
    desiredStatus String
    Desired status of the instance. Either "RUNNING" or "TERMINATED".
    enableDisplay Boolean
    Whether the instance has virtual displays enabled.
    guestAccelerators List<Property Map>
    List of the type and count of accelerator cards attached to the instance.
    hostname String
    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.
    labels Map<String>
    A set of key/value label pairs assigned to the instance. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
    machineType String
    The machine type to create.
    metadata Map<String>
    Metadata key/value pairs made available within the instance.
    metadataStartupScript String
    Metadata startup scripts made available within the instance.
    minCpuPlatform String
    The minimum CPU platform specified for the VM instance.
    name String
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    networkInterfaces List<Property Map>
    The networks attached to the instance.
    networkPerformanceConfig Property Map
    Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
    params Property Map
    Stores additional params passed with the request, but not persisted as part of resource payload.
    project String
    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.
    reservationAffinity Property Map
    Specifies the reservations that this instance can consume from.
    resourcePolicies String
    A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
    scheduling Property Map
    The scheduling strategy being used by the instance.
    serviceAccount Property Map
    The service account to attach to the instance.
    shieldedInstanceConfig Property Map
    The shielded vm config being used by the instance.
    tags List<String>
    The list of tags attached to the instance.
    zone String

    The zone that the machine should be created in. If not set, the provider zone is used.

    In addition to these, most* arguments from gcp.compute.Instance are supported as a way to override the properties in the machine image. All exported attributes from gcp.compute.Instance are likewise exported here.

    Warning: *Due to API limitations, disk overrides are currently disabled. This includes the "boot_disk", "attached_disk", and "scratch_disk" fields.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the InstanceFromMachineImage resource produces the following output properties:

    AttachedDisks List<InstanceFromMachineImageAttachedDisk>
    List of disks attached to the instance
    BootDisks List<InstanceFromMachineImageBootDisk>
    The boot disk for the instance.
    CpuPlatform string
    The CPU platform used by this instance.
    CurrentStatus string
    Current status of the instance. This could be one of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED. For more information about the status of the instance, see Instance life cycle.
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    The server-assigned unique identifier of this instance.
    LabelFingerprint string
    The unique fingerprint of the labels.
    MetadataFingerprint string
    The unique fingerprint of the metadata.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    ScratchDisks List<InstanceFromMachineImageScratchDisk>
    The scratch disks attached to the instance.
    SelfLink string
    The URI of the created resource.
    TagsFingerprint string
    The unique fingerprint of the tags.
    AttachedDisks []InstanceFromMachineImageAttachedDisk
    List of disks attached to the instance
    BootDisks []InstanceFromMachineImageBootDisk
    The boot disk for the instance.
    CpuPlatform string
    The CPU platform used by this instance.
    CurrentStatus string
    Current status of the instance. This could be one of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED. For more information about the status of the instance, see Instance life cycle.
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    The server-assigned unique identifier of this instance.
    LabelFingerprint string
    The unique fingerprint of the labels.
    MetadataFingerprint string
    The unique fingerprint of the metadata.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    ScratchDisks []InstanceFromMachineImageScratchDisk
    The scratch disks attached to the instance.
    SelfLink string
    The URI of the created resource.
    TagsFingerprint string
    The unique fingerprint of the tags.
    attachedDisks List<InstanceFromMachineImageAttachedDisk>
    List of disks attached to the instance
    bootDisks List<InstanceFromMachineImageBootDisk>
    The boot disk for the instance.
    cpuPlatform String
    The CPU platform used by this instance.
    currentStatus String
    Current status of the instance. This could be one of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED. For more information about the status of the instance, see Instance life cycle.
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    The server-assigned unique identifier of this instance.
    labelFingerprint String
    The unique fingerprint of the labels.
    metadataFingerprint String
    The unique fingerprint of the metadata.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    scratchDisks List<InstanceFromMachineImageScratchDisk>
    The scratch disks attached to the instance.
    selfLink String
    The URI of the created resource.
    tagsFingerprint String
    The unique fingerprint of the tags.
    attachedDisks InstanceFromMachineImageAttachedDisk[]
    List of disks attached to the instance
    bootDisks InstanceFromMachineImageBootDisk[]
    The boot disk for the instance.
    cpuPlatform string
    The CPU platform used by this instance.
    currentStatus string
    Current status of the instance. This could be one of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED. For more information about the status of the instance, see Instance life cycle.
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other clients and services.
    id string
    The provider-assigned unique ID for this managed resource.
    instanceId string
    The server-assigned unique identifier of this instance.
    labelFingerprint string
    The unique fingerprint of the labels.
    metadataFingerprint string
    The unique fingerprint of the metadata.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    scratchDisks InstanceFromMachineImageScratchDisk[]
    The scratch disks attached to the instance.
    selfLink string
    The URI of the created resource.
    tagsFingerprint string
    The unique fingerprint of the tags.
    attached_disks Sequence[InstanceFromMachineImageAttachedDisk]
    List of disks attached to the instance
    boot_disks Sequence[InstanceFromMachineImageBootDisk]
    The boot disk for the instance.
    cpu_platform str
    The CPU platform used by this instance.
    current_status str
    Current status of the instance. This could be one of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED. For more information about the status of the instance, see Instance life cycle.
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other clients and services.
    id str
    The provider-assigned unique ID for this managed resource.
    instance_id str
    The server-assigned unique identifier of this instance.
    label_fingerprint str
    The unique fingerprint of the labels.
    metadata_fingerprint str
    The unique fingerprint of the metadata.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    scratch_disks Sequence[InstanceFromMachineImageScratchDisk]
    The scratch disks attached to the instance.
    self_link str
    The URI of the created resource.
    tags_fingerprint str
    The unique fingerprint of the tags.
    attachedDisks List<Property Map>
    List of disks attached to the instance
    bootDisks List<Property Map>
    The boot disk for the instance.
    cpuPlatform String
    The CPU platform used by this instance.
    currentStatus String
    Current status of the instance. This could be one of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED. For more information about the status of the instance, see Instance life cycle.
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    The server-assigned unique identifier of this instance.
    labelFingerprint String
    The unique fingerprint of the labels.
    metadataFingerprint String
    The unique fingerprint of the metadata.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    scratchDisks List<Property Map>
    The scratch disks attached to the instance.
    selfLink String
    The URI of the created resource.
    tagsFingerprint String
    The unique fingerprint of the tags.

    Look up Existing InstanceFromMachineImage Resource

    Get an existing InstanceFromMachineImage resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: InstanceFromMachineImageState, opts?: CustomResourceOptions): InstanceFromMachineImage
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            advanced_machine_features: Optional[InstanceFromMachineImageAdvancedMachineFeaturesArgs] = None,
            allow_stopping_for_update: Optional[bool] = None,
            attached_disks: Optional[Sequence[InstanceFromMachineImageAttachedDiskArgs]] = None,
            boot_disks: Optional[Sequence[InstanceFromMachineImageBootDiskArgs]] = None,
            can_ip_forward: Optional[bool] = None,
            confidential_instance_config: Optional[InstanceFromMachineImageConfidentialInstanceConfigArgs] = None,
            cpu_platform: Optional[str] = None,
            current_status: Optional[str] = None,
            deletion_protection: Optional[bool] = None,
            description: Optional[str] = None,
            desired_status: Optional[str] = None,
            effective_labels: Optional[Mapping[str, str]] = None,
            enable_display: Optional[bool] = None,
            guest_accelerators: Optional[Sequence[InstanceFromMachineImageGuestAcceleratorArgs]] = None,
            hostname: Optional[str] = None,
            instance_id: Optional[str] = None,
            label_fingerprint: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            machine_type: Optional[str] = None,
            metadata: Optional[Mapping[str, str]] = None,
            metadata_fingerprint: Optional[str] = None,
            metadata_startup_script: Optional[str] = None,
            min_cpu_platform: Optional[str] = None,
            name: Optional[str] = None,
            network_interfaces: Optional[Sequence[InstanceFromMachineImageNetworkInterfaceArgs]] = None,
            network_performance_config: Optional[InstanceFromMachineImageNetworkPerformanceConfigArgs] = None,
            params: Optional[InstanceFromMachineImageParamsArgs] = None,
            project: Optional[str] = None,
            pulumi_labels: Optional[Mapping[str, str]] = None,
            reservation_affinity: Optional[InstanceFromMachineImageReservationAffinityArgs] = None,
            resource_policies: Optional[str] = None,
            scheduling: Optional[InstanceFromMachineImageSchedulingArgs] = None,
            scratch_disks: Optional[Sequence[InstanceFromMachineImageScratchDiskArgs]] = None,
            self_link: Optional[str] = None,
            service_account: Optional[InstanceFromMachineImageServiceAccountArgs] = None,
            shielded_instance_config: Optional[InstanceFromMachineImageShieldedInstanceConfigArgs] = None,
            source_machine_image: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            tags_fingerprint: Optional[str] = None,
            zone: Optional[str] = None) -> InstanceFromMachineImage
    func GetInstanceFromMachineImage(ctx *Context, name string, id IDInput, state *InstanceFromMachineImageState, opts ...ResourceOption) (*InstanceFromMachineImage, error)
    public static InstanceFromMachineImage Get(string name, Input<string> id, InstanceFromMachineImageState? state, CustomResourceOptions? opts = null)
    public static InstanceFromMachineImage get(String name, Output<String> id, InstanceFromMachineImageState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AdvancedMachineFeatures InstanceFromMachineImageAdvancedMachineFeatures
    Controls for advanced machine-related behavior features.
    AllowStoppingForUpdate bool
    If true, allows Terraform to stop the instance to update its properties. If you try to update a property that requires stopping the instance without setting this field, the update will fail.
    AttachedDisks List<InstanceFromMachineImageAttachedDisk>
    List of disks attached to the instance
    BootDisks List<InstanceFromMachineImageBootDisk>
    The boot disk for the instance.
    CanIpForward bool
    Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
    ConfidentialInstanceConfig InstanceFromMachineImageConfidentialInstanceConfig
    The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
    CpuPlatform string
    The CPU platform used by this instance.
    CurrentStatus string
    Current status of the instance. This could be one of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED. For more information about the status of the instance, see Instance life cycle.
    DeletionProtection bool
    Whether deletion protection is enabled on this instance.
    Description string
    A brief description of the resource.
    DesiredStatus string
    Desired status of the instance. Either "RUNNING" or "TERMINATED".
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other clients and services.
    EnableDisplay bool
    Whether the instance has virtual displays enabled.
    GuestAccelerators List<InstanceFromMachineImageGuestAccelerator>
    List of the type and count of accelerator cards attached to the instance.
    Hostname string
    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.
    InstanceId string
    The server-assigned unique identifier of this instance.
    LabelFingerprint string
    The unique fingerprint of the labels.
    Labels Dictionary<string, string>
    A set of key/value label pairs assigned to the instance. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
    MachineType string
    The machine type to create.
    Metadata Dictionary<string, string>
    Metadata key/value pairs made available within the instance.
    MetadataFingerprint string
    The unique fingerprint of the metadata.
    MetadataStartupScript string
    Metadata startup scripts made available within the instance.
    MinCpuPlatform string
    The minimum CPU platform specified for the VM instance.
    Name string
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    NetworkInterfaces List<InstanceFromMachineImageNetworkInterface>
    The networks attached to the instance.
    NetworkPerformanceConfig InstanceFromMachineImageNetworkPerformanceConfig
    Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
    Params InstanceFromMachineImageParams
    Stores additional params passed with the request, but not persisted as part of resource payload.
    Project string
    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.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    ReservationAffinity InstanceFromMachineImageReservationAffinity
    Specifies the reservations that this instance can consume from.
    ResourcePolicies string
    A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
    Scheduling InstanceFromMachineImageScheduling
    The scheduling strategy being used by the instance.
    ScratchDisks List<InstanceFromMachineImageScratchDisk>
    The scratch disks attached to the instance.
    SelfLink string
    The URI of the created resource.
    ServiceAccount InstanceFromMachineImageServiceAccount
    The service account to attach to the instance.
    ShieldedInstanceConfig InstanceFromMachineImageShieldedInstanceConfig
    The shielded vm config being used by the instance.
    SourceMachineImage string
    Name or self link of a machine image to create the instance based on.


    Tags List<string>
    The list of tags attached to the instance.
    TagsFingerprint string
    The unique fingerprint of the tags.
    Zone string

    The zone that the machine should be created in. If not set, the provider zone is used.

    In addition to these, most* arguments from gcp.compute.Instance are supported as a way to override the properties in the machine image. All exported attributes from gcp.compute.Instance are likewise exported here.

    Warning: *Due to API limitations, disk overrides are currently disabled. This includes the "boot_disk", "attached_disk", and "scratch_disk" fields.

    AdvancedMachineFeatures InstanceFromMachineImageAdvancedMachineFeaturesArgs
    Controls for advanced machine-related behavior features.
    AllowStoppingForUpdate bool
    If true, allows Terraform to stop the instance to update its properties. If you try to update a property that requires stopping the instance without setting this field, the update will fail.
    AttachedDisks []InstanceFromMachineImageAttachedDiskArgs
    List of disks attached to the instance
    BootDisks []InstanceFromMachineImageBootDiskArgs
    The boot disk for the instance.
    CanIpForward bool
    Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
    ConfidentialInstanceConfig InstanceFromMachineImageConfidentialInstanceConfigArgs
    The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
    CpuPlatform string
    The CPU platform used by this instance.
    CurrentStatus string
    Current status of the instance. This could be one of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED. For more information about the status of the instance, see Instance life cycle.
    DeletionProtection bool
    Whether deletion protection is enabled on this instance.
    Description string
    A brief description of the resource.
    DesiredStatus string
    Desired status of the instance. Either "RUNNING" or "TERMINATED".
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other clients and services.
    EnableDisplay bool
    Whether the instance has virtual displays enabled.
    GuestAccelerators []InstanceFromMachineImageGuestAcceleratorArgs
    List of the type and count of accelerator cards attached to the instance.
    Hostname string
    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.
    InstanceId string
    The server-assigned unique identifier of this instance.
    LabelFingerprint string
    The unique fingerprint of the labels.
    Labels map[string]string
    A set of key/value label pairs assigned to the instance. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
    MachineType string
    The machine type to create.
    Metadata map[string]string
    Metadata key/value pairs made available within the instance.
    MetadataFingerprint string
    The unique fingerprint of the metadata.
    MetadataStartupScript string
    Metadata startup scripts made available within the instance.
    MinCpuPlatform string
    The minimum CPU platform specified for the VM instance.
    Name string
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    NetworkInterfaces []InstanceFromMachineImageNetworkInterfaceArgs
    The networks attached to the instance.
    NetworkPerformanceConfig InstanceFromMachineImageNetworkPerformanceConfigArgs
    Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
    Params InstanceFromMachineImageParamsArgs
    Stores additional params passed with the request, but not persisted as part of resource payload.
    Project string
    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.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    ReservationAffinity InstanceFromMachineImageReservationAffinityArgs
    Specifies the reservations that this instance can consume from.
    ResourcePolicies string
    A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
    Scheduling InstanceFromMachineImageSchedulingArgs
    The scheduling strategy being used by the instance.
    ScratchDisks []InstanceFromMachineImageScratchDiskArgs
    The scratch disks attached to the instance.
    SelfLink string
    The URI of the created resource.
    ServiceAccount InstanceFromMachineImageServiceAccountArgs
    The service account to attach to the instance.
    ShieldedInstanceConfig InstanceFromMachineImageShieldedInstanceConfigArgs
    The shielded vm config being used by the instance.
    SourceMachineImage string
    Name or self link of a machine image to create the instance based on.


    Tags []string
    The list of tags attached to the instance.
    TagsFingerprint string
    The unique fingerprint of the tags.
    Zone string

    The zone that the machine should be created in. If not set, the provider zone is used.

    In addition to these, most* arguments from gcp.compute.Instance are supported as a way to override the properties in the machine image. All exported attributes from gcp.compute.Instance are likewise exported here.

    Warning: *Due to API limitations, disk overrides are currently disabled. This includes the "boot_disk", "attached_disk", and "scratch_disk" fields.

    advancedMachineFeatures InstanceFromMachineImageAdvancedMachineFeatures
    Controls for advanced machine-related behavior features.
    allowStoppingForUpdate Boolean
    If true, allows Terraform to stop the instance to update its properties. If you try to update a property that requires stopping the instance without setting this field, the update will fail.
    attachedDisks List<InstanceFromMachineImageAttachedDisk>
    List of disks attached to the instance
    bootDisks List<InstanceFromMachineImageBootDisk>
    The boot disk for the instance.
    canIpForward Boolean
    Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
    confidentialInstanceConfig InstanceFromMachineImageConfidentialInstanceConfig
    The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
    cpuPlatform String
    The CPU platform used by this instance.
    currentStatus String
    Current status of the instance. This could be one of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED. For more information about the status of the instance, see Instance life cycle.
    deletionProtection Boolean
    Whether deletion protection is enabled on this instance.
    description String
    A brief description of the resource.
    desiredStatus String
    Desired status of the instance. Either "RUNNING" or "TERMINATED".
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other clients and services.
    enableDisplay Boolean
    Whether the instance has virtual displays enabled.
    guestAccelerators List<InstanceFromMachineImageGuestAccelerator>
    List of the type and count of accelerator cards attached to the instance.
    hostname String
    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.
    instanceId String
    The server-assigned unique identifier of this instance.
    labelFingerprint String
    The unique fingerprint of the labels.
    labels Map<String,String>
    A set of key/value label pairs assigned to the instance. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
    machineType String
    The machine type to create.
    metadata Map<String,String>
    Metadata key/value pairs made available within the instance.
    metadataFingerprint String
    The unique fingerprint of the metadata.
    metadataStartupScript String
    Metadata startup scripts made available within the instance.
    minCpuPlatform String
    The minimum CPU platform specified for the VM instance.
    name String
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    networkInterfaces List<InstanceFromMachineImageNetworkInterface>
    The networks attached to the instance.
    networkPerformanceConfig InstanceFromMachineImageNetworkPerformanceConfig
    Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
    params InstanceFromMachineImageParams
    Stores additional params passed with the request, but not persisted as part of resource payload.
    project String
    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.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reservationAffinity InstanceFromMachineImageReservationAffinity
    Specifies the reservations that this instance can consume from.
    resourcePolicies String
    A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
    scheduling InstanceFromMachineImageScheduling
    The scheduling strategy being used by the instance.
    scratchDisks List<InstanceFromMachineImageScratchDisk>
    The scratch disks attached to the instance.
    selfLink String
    The URI of the created resource.
    serviceAccount InstanceFromMachineImageServiceAccount
    The service account to attach to the instance.
    shieldedInstanceConfig InstanceFromMachineImageShieldedInstanceConfig
    The shielded vm config being used by the instance.
    sourceMachineImage String
    Name or self link of a machine image to create the instance based on.


    tags List<String>
    The list of tags attached to the instance.
    tagsFingerprint String
    The unique fingerprint of the tags.
    zone String

    The zone that the machine should be created in. If not set, the provider zone is used.

    In addition to these, most* arguments from gcp.compute.Instance are supported as a way to override the properties in the machine image. All exported attributes from gcp.compute.Instance are likewise exported here.

    Warning: *Due to API limitations, disk overrides are currently disabled. This includes the "boot_disk", "attached_disk", and "scratch_disk" fields.

    advancedMachineFeatures InstanceFromMachineImageAdvancedMachineFeatures
    Controls for advanced machine-related behavior features.
    allowStoppingForUpdate boolean
    If true, allows Terraform to stop the instance to update its properties. If you try to update a property that requires stopping the instance without setting this field, the update will fail.
    attachedDisks InstanceFromMachineImageAttachedDisk[]
    List of disks attached to the instance
    bootDisks InstanceFromMachineImageBootDisk[]
    The boot disk for the instance.
    canIpForward boolean
    Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
    confidentialInstanceConfig InstanceFromMachineImageConfidentialInstanceConfig
    The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
    cpuPlatform string
    The CPU platform used by this instance.
    currentStatus string
    Current status of the instance. This could be one of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED. For more information about the status of the instance, see Instance life cycle.
    deletionProtection boolean
    Whether deletion protection is enabled on this instance.
    description string
    A brief description of the resource.
    desiredStatus string
    Desired status of the instance. Either "RUNNING" or "TERMINATED".
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other clients and services.
    enableDisplay boolean
    Whether the instance has virtual displays enabled.
    guestAccelerators InstanceFromMachineImageGuestAccelerator[]
    List of the type and count of accelerator cards attached to the instance.
    hostname string
    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.
    instanceId string
    The server-assigned unique identifier of this instance.
    labelFingerprint string
    The unique fingerprint of the labels.
    labels {[key: string]: string}
    A set of key/value label pairs assigned to the instance. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
    machineType string
    The machine type to create.
    metadata {[key: string]: string}
    Metadata key/value pairs made available within the instance.
    metadataFingerprint string
    The unique fingerprint of the metadata.
    metadataStartupScript string
    Metadata startup scripts made available within the instance.
    minCpuPlatform string
    The minimum CPU platform specified for the VM instance.
    name string
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    networkInterfaces InstanceFromMachineImageNetworkInterface[]
    The networks attached to the instance.
    networkPerformanceConfig InstanceFromMachineImageNetworkPerformanceConfig
    Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
    params InstanceFromMachineImageParams
    Stores additional params passed with the request, but not persisted as part of resource payload.
    project string
    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.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reservationAffinity InstanceFromMachineImageReservationAffinity
    Specifies the reservations that this instance can consume from.
    resourcePolicies string
    A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
    scheduling InstanceFromMachineImageScheduling
    The scheduling strategy being used by the instance.
    scratchDisks InstanceFromMachineImageScratchDisk[]
    The scratch disks attached to the instance.
    selfLink string
    The URI of the created resource.
    serviceAccount InstanceFromMachineImageServiceAccount
    The service account to attach to the instance.
    shieldedInstanceConfig InstanceFromMachineImageShieldedInstanceConfig
    The shielded vm config being used by the instance.
    sourceMachineImage string
    Name or self link of a machine image to create the instance based on.


    tags string[]
    The list of tags attached to the instance.
    tagsFingerprint string
    The unique fingerprint of the tags.
    zone string

    The zone that the machine should be created in. If not set, the provider zone is used.

    In addition to these, most* arguments from gcp.compute.Instance are supported as a way to override the properties in the machine image. All exported attributes from gcp.compute.Instance are likewise exported here.

    Warning: *Due to API limitations, disk overrides are currently disabled. This includes the "boot_disk", "attached_disk", and "scratch_disk" fields.

    advanced_machine_features InstanceFromMachineImageAdvancedMachineFeaturesArgs
    Controls for advanced machine-related behavior features.
    allow_stopping_for_update bool
    If true, allows Terraform to stop the instance to update its properties. If you try to update a property that requires stopping the instance without setting this field, the update will fail.
    attached_disks Sequence[InstanceFromMachineImageAttachedDiskArgs]
    List of disks attached to the instance
    boot_disks Sequence[InstanceFromMachineImageBootDiskArgs]
    The boot disk for the instance.
    can_ip_forward bool
    Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
    confidential_instance_config InstanceFromMachineImageConfidentialInstanceConfigArgs
    The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
    cpu_platform str
    The CPU platform used by this instance.
    current_status str
    Current status of the instance. This could be one of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED. For more information about the status of the instance, see Instance life cycle.
    deletion_protection bool
    Whether deletion protection is enabled on this instance.
    description str
    A brief description of the resource.
    desired_status str
    Desired status of the instance. Either "RUNNING" or "TERMINATED".
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other clients and services.
    enable_display bool
    Whether the instance has virtual displays enabled.
    guest_accelerators Sequence[InstanceFromMachineImageGuestAcceleratorArgs]
    List of the type and count of accelerator cards attached to the instance.
    hostname str
    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.
    instance_id str
    The server-assigned unique identifier of this instance.
    label_fingerprint str
    The unique fingerprint of the labels.
    labels Mapping[str, str]
    A set of key/value label pairs assigned to the instance. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
    machine_type str
    The machine type to create.
    metadata Mapping[str, str]
    Metadata key/value pairs made available within the instance.
    metadata_fingerprint str
    The unique fingerprint of the metadata.
    metadata_startup_script str
    Metadata startup scripts made available within the instance.
    min_cpu_platform str
    The minimum CPU platform specified for the VM instance.
    name str
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    network_interfaces Sequence[InstanceFromMachineImageNetworkInterfaceArgs]
    The networks attached to the instance.
    network_performance_config InstanceFromMachineImageNetworkPerformanceConfigArgs
    Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
    params InstanceFromMachineImageParamsArgs
    Stores additional params passed with the request, but not persisted as part of resource payload.
    project str
    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.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reservation_affinity InstanceFromMachineImageReservationAffinityArgs
    Specifies the reservations that this instance can consume from.
    resource_policies str
    A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
    scheduling InstanceFromMachineImageSchedulingArgs
    The scheduling strategy being used by the instance.
    scratch_disks Sequence[InstanceFromMachineImageScratchDiskArgs]
    The scratch disks attached to the instance.
    self_link str
    The URI of the created resource.
    service_account InstanceFromMachineImageServiceAccountArgs
    The service account to attach to the instance.
    shielded_instance_config InstanceFromMachineImageShieldedInstanceConfigArgs
    The shielded vm config being used by the instance.
    source_machine_image str
    Name or self link of a machine image to create the instance based on.


    tags Sequence[str]
    The list of tags attached to the instance.
    tags_fingerprint str
    The unique fingerprint of the tags.
    zone str

    The zone that the machine should be created in. If not set, the provider zone is used.

    In addition to these, most* arguments from gcp.compute.Instance are supported as a way to override the properties in the machine image. All exported attributes from gcp.compute.Instance are likewise exported here.

    Warning: *Due to API limitations, disk overrides are currently disabled. This includes the "boot_disk", "attached_disk", and "scratch_disk" fields.

    advancedMachineFeatures Property Map
    Controls for advanced machine-related behavior features.
    allowStoppingForUpdate Boolean
    If true, allows Terraform to stop the instance to update its properties. If you try to update a property that requires stopping the instance without setting this field, the update will fail.
    attachedDisks List<Property Map>
    List of disks attached to the instance
    bootDisks List<Property Map>
    The boot disk for the instance.
    canIpForward Boolean
    Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
    confidentialInstanceConfig Property Map
    The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
    cpuPlatform String
    The CPU platform used by this instance.
    currentStatus String
    Current status of the instance. This could be one of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED. For more information about the status of the instance, see Instance life cycle.
    deletionProtection Boolean
    Whether deletion protection is enabled on this instance.
    description String
    A brief description of the resource.
    desiredStatus String
    Desired status of the instance. Either "RUNNING" or "TERMINATED".
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other clients and services.
    enableDisplay Boolean
    Whether the instance has virtual displays enabled.
    guestAccelerators List<Property Map>
    List of the type and count of accelerator cards attached to the instance.
    hostname String
    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.
    instanceId String
    The server-assigned unique identifier of this instance.
    labelFingerprint String
    The unique fingerprint of the labels.
    labels Map<String>
    A set of key/value label pairs assigned to the instance. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
    machineType String
    The machine type to create.
    metadata Map<String>
    Metadata key/value pairs made available within the instance.
    metadataFingerprint String
    The unique fingerprint of the metadata.
    metadataStartupScript String
    Metadata startup scripts made available within the instance.
    minCpuPlatform String
    The minimum CPU platform specified for the VM instance.
    name String
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    networkInterfaces List<Property Map>
    The networks attached to the instance.
    networkPerformanceConfig Property Map
    Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
    params Property Map
    Stores additional params passed with the request, but not persisted as part of resource payload.
    project String
    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.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reservationAffinity Property Map
    Specifies the reservations that this instance can consume from.
    resourcePolicies String
    A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
    scheduling Property Map
    The scheduling strategy being used by the instance.
    scratchDisks List<Property Map>
    The scratch disks attached to the instance.
    selfLink String
    The URI of the created resource.
    serviceAccount Property Map
    The service account to attach to the instance.
    shieldedInstanceConfig Property Map
    The shielded vm config being used by the instance.
    sourceMachineImage String
    Name or self link of a machine image to create the instance based on.


    tags List<String>
    The list of tags attached to the instance.
    tagsFingerprint String
    The unique fingerprint of the tags.
    zone String

    The zone that the machine should be created in. If not set, the provider zone is used.

    In addition to these, most* arguments from gcp.compute.Instance are supported as a way to override the properties in the machine image. All exported attributes from gcp.compute.Instance are likewise exported here.

    Warning: *Due to API limitations, disk overrides are currently disabled. This includes the "boot_disk", "attached_disk", and "scratch_disk" fields.

    Supporting Types

    InstanceFromMachineImageAdvancedMachineFeatures, InstanceFromMachineImageAdvancedMachineFeaturesArgs

    EnableNestedVirtualization bool
    Whether to enable nested virtualization or not.
    ThreadsPerCore int
    The number of threads per physical core. To disable simultaneous multithreading (SMT) set this to 1. If unset, the maximum number of threads supported per core by the underlying processor is assumed.
    VisibleCoreCount int
    The number of physical cores to expose to an instance. Multiply by the number of threads per core to compute the total number of virtual CPUs to expose to the instance. If unset, the number of cores is inferred from the instance's nominal CPU count and the underlying platform's SMT width.
    EnableNestedVirtualization bool
    Whether to enable nested virtualization or not.
    ThreadsPerCore int
    The number of threads per physical core. To disable simultaneous multithreading (SMT) set this to 1. If unset, the maximum number of threads supported per core by the underlying processor is assumed.
    VisibleCoreCount int
    The number of physical cores to expose to an instance. Multiply by the number of threads per core to compute the total number of virtual CPUs to expose to the instance. If unset, the number of cores is inferred from the instance's nominal CPU count and the underlying platform's SMT width.
    enableNestedVirtualization Boolean
    Whether to enable nested virtualization or not.
    threadsPerCore Integer
    The number of threads per physical core. To disable simultaneous multithreading (SMT) set this to 1. If unset, the maximum number of threads supported per core by the underlying processor is assumed.
    visibleCoreCount Integer
    The number of physical cores to expose to an instance. Multiply by the number of threads per core to compute the total number of virtual CPUs to expose to the instance. If unset, the number of cores is inferred from the instance's nominal CPU count and the underlying platform's SMT width.
    enableNestedVirtualization boolean
    Whether to enable nested virtualization or not.
    threadsPerCore number
    The number of threads per physical core. To disable simultaneous multithreading (SMT) set this to 1. If unset, the maximum number of threads supported per core by the underlying processor is assumed.
    visibleCoreCount number
    The number of physical cores to expose to an instance. Multiply by the number of threads per core to compute the total number of virtual CPUs to expose to the instance. If unset, the number of cores is inferred from the instance's nominal CPU count and the underlying platform's SMT width.
    enable_nested_virtualization bool
    Whether to enable nested virtualization or not.
    threads_per_core int
    The number of threads per physical core. To disable simultaneous multithreading (SMT) set this to 1. If unset, the maximum number of threads supported per core by the underlying processor is assumed.
    visible_core_count int
    The number of physical cores to expose to an instance. Multiply by the number of threads per core to compute the total number of virtual CPUs to expose to the instance. If unset, the number of cores is inferred from the instance's nominal CPU count and the underlying platform's SMT width.
    enableNestedVirtualization Boolean
    Whether to enable nested virtualization or not.
    threadsPerCore Number
    The number of threads per physical core. To disable simultaneous multithreading (SMT) set this to 1. If unset, the maximum number of threads supported per core by the underlying processor is assumed.
    visibleCoreCount Number
    The number of physical cores to expose to an instance. Multiply by the number of threads per core to compute the total number of virtual CPUs to expose to the instance. If unset, the number of cores is inferred from the instance's nominal CPU count and the underlying platform's SMT width.

    InstanceFromMachineImageAttachedDisk, InstanceFromMachineImageAttachedDiskArgs

    Source string
    The name or self_link of the disk attached to this instance.
    DeviceName string
    Name with which the attached disk is accessible under /dev/disk/by-id/
    DiskEncryptionKeyRaw string
    A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    DiskEncryptionKeySha256 string
    The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
    KmsKeySelfLink string
    The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    Mode string
    Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".
    Source string
    The name or self_link of the disk attached to this instance.
    DeviceName string
    Name with which the attached disk is accessible under /dev/disk/by-id/
    DiskEncryptionKeyRaw string
    A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    DiskEncryptionKeySha256 string
    The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
    KmsKeySelfLink string
    The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    Mode string
    Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".
    source String
    The name or self_link of the disk attached to this instance.
    deviceName String
    Name with which the attached disk is accessible under /dev/disk/by-id/
    diskEncryptionKeyRaw String
    A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    diskEncryptionKeySha256 String
    The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
    kmsKeySelfLink String
    The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    mode String
    Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".
    source string
    The name or self_link of the disk attached to this instance.
    deviceName string
    Name with which the attached disk is accessible under /dev/disk/by-id/
    diskEncryptionKeyRaw string
    A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    diskEncryptionKeySha256 string
    The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
    kmsKeySelfLink string
    The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    mode string
    Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".
    source str
    The name or self_link of the disk attached to this instance.
    device_name str
    Name with which the attached disk is accessible under /dev/disk/by-id/
    disk_encryption_key_raw str
    A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    disk_encryption_key_sha256 str
    The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
    kms_key_self_link str
    The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    mode str
    Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".
    source String
    The name or self_link of the disk attached to this instance.
    deviceName String
    Name with which the attached disk is accessible under /dev/disk/by-id/
    diskEncryptionKeyRaw String
    A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    diskEncryptionKeySha256 String
    The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
    kmsKeySelfLink String
    The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    mode String
    Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".

    InstanceFromMachineImageBootDisk, InstanceFromMachineImageBootDiskArgs

    AutoDelete bool
    Whether the disk will be auto-deleted when the instance is deleted.
    DeviceName string
    Name with which attached disk will be accessible under /dev/disk/by-id/
    DiskEncryptionKeyRaw string
    A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    DiskEncryptionKeySha256 string
    The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
    InitializeParams InstanceFromMachineImageBootDiskInitializeParams
    Parameters with which a disk was created alongside the instance.
    KmsKeySelfLink string
    The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    Mode string
    Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".
    Source string
    The name or self_link of the disk attached to this instance.
    AutoDelete bool
    Whether the disk will be auto-deleted when the instance is deleted.
    DeviceName string
    Name with which attached disk will be accessible under /dev/disk/by-id/
    DiskEncryptionKeyRaw string
    A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    DiskEncryptionKeySha256 string
    The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
    InitializeParams InstanceFromMachineImageBootDiskInitializeParams
    Parameters with which a disk was created alongside the instance.
    KmsKeySelfLink string
    The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    Mode string
    Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".
    Source string
    The name or self_link of the disk attached to this instance.
    autoDelete Boolean
    Whether the disk will be auto-deleted when the instance is deleted.
    deviceName String
    Name with which attached disk will be accessible under /dev/disk/by-id/
    diskEncryptionKeyRaw String
    A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    diskEncryptionKeySha256 String
    The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
    initializeParams InstanceFromMachineImageBootDiskInitializeParams
    Parameters with which a disk was created alongside the instance.
    kmsKeySelfLink String
    The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    mode String
    Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".
    source String
    The name or self_link of the disk attached to this instance.
    autoDelete boolean
    Whether the disk will be auto-deleted when the instance is deleted.
    deviceName string
    Name with which attached disk will be accessible under /dev/disk/by-id/
    diskEncryptionKeyRaw string
    A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    diskEncryptionKeySha256 string
    The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
    initializeParams InstanceFromMachineImageBootDiskInitializeParams
    Parameters with which a disk was created alongside the instance.
    kmsKeySelfLink string
    The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    mode string
    Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".
    source string
    The name or self_link of the disk attached to this instance.
    auto_delete bool
    Whether the disk will be auto-deleted when the instance is deleted.
    device_name str
    Name with which attached disk will be accessible under /dev/disk/by-id/
    disk_encryption_key_raw str
    A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    disk_encryption_key_sha256 str
    The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
    initialize_params InstanceFromMachineImageBootDiskInitializeParams
    Parameters with which a disk was created alongside the instance.
    kms_key_self_link str
    The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    mode str
    Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".
    source str
    The name or self_link of the disk attached to this instance.
    autoDelete Boolean
    Whether the disk will be auto-deleted when the instance is deleted.
    deviceName String
    Name with which attached disk will be accessible under /dev/disk/by-id/
    diskEncryptionKeyRaw String
    A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    diskEncryptionKeySha256 String
    The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
    initializeParams Property Map
    Parameters with which a disk was created alongside the instance.
    kmsKeySelfLink String
    The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
    mode String
    Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".
    source String
    The name or self_link of the disk attached to this instance.

    InstanceFromMachineImageBootDiskInitializeParams, InstanceFromMachineImageBootDiskInitializeParamsArgs

    EnableConfidentialCompute bool
    A flag to enable confidential compute mode on boot disk
    Image string
    The image from which this disk was initialised.
    Labels Dictionary<string, object>
    A set of key/value label pairs assigned to the disk.
    ProvisionedIops int
    Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle.
    ProvisionedThroughput int
    Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle.
    ResourceManagerTags Dictionary<string, object>
    A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
    Size int
    The size of the image in gigabytes.
    Type string
    The Google Compute Engine disk type. Such as pd-standard, pd-ssd or pd-balanced.
    EnableConfidentialCompute bool
    A flag to enable confidential compute mode on boot disk
    Image string
    The image from which this disk was initialised.
    Labels map[string]interface{}
    A set of key/value label pairs assigned to the disk.
    ProvisionedIops int
    Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle.
    ProvisionedThroughput int
    Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle.
    ResourceManagerTags map[string]interface{}
    A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
    Size int
    The size of the image in gigabytes.
    Type string
    The Google Compute Engine disk type. Such as pd-standard, pd-ssd or pd-balanced.
    enableConfidentialCompute Boolean
    A flag to enable confidential compute mode on boot disk
    image String
    The image from which this disk was initialised.
    labels Map<String,Object>
    A set of key/value label pairs assigned to the disk.
    provisionedIops Integer
    Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle.
    provisionedThroughput Integer
    Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle.
    resourceManagerTags Map<String,Object>
    A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
    size Integer
    The size of the image in gigabytes.
    type String
    The Google Compute Engine disk type. Such as pd-standard, pd-ssd or pd-balanced.
    enableConfidentialCompute boolean
    A flag to enable confidential compute mode on boot disk
    image string
    The image from which this disk was initialised.
    labels {[key: string]: any}
    A set of key/value label pairs assigned to the disk.
    provisionedIops number
    Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle.
    provisionedThroughput number
    Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle.
    resourceManagerTags {[key: string]: any}
    A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
    size number
    The size of the image in gigabytes.
    type string
    The Google Compute Engine disk type. Such as pd-standard, pd-ssd or pd-balanced.
    enable_confidential_compute bool
    A flag to enable confidential compute mode on boot disk
    image str
    The image from which this disk was initialised.
    labels Mapping[str, Any]
    A set of key/value label pairs assigned to the disk.
    provisioned_iops int
    Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle.
    provisioned_throughput int
    Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle.
    resource_manager_tags Mapping[str, Any]
    A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
    size int
    The size of the image in gigabytes.
    type str
    The Google Compute Engine disk type. Such as pd-standard, pd-ssd or pd-balanced.
    enableConfidentialCompute Boolean
    A flag to enable confidential compute mode on boot disk
    image String
    The image from which this disk was initialised.
    labels Map<Any>
    A set of key/value label pairs assigned to the disk.
    provisionedIops Number
    Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle.
    provisionedThroughput Number
    Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle.
    resourceManagerTags Map<Any>
    A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
    size Number
    The size of the image in gigabytes.
    type String
    The Google Compute Engine disk type. Such as pd-standard, pd-ssd or pd-balanced.

    InstanceFromMachineImageConfidentialInstanceConfig, InstanceFromMachineImageConfidentialInstanceConfigArgs

    ConfidentialInstanceType string
    Specifies which confidential computing technology to use. This could be one of the following values: SEV, SEV_SNP. If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
    EnableConfidentialCompute bool
    Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release
    ConfidentialInstanceType string
    Specifies which confidential computing technology to use. This could be one of the following values: SEV, SEV_SNP. If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
    EnableConfidentialCompute bool
    Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release
    confidentialInstanceType String
    Specifies which confidential computing technology to use. This could be one of the following values: SEV, SEV_SNP. If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
    enableConfidentialCompute Boolean
    Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release
    confidentialInstanceType string
    Specifies which confidential computing technology to use. This could be one of the following values: SEV, SEV_SNP. If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
    enableConfidentialCompute boolean
    Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release
    confidential_instance_type str
    Specifies which confidential computing technology to use. This could be one of the following values: SEV, SEV_SNP. If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
    enable_confidential_compute bool
    Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release
    confidentialInstanceType String
    Specifies which confidential computing technology to use. This could be one of the following values: SEV, SEV_SNP. If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required.
    enableConfidentialCompute Boolean
    Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release

    InstanceFromMachineImageGuestAccelerator, InstanceFromMachineImageGuestAcceleratorArgs

    Count int
    The number of the guest accelerator cards exposed to this instance.
    Type string
    The accelerator type resource exposed to this instance. E.g. nvidia-tesla-k80.
    Count int
    The number of the guest accelerator cards exposed to this instance.
    Type string
    The accelerator type resource exposed to this instance. E.g. nvidia-tesla-k80.
    count Integer
    The number of the guest accelerator cards exposed to this instance.
    type String
    The accelerator type resource exposed to this instance. E.g. nvidia-tesla-k80.
    count number
    The number of the guest accelerator cards exposed to this instance.
    type string
    The accelerator type resource exposed to this instance. E.g. nvidia-tesla-k80.
    count int
    The number of the guest accelerator cards exposed to this instance.
    type str
    The accelerator type resource exposed to this instance. E.g. nvidia-tesla-k80.
    count Number
    The number of the guest accelerator cards exposed to this instance.
    type String
    The accelerator type resource exposed to this instance. E.g. nvidia-tesla-k80.

    InstanceFromMachineImageNetworkInterface, InstanceFromMachineImageNetworkInterfaceArgs

    AccessConfigs List<InstanceFromMachineImageNetworkInterfaceAccessConfig>
    Access configurations, i.e. IPs via which this instance can be accessed via the Internet.
    AliasIpRanges List<InstanceFromMachineImageNetworkInterfaceAliasIpRange>
    An array of alias IP ranges for this network interface.
    InternalIpv6PrefixLength int
    The prefix length of the primary internal IPv6 range.
    Ipv6AccessConfigs List<InstanceFromMachineImageNetworkInterfaceIpv6AccessConfig>
    An array of IPv6 access configurations for this interface. Currently, only one IPv6 access config, DIRECT_IPV6, is supported. If there is no ipv6AccessConfig specified, then this instance will have no external IPv6 Internet access.
    Ipv6AccessType string
    One of EXTERNAL, INTERNAL to indicate whether the IP can be accessed from the Internet. This field is always inherited from its subnetwork.
    Ipv6Address string
    An IPv6 internal network address for this network interface. If not specified, Google Cloud will automatically assign an internal IPv6 address from the instance's subnetwork.
    Name string
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    Network string
    The name or self_link of the network attached to this interface.
    NetworkAttachment string
    The URL of the network attachment that this interface should connect to in the following format: projects/{projectNumber}/regions/{region_name}/networkAttachments/{network_attachment_name}.
    NetworkIp string
    The private IP address assigned to the instance.
    NicType string
    The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET
    QueueCount int
    The networking queue count that's specified by users for the network interface. Both Rx and Tx queues will be set to this number. It will be empty if not specified.
    SecurityPolicy string
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
    StackType string
    The stack type for this network interface to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used.
    Subnetwork string
    The name or self_link of the subnetwork attached to this interface.
    SubnetworkProject string
    The project in which the subnetwork belongs.
    AccessConfigs []InstanceFromMachineImageNetworkInterfaceAccessConfig
    Access configurations, i.e. IPs via which this instance can be accessed via the Internet.
    AliasIpRanges []InstanceFromMachineImageNetworkInterfaceAliasIpRange
    An array of alias IP ranges for this network interface.
    InternalIpv6PrefixLength int
    The prefix length of the primary internal IPv6 range.
    Ipv6AccessConfigs []InstanceFromMachineImageNetworkInterfaceIpv6AccessConfig
    An array of IPv6 access configurations for this interface. Currently, only one IPv6 access config, DIRECT_IPV6, is supported. If there is no ipv6AccessConfig specified, then this instance will have no external IPv6 Internet access.
    Ipv6AccessType string
    One of EXTERNAL, INTERNAL to indicate whether the IP can be accessed from the Internet. This field is always inherited from its subnetwork.
    Ipv6Address string
    An IPv6 internal network address for this network interface. If not specified, Google Cloud will automatically assign an internal IPv6 address from the instance's subnetwork.
    Name string
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    Network string
    The name or self_link of the network attached to this interface.
    NetworkAttachment string
    The URL of the network attachment that this interface should connect to in the following format: projects/{projectNumber}/regions/{region_name}/networkAttachments/{network_attachment_name}.
    NetworkIp string
    The private IP address assigned to the instance.
    NicType string
    The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET
    QueueCount int
    The networking queue count that's specified by users for the network interface. Both Rx and Tx queues will be set to this number. It will be empty if not specified.
    SecurityPolicy string
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
    StackType string
    The stack type for this network interface to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used.
    Subnetwork string
    The name or self_link of the subnetwork attached to this interface.
    SubnetworkProject string
    The project in which the subnetwork belongs.
    accessConfigs List<InstanceFromMachineImageNetworkInterfaceAccessConfig>
    Access configurations, i.e. IPs via which this instance can be accessed via the Internet.
    aliasIpRanges List<InstanceFromMachineImageNetworkInterfaceAliasIpRange>
    An array of alias IP ranges for this network interface.
    internalIpv6PrefixLength Integer
    The prefix length of the primary internal IPv6 range.
    ipv6AccessConfigs List<InstanceFromMachineImageNetworkInterfaceIpv6AccessConfig>
    An array of IPv6 access configurations for this interface. Currently, only one IPv6 access config, DIRECT_IPV6, is supported. If there is no ipv6AccessConfig specified, then this instance will have no external IPv6 Internet access.
    ipv6AccessType String
    One of EXTERNAL, INTERNAL to indicate whether the IP can be accessed from the Internet. This field is always inherited from its subnetwork.
    ipv6Address String
    An IPv6 internal network address for this network interface. If not specified, Google Cloud will automatically assign an internal IPv6 address from the instance's subnetwork.
    name String
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    network String
    The name or self_link of the network attached to this interface.
    networkAttachment String
    The URL of the network attachment that this interface should connect to in the following format: projects/{projectNumber}/regions/{region_name}/networkAttachments/{network_attachment_name}.
    networkIp String
    The private IP address assigned to the instance.
    nicType String
    The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET
    queueCount Integer
    The networking queue count that's specified by users for the network interface. Both Rx and Tx queues will be set to this number. It will be empty if not specified.
    securityPolicy String
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
    stackType String
    The stack type for this network interface to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used.
    subnetwork String
    The name or self_link of the subnetwork attached to this interface.
    subnetworkProject String
    The project in which the subnetwork belongs.
    accessConfigs InstanceFromMachineImageNetworkInterfaceAccessConfig[]
    Access configurations, i.e. IPs via which this instance can be accessed via the Internet.
    aliasIpRanges InstanceFromMachineImageNetworkInterfaceAliasIpRange[]
    An array of alias IP ranges for this network interface.
    internalIpv6PrefixLength number
    The prefix length of the primary internal IPv6 range.
    ipv6AccessConfigs InstanceFromMachineImageNetworkInterfaceIpv6AccessConfig[]
    An array of IPv6 access configurations for this interface. Currently, only one IPv6 access config, DIRECT_IPV6, is supported. If there is no ipv6AccessConfig specified, then this instance will have no external IPv6 Internet access.
    ipv6AccessType string
    One of EXTERNAL, INTERNAL to indicate whether the IP can be accessed from the Internet. This field is always inherited from its subnetwork.
    ipv6Address string
    An IPv6 internal network address for this network interface. If not specified, Google Cloud will automatically assign an internal IPv6 address from the instance's subnetwork.
    name string
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    network string
    The name or self_link of the network attached to this interface.
    networkAttachment string
    The URL of the network attachment that this interface should connect to in the following format: projects/{projectNumber}/regions/{region_name}/networkAttachments/{network_attachment_name}.
    networkIp string
    The private IP address assigned to the instance.
    nicType string
    The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET
    queueCount number
    The networking queue count that's specified by users for the network interface. Both Rx and Tx queues will be set to this number. It will be empty if not specified.
    securityPolicy string
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
    stackType string
    The stack type for this network interface to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used.
    subnetwork string
    The name or self_link of the subnetwork attached to this interface.
    subnetworkProject string
    The project in which the subnetwork belongs.
    access_configs Sequence[InstanceFromMachineImageNetworkInterfaceAccessConfig]
    Access configurations, i.e. IPs via which this instance can be accessed via the Internet.
    alias_ip_ranges Sequence[InstanceFromMachineImageNetworkInterfaceAliasIpRange]
    An array of alias IP ranges for this network interface.
    internal_ipv6_prefix_length int
    The prefix length of the primary internal IPv6 range.
    ipv6_access_configs Sequence[InstanceFromMachineImageNetworkInterfaceIpv6AccessConfig]
    An array of IPv6 access configurations for this interface. Currently, only one IPv6 access config, DIRECT_IPV6, is supported. If there is no ipv6AccessConfig specified, then this instance will have no external IPv6 Internet access.
    ipv6_access_type str
    One of EXTERNAL, INTERNAL to indicate whether the IP can be accessed from the Internet. This field is always inherited from its subnetwork.
    ipv6_address str
    An IPv6 internal network address for this network interface. If not specified, Google Cloud will automatically assign an internal IPv6 address from the instance's subnetwork.
    name str
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    network str
    The name or self_link of the network attached to this interface.
    network_attachment str
    The URL of the network attachment that this interface should connect to in the following format: projects/{projectNumber}/regions/{region_name}/networkAttachments/{network_attachment_name}.
    network_ip str
    The private IP address assigned to the instance.
    nic_type str
    The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET
    queue_count int
    The networking queue count that's specified by users for the network interface. Both Rx and Tx queues will be set to this number. It will be empty if not specified.
    security_policy str
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
    stack_type str
    The stack type for this network interface to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used.
    subnetwork str
    The name or self_link of the subnetwork attached to this interface.
    subnetwork_project str
    The project in which the subnetwork belongs.
    accessConfigs List<Property Map>
    Access configurations, i.e. IPs via which this instance can be accessed via the Internet.
    aliasIpRanges List<Property Map>
    An array of alias IP ranges for this network interface.
    internalIpv6PrefixLength Number
    The prefix length of the primary internal IPv6 range.
    ipv6AccessConfigs List<Property Map>
    An array of IPv6 access configurations for this interface. Currently, only one IPv6 access config, DIRECT_IPV6, is supported. If there is no ipv6AccessConfig specified, then this instance will have no external IPv6 Internet access.
    ipv6AccessType String
    One of EXTERNAL, INTERNAL to indicate whether the IP can be accessed from the Internet. This field is always inherited from its subnetwork.
    ipv6Address String
    An IPv6 internal network address for this network interface. If not specified, Google Cloud will automatically assign an internal IPv6 address from the instance's subnetwork.
    name String
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    network String
    The name or self_link of the network attached to this interface.
    networkAttachment String
    The URL of the network attachment that this interface should connect to in the following format: projects/{projectNumber}/regions/{region_name}/networkAttachments/{network_attachment_name}.
    networkIp String
    The private IP address assigned to the instance.
    nicType String
    The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET
    queueCount Number
    The networking queue count that's specified by users for the network interface. Both Rx and Tx queues will be set to this number. It will be empty if not specified.
    securityPolicy String
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
    stackType String
    The stack type for this network interface to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used.
    subnetwork String
    The name or self_link of the subnetwork attached to this interface.
    subnetworkProject String
    The project in which the subnetwork belongs.

    InstanceFromMachineImageNetworkInterfaceAccessConfig, InstanceFromMachineImageNetworkInterfaceAccessConfigArgs

    NatIp string
    The IP address that is be 1:1 mapped to the instance's network ip.
    NetworkTier string
    The networking tier used for configuring this instance. One of PREMIUM or STANDARD.
    PublicPtrDomainName string
    The DNS domain name for the public PTR record.
    SecurityPolicy string
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
    NatIp string
    The IP address that is be 1:1 mapped to the instance's network ip.
    NetworkTier string
    The networking tier used for configuring this instance. One of PREMIUM or STANDARD.
    PublicPtrDomainName string
    The DNS domain name for the public PTR record.
    SecurityPolicy string
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
    natIp String
    The IP address that is be 1:1 mapped to the instance's network ip.
    networkTier String
    The networking tier used for configuring this instance. One of PREMIUM or STANDARD.
    publicPtrDomainName String
    The DNS domain name for the public PTR record.
    securityPolicy String
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
    natIp string
    The IP address that is be 1:1 mapped to the instance's network ip.
    networkTier string
    The networking tier used for configuring this instance. One of PREMIUM or STANDARD.
    publicPtrDomainName string
    The DNS domain name for the public PTR record.
    securityPolicy string
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
    nat_ip str
    The IP address that is be 1:1 mapped to the instance's network ip.
    network_tier str
    The networking tier used for configuring this instance. One of PREMIUM or STANDARD.
    public_ptr_domain_name str
    The DNS domain name for the public PTR record.
    security_policy str
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
    natIp String
    The IP address that is be 1:1 mapped to the instance's network ip.
    networkTier String
    The networking tier used for configuring this instance. One of PREMIUM or STANDARD.
    publicPtrDomainName String
    The DNS domain name for the public PTR record.
    securityPolicy String
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.

    InstanceFromMachineImageNetworkInterfaceAliasIpRange, InstanceFromMachineImageNetworkInterfaceAliasIpRangeArgs

    IpCidrRange string
    The IP CIDR range represented by this alias IP range.
    SubnetworkRangeName string
    The subnetwork secondary range name specifying the secondary range from which to allocate the IP CIDR range for this alias IP range.
    IpCidrRange string
    The IP CIDR range represented by this alias IP range.
    SubnetworkRangeName string
    The subnetwork secondary range name specifying the secondary range from which to allocate the IP CIDR range for this alias IP range.
    ipCidrRange String
    The IP CIDR range represented by this alias IP range.
    subnetworkRangeName String
    The subnetwork secondary range name specifying the secondary range from which to allocate the IP CIDR range for this alias IP range.
    ipCidrRange string
    The IP CIDR range represented by this alias IP range.
    subnetworkRangeName string
    The subnetwork secondary range name specifying the secondary range from which to allocate the IP CIDR range for this alias IP range.
    ip_cidr_range str
    The IP CIDR range represented by this alias IP range.
    subnetwork_range_name str
    The subnetwork secondary range name specifying the secondary range from which to allocate the IP CIDR range for this alias IP range.
    ipCidrRange String
    The IP CIDR range represented by this alias IP range.
    subnetworkRangeName String
    The subnetwork secondary range name specifying the secondary range from which to allocate the IP CIDR range for this alias IP range.

    InstanceFromMachineImageNetworkInterfaceIpv6AccessConfig, InstanceFromMachineImageNetworkInterfaceIpv6AccessConfigArgs

    NetworkTier string
    The service-level to be provided for IPv6 traffic when the subnet has an external subnet. Only PREMIUM tier is valid for IPv6
    ExternalIpv6 string
    The first IPv6 address of the external IPv6 range associated with this instance, prefix length is stored in externalIpv6PrefixLength in ipv6AccessConfig. To use a static external IP address, it must be unused and in the same region as the instance's zone. If not specified, Google Cloud will automatically assign an external IPv6 address from the instance's subnetwork.
    ExternalIpv6PrefixLength string
    The prefix length of the external IPv6 range.
    Name string
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    PublicPtrDomainName string
    The domain name to be used when creating DNSv6 records for the external IPv6 ranges.
    SecurityPolicy string
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
    NetworkTier string
    The service-level to be provided for IPv6 traffic when the subnet has an external subnet. Only PREMIUM tier is valid for IPv6
    ExternalIpv6 string
    The first IPv6 address of the external IPv6 range associated with this instance, prefix length is stored in externalIpv6PrefixLength in ipv6AccessConfig. To use a static external IP address, it must be unused and in the same region as the instance's zone. If not specified, Google Cloud will automatically assign an external IPv6 address from the instance's subnetwork.
    ExternalIpv6PrefixLength string
    The prefix length of the external IPv6 range.
    Name string
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    PublicPtrDomainName string
    The domain name to be used when creating DNSv6 records for the external IPv6 ranges.
    SecurityPolicy string
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
    networkTier String
    The service-level to be provided for IPv6 traffic when the subnet has an external subnet. Only PREMIUM tier is valid for IPv6
    externalIpv6 String
    The first IPv6 address of the external IPv6 range associated with this instance, prefix length is stored in externalIpv6PrefixLength in ipv6AccessConfig. To use a static external IP address, it must be unused and in the same region as the instance's zone. If not specified, Google Cloud will automatically assign an external IPv6 address from the instance's subnetwork.
    externalIpv6PrefixLength String
    The prefix length of the external IPv6 range.
    name String
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    publicPtrDomainName String
    The domain name to be used when creating DNSv6 records for the external IPv6 ranges.
    securityPolicy String
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
    networkTier string
    The service-level to be provided for IPv6 traffic when the subnet has an external subnet. Only PREMIUM tier is valid for IPv6
    externalIpv6 string
    The first IPv6 address of the external IPv6 range associated with this instance, prefix length is stored in externalIpv6PrefixLength in ipv6AccessConfig. To use a static external IP address, it must be unused and in the same region as the instance's zone. If not specified, Google Cloud will automatically assign an external IPv6 address from the instance's subnetwork.
    externalIpv6PrefixLength string
    The prefix length of the external IPv6 range.
    name string
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    publicPtrDomainName string
    The domain name to be used when creating DNSv6 records for the external IPv6 ranges.
    securityPolicy string
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
    network_tier str
    The service-level to be provided for IPv6 traffic when the subnet has an external subnet. Only PREMIUM tier is valid for IPv6
    external_ipv6 str
    The first IPv6 address of the external IPv6 range associated with this instance, prefix length is stored in externalIpv6PrefixLength in ipv6AccessConfig. To use a static external IP address, it must be unused and in the same region as the instance's zone. If not specified, Google Cloud will automatically assign an external IPv6 address from the instance's subnetwork.
    external_ipv6_prefix_length str
    The prefix length of the external IPv6 range.
    name str
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    public_ptr_domain_name str
    The domain name to be used when creating DNSv6 records for the external IPv6 ranges.
    security_policy str
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
    networkTier String
    The service-level to be provided for IPv6 traffic when the subnet has an external subnet. Only PREMIUM tier is valid for IPv6
    externalIpv6 String
    The first IPv6 address of the external IPv6 range associated with this instance, prefix length is stored in externalIpv6PrefixLength in ipv6AccessConfig. To use a static external IP address, it must be unused and in the same region as the instance's zone. If not specified, Google Cloud will automatically assign an external IPv6 address from the instance's subnetwork.
    externalIpv6PrefixLength String
    The prefix length of the external IPv6 range.
    name String
    A unique name for the resource, required by GCE. Changing this forces a new resource to be created.
    publicPtrDomainName String
    The domain name to be used when creating DNSv6 records for the external IPv6 ranges.
    securityPolicy String
    A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.

    InstanceFromMachineImageNetworkPerformanceConfig, InstanceFromMachineImageNetworkPerformanceConfigArgs

    TotalEgressBandwidthTier string
    The egress bandwidth tier to enable. Possible values:TIER_1, DEFAULT
    TotalEgressBandwidthTier string
    The egress bandwidth tier to enable. Possible values:TIER_1, DEFAULT
    totalEgressBandwidthTier String
    The egress bandwidth tier to enable. Possible values:TIER_1, DEFAULT
    totalEgressBandwidthTier string
    The egress bandwidth tier to enable. Possible values:TIER_1, DEFAULT
    total_egress_bandwidth_tier str
    The egress bandwidth tier to enable. Possible values:TIER_1, DEFAULT
    totalEgressBandwidthTier String
    The egress bandwidth tier to enable. Possible values:TIER_1, DEFAULT

    InstanceFromMachineImageParams, InstanceFromMachineImageParamsArgs

    ResourceManagerTags Dictionary<string, object>
    A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
    ResourceManagerTags map[string]interface{}
    A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
    resourceManagerTags Map<String,Object>
    A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
    resourceManagerTags {[key: string]: any}
    A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
    resource_manager_tags Mapping[str, Any]
    A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
    resourceManagerTags Map<Any>
    A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.

    InstanceFromMachineImageReservationAffinity, InstanceFromMachineImageReservationAffinityArgs

    Type string
    The type of reservation from which this instance can consume resources.
    SpecificReservation InstanceFromMachineImageReservationAffinitySpecificReservation
    Specifies the label selector for the reservation to use.
    Type string
    The type of reservation from which this instance can consume resources.
    SpecificReservation InstanceFromMachineImageReservationAffinitySpecificReservation
    Specifies the label selector for the reservation to use.
    type String
    The type of reservation from which this instance can consume resources.
    specificReservation InstanceFromMachineImageReservationAffinitySpecificReservation
    Specifies the label selector for the reservation to use.
    type string
    The type of reservation from which this instance can consume resources.
    specificReservation InstanceFromMachineImageReservationAffinitySpecificReservation
    Specifies the label selector for the reservation to use.
    type str
    The type of reservation from which this instance can consume resources.
    specific_reservation InstanceFromMachineImageReservationAffinitySpecificReservation
    Specifies the label selector for the reservation to use.
    type String
    The type of reservation from which this instance can consume resources.
    specificReservation Property Map
    Specifies the label selector for the reservation to use.

    InstanceFromMachineImageReservationAffinitySpecificReservation, InstanceFromMachineImageReservationAffinitySpecificReservationArgs

    Key string
    Corresponds to the label key of a reservation resource. To target a SPECIFIC_RESERVATION by name, specify compute.googleapis.com/reservation-name as the key and specify the name of your reservation as the only value.
    Values List<string>
    Corresponds to the label values of a reservation resource.
    Key string
    Corresponds to the label key of a reservation resource. To target a SPECIFIC_RESERVATION by name, specify compute.googleapis.com/reservation-name as the key and specify the name of your reservation as the only value.
    Values []string
    Corresponds to the label values of a reservation resource.
    key String
    Corresponds to the label key of a reservation resource. To target a SPECIFIC_RESERVATION by name, specify compute.googleapis.com/reservation-name as the key and specify the name of your reservation as the only value.
    values List<String>
    Corresponds to the label values of a reservation resource.
    key string
    Corresponds to the label key of a reservation resource. To target a SPECIFIC_RESERVATION by name, specify compute.googleapis.com/reservation-name as the key and specify the name of your reservation as the only value.
    values string[]
    Corresponds to the label values of a reservation resource.
    key str
    Corresponds to the label key of a reservation resource. To target a SPECIFIC_RESERVATION by name, specify compute.googleapis.com/reservation-name as the key and specify the name of your reservation as the only value.
    values Sequence[str]
    Corresponds to the label values of a reservation resource.
    key String
    Corresponds to the label key of a reservation resource. To target a SPECIFIC_RESERVATION by name, specify compute.googleapis.com/reservation-name as the key and specify the name of your reservation as the only value.
    values List<String>
    Corresponds to the label values of a reservation resource.

    InstanceFromMachineImageScheduling, InstanceFromMachineImageSchedulingArgs

    AutomaticRestart bool
    Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
    InstanceTerminationAction string
    Specifies the action GCE should take when SPOT VM is preempted.
    LocalSsdRecoveryTimeout InstanceFromMachineImageSchedulingLocalSsdRecoveryTimeout
    Specifies the maximum amount of time a Local Ssd Vm should wait while recovery of the Local Ssd state is attempted. Its value should be in between 0 and 168 hours with hour granularity and the default value being 1 hour.
    MaintenanceInterval string
    Specifies the frequency of planned maintenance events. The accepted values are: PERIODIC
    MaxRunDuration InstanceFromMachineImageSchedulingMaxRunDuration
    The timeout for new network connections to hosts.
    MinNodeCpus int
    NodeAffinities List<InstanceFromMachineImageSchedulingNodeAffinity>
    Specifies node affinities or anti-affinities to determine which sole-tenant nodes your instances and managed instance groups will use as host systems.
    OnHostMaintenance string
    Describes maintenance behavior for the instance. One of MIGRATE or TERMINATE,
    Preemptible bool
    Whether the instance is preemptible.
    ProvisioningModel string
    Whether the instance is spot. If this is set as SPOT.
    AutomaticRestart bool
    Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
    InstanceTerminationAction string
    Specifies the action GCE should take when SPOT VM is preempted.
    LocalSsdRecoveryTimeout InstanceFromMachineImageSchedulingLocalSsdRecoveryTimeout
    Specifies the maximum amount of time a Local Ssd Vm should wait while recovery of the Local Ssd state is attempted. Its value should be in between 0 and 168 hours with hour granularity and the default value being 1 hour.
    MaintenanceInterval string
    Specifies the frequency of planned maintenance events. The accepted values are: PERIODIC
    MaxRunDuration InstanceFromMachineImageSchedulingMaxRunDuration
    The timeout for new network connections to hosts.
    MinNodeCpus int
    NodeAffinities []InstanceFromMachineImageSchedulingNodeAffinity
    Specifies node affinities or anti-affinities to determine which sole-tenant nodes your instances and managed instance groups will use as host systems.
    OnHostMaintenance string
    Describes maintenance behavior for the instance. One of MIGRATE or TERMINATE,
    Preemptible bool
    Whether the instance is preemptible.
    ProvisioningModel string
    Whether the instance is spot. If this is set as SPOT.
    automaticRestart Boolean
    Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
    instanceTerminationAction String
    Specifies the action GCE should take when SPOT VM is preempted.
    localSsdRecoveryTimeout InstanceFromMachineImageSchedulingLocalSsdRecoveryTimeout
    Specifies the maximum amount of time a Local Ssd Vm should wait while recovery of the Local Ssd state is attempted. Its value should be in between 0 and 168 hours with hour granularity and the default value being 1 hour.
    maintenanceInterval String
    Specifies the frequency of planned maintenance events. The accepted values are: PERIODIC
    maxRunDuration InstanceFromMachineImageSchedulingMaxRunDuration
    The timeout for new network connections to hosts.
    minNodeCpus Integer
    nodeAffinities List<InstanceFromMachineImageSchedulingNodeAffinity>
    Specifies node affinities or anti-affinities to determine which sole-tenant nodes your instances and managed instance groups will use as host systems.
    onHostMaintenance String
    Describes maintenance behavior for the instance. One of MIGRATE or TERMINATE,
    preemptible Boolean
    Whether the instance is preemptible.
    provisioningModel String
    Whether the instance is spot. If this is set as SPOT.
    automaticRestart boolean
    Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
    instanceTerminationAction string
    Specifies the action GCE should take when SPOT VM is preempted.
    localSsdRecoveryTimeout InstanceFromMachineImageSchedulingLocalSsdRecoveryTimeout
    Specifies the maximum amount of time a Local Ssd Vm should wait while recovery of the Local Ssd state is attempted. Its value should be in between 0 and 168 hours with hour granularity and the default value being 1 hour.
    maintenanceInterval string
    Specifies the frequency of planned maintenance events. The accepted values are: PERIODIC
    maxRunDuration InstanceFromMachineImageSchedulingMaxRunDuration
    The timeout for new network connections to hosts.
    minNodeCpus number
    nodeAffinities InstanceFromMachineImageSchedulingNodeAffinity[]
    Specifies node affinities or anti-affinities to determine which sole-tenant nodes your instances and managed instance groups will use as host systems.
    onHostMaintenance string
    Describes maintenance behavior for the instance. One of MIGRATE or TERMINATE,
    preemptible boolean
    Whether the instance is preemptible.
    provisioningModel string
    Whether the instance is spot. If this is set as SPOT.
    automatic_restart bool
    Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
    instance_termination_action str
    Specifies the action GCE should take when SPOT VM is preempted.
    local_ssd_recovery_timeout InstanceFromMachineImageSchedulingLocalSsdRecoveryTimeout
    Specifies the maximum amount of time a Local Ssd Vm should wait while recovery of the Local Ssd state is attempted. Its value should be in between 0 and 168 hours with hour granularity and the default value being 1 hour.
    maintenance_interval str
    Specifies the frequency of planned maintenance events. The accepted values are: PERIODIC
    max_run_duration InstanceFromMachineImageSchedulingMaxRunDuration
    The timeout for new network connections to hosts.
    min_node_cpus int
    node_affinities Sequence[InstanceFromMachineImageSchedulingNodeAffinity]
    Specifies node affinities or anti-affinities to determine which sole-tenant nodes your instances and managed instance groups will use as host systems.
    on_host_maintenance str
    Describes maintenance behavior for the instance. One of MIGRATE or TERMINATE,
    preemptible bool
    Whether the instance is preemptible.
    provisioning_model str
    Whether the instance is spot. If this is set as SPOT.
    automaticRestart Boolean
    Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
    instanceTerminationAction String
    Specifies the action GCE should take when SPOT VM is preempted.
    localSsdRecoveryTimeout Property Map
    Specifies the maximum amount of time a Local Ssd Vm should wait while recovery of the Local Ssd state is attempted. Its value should be in between 0 and 168 hours with hour granularity and the default value being 1 hour.
    maintenanceInterval String
    Specifies the frequency of planned maintenance events. The accepted values are: PERIODIC
    maxRunDuration Property Map
    The timeout for new network connections to hosts.
    minNodeCpus Number
    nodeAffinities List<Property Map>
    Specifies node affinities or anti-affinities to determine which sole-tenant nodes your instances and managed instance groups will use as host systems.
    onHostMaintenance String
    Describes maintenance behavior for the instance. One of MIGRATE or TERMINATE,
    preemptible Boolean
    Whether the instance is preemptible.
    provisioningModel String
    Whether the instance is spot. If this is set as SPOT.

    InstanceFromMachineImageSchedulingLocalSsdRecoveryTimeout, InstanceFromMachineImageSchedulingLocalSsdRecoveryTimeoutArgs

    Seconds int
    Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive.
    Nanos int
    Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
    Seconds int
    Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive.
    Nanos int
    Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
    seconds Integer
    Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive.
    nanos Integer
    Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
    seconds number
    Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive.
    nanos number
    Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
    seconds int
    Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive.
    nanos int
    Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
    seconds Number
    Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive.
    nanos Number
    Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.

    InstanceFromMachineImageSchedulingMaxRunDuration, InstanceFromMachineImageSchedulingMaxRunDurationArgs

    Seconds int
    Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive.
    Nanos int
    Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
    Seconds int
    Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive.
    Nanos int
    Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
    seconds Integer
    Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive.
    nanos Integer
    Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
    seconds number
    Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive.
    nanos number
    Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
    seconds int
    Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive.
    nanos int
    Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
    seconds Number
    Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive.
    nanos Number
    Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.

    InstanceFromMachineImageSchedulingNodeAffinity, InstanceFromMachineImageSchedulingNodeAffinityArgs

    Key string
    Operator string
    Values List<string>
    Key string
    Operator string
    Values []string
    key String
    operator String
    values List<String>
    key string
    operator string
    values string[]
    key str
    operator str
    values Sequence[str]
    key String
    operator String
    values List<String>

    InstanceFromMachineImageScratchDisk, InstanceFromMachineImageScratchDiskArgs

    Interface string
    The disk interface used for attaching this disk. One of SCSI or NVME.
    DeviceName string
    Name with which the attached disk is accessible under /dev/disk/by-id/
    Size int
    The size of the disk in gigabytes. One of 375 or 3000.
    Interface string
    The disk interface used for attaching this disk. One of SCSI or NVME.
    DeviceName string
    Name with which the attached disk is accessible under /dev/disk/by-id/
    Size int
    The size of the disk in gigabytes. One of 375 or 3000.
    interface_ String
    The disk interface used for attaching this disk. One of SCSI or NVME.
    deviceName String
    Name with which the attached disk is accessible under /dev/disk/by-id/
    size Integer
    The size of the disk in gigabytes. One of 375 or 3000.
    interface string
    The disk interface used for attaching this disk. One of SCSI or NVME.
    deviceName string
    Name with which the attached disk is accessible under /dev/disk/by-id/
    size number
    The size of the disk in gigabytes. One of 375 or 3000.
    interface str
    The disk interface used for attaching this disk. One of SCSI or NVME.
    device_name str
    Name with which the attached disk is accessible under /dev/disk/by-id/
    size int
    The size of the disk in gigabytes. One of 375 or 3000.
    interface String
    The disk interface used for attaching this disk. One of SCSI or NVME.
    deviceName String
    Name with which the attached disk is accessible under /dev/disk/by-id/
    size Number
    The size of the disk in gigabytes. One of 375 or 3000.

    InstanceFromMachineImageServiceAccount, InstanceFromMachineImageServiceAccountArgs

    Scopes List<string>
    A list of service scopes.
    Email string
    The service account e-mail address.
    Scopes []string
    A list of service scopes.
    Email string
    The service account e-mail address.
    scopes List<String>
    A list of service scopes.
    email String
    The service account e-mail address.
    scopes string[]
    A list of service scopes.
    email string
    The service account e-mail address.
    scopes Sequence[str]
    A list of service scopes.
    email str
    The service account e-mail address.
    scopes List<String>
    A list of service scopes.
    email String
    The service account e-mail address.

    InstanceFromMachineImageShieldedInstanceConfig, InstanceFromMachineImageShieldedInstanceConfigArgs

    EnableIntegrityMonitoring bool
    Whether integrity monitoring is enabled for the instance.
    EnableSecureBoot bool
    Whether secure boot is enabled for the instance.
    EnableVtpm bool
    Whether the instance uses vTPM.
    EnableIntegrityMonitoring bool
    Whether integrity monitoring is enabled for the instance.
    EnableSecureBoot bool
    Whether secure boot is enabled for the instance.
    EnableVtpm bool
    Whether the instance uses vTPM.
    enableIntegrityMonitoring Boolean
    Whether integrity monitoring is enabled for the instance.
    enableSecureBoot Boolean
    Whether secure boot is enabled for the instance.
    enableVtpm Boolean
    Whether the instance uses vTPM.
    enableIntegrityMonitoring boolean
    Whether integrity monitoring is enabled for the instance.
    enableSecureBoot boolean
    Whether secure boot is enabled for the instance.
    enableVtpm boolean
    Whether the instance uses vTPM.
    enable_integrity_monitoring bool
    Whether integrity monitoring is enabled for the instance.
    enable_secure_boot bool
    Whether secure boot is enabled for the instance.
    enable_vtpm bool
    Whether the instance uses vTPM.
    enableIntegrityMonitoring Boolean
    Whether integrity monitoring is enabled for the instance.
    enableSecureBoot Boolean
    Whether secure boot is enabled for the instance.
    enableVtpm Boolean
    Whether the instance uses vTPM.

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi