StacClient.GetCollectionQueryables Method

Definition

Overloads

Name Description
GetCollectionQueryables(String, RequestContext)

[Protocol Method] List all queryables in a given collection

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
GetCollectionQueryables(String, CancellationToken)

List all queryables in a given collection.

GetCollectionQueryables(String, RequestContext)

Source:
StacClient.cs

[Protocol Method] List all queryables in a given collection

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual Azure.Response GetCollectionQueryables(string collectionId, Azure.RequestContext context);
abstract member GetCollectionQueryables : string * Azure.RequestContext -> Azure.Response
override this.GetCollectionQueryables : string * Azure.RequestContext -> Azure.Response
Public Overridable Function GetCollectionQueryables (collectionId As String, context As RequestContext) As Response

Parameters

collectionId
String

Collection ID.

context
RequestContext

The request options, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The response returned from the service.

Exceptions

collectionId is null.

collectionId is an empty string, and was expected to be non-empty.

Service returned a non-success status code.

Applies to

GetCollectionQueryables(String, CancellationToken)

Source:
StacClient.cs

List all queryables in a given collection.

public virtual Azure.Response<Azure.Analytics.PlanetaryComputer.QueryableDefinitionsResult> GetCollectionQueryables(string collectionId, System.Threading.CancellationToken cancellationToken = default);
abstract member GetCollectionQueryables : string * System.Threading.CancellationToken -> Azure.Response<Azure.Analytics.PlanetaryComputer.QueryableDefinitionsResult>
override this.GetCollectionQueryables : string * System.Threading.CancellationToken -> Azure.Response<Azure.Analytics.PlanetaryComputer.QueryableDefinitionsResult>
Public Overridable Function GetCollectionQueryables (collectionId As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of QueryableDefinitionsResult)

Parameters

collectionId
String

Collection ID.

cancellationToken
CancellationToken

The cancellation token that can be used to cancel the operation.

Returns

Exceptions

collectionId is null.

collectionId is an empty string, and was expected to be non-empty.

Service returned a non-success status code.

Applies to