DataClient.GetItemAvailableAssetsAsync Method

Definition

Overloads

Name Description
GetItemAvailableAssetsAsync(GetItemAvailableAssetsOptions, RequestContext)

[Protocol Method] Return a list of supported assets for a STAC item.

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

Return a list of supported assets for a STAC item.

GetItemAvailableAssetsAsync(GetItemAvailableAssetsOptions, RequestContext)

Source:
DataClient.cs

[Protocol Method] Return a list of supported assets for a STAC item.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual System.Threading.Tasks.Task<Azure.Response> GetItemAvailableAssetsAsync(Azure.Analytics.PlanetaryComputer.GetItemAvailableAssetsOptions options, Azure.RequestContext context);
abstract member GetItemAvailableAssetsAsync : Azure.Analytics.PlanetaryComputer.GetItemAvailableAssetsOptions * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.GetItemAvailableAssetsAsync : Azure.Analytics.PlanetaryComputer.GetItemAvailableAssetsOptions * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function GetItemAvailableAssetsAsync (options As GetItemAvailableAssetsOptions, context As RequestContext) As Task(Of Response)

Parameters

options
GetItemAvailableAssetsOptions

The options for the getItemAvailableAssets request.

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

options is null.

Service returned a non-success status code.

Applies to

GetItemAvailableAssetsAsync(GetItemAvailableAssetsOptions, CancellationToken)

Source:
DataClient.cs

Return a list of supported assets for a STAC item.

public virtual System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<string>>> GetItemAvailableAssetsAsync(Azure.Analytics.PlanetaryComputer.GetItemAvailableAssetsOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member GetItemAvailableAssetsAsync : Azure.Analytics.PlanetaryComputer.GetItemAvailableAssetsOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<string>>>
override this.GetItemAvailableAssetsAsync : Azure.Analytics.PlanetaryComputer.GetItemAvailableAssetsOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<string>>>
Public Overridable Function GetItemAvailableAssetsAsync (options As GetItemAvailableAssetsOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of IReadOnlyList(Of String)))

Parameters

options
GetItemAvailableAssetsOptions

The options for the getItemAvailableAssets request.

cancellationToken
CancellationToken

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

Returns

Exceptions

options is null.

Service returned a non-success status code.

Applies to