Show / Hide Table of Contents

Class ShieldedInstanceConfig

A set of Shielded Instance options.

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

Properties

EnableIntegrityMonitoring

Defines whether the instance has integrity monitoring enabled. Enabled by default.

Declaration
[JsonProperty("enableIntegrityMonitoring")]
public virtual bool? EnableIntegrityMonitoring { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

EnableSecureBoot

Defines whether the instance has Secure Boot enabled. Disabled by default.

Declaration
[JsonProperty("enableSecureBoot")]
public virtual bool? EnableSecureBoot { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

EnableVtpm

Defines whether the instance has the vTPM enabled. Enabled by default.

Declaration
[JsonProperty("enableVtpm")]
public virtual bool? EnableVtpm { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

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