Show / Hide Table of Contents

Class GoogleCloudDatacatalogV1SearchCatalogResponse

Response message for SearchCatalog.

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

Properties

ETag

The ETag of the item.

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

NextPageToken

Pagination token that can be used in subsequent calls to retrieve the next page of results.

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

Results

Search results.

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

Unreachable

Unreachable locations. Search results don't include data from those locations. To get additional information on an error, repeat the search request and restrict it to specific locations by setting the SearchCatalogRequest.scope.restricted_locations parameter.

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

Implements

IDirectResponseSchema
In This Article
Back to top