Show / Hide Table of Contents

Class Reference

Represents a reference to a resource.

Inheritance
System.Object
Reference
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 Reference : 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#reference for references.

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

ReferenceType

A description of the reference type with no implied semantics. Possible values include: 1. MEMBER_OF

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

Referrer

URL of the resource which refers to the target.

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

Target

URL of the resource to which this reference points.

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

Implements

IDirectResponseSchema
In This Article
Back to top