Show / Hide Table of Contents

Class GuestAttributes

A guest attributes entry.

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

Properties

ETag

The ETag of the item.

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

Kind

[Output Only] Type of the resource. Always compute#guestAttributes for guest attributes entry.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

QueryPath

The path to be queried. This can be the default namespace ('') or a nested namespace ('/') or a specified key ('/').

Declaration
[JsonProperty("queryPath")]
public virtual string QueryPath { get; set; }
Property Value
Type Description
System.String

QueryValue

[Output Only] The value of the requested queried path.

Declaration
[JsonProperty("queryValue")]
public virtual GuestAttributesValue QueryValue { get; set; }
Property Value
Type Description
GuestAttributesValue

SelfLink

[Output Only] Server-defined URL for this resource.

Declaration
[JsonProperty("selfLink")]
public virtual string SelfLink { get; set; }
Property Value
Type Description
System.String

VariableKey

The key to search for.

Declaration
[JsonProperty("variableKey")]
public virtual string VariableKey { get; set; }
Property Value
Type Description
System.String

VariableValue

[Output Only] The value found for the requested key.

Declaration
[JsonProperty("variableValue")]
public virtual string VariableValue { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top