Show / Hide Table of Contents

Class PreservedState

Preserved state for a given instance.

Inheritance
System.Object
PreservedState
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 PreservedState : IDirectResponseSchema

Properties

Disks

Preserved disks defined for this instance. This map is keyed with the device names of the disks.

Declaration
[JsonProperty("disks")]
public virtual IDictionary<string, PreservedStatePreservedDisk> Disks { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, PreservedStatePreservedDisk>

ETag

The ETag of the item.

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

Metadata

Preserved metadata defined for this instance.

Declaration
[JsonProperty("metadata")]
public virtual IDictionary<string, string> Metadata { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.String>

Implements

IDirectResponseSchema
In This Article
Back to top