getDisk method

Future<GetDiskResult> getDisk({
  1. required String diskName,
})

Returns information about a specific block storage disk.

May throw ServiceException. May throw InvalidInputException. May throw NotFoundException. May throw OperationFailureException. May throw AccessDeniedException. May throw AccountSetupInProgressException. May throw UnauthenticatedException.

Parameter diskName : The name of the disk (e.g., my-disk).

Implementation

Future<GetDiskResult> getDisk({
  required String diskName,
}) async {
  ArgumentError.checkNotNull(diskName, 'diskName');
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'Lightsail_20161128.GetDisk'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'diskName': diskName,
    },
  );

  return GetDiskResult.fromJson(jsonResponse.body);
}