getCloudAutonomousVmCluster method
Future<GetCloudAutonomousVmClusterOutput>
getCloudAutonomousVmCluster({
- required String cloudAutonomousVmClusterId,
Gets information about a specific Autonomous VM cluster.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter cloudAutonomousVmClusterId :
The unique identifier of the Autonomous VM cluster to retrieve information
about.
Implementation
Future<GetCloudAutonomousVmClusterOutput> getCloudAutonomousVmCluster({
required String cloudAutonomousVmClusterId,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.0',
'X-Amz-Target': 'Odb.GetCloudAutonomousVmCluster'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'cloudAutonomousVmClusterId': cloudAutonomousVmClusterId,
},
);
return GetCloudAutonomousVmClusterOutput.fromJson(jsonResponse.body);
}