Show / Hide Table of Contents

Class InstancesStartWithEncryptionKeyRequest

Inheritance
System.Object
InstancesStartWithEncryptionKeyRequest
Implements
Google.Apis.Requests.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.alpha.Data
Assembly: Google.Apis.Compute.alpha.dll
Syntax
public class InstancesStartWithEncryptionKeyRequest : IDirectResponseSchema

Properties

Disks

Array of disks associated with this instance that are protected with a customer-supplied encryption key. In order to start the instance, the disk url and its corresponding key must be provided. If the disk is not protected with a customer-supplied encryption key it should not be specified.

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

ETag

The ETag of the item.

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

InstanceEncryptionKey

Decrypts data associated with an instance that is protected with a customer-supplied encryption key. If the instance you are starting is protected with a customer-supplied encryption key, the correct key must be provided otherwise the instance start will not succeed.

Declaration
[JsonProperty("instanceEncryptionKey")]
public virtual CustomerEncryptionKey InstanceEncryptionKey { get; set; }
Property Value
Type Description
CustomerEncryptionKey

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top