getPublicKey2020_05_31 method

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

Gets a public key.

May throw AccessDenied. May throw NoSuchPublicKey.

Parameter id : The identifier of the public key you are getting.

Implementation

Future<GetPublicKeyResult> getPublicKey2020_05_31({
  required String id,
}) async {
  ArgumentError.checkNotNull(id, 'id');
  final $result = await _protocol.sendRaw(
    method: 'GET',
    requestUri: '/2020-05-31/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'),
  );
}