Show / Hide Table of Contents

Class SourceInstanceParams

A specification of the parameters to use when creating the instance template from a source instance.

Inheritance
System.Object
SourceInstanceParams
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class SourceInstanceParams : IDirectResponseSchema

Properties

DiskConfigs

Attached disks configuration. If not provided, defaults are applied: For boot disk and any other R/W disks, new custom images will be created from each disk. For read-only disks, they will be attached in read-only mode. Local SSD disks will be created as blank volumes.

Declaration
[JsonProperty("diskConfigs")]
public virtual IList<DiskInstantiationConfig> DiskConfigs { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<DiskInstantiationConfig>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top