describeRegistry method

Future<DescribeRegistryResponse> describeRegistry({
  1. required String registryName,
})

Describes the registry.

May throw BadRequestException. May throw ForbiddenException. May throw InternalServerErrorException. May throw NotFoundException. May throw ServiceUnavailableException. May throw UnauthorizedException.

Parameter registryName : The name of the registry.

Implementation

Future<DescribeRegistryResponse> describeRegistry({
  required String registryName,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/v1/registries/name/${Uri.encodeComponent(registryName)}',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeRegistryResponse.fromJson(response);
}