IngestionClient.GetRuns Method

Definition

Overloads

Name Description
GetRuns(String, Guid, Nullable<Int32>, Nullable<Int32>, CancellationToken)

Get the runs of an ingestion.

GetRuns(String, Guid, Nullable<Int32>, Nullable<Int32>, RequestContext)

[Protocol Method] Get the runs of an ingestion

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

GetRuns(String, Guid, Nullable<Int32>, Nullable<Int32>, CancellationToken)

Source:
IngestionClient.cs

Get the runs of an ingestion.

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

Parameters

collectionId
String

Catalog collection id.

ingestionId
Guid

Ingestion id.

maxCount
Nullable<Int32>

The number of items to return.

skip
Nullable<Int32>

The number of items to skip.

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

GetRuns(String, Guid, Nullable<Int32>, Nullable<Int32>, RequestContext)

Source:
IngestionClient.cs

[Protocol Method] Get the runs of an ingestion

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

Parameters

collectionId
String

Catalog collection id.

ingestionId
Guid

Ingestion id.

maxCount
Nullable<Int32>

The number of items to return.

skip
Nullable<Int32>

The number of items to skip.

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