IngestionClient.GetOperations Method

Definition

Overloads

Name Description
GetOperations(Nullable<Int32>, Nullable<Int32>, String, Nullable<PlanetaryComputerOperationStatus>, CancellationToken)

Get operations of a geo-catalog collection.

GetOperations(Nullable<Int32>, Nullable<Int32>, String, String, RequestContext)

[Protocol Method] Get operations of a geo-catalog collection

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

GetOperations(Nullable<Int32>, Nullable<Int32>, String, Nullable<PlanetaryComputerOperationStatus>, CancellationToken)

Source:
IngestionClient.cs

Get operations of a geo-catalog collection.

public virtual Azure.Pageable<Azure.Analytics.PlanetaryComputer.PlanetaryComputerOperation> GetOperations(int? maxCount = default, int? skip = default, string collectionId = default, Azure.Analytics.PlanetaryComputer.PlanetaryComputerOperationStatus? status = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetOperations : Nullable<int> * Nullable<int> * string * Nullable<Azure.Analytics.PlanetaryComputer.PlanetaryComputerOperationStatus> * System.Threading.CancellationToken -> Azure.Pageable<Azure.Analytics.PlanetaryComputer.PlanetaryComputerOperation>
override this.GetOperations : Nullable<int> * Nullable<int> * string * Nullable<Azure.Analytics.PlanetaryComputer.PlanetaryComputerOperationStatus> * System.Threading.CancellationToken -> Azure.Pageable<Azure.Analytics.PlanetaryComputer.PlanetaryComputerOperation>
Public Overridable Function GetOperations (Optional maxCount As Nullable(Of Integer) = Nothing, Optional skip As Nullable(Of Integer) = Nothing, Optional collectionId As String = Nothing, Optional status As Nullable(Of PlanetaryComputerOperationStatus) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of PlanetaryComputerOperation)

Parameters

maxCount
Nullable<Int32>

The number of items to return.

skip
Nullable<Int32>

The number of items to skip.

collectionId
String

Operation id used to filter the results.

status
Nullable<PlanetaryComputerOperationStatus>

Operation status used to filter the results.

cancellationToken
CancellationToken

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

Returns

Exceptions

Service returned a non-success status code.

Applies to

GetOperations(Nullable<Int32>, Nullable<Int32>, String, String, RequestContext)

Source:
IngestionClient.cs

[Protocol Method] Get operations of a geo-catalog collection

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual Azure.Pageable<BinaryData> GetOperations(int? maxCount, int? skip, string collectionId, string status, Azure.RequestContext context);
abstract member GetOperations : Nullable<int> * Nullable<int> * string * string * Azure.RequestContext -> Azure.Pageable<BinaryData>
override this.GetOperations : Nullable<int> * Nullable<int> * string * string * Azure.RequestContext -> Azure.Pageable<BinaryData>
Public Overridable Function GetOperations (maxCount As Nullable(Of Integer), skip As Nullable(Of Integer), collectionId As String, status As String, context As RequestContext) As Pageable(Of BinaryData)

Parameters

maxCount
Nullable<Int32>

The number of items to return.

skip
Nullable<Int32>

The number of items to skip.

collectionId
String

Operation id used to filter the results.

status
String

Operation status used to filter the results.

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

Service returned a non-success status code.

Applies to