Show / Hide Table of Contents

Class Schema

The schema definition for a data source.

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

Properties

ETag

The ETag of the item.

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

ObjectDefinitions

The list of top-level objects for the data source. The maximum number of elements is 10.

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

OperationIds

IDs of the Long Running Operations (LROs) currently running for this schema. After modifying the schema, wait for operations to complete before indexing additional content.

Declaration
[JsonProperty("operationIds")]
public virtual IList<string> OperationIds { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

IDirectResponseSchema
Back to top