getPublicKey2018_06_18 method

Future<GetPublicKeyResult> getPublicKey2018_06_18({
  1. required String id,
})

Get the public key information.

May throw AccessDenied. May throw NoSuchPublicKey.

Parameter id : Request the ID for the public key.

Implementation

Future<GetPublicKeyResult> getPublicKey2018_06_18({
  required String id,
}) async {
  ArgumentError.checkNotNull(id, 'id');
  final $result = await _protocol.sendRaw(
    method: 'GET',
    requestUri: '/2018-06-18/public-key/${Uri.encodeComponent(id)}',
    exceptionFnMap: _exceptionFns,
  );
  final $elem = await _s.xmlFromResponse($result);
  return GetPublicKeyResult(
    publicKey: PublicKey.fromXml($elem),
    eTag: _s.extractHeaderStringValue($result.headers, 'ETag'),
  );
}