IngestionClient.GetRun 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 |
|---|---|
| GetRun(String, Guid, Guid, RequestContext) |
[Protocol Method] Get a run of an ingestion
|
| GetRun(String, Guid, Guid, CancellationToken) |
Get a run of an ingestion. |
GetRun(String, Guid, Guid, RequestContext)
- Source:
- IngestionClient.cs
[Protocol Method] Get a run of an ingestion
- This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual Azure.Response GetRun(string collectionId, Guid ingestionId, Guid runId, Azure.RequestContext context);
abstract member GetRun : string * Guid * Guid * Azure.RequestContext -> Azure.Response
override this.GetRun : string * Guid * Guid * Azure.RequestContext -> Azure.Response
Public Overridable Function GetRun (collectionId As String, ingestionId As Guid, runId As Guid, context As RequestContext) As Response
Parameters
- collectionId
- String
Catalog collection id.
- ingestionId
- Guid
Ingestion id.
- runId
- Guid
Run 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
GetRun(String, Guid, Guid, CancellationToken)
- Source:
- IngestionClient.cs
Get a run of an ingestion.
public virtual Azure.Response<Azure.Analytics.PlanetaryComputer.IngestionRun> GetRun(string collectionId, Guid ingestionId, Guid runId, System.Threading.CancellationToken cancellationToken = default);
abstract member GetRun : string * Guid * Guid * System.Threading.CancellationToken -> Azure.Response<Azure.Analytics.PlanetaryComputer.IngestionRun>
override this.GetRun : string * Guid * Guid * System.Threading.CancellationToken -> Azure.Response<Azure.Analytics.PlanetaryComputer.IngestionRun>
Public Overridable Function GetRun (collectionId As String, ingestionId As Guid, runId As Guid, Optional cancellationToken As CancellationToken = Nothing) As Response(Of IngestionRun)
Parameters
- collectionId
- String
Catalog collection id.
- ingestionId
- Guid
Ingestion id.
- runId
- Guid
Run 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.