StacClient.GetPartitionType Method

Definition

Overloads

Name Description
GetPartitionType(String, CancellationToken)

Get the partitiontype for a GeoCatalog Collection.

GetPartitionType(String, RequestContext)

[Protocol Method] Get the partitiontype for a GeoCatalog Collection.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.

GetPartitionType(String, CancellationToken)

Source:
StacClient.cs

Get the partitiontype for a GeoCatalog Collection.

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

Parameters

collectionId
String

Unique identifier for the STAC collection.

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

GetPartitionType(String, RequestContext)

Source:
StacClient.cs

[Protocol Method] Get the partitiontype for a GeoCatalog Collection.

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

Parameters

collectionId
String

Unique identifier for the STAC collection.

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