IngestionClient.Get Method

Definition

Overloads

Name Description
Get(String, Guid, RequestContext)

[Protocol Method] Get the definition of an ingestion

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
Get(String, Guid, CancellationToken)

Get the definition of an ingestion.

Get(String, Guid, RequestContext)

Source:
IngestionClient.cs

[Protocol Method] Get the definition of an ingestion

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual Azure.Response Get(string collectionId, Guid ingestionId, Azure.RequestContext context);
abstract member Get : string * Guid * Azure.RequestContext -> Azure.Response
override this.Get : string * Guid * Azure.RequestContext -> Azure.Response
Public Overridable Function Get (collectionId As String, ingestionId As Guid, context As RequestContext) As Response

Parameters

collectionId
String

Catalog collection id.

ingestionId
Guid

Ingestion 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

Get(String, Guid, CancellationToken)

Source:
IngestionClient.cs

Get the definition of an ingestion.

public virtual Azure.Response<Azure.Analytics.PlanetaryComputer.IngestionInformation> Get(string collectionId, Guid ingestionId, System.Threading.CancellationToken cancellationToken = default);
abstract member Get : string * Guid * System.Threading.CancellationToken -> Azure.Response<Azure.Analytics.PlanetaryComputer.IngestionInformation>
override this.Get : string * Guid * System.Threading.CancellationToken -> Azure.Response<Azure.Analytics.PlanetaryComputer.IngestionInformation>
Public Overridable Function Get (collectionId As String, ingestionId As Guid, Optional cancellationToken As CancellationToken = Nothing) As Response(Of IngestionInformation)

Parameters

collectionId
String

Catalog collection id.

ingestionId
Guid

Ingestion 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.

Applies to