delete_file
(**kwargs)¶Deletes a specified file from a specified branch. A commit is created on the branch that contains the revision. The file still exists in the commits earlier to the commit that contains the deletion.
See also: AWS API Documentation
Request Syntax
response = client.delete_file(
repositoryName='string',
branchName='string',
filePath='string',
parentCommitId='string',
keepEmptyFolders=True|False,
commitMessage='string',
name='string',
email='string'
)
[REQUIRED]
The name of the repository that contains the file to delete.
[REQUIRED]
The name of the branch where the commit that deletes the file is made.
[REQUIRED]
The fully qualified path to the file that to be deleted, including the full name and extension of that file. For example, /examples/file.md is a fully qualified path to a file named file.md in a folder named examples.
[REQUIRED]
The ID of the commit that is the tip of the branch where you want to create the commit that deletes the file. This must be the HEAD commit for the branch. The commit that deletes the file is created from this commit ID.
dict
Response Syntax
{
'commitId': 'string',
'blobId': 'string',
'treeId': 'string',
'filePath': 'string'
}
Response Structure
(dict) --
commitId (string) --
The full commit ID of the commit that contains the change that deletes the file.
blobId (string) --
The blob ID removed from the tree as part of deleting the file.
treeId (string) --
The full SHA-1 pointer of the tree information for the commit that contains the delete file change.
filePath (string) --
The fully qualified path to the file to be deleted, including the full name and extension of that file.
Exceptions
CodeCommit.Client.exceptions.RepositoryNameRequiredException
CodeCommit.Client.exceptions.InvalidRepositoryNameException
CodeCommit.Client.exceptions.RepositoryDoesNotExistException
CodeCommit.Client.exceptions.ParentCommitIdRequiredException
CodeCommit.Client.exceptions.InvalidParentCommitIdException
CodeCommit.Client.exceptions.ParentCommitDoesNotExistException
CodeCommit.Client.exceptions.ParentCommitIdOutdatedException
CodeCommit.Client.exceptions.PathRequiredException
CodeCommit.Client.exceptions.InvalidPathException
CodeCommit.Client.exceptions.FileDoesNotExistException
CodeCommit.Client.exceptions.BranchNameRequiredException
CodeCommit.Client.exceptions.InvalidBranchNameException
CodeCommit.Client.exceptions.BranchDoesNotExistException
CodeCommit.Client.exceptions.BranchNameIsTagNameException
CodeCommit.Client.exceptions.NameLengthExceededException
CodeCommit.Client.exceptions.InvalidEmailException
CodeCommit.Client.exceptions.CommitMessageLengthExceededException
CodeCommit.Client.exceptions.EncryptionIntegrityChecksFailedException
CodeCommit.Client.exceptions.EncryptionKeyAccessDeniedException
CodeCommit.Client.exceptions.EncryptionKeyDisabledException
CodeCommit.Client.exceptions.EncryptionKeyNotFoundException
CodeCommit.Client.exceptions.EncryptionKeyUnavailableException