IngestionClient.GetSourcesAsync Method

Definition

Overloads

Name Description
GetSourcesAsync(Nullable<Int32>, Nullable<Int32>, RequestContext)

[Protocol Method] Get ingestion sources in a geo-catalog

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
GetSourcesAsync(Nullable<Int32>, Nullable<Int32>, CancellationToken)

Get ingestion sources in a geo-catalog.

GetSourcesAsync(Nullable<Int32>, Nullable<Int32>, RequestContext)

Source:
IngestionClient.cs

[Protocol Method] Get ingestion sources in a geo-catalog

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

Parameters

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

Service returned a non-success status code.

Applies to

GetSourcesAsync(Nullable<Int32>, Nullable<Int32>, CancellationToken)

Source:
IngestionClient.cs

Get ingestion sources in a geo-catalog.

public virtual Azure.AsyncPageable<Azure.Analytics.PlanetaryComputer.IngestionSourceSummary> GetSourcesAsync(int? maxCount = default, int? skip = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetSourcesAsync : Nullable<int> * Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Analytics.PlanetaryComputer.IngestionSourceSummary>
override this.GetSourcesAsync : Nullable<int> * Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Analytics.PlanetaryComputer.IngestionSourceSummary>
Public Overridable Function GetSourcesAsync (Optional maxCount As Nullable(Of Integer) = Nothing, Optional skip As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of IngestionSourceSummary)

Parameters

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

Service returned a non-success status code.

Applies to