gcp.compute.InstanceFromMachineImage
Explore with Pulumi AI
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/v8/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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new InstanceFromMachineImage(name: string, args: InstanceFromMachineImageArgs, opts?: CustomResourceOptions);
@overload
def InstanceFromMachineImage(resource_name: str,
args: InstanceFromMachineImageArgs,
opts: Optional[ResourceOptions] = None)
@overload
def InstanceFromMachineImage(resource_name: str,
opts: Optional[ResourceOptions] = None,
source_machine_image: Optional[str] = None,
min_cpu_platform: Optional[str] = None,
allow_stopping_for_update: 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,
zone: Optional[str] = None,
can_ip_forward: Optional[bool] = None,
partner_metadata: Optional[Mapping[str, str]] = None,
network_interfaces: Optional[Sequence[InstanceFromMachineImageNetworkInterfaceArgs]] = None,
network_performance_config: Optional[InstanceFromMachineImageNetworkPerformanceConfigArgs] = None,
params: Optional[InstanceFromMachineImageParamsArgs] = None,
name: Optional[str] = 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,
advanced_machine_features: Optional[InstanceFromMachineImageAdvancedMachineFeaturesArgs] = None,
tags: Optional[Sequence[str]] = None,
metadata_startup_script: Optional[str] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var instanceFromMachineImageResource = new Gcp.Compute.InstanceFromMachineImage("instanceFromMachineImageResource", new()
{
SourceMachineImage = "string",
MinCpuPlatform = "string",
AllowStoppingForUpdate = false,
ConfidentialInstanceConfig = new Gcp.Compute.Inputs.InstanceFromMachineImageConfidentialInstanceConfigArgs
{
ConfidentialInstanceType = "string",
EnableConfidentialCompute = false,
},
DeletionProtection = false,
Description = "string",
DesiredStatus = "string",
EnableDisplay = false,
GuestAccelerators = new[]
{
new Gcp.Compute.Inputs.InstanceFromMachineImageGuestAcceleratorArgs
{
Count = 0,
Type = "string",
},
},
Hostname = "string",
Labels =
{
{ "string", "string" },
},
MachineType = "string",
Metadata =
{
{ "string", "string" },
},
Zone = "string",
CanIpForward = false,
PartnerMetadata =
{
{ "string", "string" },
},
NetworkInterfaces = new[]
{
new Gcp.Compute.Inputs.InstanceFromMachineImageNetworkInterfaceArgs
{
AccessConfigs = new[]
{
new Gcp.Compute.Inputs.InstanceFromMachineImageNetworkInterfaceAccessConfigArgs
{
NatIp = "string",
NetworkTier = "string",
PublicPtrDomainName = "string",
SecurityPolicy = "string",
},
},
AliasIpRanges = new[]
{
new Gcp.Compute.Inputs.InstanceFromMachineImageNetworkInterfaceAliasIpRangeArgs
{
IpCidrRange = "string",
SubnetworkRangeName = "string",
},
},
InternalIpv6PrefixLength = 0,
Ipv6AccessConfigs = new[]
{
new Gcp.Compute.Inputs.InstanceFromMachineImageNetworkInterfaceIpv6AccessConfigArgs
{
NetworkTier = "string",
ExternalIpv6 = "string",
ExternalIpv6PrefixLength = "string",
Name = "string",
PublicPtrDomainName = "string",
SecurityPolicy = "string",
},
},
Ipv6AccessType = "string",
Ipv6Address = "string",
Name = "string",
Network = "string",
NetworkAttachment = "string",
NetworkIp = "string",
NicType = "string",
QueueCount = 0,
SecurityPolicy = "string",
StackType = "string",
Subnetwork = "string",
SubnetworkProject = "string",
},
},
NetworkPerformanceConfig = new Gcp.Compute.Inputs.InstanceFromMachineImageNetworkPerformanceConfigArgs
{
TotalEgressBandwidthTier = "string",
},
Params = new Gcp.Compute.Inputs.InstanceFromMachineImageParamsArgs
{
ResourceManagerTags =
{
{ "string", "string" },
},
},
Name = "string",
Project = "string",
ReservationAffinity = new Gcp.Compute.Inputs.InstanceFromMachineImageReservationAffinityArgs
{
Type = "string",
SpecificReservation = new Gcp.Compute.Inputs.InstanceFromMachineImageReservationAffinitySpecificReservationArgs
{
Key = "string",
Values = new[]
{
"string",
},
},
},
ResourcePolicies = "string",
Scheduling = new Gcp.Compute.Inputs.InstanceFromMachineImageSchedulingArgs
{
AutomaticRestart = false,
InstanceTerminationAction = "string",
LocalSsdRecoveryTimeout = new Gcp.Compute.Inputs.InstanceFromMachineImageSchedulingLocalSsdRecoveryTimeoutArgs
{
Seconds = 0,
Nanos = 0,
},
MaintenanceInterval = "string",
MaxRunDuration = new Gcp.Compute.Inputs.InstanceFromMachineImageSchedulingMaxRunDurationArgs
{
Seconds = 0,
Nanos = 0,
},
MinNodeCpus = 0,
NodeAffinities = new[]
{
new Gcp.Compute.Inputs.InstanceFromMachineImageSchedulingNodeAffinityArgs
{
Key = "string",
Operator = "string",
Values = new[]
{
"string",
},
},
},
OnHostMaintenance = "string",
OnInstanceStopAction = new Gcp.Compute.Inputs.InstanceFromMachineImageSchedulingOnInstanceStopActionArgs
{
DiscardLocalSsd = false,
},
Preemptible = false,
ProvisioningModel = "string",
},
ServiceAccount = new Gcp.Compute.Inputs.InstanceFromMachineImageServiceAccountArgs
{
Scopes = new[]
{
"string",
},
Email = "string",
},
ShieldedInstanceConfig = new Gcp.Compute.Inputs.InstanceFromMachineImageShieldedInstanceConfigArgs
{
EnableIntegrityMonitoring = false,
EnableSecureBoot = false,
EnableVtpm = false,
},
AdvancedMachineFeatures = new Gcp.Compute.Inputs.InstanceFromMachineImageAdvancedMachineFeaturesArgs
{
EnableNestedVirtualization = false,
ThreadsPerCore = 0,
VisibleCoreCount = 0,
},
Tags = new[]
{
"string",
},
MetadataStartupScript = "string",
});
example, err := compute.NewInstanceFromMachineImage(ctx, "instanceFromMachineImageResource", &compute.InstanceFromMachineImageArgs{
SourceMachineImage: pulumi.String("string"),
MinCpuPlatform: pulumi.String("string"),
AllowStoppingForUpdate: pulumi.Bool(false),
ConfidentialInstanceConfig: &compute.InstanceFromMachineImageConfidentialInstanceConfigArgs{
ConfidentialInstanceType: pulumi.String("string"),
EnableConfidentialCompute: pulumi.Bool(false),
},
DeletionProtection: pulumi.Bool(false),
Description: pulumi.String("string"),
DesiredStatus: pulumi.String("string"),
EnableDisplay: pulumi.Bool(false),
GuestAccelerators: compute.InstanceFromMachineImageGuestAcceleratorArray{
&compute.InstanceFromMachineImageGuestAcceleratorArgs{
Count: pulumi.Int(0),
Type: pulumi.String("string"),
},
},
Hostname: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
MachineType: pulumi.String("string"),
Metadata: pulumi.StringMap{
"string": pulumi.String("string"),
},
Zone: pulumi.String("string"),
CanIpForward: pulumi.Bool(false),
PartnerMetadata: pulumi.StringMap{
"string": pulumi.String("string"),
},
NetworkInterfaces: compute.InstanceFromMachineImageNetworkInterfaceArray{
&compute.InstanceFromMachineImageNetworkInterfaceArgs{
AccessConfigs: compute.InstanceFromMachineImageNetworkInterfaceAccessConfigArray{
&compute.InstanceFromMachineImageNetworkInterfaceAccessConfigArgs{
NatIp: pulumi.String("string"),
NetworkTier: pulumi.String("string"),
PublicPtrDomainName: pulumi.String("string"),
SecurityPolicy: pulumi.String("string"),
},
},
AliasIpRanges: compute.InstanceFromMachineImageNetworkInterfaceAliasIpRangeArray{
&compute.InstanceFromMachineImageNetworkInterfaceAliasIpRangeArgs{
IpCidrRange: pulumi.String("string"),
SubnetworkRangeName: pulumi.String("string"),
},
},
InternalIpv6PrefixLength: pulumi.Int(0),
Ipv6AccessConfigs: compute.InstanceFromMachineImageNetworkInterfaceIpv6AccessConfigArray{
&compute.InstanceFromMachineImageNetworkInterfaceIpv6AccessConfigArgs{
NetworkTier: pulumi.String("string"),
ExternalIpv6: pulumi.String("string"),
ExternalIpv6PrefixLength: pulumi.String("string"),
Name: pulumi.String("string"),
PublicPtrDomainName: pulumi.String("string"),
SecurityPolicy: pulumi.String("string"),
},
},
Ipv6AccessType: pulumi.String("string"),
Ipv6Address: pulumi.String("string"),
Name: pulumi.String("string"),
Network: pulumi.String("string"),
NetworkAttachment: pulumi.String("string"),
NetworkIp: pulumi.String("string"),
NicType: pulumi.String("string"),
QueueCount: pulumi.Int(0),
SecurityPolicy: pulumi.String("string"),
StackType: pulumi.String("string"),
Subnetwork: pulumi.String("string"),
SubnetworkProject: pulumi.String("string"),
},
},
NetworkPerformanceConfig: &compute.InstanceFromMachineImageNetworkPerformanceConfigArgs{
TotalEgressBandwidthTier: pulumi.String("string"),
},
Params: &compute.InstanceFromMachineImageParamsArgs{
ResourceManagerTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Project: pulumi.String("string"),
ReservationAffinity: &compute.InstanceFromMachineImageReservationAffinityArgs{
Type: pulumi.String("string"),
SpecificReservation: &compute.InstanceFromMachineImageReservationAffinitySpecificReservationArgs{
Key: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
ResourcePolicies: pulumi.String("string"),
Scheduling: &compute.InstanceFromMachineImageSchedulingArgs{
AutomaticRestart: pulumi.Bool(false),
InstanceTerminationAction: pulumi.String("string"),
LocalSsdRecoveryTimeout: &compute.InstanceFromMachineImageSchedulingLocalSsdRecoveryTimeoutArgs{
Seconds: pulumi.Int(0),
Nanos: pulumi.Int(0),
},
MaintenanceInterval: pulumi.String("string"),
MaxRunDuration: &compute.InstanceFromMachineImageSchedulingMaxRunDurationArgs{
Seconds: pulumi.Int(0),
Nanos: pulumi.Int(0),
},
MinNodeCpus: pulumi.Int(0),
NodeAffinities: compute.InstanceFromMachineImageSchedulingNodeAffinityArray{
&compute.InstanceFromMachineImageSchedulingNodeAffinityArgs{
Key: pulumi.String("string"),
Operator: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
OnHostMaintenance: pulumi.String("string"),
OnInstanceStopAction: &compute.InstanceFromMachineImageSchedulingOnInstanceStopActionArgs{
DiscardLocalSsd: pulumi.Bool(false),
},
Preemptible: pulumi.Bool(false),
ProvisioningModel: pulumi.String("string"),
},
ServiceAccount: &compute.InstanceFromMachineImageServiceAccountArgs{
Scopes: pulumi.StringArray{
pulumi.String("string"),
},
Email: pulumi.String("string"),
},
ShieldedInstanceConfig: &compute.InstanceFromMachineImageShieldedInstanceConfigArgs{
EnableIntegrityMonitoring: pulumi.Bool(false),
EnableSecureBoot: pulumi.Bool(false),
EnableVtpm: pulumi.Bool(false),
},
AdvancedMachineFeatures: &compute.InstanceFromMachineImageAdvancedMachineFeaturesArgs{
EnableNestedVirtualization: pulumi.Bool(false),
ThreadsPerCore: pulumi.Int(0),
VisibleCoreCount: pulumi.Int(0),
},
Tags: pulumi.StringArray{
pulumi.String("string"),
},
MetadataStartupScript: pulumi.String("string"),
})
var instanceFromMachineImageResource = new InstanceFromMachineImage("instanceFromMachineImageResource", InstanceFromMachineImageArgs.builder()
.sourceMachineImage("string")
.minCpuPlatform("string")
.allowStoppingForUpdate(false)
.confidentialInstanceConfig(InstanceFromMachineImageConfidentialInstanceConfigArgs.builder()
.confidentialInstanceType("string")
.enableConfidentialCompute(false)
.build())
.deletionProtection(false)
.description("string")
.desiredStatus("string")
.enableDisplay(false)
.guestAccelerators(InstanceFromMachineImageGuestAcceleratorArgs.builder()
.count(0)
.type("string")
.build())
.hostname("string")
.labels(Map.of("string", "string"))
.machineType("string")
.metadata(Map.of("string", "string"))
.zone("string")
.canIpForward(false)
.partnerMetadata(Map.of("string", "string"))
.networkInterfaces(InstanceFromMachineImageNetworkInterfaceArgs.builder()
.accessConfigs(InstanceFromMachineImageNetworkInterfaceAccessConfigArgs.builder()
.natIp("string")
.networkTier("string")
.publicPtrDomainName("string")
.securityPolicy("string")
.build())
.aliasIpRanges(InstanceFromMachineImageNetworkInterfaceAliasIpRangeArgs.builder()
.ipCidrRange("string")
.subnetworkRangeName("string")
.build())
.internalIpv6PrefixLength(0)
.ipv6AccessConfigs(InstanceFromMachineImageNetworkInterfaceIpv6AccessConfigArgs.builder()
.networkTier("string")
.externalIpv6("string")
.externalIpv6PrefixLength("string")
.name("string")
.publicPtrDomainName("string")
.securityPolicy("string")
.build())
.ipv6AccessType("string")
.ipv6Address("string")
.name("string")
.network("string")
.networkAttachment("string")
.networkIp("string")
.nicType("string")
.queueCount(0)
.securityPolicy("string")
.stackType("string")
.subnetwork("string")
.subnetworkProject("string")
.build())
.networkPerformanceConfig(InstanceFromMachineImageNetworkPerformanceConfigArgs.builder()
.totalEgressBandwidthTier("string")
.build())
.params(InstanceFromMachineImageParamsArgs.builder()
.resourceManagerTags(Map.of("string", "string"))
.build())
.name("string")
.project("string")
.reservationAffinity(InstanceFromMachineImageReservationAffinityArgs.builder()
.type("string")
.specificReservation(InstanceFromMachineImageReservationAffinitySpecificReservationArgs.builder()
.key("string")
.values("string")
.build())
.build())
.resourcePolicies("string")
.scheduling(InstanceFromMachineImageSchedulingArgs.builder()
.automaticRestart(false)
.instanceTerminationAction("string")
.localSsdRecoveryTimeout(InstanceFromMachineImageSchedulingLocalSsdRecoveryTimeoutArgs.builder()
.seconds(0)
.nanos(0)
.build())
.maintenanceInterval("string")
.maxRunDuration(InstanceFromMachineImageSchedulingMaxRunDurationArgs.builder()
.seconds(0)
.nanos(0)
.build())
.minNodeCpus(0)
.nodeAffinities(InstanceFromMachineImageSchedulingNodeAffinityArgs.builder()
.key("string")
.operator("string")
.values("string")
.build())
.onHostMaintenance("string")
.onInstanceStopAction(InstanceFromMachineImageSchedulingOnInstanceStopActionArgs.builder()
.discardLocalSsd(false)
.build())
.preemptible(false)
.provisioningModel("string")
.build())
.serviceAccount(InstanceFromMachineImageServiceAccountArgs.builder()
.scopes("string")
.email("string")
.build())
.shieldedInstanceConfig(InstanceFromMachineImageShieldedInstanceConfigArgs.builder()
.enableIntegrityMonitoring(false)
.enableSecureBoot(false)
.enableVtpm(false)
.build())
.advancedMachineFeatures(InstanceFromMachineImageAdvancedMachineFeaturesArgs.builder()
.enableNestedVirtualization(false)
.threadsPerCore(0)
.visibleCoreCount(0)
.build())
.tags("string")
.metadataStartupScript("string")
.build());
instance_from_machine_image_resource = gcp.compute.InstanceFromMachineImage("instanceFromMachineImageResource",
source_machine_image="string",
min_cpu_platform="string",
allow_stopping_for_update=False,
confidential_instance_config={
"confidentialInstanceType": "string",
"enableConfidentialCompute": False,
},
deletion_protection=False,
description="string",
desired_status="string",
enable_display=False,
guest_accelerators=[{
"count": 0,
"type": "string",
}],
hostname="string",
labels={
"string": "string",
},
machine_type="string",
metadata={
"string": "string",
},
zone="string",
can_ip_forward=False,
partner_metadata={
"string": "string",
},
network_interfaces=[{
"accessConfigs": [{
"natIp": "string",
"networkTier": "string",
"publicPtrDomainName": "string",
"securityPolicy": "string",
}],
"aliasIpRanges": [{
"ipCidrRange": "string",
"subnetworkRangeName": "string",
}],
"internalIpv6PrefixLength": 0,
"ipv6AccessConfigs": [{
"networkTier": "string",
"externalIpv6": "string",
"externalIpv6PrefixLength": "string",
"name": "string",
"publicPtrDomainName": "string",
"securityPolicy": "string",
}],
"ipv6AccessType": "string",
"ipv6Address": "string",
"name": "string",
"network": "string",
"networkAttachment": "string",
"networkIp": "string",
"nicType": "string",
"queueCount": 0,
"securityPolicy": "string",
"stackType": "string",
"subnetwork": "string",
"subnetworkProject": "string",
}],
network_performance_config={
"totalEgressBandwidthTier": "string",
},
params={
"resourceManagerTags": {
"string": "string",
},
},
name="string",
project="string",
reservation_affinity={
"type": "string",
"specificReservation": {
"key": "string",
"values": ["string"],
},
},
resource_policies="string",
scheduling={
"automaticRestart": False,
"instanceTerminationAction": "string",
"localSsdRecoveryTimeout": {
"seconds": 0,
"nanos": 0,
},
"maintenanceInterval": "string",
"maxRunDuration": {
"seconds": 0,
"nanos": 0,
},
"minNodeCpus": 0,
"nodeAffinities": [{
"key": "string",
"operator": "string",
"values": ["string"],
}],
"onHostMaintenance": "string",
"onInstanceStopAction": {
"discardLocalSsd": False,
},
"preemptible": False,
"provisioningModel": "string",
},
service_account={
"scopes": ["string"],
"email": "string",
},
shielded_instance_config={
"enableIntegrityMonitoring": False,
"enableSecureBoot": False,
"enableVtpm": False,
},
advanced_machine_features={
"enableNestedVirtualization": False,
"threadsPerCore": 0,
"visibleCoreCount": 0,
},
tags=["string"],
metadata_startup_script="string")
const instanceFromMachineImageResource = new gcp.compute.InstanceFromMachineImage("instanceFromMachineImageResource", {
sourceMachineImage: "string",
minCpuPlatform: "string",
allowStoppingForUpdate: false,
confidentialInstanceConfig: {
confidentialInstanceType: "string",
enableConfidentialCompute: false,
},
deletionProtection: false,
description: "string",
desiredStatus: "string",
enableDisplay: false,
guestAccelerators: [{
count: 0,
type: "string",
}],
hostname: "string",
labels: {
string: "string",
},
machineType: "string",
metadata: {
string: "string",
},
zone: "string",
canIpForward: false,
partnerMetadata: {
string: "string",
},
networkInterfaces: [{
accessConfigs: [{
natIp: "string",
networkTier: "string",
publicPtrDomainName: "string",
securityPolicy: "string",
}],
aliasIpRanges: [{
ipCidrRange: "string",
subnetworkRangeName: "string",
}],
internalIpv6PrefixLength: 0,
ipv6AccessConfigs: [{
networkTier: "string",
externalIpv6: "string",
externalIpv6PrefixLength: "string",
name: "string",
publicPtrDomainName: "string",
securityPolicy: "string",
}],
ipv6AccessType: "string",
ipv6Address: "string",
name: "string",
network: "string",
networkAttachment: "string",
networkIp: "string",
nicType: "string",
queueCount: 0,
securityPolicy: "string",
stackType: "string",
subnetwork: "string",
subnetworkProject: "string",
}],
networkPerformanceConfig: {
totalEgressBandwidthTier: "string",
},
params: {
resourceManagerTags: {
string: "string",
},
},
name: "string",
project: "string",
reservationAffinity: {
type: "string",
specificReservation: {
key: "string",
values: ["string"],
},
},
resourcePolicies: "string",
scheduling: {
automaticRestart: false,
instanceTerminationAction: "string",
localSsdRecoveryTimeout: {
seconds: 0,
nanos: 0,
},
maintenanceInterval: "string",
maxRunDuration: {
seconds: 0,
nanos: 0,
},
minNodeCpus: 0,
nodeAffinities: [{
key: "string",
operator: "string",
values: ["string"],
}],
onHostMaintenance: "string",
onInstanceStopAction: {
discardLocalSsd: false,
},
preemptible: false,
provisioningModel: "string",
},
serviceAccount: {
scopes: ["string"],
email: "string",
},
shieldedInstanceConfig: {
enableIntegrityMonitoring: false,
enableSecureBoot: false,
enableVtpm: false,
},
advancedMachineFeatures: {
enableNestedVirtualization: false,
threadsPerCore: 0,
visibleCoreCount: 0,
},
tags: ["string"],
metadataStartupScript: "string",
});
type: gcp:compute:InstanceFromMachineImage
properties:
advancedMachineFeatures:
enableNestedVirtualization: false
threadsPerCore: 0
visibleCoreCount: 0
allowStoppingForUpdate: false
canIpForward: false
confidentialInstanceConfig:
confidentialInstanceType: string
enableConfidentialCompute: false
deletionProtection: false
description: string
desiredStatus: string
enableDisplay: false
guestAccelerators:
- count: 0
type: string
hostname: string
labels:
string: string
machineType: string
metadata:
string: string
metadataStartupScript: string
minCpuPlatform: string
name: string
networkInterfaces:
- accessConfigs:
- natIp: string
networkTier: string
publicPtrDomainName: string
securityPolicy: string
aliasIpRanges:
- ipCidrRange: string
subnetworkRangeName: string
internalIpv6PrefixLength: 0
ipv6AccessConfigs:
- externalIpv6: string
externalIpv6PrefixLength: string
name: string
networkTier: string
publicPtrDomainName: string
securityPolicy: string
ipv6AccessType: string
ipv6Address: string
name: string
network: string
networkAttachment: string
networkIp: string
nicType: string
queueCount: 0
securityPolicy: string
stackType: string
subnetwork: string
subnetworkProject: string
networkPerformanceConfig:
totalEgressBandwidthTier: string
params:
resourceManagerTags:
string: string
partnerMetadata:
string: string
project: string
reservationAffinity:
specificReservation:
key: string
values:
- string
type: string
resourcePolicies: string
scheduling:
automaticRestart: false
instanceTerminationAction: string
localSsdRecoveryTimeout:
nanos: 0
seconds: 0
maintenanceInterval: string
maxRunDuration:
nanos: 0
seconds: 0
minNodeCpus: 0
nodeAffinities:
- key: string
operator: string
values:
- string
onHostMaintenance: string
onInstanceStopAction:
discardLocalSsd: false
preemptible: false
provisioningModel: string
serviceAccount:
email: string
scopes:
- string
shieldedInstanceConfig:
enableIntegrityMonitoring: false
enableSecureBoot: false
enableVtpm: false
sourceMachineImage: string
tags:
- string
zone: string
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:
- Source
Machine stringImage - Name or self link of a machine
image to create the instance based on.
- Advanced
Machine InstanceFeatures From Machine Image Advanced Machine Features - Controls for advanced machine-related behavior features.
- Allow
Stopping boolFor Update - Can
Ip boolForward - Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
- Confidential
Instance InstanceConfig From Machine Image Confidential Instance Config - The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
- Deletion
Protection bool - Whether deletion protection is enabled on this instance.
- Description string
- A brief description of the resource.
- Desired
Status string - Desired status of the instance. Either "RUNNING" or "TERMINATED".
- Enable
Display bool - Whether the instance has virtual displays enabled.
- Guest
Accelerators List<InstanceFrom Machine Image Guest Accelerator> - 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.
- Machine
Type string - The machine type to create.
- Metadata Dictionary<string, string>
- Metadata key/value pairs made available within the instance.
- Metadata
Startup stringScript - Metadata startup scripts made available within the instance.
- Min
Cpu stringPlatform - 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.
- Network
Interfaces List<InstanceFrom Machine Image Network Interface> - The networks attached to the instance.
- Network
Performance InstanceConfig From Machine Image Network Performance Config - Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
- Params
Instance
From Machine Image Params - Stores additional params passed with the request, but not persisted as part of resource payload.
- Partner
Metadata Dictionary<string, string> - Partner Metadata Map made available within the instance.
- 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.
- Reservation
Affinity InstanceFrom Machine Image Reservation Affinity - Specifies the reservations that this instance can consume from.
- Resource
Policies string - A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
- Scheduling
Instance
From Machine Image Scheduling - The scheduling strategy being used by the instance.
- Service
Account InstanceFrom Machine Image Service Account - The service account to attach to the instance.
- Shielded
Instance InstanceConfig From Machine Image Shielded Instance Config - The shielded vm config being used by the instance.
- 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 fromgcp.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 stringImage - Name or self link of a machine
image to create the instance based on.
- Advanced
Machine InstanceFeatures From Machine Image Advanced Machine Features Args - Controls for advanced machine-related behavior features.
- Allow
Stopping boolFor Update - Can
Ip boolForward - Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
- Confidential
Instance InstanceConfig From Machine Image Confidential Instance Config Args - 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 string
- A brief description of the resource.
- Desired
Status string - Desired status of the instance. Either "RUNNING" or "TERMINATED".
- Enable
Display bool - Whether the instance has virtual displays enabled.
- Guest
Accelerators []InstanceFrom Machine Image Guest Accelerator Args - 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.
- Machine
Type string - The machine type to create.
- Metadata map[string]string
- Metadata key/value pairs made available within the instance.
- Metadata
Startup stringScript - Metadata startup scripts made available within the instance.
- Min
Cpu stringPlatform - 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.
- Network
Interfaces []InstanceFrom Machine Image Network Interface Args - The networks attached to the instance.
- Network
Performance InstanceConfig From Machine Image Network Performance Config Args - Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
- Params
Instance
From Machine Image Params Args - Stores additional params passed with the request, but not persisted as part of resource payload.
- Partner
Metadata map[string]string - Partner Metadata Map made available within the instance.
- 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.
- Reservation
Affinity InstanceFrom Machine Image Reservation Affinity Args - Specifies the reservations that this instance can consume from.
- Resource
Policies string - A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
- Scheduling
Instance
From Machine Image Scheduling Args - The scheduling strategy being used by the instance.
- Service
Account InstanceFrom Machine Image Service Account Args - The service account to attach to the instance.
- Shielded
Instance InstanceConfig From Machine Image Shielded Instance Config Args - The shielded vm config being used by the instance.
- []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 fromgcp.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 StringImage - Name or self link of a machine
image to create the instance based on.
- advanced
Machine InstanceFeatures From Machine Image Advanced Machine Features - Controls for advanced machine-related behavior features.
- allow
Stopping BooleanFor Update - can
Ip BooleanForward - Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
- confidential
Instance InstanceConfig From Machine Image Confidential Instance Config - The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
- deletion
Protection Boolean - Whether deletion protection is enabled on this instance.
- description String
- A brief description of the resource.
- desired
Status String - Desired status of the instance. Either "RUNNING" or "TERMINATED".
- enable
Display Boolean - Whether the instance has virtual displays enabled.
- guest
Accelerators List<InstanceFrom Machine Image Guest Accelerator> - 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.
- machine
Type String - The machine type to create.
- metadata Map<String,String>
- Metadata key/value pairs made available within the instance.
- metadata
Startup StringScript - Metadata startup scripts made available within the instance.
- min
Cpu StringPlatform - 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.
- network
Interfaces List<InstanceFrom Machine Image Network Interface> - The networks attached to the instance.
- network
Performance InstanceConfig From Machine Image Network Performance Config - Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
- params
Instance
From Machine Image Params - Stores additional params passed with the request, but not persisted as part of resource payload.
- partner
Metadata Map<String,String> - Partner Metadata Map made available within the instance.
- 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.
- reservation
Affinity InstanceFrom Machine Image Reservation Affinity - Specifies the reservations that this instance can consume from.
- resource
Policies String - A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
- scheduling
Instance
From Machine Image Scheduling - The scheduling strategy being used by the instance.
- service
Account InstanceFrom Machine Image Service Account - The service account to attach to the instance.
- shielded
Instance InstanceConfig From Machine Image Shielded Instance Config - The shielded vm config being used by the instance.
- 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 fromgcp.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 stringImage - Name or self link of a machine
image to create the instance based on.
- advanced
Machine InstanceFeatures From Machine Image Advanced Machine Features - Controls for advanced machine-related behavior features.
- allow
Stopping booleanFor Update - can
Ip booleanForward - Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
- confidential
Instance InstanceConfig From Machine Image Confidential Instance Config - The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
- deletion
Protection boolean - Whether deletion protection is enabled on this instance.
- description string
- A brief description of the resource.
- desired
Status string - Desired status of the instance. Either "RUNNING" or "TERMINATED".
- enable
Display boolean - Whether the instance has virtual displays enabled.
- guest
Accelerators InstanceFrom Machine Image Guest Accelerator[] - 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.
- machine
Type string - The machine type to create.
- metadata {[key: string]: string}
- Metadata key/value pairs made available within the instance.
- metadata
Startup stringScript - Metadata startup scripts made available within the instance.
- min
Cpu stringPlatform - 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.
- network
Interfaces InstanceFrom Machine Image Network Interface[] - The networks attached to the instance.
- network
Performance InstanceConfig From Machine Image Network Performance Config - Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
- params
Instance
From Machine Image Params - Stores additional params passed with the request, but not persisted as part of resource payload.
- partner
Metadata {[key: string]: string} - Partner Metadata Map made available within the instance.
- 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.
- reservation
Affinity InstanceFrom Machine Image Reservation Affinity - Specifies the reservations that this instance can consume from.
- resource
Policies string - A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
- scheduling
Instance
From Machine Image Scheduling - The scheduling strategy being used by the instance.
- service
Account InstanceFrom Machine Image Service Account - The service account to attach to the instance.
- shielded
Instance InstanceConfig From Machine Image Shielded Instance Config - The shielded vm config being used by the instance.
- 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 fromgcp.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_ strimage - Name or self link of a machine
image to create the instance based on.
- advanced_
machine_ Instancefeatures From Machine Image Advanced Machine Features Args - Controls for advanced machine-related behavior features.
- allow_
stopping_ boolfor_ update - can_
ip_ boolforward - Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
- confidential_
instance_ Instanceconfig From Machine Image Confidential Instance Config Args - 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[InstanceFrom Machine Image Guest Accelerator Args] - 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_ strscript - Metadata startup scripts made available within the instance.
- min_
cpu_ strplatform - 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[InstanceFrom Machine Image Network Interface Args] - The networks attached to the instance.
- network_
performance_ Instanceconfig From Machine Image Network Performance Config Args - Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
- params
Instance
From Machine Image Params Args - Stores additional params passed with the request, but not persisted as part of resource payload.
- partner_
metadata Mapping[str, str] - Partner Metadata Map made available within the instance.
- 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 InstanceFrom Machine Image Reservation Affinity Args - 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
Instance
From Machine Image Scheduling Args - The scheduling strategy being used by the instance.
- service_
account InstanceFrom Machine Image Service Account Args - The service account to attach to the instance.
- shielded_
instance_ Instanceconfig From Machine Image Shielded Instance Config Args - The shielded vm config being used by the instance.
- 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 fromgcp.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 StringImage - Name or self link of a machine
image to create the instance based on.
- advanced
Machine Property MapFeatures - Controls for advanced machine-related behavior features.
- allow
Stopping BooleanFor Update - can
Ip BooleanForward - Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
- confidential
Instance Property MapConfig - 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 Boolean - Whether deletion protection is enabled on this instance.
- description String
- A brief description of the resource.
- desired
Status String - Desired status of the instance. Either "RUNNING" or "TERMINATED".
- enable
Display Boolean - Whether the instance has virtual displays enabled.
- guest
Accelerators 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.
- machine
Type String - The machine type to create.
- metadata Map<String>
- Metadata key/value pairs made available within the instance.
- metadata
Startup StringScript - Metadata startup scripts made available within the instance.
- min
Cpu StringPlatform - 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.
- network
Interfaces List<Property Map> - The networks attached to the instance.
- network
Performance Property MapConfig - 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.
- partner
Metadata Map<String> - Partner Metadata Map made available within the instance.
- 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.
- reservation
Affinity Property Map - Specifies the reservations that this instance can consume from.
- resource
Policies 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.
- service
Account Property Map - The service account to attach to the instance.
- shielded
Instance Property MapConfig - The shielded vm config being used by the instance.
- 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 fromgcp.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:
- Attached
Disks List<InstanceFrom Machine Image Attached Disk> - List of disks attached to the instance
- Boot
Disks List<InstanceFrom Machine Image Boot Disk> - The boot disk for the instance.
- Cpu
Platform string - The CPU platform used by this instance.
- Current
Status 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.
- Effective
Labels Dictionary<string, string> - Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Id string - The server-assigned unique identifier of this instance.
- Label
Fingerprint string - The unique fingerprint of the labels.
- Metadata
Fingerprint string - The unique fingerprint of the metadata.
- Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- Scratch
Disks List<InstanceFrom Machine Image Scratch Disk> - The scratch disks attached to the instance.
- Self
Link string - The URI of the created resource.
- string
- The unique fingerprint of the tags.
- Attached
Disks []InstanceFrom Machine Image Attached Disk - List of disks attached to the instance
- Boot
Disks []InstanceFrom Machine Image Boot Disk - The boot disk for the instance.
- Cpu
Platform string - The CPU platform used by this instance.
- Current
Status 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.
- Effective
Labels map[string]string - Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Id string - The server-assigned unique identifier of this instance.
- Label
Fingerprint string - The unique fingerprint of the labels.
- Metadata
Fingerprint string - The unique fingerprint of the metadata.
- Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- Scratch
Disks []InstanceFrom Machine Image Scratch Disk - The scratch disks attached to the instance.
- Self
Link string - The URI of the created resource.
- string
- The unique fingerprint of the tags.
- attached
Disks List<InstanceFrom Machine Image Attached Disk> - List of disks attached to the instance
- boot
Disks List<InstanceFrom Machine Image Boot Disk> - The boot disk for the instance.
- cpu
Platform String - The CPU platform used by this instance.
- current
Status 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.
- effective
Labels Map<String,String> - id String
- The provider-assigned unique ID for this managed resource.
- instance
Id String - The server-assigned unique identifier of this instance.
- label
Fingerprint String - The unique fingerprint of the labels.
- metadata
Fingerprint String - The unique fingerprint of the metadata.
- pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- scratch
Disks List<InstanceFrom Machine Image Scratch Disk> - The scratch disks attached to the instance.
- self
Link String - The URI of the created resource.
- String
- The unique fingerprint of the tags.
- attached
Disks InstanceFrom Machine Image Attached Disk[] - List of disks attached to the instance
- boot
Disks InstanceFrom Machine Image Boot Disk[] - The boot disk for the instance.
- cpu
Platform string - The CPU platform used by this instance.
- current
Status 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.
- effective
Labels {[key: string]: string} - id string
- The provider-assigned unique ID for this managed resource.
- instance
Id string - The server-assigned unique identifier of this instance.
- label
Fingerprint string - The unique fingerprint of the labels.
- metadata
Fingerprint string - The unique fingerprint of the metadata.
- pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- scratch
Disks InstanceFrom Machine Image Scratch Disk[] - The scratch disks attached to the instance.
- self
Link string - The URI of the created resource.
- string
- The unique fingerprint of the tags.
- attached_
disks Sequence[InstanceFrom Machine Image Attached Disk] - List of disks attached to the instance
- boot_
disks Sequence[InstanceFrom Machine Image Boot Disk] - 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] - 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[InstanceFrom Machine Image Scratch Disk] - The scratch disks attached to the instance.
- self_
link str - The URI of the created resource.
- str
- The unique fingerprint of the tags.
- attached
Disks List<Property Map> - List of disks attached to the instance
- boot
Disks List<Property Map> - The boot disk for the instance.
- cpu
Platform String - The CPU platform used by this instance.
- current
Status 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.
- effective
Labels Map<String> - id String
- The provider-assigned unique ID for this managed resource.
- instance
Id String - The server-assigned unique identifier of this instance.
- label
Fingerprint String - The unique fingerprint of the labels.
- metadata
Fingerprint String - The unique fingerprint of the metadata.
- pulumi
Labels Map<String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- scratch
Disks List<Property Map> - The scratch disks attached to the instance.
- self
Link String - The URI of the created resource.
- 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,
partner_metadata: Optional[Mapping[str, str]] = 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.
- Advanced
Machine InstanceFeatures From Machine Image Advanced Machine Features - Controls for advanced machine-related behavior features.
- Allow
Stopping boolFor Update - Attached
Disks List<InstanceFrom Machine Image Attached Disk> - List of disks attached to the instance
- Boot
Disks List<InstanceFrom Machine Image Boot Disk> - The boot disk for the instance.
- Can
Ip boolForward - Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
- Confidential
Instance InstanceConfig From Machine Image Confidential Instance Config - The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
- Cpu
Platform string - The CPU platform used by this instance.
- Current
Status 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.
- Deletion
Protection bool - Whether deletion protection is enabled on this instance.
- Description string
- A brief description of the resource.
- Desired
Status string - Desired status of the instance. Either "RUNNING" or "TERMINATED".
- Effective
Labels Dictionary<string, string> - Enable
Display bool - Whether the instance has virtual displays enabled.
- Guest
Accelerators List<InstanceFrom Machine Image Guest Accelerator> - 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.
- Instance
Id string - The server-assigned unique identifier of this instance.
- Label
Fingerprint 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.
- Machine
Type string - The machine type to create.
- Metadata Dictionary<string, string>
- Metadata key/value pairs made available within the instance.
- Metadata
Fingerprint string - The unique fingerprint of the metadata.
- Metadata
Startup stringScript - Metadata startup scripts made available within the instance.
- Min
Cpu stringPlatform - 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.
- Network
Interfaces List<InstanceFrom Machine Image Network Interface> - The networks attached to the instance.
- Network
Performance InstanceConfig From Machine Image Network Performance Config - Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
- Params
Instance
From Machine Image Params - Stores additional params passed with the request, but not persisted as part of resource payload.
- Partner
Metadata Dictionary<string, string> - Partner Metadata Map made available within the instance.
- 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.
- Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- Reservation
Affinity InstanceFrom Machine Image Reservation Affinity - Specifies the reservations that this instance can consume from.
- Resource
Policies string - A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
- Scheduling
Instance
From Machine Image Scheduling - The scheduling strategy being used by the instance.
- Scratch
Disks List<InstanceFrom Machine Image Scratch Disk> - The scratch disks attached to the instance.
- Self
Link string - The URI of the created resource.
- Service
Account InstanceFrom Machine Image Service Account - The service account to attach to the instance.
- Shielded
Instance InstanceConfig From Machine Image Shielded Instance Config - The shielded vm config being used by the instance.
- Source
Machine stringImage - Name or self link of a machine
image to create the instance based on.
- List<string>
- The list of tags attached to the instance.
- 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 fromgcp.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 InstanceFeatures From Machine Image Advanced Machine Features Args - Controls for advanced machine-related behavior features.
- Allow
Stopping boolFor Update - Attached
Disks []InstanceFrom Machine Image Attached Disk Args - List of disks attached to the instance
- Boot
Disks []InstanceFrom Machine Image Boot Disk Args - The boot disk for the instance.
- Can
Ip boolForward - Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
- Confidential
Instance InstanceConfig From Machine Image Confidential Instance Config Args - 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 string - The CPU platform used by this instance.
- Current
Status 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.
- Deletion
Protection bool - Whether deletion protection is enabled on this instance.
- Description string
- A brief description of the resource.
- Desired
Status string - Desired status of the instance. Either "RUNNING" or "TERMINATED".
- Effective
Labels map[string]string - Enable
Display bool - Whether the instance has virtual displays enabled.
- Guest
Accelerators []InstanceFrom Machine Image Guest Accelerator Args - 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.
- Instance
Id string - The server-assigned unique identifier of this instance.
- Label
Fingerprint 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.
- Machine
Type string - The machine type to create.
- Metadata map[string]string
- Metadata key/value pairs made available within the instance.
- Metadata
Fingerprint string - The unique fingerprint of the metadata.
- Metadata
Startup stringScript - Metadata startup scripts made available within the instance.
- Min
Cpu stringPlatform - 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.
- Network
Interfaces []InstanceFrom Machine Image Network Interface Args - The networks attached to the instance.
- Network
Performance InstanceConfig From Machine Image Network Performance Config Args - Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
- Params
Instance
From Machine Image Params Args - Stores additional params passed with the request, but not persisted as part of resource payload.
- Partner
Metadata map[string]string - Partner Metadata Map made available within the instance.
- 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.
- Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- Reservation
Affinity InstanceFrom Machine Image Reservation Affinity Args - Specifies the reservations that this instance can consume from.
- Resource
Policies string - A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
- Scheduling
Instance
From Machine Image Scheduling Args - The scheduling strategy being used by the instance.
- Scratch
Disks []InstanceFrom Machine Image Scratch Disk Args - The scratch disks attached to the instance.
- Self
Link string - The URI of the created resource.
- Service
Account InstanceFrom Machine Image Service Account Args - The service account to attach to the instance.
- Shielded
Instance InstanceConfig From Machine Image Shielded Instance Config Args - The shielded vm config being used by the instance.
- Source
Machine stringImage - Name or self link of a machine
image to create the instance based on.
- []string
- The list of tags attached to the instance.
- 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 fromgcp.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 InstanceFeatures From Machine Image Advanced Machine Features - Controls for advanced machine-related behavior features.
- allow
Stopping BooleanFor Update - attached
Disks List<InstanceFrom Machine Image Attached Disk> - List of disks attached to the instance
- boot
Disks List<InstanceFrom Machine Image Boot Disk> - The boot disk for the instance.
- can
Ip BooleanForward - Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
- confidential
Instance InstanceConfig From Machine Image Confidential Instance Config - The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
- cpu
Platform String - The CPU platform used by this instance.
- current
Status 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.
- deletion
Protection Boolean - Whether deletion protection is enabled on this instance.
- description String
- A brief description of the resource.
- desired
Status String - Desired status of the instance. Either "RUNNING" or "TERMINATED".
- effective
Labels Map<String,String> - enable
Display Boolean - Whether the instance has virtual displays enabled.
- guest
Accelerators List<InstanceFrom Machine Image Guest Accelerator> - 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.
- instance
Id String - The server-assigned unique identifier of this instance.
- label
Fingerprint 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.
- machine
Type String - The machine type to create.
- metadata Map<String,String>
- Metadata key/value pairs made available within the instance.
- metadata
Fingerprint String - The unique fingerprint of the metadata.
- metadata
Startup StringScript - Metadata startup scripts made available within the instance.
- min
Cpu StringPlatform - 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.
- network
Interfaces List<InstanceFrom Machine Image Network Interface> - The networks attached to the instance.
- network
Performance InstanceConfig From Machine Image Network Performance Config - Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
- params
Instance
From Machine Image Params - Stores additional params passed with the request, but not persisted as part of resource payload.
- partner
Metadata Map<String,String> - Partner Metadata Map made available within the instance.
- 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.
- pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- reservation
Affinity InstanceFrom Machine Image Reservation Affinity - Specifies the reservations that this instance can consume from.
- resource
Policies String - A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
- scheduling
Instance
From Machine Image Scheduling - The scheduling strategy being used by the instance.
- scratch
Disks List<InstanceFrom Machine Image Scratch Disk> - The scratch disks attached to the instance.
- self
Link String - The URI of the created resource.
- service
Account InstanceFrom Machine Image Service Account - The service account to attach to the instance.
- shielded
Instance InstanceConfig From Machine Image Shielded Instance Config - The shielded vm config being used by the instance.
- source
Machine StringImage - Name or self link of a machine
image to create the instance based on.
- List<String>
- The list of tags attached to the instance.
- 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 fromgcp.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 InstanceFeatures From Machine Image Advanced Machine Features - Controls for advanced machine-related behavior features.
- allow
Stopping booleanFor Update - attached
Disks InstanceFrom Machine Image Attached Disk[] - List of disks attached to the instance
- boot
Disks InstanceFrom Machine Image Boot Disk[] - The boot disk for the instance.
- can
Ip booleanForward - Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
- confidential
Instance InstanceConfig From Machine Image Confidential Instance Config - The Confidential VM config being used by the instance. on_host_maintenance has to be set to TERMINATE or this will fail to create.
- cpu
Platform string - The CPU platform used by this instance.
- current
Status 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.
- deletion
Protection boolean - Whether deletion protection is enabled on this instance.
- description string
- A brief description of the resource.
- desired
Status string - Desired status of the instance. Either "RUNNING" or "TERMINATED".
- effective
Labels {[key: string]: string} - enable
Display boolean - Whether the instance has virtual displays enabled.
- guest
Accelerators InstanceFrom Machine Image Guest Accelerator[] - 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.
- instance
Id string - The server-assigned unique identifier of this instance.
- label
Fingerprint 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.
- machine
Type string - The machine type to create.
- metadata {[key: string]: string}
- Metadata key/value pairs made available within the instance.
- metadata
Fingerprint string - The unique fingerprint of the metadata.
- metadata
Startup stringScript - Metadata startup scripts made available within the instance.
- min
Cpu stringPlatform - 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.
- network
Interfaces InstanceFrom Machine Image Network Interface[] - The networks attached to the instance.
- network
Performance InstanceConfig From Machine Image Network Performance Config - Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
- params
Instance
From Machine Image Params - Stores additional params passed with the request, but not persisted as part of resource payload.
- partner
Metadata {[key: string]: string} - Partner Metadata Map made available within the instance.
- 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.
- pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- reservation
Affinity InstanceFrom Machine Image Reservation Affinity - Specifies the reservations that this instance can consume from.
- resource
Policies string - A list of self_links of resource policies to attach to the instance. Currently a max of 1 resource policy is supported.
- scheduling
Instance
From Machine Image Scheduling - The scheduling strategy being used by the instance.
- scratch
Disks InstanceFrom Machine Image Scratch Disk[] - The scratch disks attached to the instance.
- self
Link string - The URI of the created resource.
- service
Account InstanceFrom Machine Image Service Account - The service account to attach to the instance.
- shielded
Instance InstanceConfig From Machine Image Shielded Instance Config - The shielded vm config being used by the instance.
- source
Machine stringImage - Name or self link of a machine
image to create the instance based on.
- string[]
- The list of tags attached to the instance.
- 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 fromgcp.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_ Instancefeatures From Machine Image Advanced Machine Features Args - Controls for advanced machine-related behavior features.
- allow_
stopping_ boolfor_ update - attached_
disks Sequence[InstanceFrom Machine Image Attached Disk Args] - List of disks attached to the instance
- boot_
disks Sequence[InstanceFrom Machine Image Boot Disk Args] - The boot disk for the instance.
- can_
ip_ boolforward - Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
- confidential_
instance_ Instanceconfig From Machine Image Confidential Instance Config Args - 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] - enable_
display bool - Whether the instance has virtual displays enabled.
- guest_
accelerators Sequence[InstanceFrom Machine Image Guest Accelerator Args] - 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_ strscript - Metadata startup scripts made available within the instance.
- min_
cpu_ strplatform - 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[InstanceFrom Machine Image Network Interface Args] - The networks attached to the instance.
- network_
performance_ Instanceconfig From Machine Image Network Performance Config Args - Configures network performance settings for the instance. If not specified, the instance will be created with its default network performance configuration.
- params
Instance
From Machine Image Params Args - Stores additional params passed with the request, but not persisted as part of resource payload.
- partner_
metadata Mapping[str, str] - Partner Metadata Map made available within the instance.
- 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 InstanceFrom Machine Image Reservation Affinity Args - 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
Instance
From Machine Image Scheduling Args - The scheduling strategy being used by the instance.
- scratch_
disks Sequence[InstanceFrom Machine Image Scratch Disk Args] - The scratch disks attached to the instance.
- self_
link str - The URI of the created resource.
- service_
account InstanceFrom Machine Image Service Account Args - The service account to attach to the instance.
- shielded_
instance_ Instanceconfig From Machine Image Shielded Instance Config Args - The shielded vm config being used by the instance.
- source_
machine_ strimage - Name or self link of a machine
image to create the instance based on.
- Sequence[str]
- The list of tags attached to the instance.
- 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 fromgcp.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 Property MapFeatures - Controls for advanced machine-related behavior features.
- allow
Stopping BooleanFor Update - attached
Disks List<Property Map> - List of disks attached to the instance
- boot
Disks List<Property Map> - The boot disk for the instance.
- can
Ip BooleanForward - Whether sending and receiving of packets with non-matching source or destination IPs is allowed.
- confidential
Instance Property MapConfig - 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 String - The CPU platform used by this instance.
- current
Status 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.
- deletion
Protection Boolean - Whether deletion protection is enabled on this instance.
- description String
- A brief description of the resource.
- desired
Status String - Desired status of the instance. Either "RUNNING" or "TERMINATED".
- effective
Labels Map<String> - enable
Display Boolean - Whether the instance has virtual displays enabled.
- guest
Accelerators 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.
- instance
Id String - The server-assigned unique identifier of this instance.
- label
Fingerprint 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.
- machine
Type String - The machine type to create.
- metadata Map<String>
- Metadata key/value pairs made available within the instance.
- metadata
Fingerprint String - The unique fingerprint of the metadata.
- metadata
Startup StringScript - Metadata startup scripts made available within the instance.
- min
Cpu StringPlatform - 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.
- network
Interfaces List<Property Map> - The networks attached to the instance.
- network
Performance Property MapConfig - 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.
- partner
Metadata Map<String> - Partner Metadata Map made available within the instance.
- 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.
- pulumi
Labels Map<String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- reservation
Affinity Property Map - Specifies the reservations that this instance can consume from.
- resource
Policies 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.
- scratch
Disks List<Property Map> - The scratch disks attached to the instance.
- self
Link String - The URI of the created resource.
- service
Account Property Map - The service account to attach to the instance.
- shielded
Instance Property MapConfig - The shielded vm config being used by the instance.
- source
Machine StringImage - Name or self link of a machine
image to create the instance based on.
- List<String>
- The list of tags attached to the instance.
- 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 fromgcp.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
- Enable
Nested boolVirtualization - Whether to enable nested virtualization or not.
- Threads
Per intCore - 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 intCount - 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 boolVirtualization - Whether to enable nested virtualization or not.
- Threads
Per intCore - 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 intCount - 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 BooleanVirtualization - Whether to enable nested virtualization or not.
- threads
Per IntegerCore - 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 IntegerCount - 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 booleanVirtualization - Whether to enable nested virtualization or not.
- threads
Per numberCore - 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 numberCount - 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_ boolvirtualization - Whether to enable nested virtualization or not.
- threads_
per_ intcore - 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_ intcount - 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 BooleanVirtualization - Whether to enable nested virtualization or not.
- threads
Per NumberCore - 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 NumberCount - 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.
- Device
Name string - Name with which the attached disk is accessible under /dev/disk/by-id/
- Disk
Encryption stringKey Raw - 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 stringKey Sha256 - The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- Kms
Key stringSelf Link - 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.
- Device
Name string - Name with which the attached disk is accessible under /dev/disk/by-id/
- Disk
Encryption stringKey Raw - 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 stringKey Sha256 - The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- Kms
Key stringSelf Link - 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.
- device
Name String - Name with which the attached disk is accessible under /dev/disk/by-id/
- disk
Encryption StringKey Raw - 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 StringKey Sha256 - The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- kms
Key StringSelf Link - 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.
- device
Name string - Name with which the attached disk is accessible under /dev/disk/by-id/
- disk
Encryption stringKey Raw - 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 stringKey Sha256 - The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- kms
Key stringSelf Link - 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_ strkey_ raw - 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_ strkey_ sha256 - The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- kms_
key_ strself_ link - 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.
- device
Name String - Name with which the attached disk is accessible under /dev/disk/by-id/
- disk
Encryption StringKey Raw - 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 StringKey Sha256 - The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- kms
Key StringSelf Link - 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
- Auto
Delete bool - Whether the disk will be auto-deleted when the instance is deleted.
- Device
Name string - Name with which attached disk will be accessible under /dev/disk/by-id/
- Disk
Encryption stringKey Raw - 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 stringKey Sha256 - The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- Initialize
Params InstanceFrom Machine Image Boot Disk Initialize Params - Parameters with which a disk was created alongside the instance.
- Interface string
- The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
- Kms
Key stringSelf Link - 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 string - Name with which attached disk will be accessible under /dev/disk/by-id/
- Disk
Encryption stringKey Raw - 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 stringKey Sha256 - The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- Initialize
Params InstanceFrom Machine Image Boot Disk Initialize Params - Parameters with which a disk was created alongside the instance.
- Interface string
- The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
- Kms
Key stringSelf Link - 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 Boolean - Whether the disk will be auto-deleted when the instance is deleted.
- device
Name String - Name with which attached disk will be accessible under /dev/disk/by-id/
- disk
Encryption StringKey Raw - 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 StringKey Sha256 - The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- initialize
Params InstanceFrom Machine Image Boot Disk Initialize Params - Parameters with which a disk was created alongside the instance.
- interface_ String
- The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
- kms
Key StringSelf Link - 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 boolean - Whether the disk will be auto-deleted when the instance is deleted.
- device
Name string - Name with which attached disk will be accessible under /dev/disk/by-id/
- disk
Encryption stringKey Raw - 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 stringKey Sha256 - The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- initialize
Params InstanceFrom Machine Image Boot Disk Initialize Params - Parameters with which a disk was created alongside the instance.
- interface string
- The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
- kms
Key stringSelf Link - 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_ strkey_ raw - 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_ strkey_ sha256 - The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- initialize_
params InstanceFrom Machine Image Boot Disk Initialize Params - Parameters with which a disk was created alongside the instance.
- interface str
- The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
- kms_
key_ strself_ link - 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.
- auto
Delete Boolean - Whether the disk will be auto-deleted when the instance is deleted.
- device
Name String - Name with which attached disk will be accessible under /dev/disk/by-id/
- disk
Encryption StringKey Raw - 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 StringKey Sha256 - The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- initialize
Params Property Map - Parameters with which a disk was created alongside the instance.
- interface String
- The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
- kms
Key StringSelf Link - 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
- Enable
Confidential boolCompute - A flag to enable confidential compute mode on boot disk
- Image string
- The image from which this disk was initialised.
- Labels Dictionary<string, string>
- 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.
- Dictionary<string, string>
- 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
Policies string - A list of self_links of resource policies to attach to the instance's boot disk. Modifying this list will cause the instance to recreate. Currently a max of 1 resource policy is supported.
- Size int
- The size of the image in gigabytes.
- Storage
Pool string - The URL of the storage pool in which the new disk is created
- Type string
- The Google Compute Engine disk type. Such as pd-standard, pd-ssd or pd-balanced.
- Enable
Confidential boolCompute - A flag to enable confidential compute mode on boot disk
- Image string
- The image from which this disk was initialised.
- Labels map[string]string
- 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.
- map[string]string
- 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
Policies string - A list of self_links of resource policies to attach to the instance's boot disk. Modifying this list will cause the instance to recreate. Currently a max of 1 resource policy is supported.
- Size int
- The size of the image in gigabytes.
- Storage
Pool string - The URL of the storage pool in which the new disk is created
- Type string
- The Google Compute Engine disk type. Such as pd-standard, pd-ssd or pd-balanced.
- enable
Confidential BooleanCompute - A flag to enable confidential compute mode on boot disk
- image String
- The image from which this disk was initialised.
- labels Map<String,String>
- A set of key/value label pairs assigned to the disk.
- provisioned
Iops 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.
- provisioned
Throughput Integer - Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle.
- Map<String,String>
- 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
Policies String - A list of self_links of resource policies to attach to the instance's boot disk. Modifying this list will cause the instance to recreate. Currently a max of 1 resource policy is supported.
- size Integer
- The size of the image in gigabytes.
- storage
Pool String - The URL of the storage pool in which the new disk is created
- type String
- The Google Compute Engine disk type. Such as pd-standard, pd-ssd or pd-balanced.
- enable
Confidential booleanCompute - A flag to enable confidential compute mode on boot disk
- image string
- The image from which this disk was initialised.
- labels {[key: string]: string}
- A set of key/value label pairs assigned to the disk.
- provisioned
Iops 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.
- provisioned
Throughput number - Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle.
- {[key: string]: string}
- 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
Policies string - A list of self_links of resource policies to attach to the instance's boot disk. Modifying this list will cause the instance to recreate. Currently a max of 1 resource policy is supported.
- size number
- The size of the image in gigabytes.
- storage
Pool string - The URL of the storage pool in which the new disk is created
- type string
- The Google Compute Engine disk type. Such as pd-standard, pd-ssd or pd-balanced.
- enable_
confidential_ boolcompute - A flag to enable confidential compute mode on boot disk
- image str
- The image from which this disk was initialised.
- labels Mapping[str, str]
- 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.
- Mapping[str, str]
- 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_
policies str - A list of self_links of resource policies to attach to the instance's boot disk. Modifying this list will cause the instance to recreate. Currently a max of 1 resource policy is supported.
- size int
- The size of the image in gigabytes.
- storage_
pool str - The URL of the storage pool in which the new disk is created
- type str
- The Google Compute Engine disk type. Such as pd-standard, pd-ssd or pd-balanced.
- enable
Confidential BooleanCompute - A flag to enable confidential compute mode on boot disk
- image String
- The image from which this disk was initialised.
- labels Map<String>
- A set of key/value label pairs assigned to the disk.
- provisioned
Iops 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.
- provisioned
Throughput Number - Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle.
- Map<String>
- 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
Policies String - A list of self_links of resource policies to attach to the instance's boot disk. Modifying this list will cause the instance to recreate. Currently a max of 1 resource policy is supported.
- size Number
- The size of the image in gigabytes.
- storage
Pool String - The URL of the storage pool in which the new disk is created
- type String
- The Google Compute Engine disk type. Such as pd-standard, pd-ssd or pd-balanced.
InstanceFromMachineImageConfidentialInstanceConfig, InstanceFromMachineImageConfidentialInstanceConfigArgs
- Confidential
Instance stringType - The confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required. TDX is only available in beta.
- Enable
Confidential boolCompute - Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release
- Confidential
Instance stringType - The confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required. TDX is only available in beta.
- Enable
Confidential boolCompute - Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release
- confidential
Instance StringType - The confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required. TDX is only available in beta.
- enable
Confidential BooleanCompute - Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release
- confidential
Instance stringType - The confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required. TDX is only available in beta.
- enable
Confidential booleanCompute - Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release
- confidential_
instance_ strtype - The confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required. TDX is only available in beta.
- enable_
confidential_ boolcompute - Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release
- confidential
Instance StringType - The confidential computing technology the instance uses. SEV is an AMD feature. TDX is an Intel feature. One of the following values is required: SEV, SEV_SNP, TDX. If SEV_SNP, min_cpu_platform = "AMD Milan" is currently required. TDX is only available in beta.
- enable
Confidential BooleanCompute - Defines whether the instance should have confidential compute enabled. Field will be deprecated in a future release
InstanceFromMachineImageGuestAccelerator, InstanceFromMachineImageGuestAcceleratorArgs
InstanceFromMachineImageNetworkInterface, InstanceFromMachineImageNetworkInterfaceArgs
- Access
Configs List<InstanceFrom Machine Image Network Interface Access Config> - Access configurations, i.e. IPs via which this instance can be accessed via the Internet.
- Alias
Ip List<InstanceRanges From Machine Image Network Interface Alias Ip Range> - An array of alias IP ranges for this network interface.
- Internal
Ipv6Prefix intLength - The prefix length of the primary internal IPv6 range.
- Ipv6Access
Configs List<InstanceFrom Machine Image Network Interface Ipv6Access Config> - 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.
- Ipv6Access
Type 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.
- Network
Attachment 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}.
- Network
Ip string - The private IP address assigned to the instance.
- Nic
Type string - 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 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.
- Stack
Type 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.
- Subnetwork
Project string - The project in which the subnetwork belongs.
- Access
Configs []InstanceFrom Machine Image Network Interface Access Config - Access configurations, i.e. IPs via which this instance can be accessed via the Internet.
- Alias
Ip []InstanceRanges From Machine Image Network Interface Alias Ip Range - An array of alias IP ranges for this network interface.
- Internal
Ipv6Prefix intLength - The prefix length of the primary internal IPv6 range.
- Ipv6Access
Configs []InstanceFrom Machine Image Network Interface Ipv6Access Config - 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.
- Ipv6Access
Type 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.
- Network
Attachment 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}.
- Network
Ip string - The private IP address assigned to the instance.
- Nic
Type string - 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 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.
- Stack
Type 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.
- Subnetwork
Project string - The project in which the subnetwork belongs.
- access
Configs List<InstanceFrom Machine Image Network Interface Access Config> - Access configurations, i.e. IPs via which this instance can be accessed via the Internet.
- alias
Ip List<InstanceRanges From Machine Image Network Interface Alias Ip Range> - An array of alias IP ranges for this network interface.
- internal
Ipv6Prefix IntegerLength - The prefix length of the primary internal IPv6 range.
- ipv6Access
Configs List<InstanceFrom Machine Image Network Interface Ipv6Access Config> - 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.
- ipv6Access
Type 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.
- network
Attachment 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}.
- network
Ip String - The private IP address assigned to the instance.
- nic
Type String - The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET
- queue
Count 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.
- security
Policy 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.
- stack
Type 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.
- subnetwork
Project String - The project in which the subnetwork belongs.
- access
Configs InstanceFrom Machine Image Network Interface Access Config[] - Access configurations, i.e. IPs via which this instance can be accessed via the Internet.
- alias
Ip InstanceRanges From Machine Image Network Interface Alias Ip Range[] - An array of alias IP ranges for this network interface.
- internal
Ipv6Prefix numberLength - The prefix length of the primary internal IPv6 range.
- ipv6Access
Configs InstanceFrom Machine Image Network Interface Ipv6Access Config[] - 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.
- ipv6Access
Type 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.
- network
Attachment 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}.
- network
Ip string - The private IP address assigned to the instance.
- nic
Type string - The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET
- queue
Count 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.
- security
Policy 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.
- stack
Type 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.
- subnetwork
Project string - The project in which the subnetwork belongs.
- access_
configs Sequence[InstanceFrom Machine Image Network Interface Access Config] - Access configurations, i.e. IPs via which this instance can be accessed via the Internet.
- alias_
ip_ Sequence[Instanceranges From Machine Image Network Interface Alias Ip Range] - An array of alias IP ranges for this network interface.
- internal_
ipv6_ intprefix_ length - The prefix length of the primary internal IPv6 range.
- ipv6_
access_ Sequence[Instanceconfigs From Machine Image Network Interface Ipv6Access Config] - 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_ strtype - 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.
- access
Configs List<Property Map> - Access configurations, i.e. IPs via which this instance can be accessed via the Internet.
- alias
Ip List<Property Map>Ranges - An array of alias IP ranges for this network interface.
- internal
Ipv6Prefix NumberLength - The prefix length of the primary internal IPv6 range.
- ipv6Access
Configs 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.
- ipv6Access
Type 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.
- network
Attachment 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}.
- network
Ip String - The private IP address assigned to the instance.
- nic
Type String - The type of vNIC to be used on this interface. Possible values:GVNIC, VIRTIO_NET
- queue
Count 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.
- security
Policy 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.
- stack
Type 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.
- subnetwork
Project String - The project in which the subnetwork belongs.
InstanceFromMachineImageNetworkInterfaceAccessConfig, InstanceFromMachineImageNetworkInterfaceAccessConfigArgs
- Nat
Ip string - The IP address that is be 1:1 mapped to the instance's network ip.
- Network
Tier string - The networking tier used for configuring this instance. One of PREMIUM or STANDARD.
- Public
Ptr stringDomain Name - The DNS domain name for the public PTR record.
- Security
Policy 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 string - The IP address that is be 1:1 mapped to the instance's network ip.
- Network
Tier string - The networking tier used for configuring this instance. One of PREMIUM or STANDARD.
- Public
Ptr stringDomain Name - The DNS domain name for the public PTR record.
- Security
Policy 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 String - The IP address that is be 1:1 mapped to the instance's network ip.
- network
Tier String - The networking tier used for configuring this instance. One of PREMIUM or STANDARD.
- public
Ptr StringDomain Name - The DNS domain name for the public PTR record.
- security
Policy 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 string - The IP address that is be 1:1 mapped to the instance's network ip.
- network
Tier string - The networking tier used for configuring this instance. One of PREMIUM or STANDARD.
- public
Ptr stringDomain Name - The DNS domain name for the public PTR record.
- security
Policy 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_ strdomain_ name - 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.
- nat
Ip String - The IP address that is be 1:1 mapped to the instance's network ip.
- network
Tier String - The networking tier used for configuring this instance. One of PREMIUM or STANDARD.
- public
Ptr StringDomain Name - The DNS domain name for the public PTR record.
- security
Policy 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
- Ip
Cidr stringRange - The IP CIDR range represented by this alias IP range.
- Subnetwork
Range stringName - The subnetwork secondary range name specifying the secondary range from which to allocate the IP CIDR range for this alias IP range.
- Ip
Cidr stringRange - The IP CIDR range represented by this alias IP range.
- Subnetwork
Range stringName - The subnetwork secondary range name specifying the secondary range from which to allocate the IP CIDR range for this alias IP range.
- ip
Cidr StringRange - The IP CIDR range represented by this alias IP range.
- subnetwork
Range StringName - The subnetwork secondary range name specifying the secondary range from which to allocate the IP CIDR range for this alias IP range.
- ip
Cidr stringRange - The IP CIDR range represented by this alias IP range.
- subnetwork
Range stringName - The subnetwork secondary range name specifying the secondary range from which to allocate the IP CIDR range for this alias IP range.
- ip_
cidr_ strrange - The IP CIDR range represented by this alias IP range.
- subnetwork_
range_ strname - The subnetwork secondary range name specifying the secondary range from which to allocate the IP CIDR range for this alias IP range.
- ip
Cidr StringRange - The IP CIDR range represented by this alias IP range.
- subnetwork
Range StringName - The subnetwork secondary range name specifying the secondary range from which to allocate the IP CIDR range for this alias IP range.
InstanceFromMachineImageNetworkInterfaceIpv6AccessConfig, InstanceFromMachineImageNetworkInterfaceIpv6AccessConfigArgs
- Network
Tier string - 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 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.
- External
Ipv6Prefix stringLength - 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.
- Public
Ptr stringDomain Name - The domain name to be used when creating DNSv6 records for the external IPv6 ranges.
- Security
Policy 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 string - 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 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.
- External
Ipv6Prefix stringLength - 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.
- Public
Ptr stringDomain Name - The domain name to be used when creating DNSv6 records for the external IPv6 ranges.
- Security
Policy 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 String - 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 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.
- external
Ipv6Prefix StringLength - 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.
- public
Ptr StringDomain Name - The domain name to be used when creating DNSv6 records for the external IPv6 ranges.
- security
Policy 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 string - 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 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.
- external
Ipv6Prefix stringLength - 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.
- public
Ptr stringDomain Name - The domain name to be used when creating DNSv6 records for the external IPv6 ranges.
- security
Policy 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_ strprefix_ length - 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_ strdomain_ name - 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.
- network
Tier String - 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 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.
- external
Ipv6Prefix StringLength - 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.
- public
Ptr StringDomain Name - The domain name to be used when creating DNSv6 records for the external IPv6 ranges.
- security
Policy 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
- Total
Egress stringBandwidth Tier - The egress bandwidth tier to enable. Possible values:TIER_1, DEFAULT
- Total
Egress stringBandwidth Tier - The egress bandwidth tier to enable. Possible values:TIER_1, DEFAULT
- total
Egress StringBandwidth Tier - The egress bandwidth tier to enable. Possible values:TIER_1, DEFAULT
- total
Egress stringBandwidth Tier - The egress bandwidth tier to enable. Possible values:TIER_1, DEFAULT
- total_
egress_ strbandwidth_ tier - The egress bandwidth tier to enable. Possible values:TIER_1, DEFAULT
- total
Egress StringBandwidth Tier - The egress bandwidth tier to enable. Possible values:TIER_1, DEFAULT
InstanceFromMachineImageParams, InstanceFromMachineImageParamsArgs
- Dictionary<string, string>
- 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.
- map[string]string
- 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.
- Map<String,String>
- 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.
- {[key: string]: string}
- 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.
- Mapping[str, str]
- 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.
- Map<String>
- 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.
- Specific
Reservation InstanceFrom Machine Image Reservation Affinity Specific Reservation - Specifies the label selector for the reservation to use.
- Type string
- The type of reservation from which this instance can consume resources.
- Specific
Reservation InstanceFrom Machine Image Reservation Affinity Specific Reservation - Specifies the label selector for the reservation to use.
- type String
- The type of reservation from which this instance can consume resources.
- specific
Reservation InstanceFrom Machine Image Reservation Affinity Specific Reservation - Specifies the label selector for the reservation to use.
- type string
- The type of reservation from which this instance can consume resources.
- specific
Reservation InstanceFrom Machine Image Reservation Affinity Specific Reservation - Specifies the label selector for the reservation to use.
- type str
- The type of reservation from which this instance can consume resources.
- specific_
reservation InstanceFrom Machine Image Reservation Affinity Specific Reservation - Specifies the label selector for the reservation to use.
- type String
- The type of reservation from which this instance can consume resources.
- specific
Reservation 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 List<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
- Automatic
Restart bool - Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
- Instance
Termination stringAction - Specifies the action GCE should take when SPOT VM is preempted.
- Local
Ssd InstanceRecovery Timeout From Machine Image Scheduling Local Ssd Recovery Timeout - 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 string - Specifies the frequency of planned maintenance events. The accepted values are: PERIODIC
- Max
Run InstanceDuration From Machine Image Scheduling Max Run Duration - The timeout for new network connections to hosts.
- Min
Node intCpus - Node
Affinities List<InstanceFrom Machine Image Scheduling Node Affinity> - 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 stringMaintenance - Describes maintenance behavior for the instance. One of MIGRATE or TERMINATE,
- On
Instance InstanceStop Action From Machine Image Scheduling On Instance Stop Action - Defines the behaviour for instances with the instance_termination_action.
- Preemptible bool
- Whether the instance is preemptible.
- Provisioning
Model 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 stringAction - Specifies the action GCE should take when SPOT VM is preempted.
- Local
Ssd InstanceRecovery Timeout From Machine Image Scheduling Local Ssd Recovery Timeout - 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 string - Specifies the frequency of planned maintenance events. The accepted values are: PERIODIC
- Max
Run InstanceDuration From Machine Image Scheduling Max Run Duration - The timeout for new network connections to hosts.
- Min
Node intCpus - Node
Affinities []InstanceFrom Machine Image Scheduling Node Affinity - 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 stringMaintenance - Describes maintenance behavior for the instance. One of MIGRATE or TERMINATE,
- On
Instance InstanceStop Action From Machine Image Scheduling On Instance Stop Action - Defines the behaviour for instances with the instance_termination_action.
- Preemptible bool
- Whether the instance is preemptible.
- Provisioning
Model string - Whether the instance is spot. If this is set as SPOT.
- automatic
Restart Boolean - Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
- instance
Termination StringAction - Specifies the action GCE should take when SPOT VM is preempted.
- local
Ssd InstanceRecovery Timeout From Machine Image Scheduling Local Ssd Recovery Timeout - 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 String - Specifies the frequency of planned maintenance events. The accepted values are: PERIODIC
- max
Run InstanceDuration From Machine Image Scheduling Max Run Duration - The timeout for new network connections to hosts.
- min
Node IntegerCpus - node
Affinities List<InstanceFrom Machine Image Scheduling Node Affinity> - 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 StringMaintenance - Describes maintenance behavior for the instance. One of MIGRATE or TERMINATE,
- on
Instance InstanceStop Action From Machine Image Scheduling On Instance Stop Action - Defines the behaviour for instances with the instance_termination_action.
- preemptible Boolean
- Whether the instance is preemptible.
- provisioning
Model String - Whether the instance is spot. If this is set as SPOT.
- automatic
Restart boolean - Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
- instance
Termination stringAction - Specifies the action GCE should take when SPOT VM is preempted.
- local
Ssd InstanceRecovery Timeout From Machine Image Scheduling Local Ssd Recovery Timeout - 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 string - Specifies the frequency of planned maintenance events. The accepted values are: PERIODIC
- max
Run InstanceDuration From Machine Image Scheduling Max Run Duration - The timeout for new network connections to hosts.
- min
Node numberCpus - node
Affinities InstanceFrom Machine Image Scheduling Node Affinity[] - 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 stringMaintenance - Describes maintenance behavior for the instance. One of MIGRATE or TERMINATE,
- on
Instance InstanceStop Action From Machine Image Scheduling On Instance Stop Action - Defines the behaviour for instances with the instance_termination_action.
- preemptible boolean
- Whether the instance is preemptible.
- provisioning
Model 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_ straction - Specifies the action GCE should take when SPOT VM is preempted.
- local_
ssd_ Instancerecovery_ timeout From Machine Image Scheduling Local Ssd Recovery Timeout - 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_ Instanceduration From Machine Image Scheduling Max Run Duration - The timeout for new network connections to hosts.
- min_
node_ intcpus - node_
affinities Sequence[InstanceFrom Machine Image Scheduling Node Affinity] - 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_ strmaintenance - Describes maintenance behavior for the instance. One of MIGRATE or TERMINATE,
- on_
instance_ Instancestop_ action From Machine Image Scheduling On Instance Stop Action - Defines the behaviour for instances with the instance_termination_action.
- preemptible bool
- Whether the instance is preemptible.
- provisioning_
model str - Whether the instance is spot. If this is set as SPOT.
- automatic
Restart Boolean - Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
- instance
Termination StringAction - Specifies the action GCE should take when SPOT VM is preempted.
- local
Ssd Property MapRecovery Timeout - 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 String - Specifies the frequency of planned maintenance events. The accepted values are: PERIODIC
- max
Run Property MapDuration - The timeout for new network connections to hosts.
- min
Node NumberCpus - node
Affinities 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.
- on
Host StringMaintenance - Describes maintenance behavior for the instance. One of MIGRATE or TERMINATE,
- on
Instance Property MapStop Action - Defines the behaviour for instances with the instance_termination_action.
- preemptible Boolean
- Whether the instance is preemptible.
- provisioning
Model 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
InstanceFromMachineImageSchedulingOnInstanceStopAction, InstanceFromMachineImageSchedulingOnInstanceStopActionArgs
- Discard
Local boolSsd - If true, the contents of any attached Local SSD disks will be discarded.
- Discard
Local boolSsd - If true, the contents of any attached Local SSD disks will be discarded.
- discard
Local BooleanSsd - If true, the contents of any attached Local SSD disks will be discarded.
- discard
Local booleanSsd - If true, the contents of any attached Local SSD disks will be discarded.
- discard_
local_ boolssd - If true, the contents of any attached Local SSD disks will be discarded.
- discard
Local BooleanSsd - If true, the contents of any attached Local SSD disks will be discarded.
InstanceFromMachineImageScratchDisk, InstanceFromMachineImageScratchDiskArgs
- Interface string
- The disk interface used for attaching this disk. One of SCSI or NVME.
- Device
Name 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.
- Device
Name 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.
- device
Name 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.
- device
Name 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.
- device
Name 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
InstanceFromMachineImageShieldedInstanceConfig, InstanceFromMachineImageShieldedInstanceConfigArgs
- Enable
Integrity boolMonitoring - Whether integrity monitoring is enabled for the instance.
- Enable
Secure boolBoot - Whether secure boot is enabled for the instance.
- Enable
Vtpm bool - Whether the instance uses vTPM.
- Enable
Integrity boolMonitoring - Whether integrity monitoring is enabled for the instance.
- Enable
Secure boolBoot - Whether secure boot is enabled for the instance.
- Enable
Vtpm bool - Whether the instance uses vTPM.
- enable
Integrity BooleanMonitoring - Whether integrity monitoring is enabled for the instance.
- enable
Secure BooleanBoot - Whether secure boot is enabled for the instance.
- enable
Vtpm Boolean - Whether the instance uses vTPM.
- enable
Integrity booleanMonitoring - Whether integrity monitoring is enabled for the instance.
- enable
Secure booleanBoot - Whether secure boot is enabled for the instance.
- enable
Vtpm boolean - Whether the instance uses vTPM.
- enable_
integrity_ boolmonitoring - Whether integrity monitoring is enabled for the instance.
- enable_
secure_ boolboot - Whether secure boot is enabled for the instance.
- enable_
vtpm bool - Whether the instance uses vTPM.
- enable
Integrity BooleanMonitoring - Whether integrity monitoring is enabled for the instance.
- enable
Secure BooleanBoot - Whether secure boot is enabled for the instance.
- enable
Vtpm 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.