Show / Hide Table of Contents

Class DataSource

Datasource is a logical namespace for items to be indexed. All items must belong to a datasource. This is the prerequisite before items can be indexed into Cloud Search.

Inheritance
object
DataSource
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class DataSource : IDirectResponseSchema

Properties

DisableModifications

If true, sets the datasource to read-only mode. In read-only mode, the Indexing API rejects any requests to index or delete items in this source. Enabling read-only mode does not stop the processing of previously accepted data.

Declaration
[JsonProperty("disableModifications")]
public virtual bool? DisableModifications { get; set; }
Property Value
Type Description
bool?

DisableServing

Disable serving any search or assist results.

Declaration
[JsonProperty("disableServing")]
public virtual bool? DisableServing { get; set; }
Property Value
Type Description
bool?

DisplayName

Required. Display name of the datasource The maximum length is 300 characters.

Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

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

IndexingServiceAccounts

List of service accounts that have indexing access.

Declaration
[JsonProperty("indexingServiceAccounts")]
public virtual IList<string> IndexingServiceAccounts { get; set; }
Property Value
Type Description
IList<string>

ItemsVisibility

This field restricts visibility to items at the datasource level. Items within the datasource are restricted to the union of users and groups included in this field. Note that, this does not ensure access to a specific item, as users need to have ACL permissions on the contained items. This ensures a high level access on the entire datasource, and that the individual items are not shared outside this visibility.

Declaration
[JsonProperty("itemsVisibility")]
public virtual IList<GSuitePrincipal> ItemsVisibility { get; set; }
Property Value
Type Description
IList<GSuitePrincipal>

Name

The name of the datasource resource. Format: datasources/{source_id}. The name is ignored when creating a datasource.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
string

OperationIds

IDs of the Long Running Operations (LROs) currently running for this schema.

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

ReturnThumbnailUrls

Can a user request to get thumbnail URI for Items indexed in this data source.

Declaration
[JsonProperty("returnThumbnailUrls")]
public virtual bool? ReturnThumbnailUrls { get; set; }
Property Value
Type Description
bool?

ShortName

A short name or alias for the source. This value will be used to match the 'source' operator. For example, if the short name is &lt;value&gt; then queries like source:&lt;value&gt; will only return results for this source. The value must be unique across all datasources. The value must only contain alphanumeric characters (a-zA-Z0-9). The value cannot start with 'google' and cannot be one of the following: mail, gmail, docs, drive, groups, sites, calendar, hangouts, gplus, keep, people, teams. Its maximum length is 32 characters.

Declaration
[JsonProperty("shortName")]
public virtual string ShortName { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX