Show / Hide Table of Contents

Class GoogleDatastoreAdminV1Index

A minimal index definition.

Inheritance
System.Object
GoogleDatastoreAdminV1Index
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.Datastore.v1.Data
Assembly: Google.Apis.Datastore.v1.dll
Syntax
public class GoogleDatastoreAdminV1Index : IDirectResponseSchema

Properties

Ancestor

Required. The index's ancestor mode. Must not be ANCESTOR_MODE_UNSPECIFIED.

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

ETag

The ETag of the item.

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

IndexId

Output only. The resource ID of the index.

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

Kind

Required. The entity kind to which this index applies.

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

ProjectId

Output only. Project ID.

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

Properties

Required. An ordered sequence of property names and their index attributes.

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

State

Output only. The state of the index.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top