deleteAsset method
This operation deletes an asset.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter assetId :
The unique identifier for an asset.
Parameter dataSetId :
The unique identifier for a data set.
Parameter revisionId :
The unique identifier for a revision.
Implementation
Future<void> deleteAsset({
required String assetId,
required String dataSetId,
required String revisionId,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/v1/data-sets/${Uri.encodeComponent(dataSetId)}/revisions/${Uri.encodeComponent(revisionId)}/assets/${Uri.encodeComponent(assetId)}',
exceptionFnMap: _exceptionFns,
);
}