StacClient.DeleteMosaic 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 |
|---|---|
| DeleteMosaic(String, String, RequestContext) |
[Protocol Method] Delete a mosaic definition from a given collection
|
| DeleteMosaic(String, String, CancellationToken) |
Delete a mosaic definition from a given collection. |
DeleteMosaic(String, String, RequestContext)
- Source:
- StacClient.cs
[Protocol Method] Delete a mosaic definition from a given collection
- This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual Azure.Response DeleteMosaic(string collectionId, string mosaicId, Azure.RequestContext context);
abstract member DeleteMosaic : string * string * Azure.RequestContext -> Azure.Response
override this.DeleteMosaic : string * string * Azure.RequestContext -> Azure.Response
Public Overridable Function DeleteMosaic (collectionId As String, mosaicId As String, context As RequestContext) As Response
Parameters
- collectionId
- String
Unique identifier for the STAC collection.
- mosaicId
- String
Unique identifier for the mosaic configuration.
- 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 or mosaicId is null.
collectionId or mosaicId is an empty string, and was expected to be non-empty.
Service returned a non-success status code.
Applies to
DeleteMosaic(String, String, CancellationToken)
- Source:
- StacClient.cs
Delete a mosaic definition from a given collection.
public virtual Azure.Response DeleteMosaic(string collectionId, string mosaicId, System.Threading.CancellationToken cancellationToken = default);
abstract member DeleteMosaic : string * string * System.Threading.CancellationToken -> Azure.Response
override this.DeleteMosaic : string * string * System.Threading.CancellationToken -> Azure.Response
Public Overridable Function DeleteMosaic (collectionId As String, mosaicId As String, Optional cancellationToken As CancellationToken = Nothing) As Response
Parameters
- collectionId
- String
Unique identifier for the STAC collection.
- mosaicId
- String
Unique identifier for the mosaic configuration.
- cancellationToken
- CancellationToken
The cancellation token that can be used to cancel the operation.
Returns
Exceptions
collectionId or mosaicId is null.
collectionId or mosaicId is an empty string, and was expected to be non-empty.
Service returned a non-success status code.