deleteRepository method
Deletes a repository. If a specified repository was already deleted, a null repository ID is returned.
May throw EncryptionIntegrityChecksFailedException.
May throw EncryptionKeyAccessDeniedException.
May throw EncryptionKeyDisabledException.
May throw EncryptionKeyNotFoundException.
May throw EncryptionKeyUnavailableException.
May throw InvalidRepositoryNameException.
May throw RepositoryNameRequiredException.
Parameter repositoryName :
The name of the repository to delete.
Implementation
Future<DeleteRepositoryOutput> deleteRepository({
required String repositoryName,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'CodeCommit_20150413.DeleteRepository'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'repositoryName': repositoryName,
},
);
return DeleteRepositoryOutput.fromJson(jsonResponse.body);
}