deleteRepository method
Deletes a repository. If a specified repository was already deleted, a null repository ID is returned.
May throw RepositoryNameRequiredException. May throw InvalidRepositoryNameException. May throw EncryptionIntegrityChecksFailedException. May throw EncryptionKeyAccessDeniedException. May throw EncryptionKeyDisabledException. May throw EncryptionKeyNotFoundException. May throw EncryptionKeyUnavailableException.
Parameter repositoryName
:
The name of the repository to delete.
Implementation
Future<DeleteRepositoryOutput> deleteRepository({
required String repositoryName,
}) async {
ArgumentError.checkNotNull(repositoryName, 'repositoryName');
_s.validateStringLength(
'repositoryName',
repositoryName,
1,
100,
isRequired: true,
);
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);
}