deleteCloudAutonomousVmCluster method
Deletes an Autonomous VM cluster.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ValidationException.
Parameter cloudAutonomousVmClusterId :
The unique identifier of the Autonomous VM cluster to delete.
Implementation
Future<void> deleteCloudAutonomousVmCluster({
required String cloudAutonomousVmClusterId,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.0',
'X-Amz-Target': 'Odb.DeleteCloudAutonomousVmCluster'
};
await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'cloudAutonomousVmClusterId': cloudAutonomousVmClusterId,
},
);
}