IngestionClient.GetAllAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| GetAllAsync(String, Nullable<Int32>, Nullable<Int32>, RequestContext) |
[Protocol Method] Get ingestions of a catalog
|
| GetAllAsync(String, Nullable<Int32>, Nullable<Int32>, CancellationToken) |
Get ingestions of a catalog. |
GetAllAsync(String, Nullable<Int32>, Nullable<Int32>, RequestContext)
- Source:
- IngestionClient.cs
[Protocol Method] Get ingestions of a catalog
- This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual Azure.AsyncPageable<BinaryData> GetAllAsync(string collectionId, int? maxCount, int? skip, Azure.RequestContext context);
abstract member GetAllAsync : string * Nullable<int> * Nullable<int> * Azure.RequestContext -> Azure.AsyncPageable<BinaryData>
override this.GetAllAsync : string * Nullable<int> * Nullable<int> * Azure.RequestContext -> Azure.AsyncPageable<BinaryData>
Public Overridable Function GetAllAsync (collectionId As String, maxCount As Nullable(Of Integer), skip As Nullable(Of Integer), context As RequestContext) As AsyncPageable(Of BinaryData)
Parameters
- collectionId
- String
Catalog collection id.
- 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
GetAllAsync(String, Nullable<Int32>, Nullable<Int32>, CancellationToken)
- Source:
- IngestionClient.cs
Get ingestions of a catalog.
public virtual Azure.AsyncPageable<Azure.Analytics.PlanetaryComputer.IngestionInformation> GetAllAsync(string collectionId, int? maxCount = default, int? skip = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAllAsync : string * Nullable<int> * Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Analytics.PlanetaryComputer.IngestionInformation>
override this.GetAllAsync : string * Nullable<int> * Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Analytics.PlanetaryComputer.IngestionInformation>
Public Overridable Function GetAllAsync (collectionId As String, Optional maxCount As Nullable(Of Integer) = Nothing, Optional skip As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of IngestionInformation)
Parameters
- collectionId
- String
Catalog collection id.
- 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.