lib/aws-sdk-codecommit/errors.rb in aws-sdk-codecommit-1.62.0 vs lib/aws-sdk-codecommit/errors.rb in aws-sdk-codecommit-1.63.0
- old
+ new
@@ -66,11 +66,14 @@
# * {DefaultBranchCannotBeDeletedException}
# * {DirectoryNameConflictsWithFileNameException}
# * {EncryptionIntegrityChecksFailedException}
# * {EncryptionKeyAccessDeniedException}
# * {EncryptionKeyDisabledException}
+ # * {EncryptionKeyInvalidIdException}
+ # * {EncryptionKeyInvalidUsageException}
# * {EncryptionKeyNotFoundException}
+ # * {EncryptionKeyRequiredException}
# * {EncryptionKeyUnavailableException}
# * {FileContentAndSourceFileSpecifiedException}
# * {FileContentRequiredException}
# * {FileContentSizeLimitExceededException}
# * {FileDoesNotExistException}
@@ -627,14 +630,44 @@
def initialize(context, message, data = Aws::EmptyStructure.new)
super(context, message, data)
end
end
+ class EncryptionKeyInvalidIdException < ServiceError
+
+ # @param [Seahorse::Client::RequestContext] context
+ # @param [String] message
+ # @param [Aws::CodeCommit::Types::EncryptionKeyInvalidIdException] data
+ def initialize(context, message, data = Aws::EmptyStructure.new)
+ super(context, message, data)
+ end
+ end
+
+ class EncryptionKeyInvalidUsageException < ServiceError
+
+ # @param [Seahorse::Client::RequestContext] context
+ # @param [String] message
+ # @param [Aws::CodeCommit::Types::EncryptionKeyInvalidUsageException] data
+ def initialize(context, message, data = Aws::EmptyStructure.new)
+ super(context, message, data)
+ end
+ end
+
class EncryptionKeyNotFoundException < ServiceError
# @param [Seahorse::Client::RequestContext] context
# @param [String] message
# @param [Aws::CodeCommit::Types::EncryptionKeyNotFoundException] data
+ def initialize(context, message, data = Aws::EmptyStructure.new)
+ super(context, message, data)
+ end
+ end
+
+ class EncryptionKeyRequiredException < ServiceError
+
+ # @param [Seahorse::Client::RequestContext] context
+ # @param [String] message
+ # @param [Aws::CodeCommit::Types::EncryptionKeyRequiredException] data
def initialize(context, message, data = Aws::EmptyStructure.new)
super(context, message, data)
end
end