All Downloads are FREE. Search and download functionalities are using the official Maven repository.

models.codecommit-2015-04-13-intermediate.json Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS CodeCommit module holds the client classes that are used for communicating with AWS CodeCommit

There is a newer version: 1.11.492
Show newest version
{
  "metadata" : {
    "apiVersion" : "2015-04-13",
    "exceptionUnmarshallerImpl" : null,
    "protocol" : "json",
    "checksumFormat" : null,
    "documentation" : "AWS CodeCommit 

This is the AWS CodeCommit API Reference. This reference provides descriptions of the operations and data types for AWS CodeCommit API.

You can use the AWS CodeCommit API to work with the following objects:

  • Repositories, by calling the following:
    • BatchGetRepositories, which returns information about one or more repositories associated with your AWS account
    • CreateRepository, which creates an AWS CodeCommit repository
    • DeleteRepository, which deletes an AWS CodeCommit repository
    • GetRepository, which returns information about a specified repository
    • ListRepositories, which lists all AWS CodeCommit repositories associated with your AWS account
    • UpdateRepositoryDescription, which sets or updates the description of the repository
    • UpdateRepositoryName, which changes the name of the repository. If you change the name of a repository, no other users of that repository will be able to access it until you send them the new HTTPS or SSH URL to use.
  • Branches, by calling the following:
    • CreateBranch, which creates a new branch in a specified repository
    • GetBranch, which returns information about a specified branch
    • ListBranches, which lists all branches for a specified repository
    • UpdateDefaultBranch, which changes the default branch for a repository
  • Information about committed code in a repository, by calling the following:
    • GetCommit, which returns information about a commit, including commit messages and committer information.
  • Triggers, by calling the following:
    • GetRepositoryTriggers, which returns information about triggers configured for a repository
    • PutRepositoryTriggers, which replaces all triggers for a repository and can be used to create or delete triggers
    • TestRepositoryTriggers, which tests the functionality of a repository trigger by sending data to the trigger target

For information about how to use AWS CodeCommit, see the AWS CodeCommit User Guide.

", "defaultEndpoint" : "https://codecommit.us-east-1.amazonaws.com", "defaultEndpointWithoutHttpProtocol" : "codecommit.us-east-1.amazonaws.com", "syncInterface" : "AWSCodeCommit", "syncClient" : "AWSCodeCommitClient", "asyncInterface" : "AWSCodeCommitAsync", "asyncClient" : "AWSCodeCommitAsyncClient", "packageName" : "com.amazonaws.services.codecommit", "packagePath" : "com/amazonaws/services/codecommit", "serviceAbbreviation" : "CodeCommit", "serviceFullName" : "AWS CodeCommit", "hasApiWithStreamInput" : false, "jsonContentVersion" : "application/x-amz-json-1.1", "jsonVersion" : "1.1", "endpointPrefix" : "codecommit", "signingName" : "codecommit", "jsonProtocol" : true, "serviceName" : "CodeCommit", "cborProtocol" : false, "xmlProtocol" : false, "unmarshallerContextClassName" : "JsonUnmarshallerContext", "unmarshallerClassSuffix" : "JsonUnmarshaller", "protocolDefaultExceptionUnmarshallerType" : "JsonErrorUnmarshaller" }, "operations" : { "BatchGetRepositories" : { "documentation" : "

Returns information about one or more repositories.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

", "operationName" : "BatchGetRepositories", "deprecated" : false, "input" : { "variableName" : "batchGetRepositoriesRequest", "variableType" : "BatchGetRepositoriesRequest", "variableDeclarationType" : "BatchGetRepositoriesRequest", "documentation" : "

Represents the input of a batch get repositories operation.

", "simpleType" : "BatchGetRepositoriesRequest", "variableSetterType" : "BatchGetRepositoriesRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "BatchGetRepositoriesResult", "documentation" : "

Represents the output of a batch get repositories operation.

" }, "exceptions" : [ { "exceptionName" : "RepositoryNamesRequiredException", "documentation" : "

A repository names object is required but was not specified.

" }, { "exceptionName" : "MaximumRepositoryNamesExceededException", "documentation" : "

The maximum number of allowed repository names was exceeded. Currently, this number is 25.

" }, { "exceptionName" : "InvalidRepositoryNameException", "documentation" : "

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

" }, { "exceptionName" : "EncryptionIntegrityChecksFailedException", "documentation" : "

An encryption integrity check failed.

" }, { "exceptionName" : "EncryptionKeyAccessDeniedException", "documentation" : "

An encryption key could not be accessed.

" }, { "exceptionName" : "EncryptionKeyDisabledException", "documentation" : "

The encryption key is disabled.

" }, { "exceptionName" : "EncryptionKeyNotFoundException", "documentation" : "

No encryption key was found.

" }, { "exceptionName" : "EncryptionKeyUnavailableException", "documentation" : "

The encryption key is not available.

" } ], "hasBlobMemberAsPayload" : false, "authenticated" : true, "syncReturnType" : "BatchGetRepositoriesResult", "asyncReturnType" : "BatchGetRepositoriesResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "methodName" : "batchGetRepositories" }, "CreateBranch" : { "documentation" : "

Creates a new branch in a repository and points the branch to a commit.

Calling the create branch operation does not set a repository's default branch. To do this, call the update default branch operation.

", "operationName" : "CreateBranch", "deprecated" : false, "input" : { "variableName" : "createBranchRequest", "variableType" : "CreateBranchRequest", "variableDeclarationType" : "CreateBranchRequest", "documentation" : "

Represents the input of a create branch operation.

", "simpleType" : "CreateBranchRequest", "variableSetterType" : "CreateBranchRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "CreateBranchResult", "documentation" : null }, "exceptions" : [ { "exceptionName" : "RepositoryNameRequiredException", "documentation" : "

A repository name is required but was not specified.

" }, { "exceptionName" : "InvalidRepositoryNameException", "documentation" : "

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

" }, { "exceptionName" : "RepositoryDoesNotExistException", "documentation" : "

The specified repository does not exist.

" }, { "exceptionName" : "BranchNameRequiredException", "documentation" : "

A branch name is required but was not specified.

" }, { "exceptionName" : "BranchNameExistsException", "documentation" : "

The specified branch name already exists.

" }, { "exceptionName" : "InvalidBranchNameException", "documentation" : "

The specified branch name is not valid.

" }, { "exceptionName" : "CommitIdRequiredException", "documentation" : "

A commit ID was not specified.

" }, { "exceptionName" : "CommitDoesNotExistException", "documentation" : "

The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

" }, { "exceptionName" : "InvalidCommitIdException", "documentation" : "

The specified commit ID is not valid.

" }, { "exceptionName" : "EncryptionIntegrityChecksFailedException", "documentation" : "

An encryption integrity check failed.

" }, { "exceptionName" : "EncryptionKeyAccessDeniedException", "documentation" : "

An encryption key could not be accessed.

" }, { "exceptionName" : "EncryptionKeyDisabledException", "documentation" : "

The encryption key is disabled.

" }, { "exceptionName" : "EncryptionKeyNotFoundException", "documentation" : "

No encryption key was found.

" }, { "exceptionName" : "EncryptionKeyUnavailableException", "documentation" : "

The encryption key is not available.

" } ], "hasBlobMemberAsPayload" : false, "authenticated" : true, "syncReturnType" : "CreateBranchResult", "asyncReturnType" : "CreateBranchResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "methodName" : "createBranch" }, "CreateRepository" : { "documentation" : "

Creates a new, empty repository.

", "operationName" : "CreateRepository", "deprecated" : false, "input" : { "variableName" : "createRepositoryRequest", "variableType" : "CreateRepositoryRequest", "variableDeclarationType" : "CreateRepositoryRequest", "documentation" : "

Represents the input of a create repository operation.

", "simpleType" : "CreateRepositoryRequest", "variableSetterType" : "CreateRepositoryRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "CreateRepositoryResult", "documentation" : "

Represents the output of a create repository operation.

" }, "exceptions" : [ { "exceptionName" : "RepositoryNameExistsException", "documentation" : "

The specified repository name already exists.

" }, { "exceptionName" : "RepositoryNameRequiredException", "documentation" : "

A repository name is required but was not specified.

" }, { "exceptionName" : "InvalidRepositoryNameException", "documentation" : "

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

" }, { "exceptionName" : "InvalidRepositoryDescriptionException", "documentation" : "

The specified repository description is not valid.

" }, { "exceptionName" : "RepositoryLimitExceededException", "documentation" : "

A repository resource limit was exceeded.

" }, { "exceptionName" : "EncryptionIntegrityChecksFailedException", "documentation" : "

An encryption integrity check failed.

" }, { "exceptionName" : "EncryptionKeyAccessDeniedException", "documentation" : "

An encryption key could not be accessed.

" }, { "exceptionName" : "EncryptionKeyDisabledException", "documentation" : "

The encryption key is disabled.

" }, { "exceptionName" : "EncryptionKeyNotFoundException", "documentation" : "

No encryption key was found.

" }, { "exceptionName" : "EncryptionKeyUnavailableException", "documentation" : "

The encryption key is not available.

" } ], "hasBlobMemberAsPayload" : false, "authenticated" : true, "syncReturnType" : "CreateRepositoryResult", "asyncReturnType" : "CreateRepositoryResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "methodName" : "createRepository" }, "DeleteRepository" : { "documentation" : "

Deletes a repository. If a specified repository was already deleted, a null repository ID will be returned.

Deleting a repository also deletes all associated objects and metadata. After a repository is deleted, all future push calls to the deleted repository will fail.", "operationName" : "DeleteRepository", "deprecated" : false, "input" : { "variableName" : "deleteRepositoryRequest", "variableType" : "DeleteRepositoryRequest", "variableDeclarationType" : "DeleteRepositoryRequest", "documentation" : "

Represents the input of a delete repository operation.

", "simpleType" : "DeleteRepositoryRequest", "variableSetterType" : "DeleteRepositoryRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DeleteRepositoryResult", "documentation" : "

Represents the output of a delete repository operation.

" }, "exceptions" : [ { "exceptionName" : "RepositoryNameRequiredException", "documentation" : "

A repository name is required but was not specified.

" }, { "exceptionName" : "InvalidRepositoryNameException", "documentation" : "

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

" }, { "exceptionName" : "EncryptionIntegrityChecksFailedException", "documentation" : "

An encryption integrity check failed.

" }, { "exceptionName" : "EncryptionKeyAccessDeniedException", "documentation" : "

An encryption key could not be accessed.

" }, { "exceptionName" : "EncryptionKeyDisabledException", "documentation" : "

The encryption key is disabled.

" }, { "exceptionName" : "EncryptionKeyNotFoundException", "documentation" : "

No encryption key was found.

" }, { "exceptionName" : "EncryptionKeyUnavailableException", "documentation" : "

The encryption key is not available.

" } ], "hasBlobMemberAsPayload" : false, "authenticated" : true, "syncReturnType" : "DeleteRepositoryResult", "asyncReturnType" : "DeleteRepositoryResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "methodName" : "deleteRepository" }, "GetBranch" : { "documentation" : "

Returns information about a repository branch, including its name and the last commit ID.

", "operationName" : "GetBranch", "deprecated" : false, "input" : { "variableName" : "getBranchRequest", "variableType" : "GetBranchRequest", "variableDeclarationType" : "GetBranchRequest", "documentation" : "

Represents the input of a get branch operation.

", "simpleType" : "GetBranchRequest", "variableSetterType" : "GetBranchRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "GetBranchResult", "documentation" : "

Represents the output of a get branch operation.

" }, "exceptions" : [ { "exceptionName" : "RepositoryNameRequiredException", "documentation" : "

A repository name is required but was not specified.

" }, { "exceptionName" : "RepositoryDoesNotExistException", "documentation" : "

The specified repository does not exist.

" }, { "exceptionName" : "InvalidRepositoryNameException", "documentation" : "

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

" }, { "exceptionName" : "BranchNameRequiredException", "documentation" : "

A branch name is required but was not specified.

" }, { "exceptionName" : "InvalidBranchNameException", "documentation" : "

The specified branch name is not valid.

" }, { "exceptionName" : "BranchDoesNotExistException", "documentation" : "

The specified branch does not exist.

" }, { "exceptionName" : "EncryptionIntegrityChecksFailedException", "documentation" : "

An encryption integrity check failed.

" }, { "exceptionName" : "EncryptionKeyAccessDeniedException", "documentation" : "

An encryption key could not be accessed.

" }, { "exceptionName" : "EncryptionKeyDisabledException", "documentation" : "

The encryption key is disabled.

" }, { "exceptionName" : "EncryptionKeyNotFoundException", "documentation" : "

No encryption key was found.

" }, { "exceptionName" : "EncryptionKeyUnavailableException", "documentation" : "

The encryption key is not available.

" } ], "hasBlobMemberAsPayload" : false, "authenticated" : true, "syncReturnType" : "GetBranchResult", "asyncReturnType" : "GetBranchResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "methodName" : "getBranch" }, "GetCommit" : { "documentation" : "

Returns information about a commit, including commit message and committer information.

", "operationName" : "GetCommit", "deprecated" : false, "input" : { "variableName" : "getCommitRequest", "variableType" : "GetCommitRequest", "variableDeclarationType" : "GetCommitRequest", "documentation" : "

Represents the input of a get commit operation.

", "simpleType" : "GetCommitRequest", "variableSetterType" : "GetCommitRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "GetCommitResult", "documentation" : "

Represents the output of a get commit operation.

" }, "exceptions" : [ { "exceptionName" : "RepositoryNameRequiredException", "documentation" : "

A repository name is required but was not specified.

" }, { "exceptionName" : "InvalidRepositoryNameException", "documentation" : "

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

" }, { "exceptionName" : "RepositoryDoesNotExistException", "documentation" : "

The specified repository does not exist.

" }, { "exceptionName" : "CommitIdRequiredException", "documentation" : "

A commit ID was not specified.

" }, { "exceptionName" : "InvalidCommitIdException", "documentation" : "

The specified commit ID is not valid.

" }, { "exceptionName" : "CommitIdDoesNotExistException", "documentation" : "

The specified commit ID does not exist.

" }, { "exceptionName" : "EncryptionIntegrityChecksFailedException", "documentation" : "

An encryption integrity check failed.

" }, { "exceptionName" : "EncryptionKeyAccessDeniedException", "documentation" : "

An encryption key could not be accessed.

" }, { "exceptionName" : "EncryptionKeyDisabledException", "documentation" : "

The encryption key is disabled.

" }, { "exceptionName" : "EncryptionKeyNotFoundException", "documentation" : "

No encryption key was found.

" }, { "exceptionName" : "EncryptionKeyUnavailableException", "documentation" : "

The encryption key is not available.

" } ], "hasBlobMemberAsPayload" : false, "authenticated" : true, "syncReturnType" : "GetCommitResult", "asyncReturnType" : "GetCommitResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "methodName" : "getCommit" }, "GetRepository" : { "documentation" : "

Returns information about a repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

", "operationName" : "GetRepository", "deprecated" : false, "input" : { "variableName" : "getRepositoryRequest", "variableType" : "GetRepositoryRequest", "variableDeclarationType" : "GetRepositoryRequest", "documentation" : "

Represents the input of a get repository operation.

", "simpleType" : "GetRepositoryRequest", "variableSetterType" : "GetRepositoryRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "GetRepositoryResult", "documentation" : "

Represents the output of a get repository operation.

" }, "exceptions" : [ { "exceptionName" : "RepositoryNameRequiredException", "documentation" : "

A repository name is required but was not specified.

" }, { "exceptionName" : "RepositoryDoesNotExistException", "documentation" : "

The specified repository does not exist.

" }, { "exceptionName" : "InvalidRepositoryNameException", "documentation" : "

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

" }, { "exceptionName" : "EncryptionIntegrityChecksFailedException", "documentation" : "

An encryption integrity check failed.

" }, { "exceptionName" : "EncryptionKeyAccessDeniedException", "documentation" : "

An encryption key could not be accessed.

" }, { "exceptionName" : "EncryptionKeyDisabledException", "documentation" : "

The encryption key is disabled.

" }, { "exceptionName" : "EncryptionKeyNotFoundException", "documentation" : "

No encryption key was found.

" }, { "exceptionName" : "EncryptionKeyUnavailableException", "documentation" : "

The encryption key is not available.

" } ], "hasBlobMemberAsPayload" : false, "authenticated" : true, "syncReturnType" : "GetRepositoryResult", "asyncReturnType" : "GetRepositoryResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "methodName" : "getRepository" }, "GetRepositoryTriggers" : { "documentation" : "

Gets information about triggers configured for a repository.

", "operationName" : "GetRepositoryTriggers", "deprecated" : false, "input" : { "variableName" : "getRepositoryTriggersRequest", "variableType" : "GetRepositoryTriggersRequest", "variableDeclarationType" : "GetRepositoryTriggersRequest", "documentation" : "

Represents the input of a get repository triggers operation.

", "simpleType" : "GetRepositoryTriggersRequest", "variableSetterType" : "GetRepositoryTriggersRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "GetRepositoryTriggersResult", "documentation" : "

Represents the output of a get repository triggers operation.

" }, "exceptions" : [ { "exceptionName" : "RepositoryNameRequiredException", "documentation" : "

A repository name is required but was not specified.

" }, { "exceptionName" : "InvalidRepositoryNameException", "documentation" : "

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

" }, { "exceptionName" : "RepositoryDoesNotExistException", "documentation" : "

The specified repository does not exist.

" }, { "exceptionName" : "EncryptionIntegrityChecksFailedException", "documentation" : "

An encryption integrity check failed.

" }, { "exceptionName" : "EncryptionKeyAccessDeniedException", "documentation" : "

An encryption key could not be accessed.

" }, { "exceptionName" : "EncryptionKeyDisabledException", "documentation" : "

The encryption key is disabled.

" }, { "exceptionName" : "EncryptionKeyNotFoundException", "documentation" : "

No encryption key was found.

" }, { "exceptionName" : "EncryptionKeyUnavailableException", "documentation" : "

The encryption key is not available.

" } ], "hasBlobMemberAsPayload" : false, "authenticated" : true, "syncReturnType" : "GetRepositoryTriggersResult", "asyncReturnType" : "GetRepositoryTriggersResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "methodName" : "getRepositoryTriggers" }, "ListBranches" : { "documentation" : "

Gets information about one or more branches in a repository.

", "operationName" : "ListBranches", "deprecated" : false, "input" : { "variableName" : "listBranchesRequest", "variableType" : "ListBranchesRequest", "variableDeclarationType" : "ListBranchesRequest", "documentation" : "

Represents the input of a list branches operation.

", "simpleType" : "ListBranchesRequest", "variableSetterType" : "ListBranchesRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "ListBranchesResult", "documentation" : "

Represents the output of a list branches operation.

" }, "exceptions" : [ { "exceptionName" : "RepositoryNameRequiredException", "documentation" : "

A repository name is required but was not specified.

" }, { "exceptionName" : "RepositoryDoesNotExistException", "documentation" : "

The specified repository does not exist.

" }, { "exceptionName" : "InvalidRepositoryNameException", "documentation" : "

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

" }, { "exceptionName" : "EncryptionIntegrityChecksFailedException", "documentation" : "

An encryption integrity check failed.

" }, { "exceptionName" : "EncryptionKeyAccessDeniedException", "documentation" : "

An encryption key could not be accessed.

" }, { "exceptionName" : "EncryptionKeyDisabledException", "documentation" : "

The encryption key is disabled.

" }, { "exceptionName" : "EncryptionKeyNotFoundException", "documentation" : "

No encryption key was found.

" }, { "exceptionName" : "EncryptionKeyUnavailableException", "documentation" : "

The encryption key is not available.

" }, { "exceptionName" : "InvalidContinuationTokenException", "documentation" : "

The specified continuation token is not valid.

" } ], "hasBlobMemberAsPayload" : false, "authenticated" : true, "syncReturnType" : "ListBranchesResult", "asyncReturnType" : "ListBranchesResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "methodName" : "listBranches" }, "ListRepositories" : { "documentation" : "

Gets information about one or more repositories.

", "operationName" : "ListRepositories", "deprecated" : false, "input" : { "variableName" : "listRepositoriesRequest", "variableType" : "ListRepositoriesRequest", "variableDeclarationType" : "ListRepositoriesRequest", "documentation" : "

Represents the input of a list repositories operation.

", "simpleType" : "ListRepositoriesRequest", "variableSetterType" : "ListRepositoriesRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "ListRepositoriesResult", "documentation" : "

Represents the output of a list repositories operation.

" }, "exceptions" : [ { "exceptionName" : "InvalidSortByException", "documentation" : "

The specified sort by value is not valid.

" }, { "exceptionName" : "InvalidOrderException", "documentation" : "

The specified sort order is not valid.

" }, { "exceptionName" : "InvalidContinuationTokenException", "documentation" : "

The specified continuation token is not valid.

" } ], "hasBlobMemberAsPayload" : false, "authenticated" : true, "syncReturnType" : "ListRepositoriesResult", "asyncReturnType" : "ListRepositoriesResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "methodName" : "listRepositories" }, "PutRepositoryTriggers" : { "documentation" : "

Replaces all triggers for a repository. This can be used to create or delete triggers.

", "operationName" : "PutRepositoryTriggers", "deprecated" : false, "input" : { "variableName" : "putRepositoryTriggersRequest", "variableType" : "PutRepositoryTriggersRequest", "variableDeclarationType" : "PutRepositoryTriggersRequest", "documentation" : "

Represents the input ofa put repository triggers operation.

", "simpleType" : "PutRepositoryTriggersRequest", "variableSetterType" : "PutRepositoryTriggersRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "PutRepositoryTriggersResult", "documentation" : "

Represents the output of a put repository triggers operation.

" }, "exceptions" : [ { "exceptionName" : "RepositoryDoesNotExistException", "documentation" : "

The specified repository does not exist.

" }, { "exceptionName" : "RepositoryNameRequiredException", "documentation" : "

A repository name is required but was not specified.

" }, { "exceptionName" : "InvalidRepositoryNameException", "documentation" : "

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

" }, { "exceptionName" : "RepositoryTriggersListRequiredException", "documentation" : "

The list of triggers for the repository is required but was not specified.

" }, { "exceptionName" : "MaximumRepositoryTriggersExceededException", "documentation" : "

The number of triggers allowed for the repository was exceeded.

" }, { "exceptionName" : "InvalidRepositoryTriggerNameException", "documentation" : "

The name of the trigger is not valid.

" }, { "exceptionName" : "InvalidRepositoryTriggerDestinationArnException", "documentation" : "

The Amazon Resource Name (ARN) for the trigger is not valid for the specified destination. The most common reason for this error is that the ARN does not meet the requirements for the service type.

" }, { "exceptionName" : "InvalidRepositoryTriggerRegionException", "documentation" : "

The region for the trigger target does not match the region for the repository. Triggers must be created in the same region as the target for the trigger.

" }, { "exceptionName" : "InvalidRepositoryTriggerCustomDataException", "documentation" : "

The custom data provided for the trigger is not valid.

" }, { "exceptionName" : "MaximumBranchesExceededException", "documentation" : "

The number of branches for the trigger was exceeded.

" }, { "exceptionName" : "InvalidRepositoryTriggerBranchNameException", "documentation" : "

One or more branch names specified for the trigger is not valid.

" }, { "exceptionName" : "InvalidRepositoryTriggerEventsException", "documentation" : "

One or more events specified for the trigger is not valid. Check to make sure that all events specified match the requirements for allowed events.

" }, { "exceptionName" : "RepositoryTriggerNameRequiredException", "documentation" : "

A name for the trigger is required but was not specified.

" }, { "exceptionName" : "RepositoryTriggerDestinationArnRequiredException", "documentation" : "

A destination ARN for the target service for the trigger is required but was not specified.

" }, { "exceptionName" : "RepositoryTriggerBranchNameListRequiredException", "documentation" : "

At least one branch name is required but was not specified in the trigger configuration.

" }, { "exceptionName" : "RepositoryTriggerEventsListRequiredException", "documentation" : "

At least one event for the trigger is required but was not specified.

" }, { "exceptionName" : "EncryptionIntegrityChecksFailedException", "documentation" : "

An encryption integrity check failed.

" }, { "exceptionName" : "EncryptionKeyAccessDeniedException", "documentation" : "

An encryption key could not be accessed.

" }, { "exceptionName" : "EncryptionKeyDisabledException", "documentation" : "

The encryption key is disabled.

" }, { "exceptionName" : "EncryptionKeyNotFoundException", "documentation" : "

No encryption key was found.

" }, { "exceptionName" : "EncryptionKeyUnavailableException", "documentation" : "

The encryption key is not available.

" } ], "hasBlobMemberAsPayload" : false, "authenticated" : true, "syncReturnType" : "PutRepositoryTriggersResult", "asyncReturnType" : "PutRepositoryTriggersResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "methodName" : "putRepositoryTriggers" }, "TestRepositoryTriggers" : { "documentation" : "

Tests the functionality of repository triggers by sending information to the trigger target. If real data is available in the repository, the test will send data from the last commit. If no data is available, sample data will be generated.

", "operationName" : "TestRepositoryTriggers", "deprecated" : false, "input" : { "variableName" : "testRepositoryTriggersRequest", "variableType" : "TestRepositoryTriggersRequest", "variableDeclarationType" : "TestRepositoryTriggersRequest", "documentation" : "

Represents the input of a test repository triggers operation.

", "simpleType" : "TestRepositoryTriggersRequest", "variableSetterType" : "TestRepositoryTriggersRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "TestRepositoryTriggersResult", "documentation" : "

Represents the output of a test repository triggers operation.

" }, "exceptions" : [ { "exceptionName" : "RepositoryDoesNotExistException", "documentation" : "

The specified repository does not exist.

" }, { "exceptionName" : "RepositoryNameRequiredException", "documentation" : "

A repository name is required but was not specified.

" }, { "exceptionName" : "InvalidRepositoryNameException", "documentation" : "

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

" }, { "exceptionName" : "RepositoryTriggersListRequiredException", "documentation" : "

The list of triggers for the repository is required but was not specified.

" }, { "exceptionName" : "MaximumRepositoryTriggersExceededException", "documentation" : "

The number of triggers allowed for the repository was exceeded.

" }, { "exceptionName" : "InvalidRepositoryTriggerNameException", "documentation" : "

The name of the trigger is not valid.

" }, { "exceptionName" : "InvalidRepositoryTriggerDestinationArnException", "documentation" : "

The Amazon Resource Name (ARN) for the trigger is not valid for the specified destination. The most common reason for this error is that the ARN does not meet the requirements for the service type.

" }, { "exceptionName" : "InvalidRepositoryTriggerRegionException", "documentation" : "

The region for the trigger target does not match the region for the repository. Triggers must be created in the same region as the target for the trigger.

" }, { "exceptionName" : "InvalidRepositoryTriggerCustomDataException", "documentation" : "

The custom data provided for the trigger is not valid.

" }, { "exceptionName" : "MaximumBranchesExceededException", "documentation" : "

The number of branches for the trigger was exceeded.

" }, { "exceptionName" : "InvalidRepositoryTriggerBranchNameException", "documentation" : "

One or more branch names specified for the trigger is not valid.

" }, { "exceptionName" : "InvalidRepositoryTriggerEventsException", "documentation" : "

One or more events specified for the trigger is not valid. Check to make sure that all events specified match the requirements for allowed events.

" }, { "exceptionName" : "RepositoryTriggerNameRequiredException", "documentation" : "

A name for the trigger is required but was not specified.

" }, { "exceptionName" : "RepositoryTriggerDestinationArnRequiredException", "documentation" : "

A destination ARN for the target service for the trigger is required but was not specified.

" }, { "exceptionName" : "RepositoryTriggerBranchNameListRequiredException", "documentation" : "

At least one branch name is required but was not specified in the trigger configuration.

" }, { "exceptionName" : "RepositoryTriggerEventsListRequiredException", "documentation" : "

At least one event for the trigger is required but was not specified.

" }, { "exceptionName" : "EncryptionIntegrityChecksFailedException", "documentation" : "

An encryption integrity check failed.

" }, { "exceptionName" : "EncryptionKeyAccessDeniedException", "documentation" : "

An encryption key could not be accessed.

" }, { "exceptionName" : "EncryptionKeyDisabledException", "documentation" : "

The encryption key is disabled.

" }, { "exceptionName" : "EncryptionKeyNotFoundException", "documentation" : "

No encryption key was found.

" }, { "exceptionName" : "EncryptionKeyUnavailableException", "documentation" : "

The encryption key is not available.

" } ], "hasBlobMemberAsPayload" : false, "authenticated" : true, "syncReturnType" : "TestRepositoryTriggersResult", "asyncReturnType" : "TestRepositoryTriggersResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "methodName" : "testRepositoryTriggers" }, "UpdateDefaultBranch" : { "documentation" : "

Sets or changes the default branch name for the specified repository.

If you use this operation to change the default branch name to the current default branch name, a success message is returned even though the default branch did not change.

", "operationName" : "UpdateDefaultBranch", "deprecated" : false, "input" : { "variableName" : "updateDefaultBranchRequest", "variableType" : "UpdateDefaultBranchRequest", "variableDeclarationType" : "UpdateDefaultBranchRequest", "documentation" : "

Represents the input of an update default branch operation.

", "simpleType" : "UpdateDefaultBranchRequest", "variableSetterType" : "UpdateDefaultBranchRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "UpdateDefaultBranchResult", "documentation" : null }, "exceptions" : [ { "exceptionName" : "RepositoryNameRequiredException", "documentation" : "

A repository name is required but was not specified.

" }, { "exceptionName" : "RepositoryDoesNotExistException", "documentation" : "

The specified repository does not exist.

" }, { "exceptionName" : "InvalidRepositoryNameException", "documentation" : "

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

" }, { "exceptionName" : "BranchNameRequiredException", "documentation" : "

A branch name is required but was not specified.

" }, { "exceptionName" : "InvalidBranchNameException", "documentation" : "

The specified branch name is not valid.

" }, { "exceptionName" : "BranchDoesNotExistException", "documentation" : "

The specified branch does not exist.

" }, { "exceptionName" : "EncryptionIntegrityChecksFailedException", "documentation" : "

An encryption integrity check failed.

" }, { "exceptionName" : "EncryptionKeyAccessDeniedException", "documentation" : "

An encryption key could not be accessed.

" }, { "exceptionName" : "EncryptionKeyDisabledException", "documentation" : "

The encryption key is disabled.

" }, { "exceptionName" : "EncryptionKeyNotFoundException", "documentation" : "

No encryption key was found.

" }, { "exceptionName" : "EncryptionKeyUnavailableException", "documentation" : "

The encryption key is not available.

" } ], "hasBlobMemberAsPayload" : false, "authenticated" : true, "syncReturnType" : "UpdateDefaultBranchResult", "asyncReturnType" : "UpdateDefaultBranchResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "methodName" : "updateDefaultBranch" }, "UpdateRepositoryDescription" : { "documentation" : "

Sets or changes the comment or description for a repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

", "operationName" : "UpdateRepositoryDescription", "deprecated" : false, "input" : { "variableName" : "updateRepositoryDescriptionRequest", "variableType" : "UpdateRepositoryDescriptionRequest", "variableDeclarationType" : "UpdateRepositoryDescriptionRequest", "documentation" : "

Represents the input of an update repository description operation.

", "simpleType" : "UpdateRepositoryDescriptionRequest", "variableSetterType" : "UpdateRepositoryDescriptionRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "UpdateRepositoryDescriptionResult", "documentation" : null }, "exceptions" : [ { "exceptionName" : "RepositoryNameRequiredException", "documentation" : "

A repository name is required but was not specified.

" }, { "exceptionName" : "RepositoryDoesNotExistException", "documentation" : "

The specified repository does not exist.

" }, { "exceptionName" : "InvalidRepositoryNameException", "documentation" : "

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

" }, { "exceptionName" : "InvalidRepositoryDescriptionException", "documentation" : "

The specified repository description is not valid.

" }, { "exceptionName" : "EncryptionIntegrityChecksFailedException", "documentation" : "

An encryption integrity check failed.

" }, { "exceptionName" : "EncryptionKeyAccessDeniedException", "documentation" : "

An encryption key could not be accessed.

" }, { "exceptionName" : "EncryptionKeyDisabledException", "documentation" : "

The encryption key is disabled.

" }, { "exceptionName" : "EncryptionKeyNotFoundException", "documentation" : "

No encryption key was found.

" }, { "exceptionName" : "EncryptionKeyUnavailableException", "documentation" : "

The encryption key is not available.

" } ], "hasBlobMemberAsPayload" : false, "authenticated" : true, "syncReturnType" : "UpdateRepositoryDescriptionResult", "asyncReturnType" : "UpdateRepositoryDescriptionResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "methodName" : "updateRepositoryDescription" }, "UpdateRepositoryName" : { "documentation" : "

Renames a repository. The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. The suffix \".git\" is prohibited. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide.

", "operationName" : "UpdateRepositoryName", "deprecated" : false, "input" : { "variableName" : "updateRepositoryNameRequest", "variableType" : "UpdateRepositoryNameRequest", "variableDeclarationType" : "UpdateRepositoryNameRequest", "documentation" : "

Represents the input of an update repository description operation.

", "simpleType" : "UpdateRepositoryNameRequest", "variableSetterType" : "UpdateRepositoryNameRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "UpdateRepositoryNameResult", "documentation" : null }, "exceptions" : [ { "exceptionName" : "RepositoryDoesNotExistException", "documentation" : "

The specified repository does not exist.

" }, { "exceptionName" : "RepositoryNameExistsException", "documentation" : "

The specified repository name already exists.

" }, { "exceptionName" : "RepositoryNameRequiredException", "documentation" : "

A repository name is required but was not specified.

" }, { "exceptionName" : "InvalidRepositoryNameException", "documentation" : "

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

" } ], "hasBlobMemberAsPayload" : false, "authenticated" : true, "syncReturnType" : "UpdateRepositoryNameResult", "asyncReturnType" : "UpdateRepositoryNameResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "methodName" : "updateRepositoryName" } }, "shapes" : { "GetRepositoryTriggersResult" : { "c2jName" : "GetRepositoryTriggersOutput", "documentation" : "

Represents the output of a get repository triggers operation.

", "shapeName" : "GetRepositoryTriggersResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The system-generated unique ID for the trigger.

", "name" : "ConfigurationId", "c2jName" : "configurationId", "c2jShape" : "RepositoryTriggersConfigurationId", "variable" : { "variableName" : "configurationId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The system-generated unique ID for the trigger.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "configurationId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "configurationId", "marshallLocationName" : "configurationId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The system-generated unique ID for the trigger.

\n@param configurationId The system-generated unique ID for the trigger.*/", "getterDocumentation" : "/**

The system-generated unique ID for the trigger.

\n@return The system-generated unique ID for the trigger.*/", "fluentSetterDocumentation" : "/**

The system-generated unique ID for the trigger.

\n@param configurationId The system-generated unique ID for the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The system-generated unique ID for the trigger.

\n@param configurationId The system-generated unique ID for the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The JSON block of configuration information for each trigger.

", "name" : "Triggers", "c2jName" : "triggers", "c2jShape" : "RepositoryTriggersList", "variable" : { "variableName" : "triggers", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The JSON block of configuration information for each trigger.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "triggers", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "triggers", "marshallLocationName" : "triggers", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "RepositoryTrigger", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryTrigger", "variable" : { "variableName" : "member", "variableType" : "RepositoryTrigger", "variableDeclarationType" : "RepositoryTrigger", "documentation" : "", "simpleType" : "RepositoryTrigger", "variableSetterType" : "RepositoryTrigger" }, "setterModel" : { "variableName" : "member", "variableType" : "RepositoryTrigger", "variableDeclarationType" : "RepositoryTrigger", "documentation" : "", "simpleType" : "RepositoryTrigger", "variableSetterType" : "RepositoryTrigger" }, "getterModel" : { "returnType" : "RepositoryTrigger", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "RepositoryTrigger", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The JSON block of configuration information for each trigger.

\n@param triggers The JSON block of configuration information for each trigger.*/", "getterDocumentation" : "/**

The JSON block of configuration information for each trigger.

\n@return The JSON block of configuration information for each trigger.*/", "fluentSetterDocumentation" : "/**

The JSON block of configuration information for each trigger.

\n@param triggers The JSON block of configuration information for each trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The JSON block of configuration information for each trigger.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setTriggers(java.util.Collection)} or {@link #withTriggers(java.util.Collection)} if you want to override the existing values.

\n@param triggers The JSON block of configuration information for each trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "getRepositoryTriggersResult", "variableType" : "GetRepositoryTriggersResult", "variableDeclarationType" : "GetRepositoryTriggersResult", "documentation" : null, "simpleType" : "GetRepositoryTriggersResult", "variableSetterType" : "GetRepositoryTriggersResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ConfigurationId" : { "documentation" : "

The system-generated unique ID for the trigger.

", "name" : "ConfigurationId", "c2jName" : "configurationId", "c2jShape" : "RepositoryTriggersConfigurationId", "variable" : { "variableName" : "configurationId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The system-generated unique ID for the trigger.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "configurationId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "configurationId", "marshallLocationName" : "configurationId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The system-generated unique ID for the trigger.

\n@param configurationId The system-generated unique ID for the trigger.*/", "getterDocumentation" : "/**

The system-generated unique ID for the trigger.

\n@return The system-generated unique ID for the trigger.*/", "fluentSetterDocumentation" : "/**

The system-generated unique ID for the trigger.

\n@param configurationId The system-generated unique ID for the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The system-generated unique ID for the trigger.

\n@param configurationId The system-generated unique ID for the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Triggers" : { "documentation" : "

The JSON block of configuration information for each trigger.

", "name" : "Triggers", "c2jName" : "triggers", "c2jShape" : "RepositoryTriggersList", "variable" : { "variableName" : "triggers", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The JSON block of configuration information for each trigger.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "triggers", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "triggers", "marshallLocationName" : "triggers", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "RepositoryTrigger", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryTrigger", "variable" : { "variableName" : "member", "variableType" : "RepositoryTrigger", "variableDeclarationType" : "RepositoryTrigger", "documentation" : "", "simpleType" : "RepositoryTrigger", "variableSetterType" : "RepositoryTrigger" }, "setterModel" : { "variableName" : "member", "variableType" : "RepositoryTrigger", "variableDeclarationType" : "RepositoryTrigger", "documentation" : "", "simpleType" : "RepositoryTrigger", "variableSetterType" : "RepositoryTrigger" }, "getterModel" : { "returnType" : "RepositoryTrigger", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "RepositoryTrigger", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The JSON block of configuration information for each trigger.

\n@param triggers The JSON block of configuration information for each trigger.*/", "getterDocumentation" : "/**

The JSON block of configuration information for each trigger.

\n@return The JSON block of configuration information for each trigger.*/", "fluentSetterDocumentation" : "/**

The JSON block of configuration information for each trigger.

\n@param triggers The JSON block of configuration information for each trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The JSON block of configuration information for each trigger.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setTriggers(java.util.Collection)} or {@link #withTriggers(java.util.Collection)} if you want to override the existing values.

\n@param triggers The JSON block of configuration information for each trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "RepositoryMetadata" : { "c2jName" : "RepositoryMetadata", "documentation" : "

Information about a repository.

", "shapeName" : "RepositoryMetadata", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The ID of the AWS account associated with the repository.

", "name" : "AccountId", "c2jName" : "accountId", "c2jShape" : "AccountId", "variable" : { "variableName" : "accountId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The ID of the AWS account associated with the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "accountId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "accountId", "marshallLocationName" : "accountId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The ID of the AWS account associated with the repository.

\n@param accountId The ID of the AWS account associated with the repository.*/", "getterDocumentation" : "/**

The ID of the AWS account associated with the repository.

\n@return The ID of the AWS account associated with the repository.*/", "fluentSetterDocumentation" : "/**

The ID of the AWS account associated with the repository.

\n@param accountId The ID of the AWS account associated with the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The ID of the AWS account associated with the repository.

\n@param accountId The ID of the AWS account associated with the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The ID of the repository.

", "name" : "RepositoryId", "c2jName" : "repositoryId", "c2jShape" : "RepositoryId", "variable" : { "variableName" : "repositoryId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The ID of the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryId", "marshallLocationName" : "repositoryId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The ID of the repository.

\n@param repositoryId The ID of the repository.*/", "getterDocumentation" : "/**

The ID of the repository.

\n@return The ID of the repository.*/", "fluentSetterDocumentation" : "/**

The ID of the repository.

\n@param repositoryId The ID of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The ID of the repository.

\n@param repositoryId The ID of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The repository's name.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The repository's name.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The repository's name.

\n@param repositoryName The repository's name.*/", "getterDocumentation" : "/**

The repository's name.

\n@return The repository's name.*/", "fluentSetterDocumentation" : "/**

The repository's name.

\n@param repositoryName The repository's name.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The repository's name.

\n@param repositoryName The repository's name.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

A comment or description about the repository.

", "name" : "RepositoryDescription", "c2jName" : "repositoryDescription", "c2jShape" : "RepositoryDescription", "variable" : { "variableName" : "repositoryDescription", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

A comment or description about the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryDescription", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryDescription", "marshallLocationName" : "repositoryDescription", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

A comment or description about the repository.

\n@param repositoryDescription A comment or description about the repository.*/", "getterDocumentation" : "/**

A comment or description about the repository.

\n@return A comment or description about the repository.*/", "fluentSetterDocumentation" : "/**

A comment or description about the repository.

\n@param repositoryDescription A comment or description about the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

A comment or description about the repository.

\n@param repositoryDescription A comment or description about the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The repository's default branch name.

", "name" : "DefaultBranch", "c2jName" : "defaultBranch", "c2jShape" : "BranchName", "variable" : { "variableName" : "defaultBranch", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The repository's default branch name.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "defaultBranch", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "defaultBranch", "marshallLocationName" : "defaultBranch", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The repository's default branch name.

\n@param defaultBranch The repository's default branch name.*/", "getterDocumentation" : "/**

The repository's default branch name.

\n@return The repository's default branch name.*/", "fluentSetterDocumentation" : "/**

The repository's default branch name.

\n@param defaultBranch The repository's default branch name.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The repository's default branch name.

\n@param defaultBranch The repository's default branch name.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The date and time the repository was last modified, in timestamp format.

", "name" : "LastModifiedDate", "c2jName" : "lastModifiedDate", "c2jShape" : "LastModifiedDate", "variable" : { "variableName" : "lastModifiedDate", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

The date and time the repository was last modified, in timestamp format.

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "lastModifiedDate", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "lastModifiedDate", "marshallLocationName" : "lastModifiedDate", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The date and time the repository was last modified, in timestamp format.

\n@param lastModifiedDate The date and time the repository was last modified, in timestamp format.*/", "getterDocumentation" : "/**

The date and time the repository was last modified, in timestamp format.

\n@return The date and time the repository was last modified, in timestamp format.*/", "fluentSetterDocumentation" : "/**

The date and time the repository was last modified, in timestamp format.

\n@param lastModifiedDate The date and time the repository was last modified, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The date and time the repository was last modified, in timestamp format.

\n@param lastModifiedDate The date and time the repository was last modified, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The date and time the repository was created, in timestamp format.

", "name" : "CreationDate", "c2jName" : "creationDate", "c2jShape" : "CreationDate", "variable" : { "variableName" : "creationDate", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

The date and time the repository was created, in timestamp format.

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "creationDate", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "creationDate", "marshallLocationName" : "creationDate", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The date and time the repository was created, in timestamp format.

\n@param creationDate The date and time the repository was created, in timestamp format.*/", "getterDocumentation" : "/**

The date and time the repository was created, in timestamp format.

\n@return The date and time the repository was created, in timestamp format.*/", "fluentSetterDocumentation" : "/**

The date and time the repository was created, in timestamp format.

\n@param creationDate The date and time the repository was created, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The date and time the repository was created, in timestamp format.

\n@param creationDate The date and time the repository was created, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The URL to use for cloning the repository over HTTPS.

", "name" : "CloneUrlHttp", "c2jName" : "cloneUrlHttp", "c2jShape" : "CloneUrlHttp", "variable" : { "variableName" : "cloneUrlHttp", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The URL to use for cloning the repository over HTTPS.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "cloneUrlHttp", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "cloneUrlHttp", "marshallLocationName" : "cloneUrlHttp", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The URL to use for cloning the repository over HTTPS.

\n@param cloneUrlHttp The URL to use for cloning the repository over HTTPS.*/", "getterDocumentation" : "/**

The URL to use for cloning the repository over HTTPS.

\n@return The URL to use for cloning the repository over HTTPS.*/", "fluentSetterDocumentation" : "/**

The URL to use for cloning the repository over HTTPS.

\n@param cloneUrlHttp The URL to use for cloning the repository over HTTPS.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The URL to use for cloning the repository over HTTPS.

\n@param cloneUrlHttp The URL to use for cloning the repository over HTTPS.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The URL to use for cloning the repository over SSH.

", "name" : "CloneUrlSsh", "c2jName" : "cloneUrlSsh", "c2jShape" : "CloneUrlSsh", "variable" : { "variableName" : "cloneUrlSsh", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The URL to use for cloning the repository over SSH.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "cloneUrlSsh", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "cloneUrlSsh", "marshallLocationName" : "cloneUrlSsh", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The URL to use for cloning the repository over SSH.

\n@param cloneUrlSsh The URL to use for cloning the repository over SSH.*/", "getterDocumentation" : "/**

The URL to use for cloning the repository over SSH.

\n@return The URL to use for cloning the repository over SSH.*/", "fluentSetterDocumentation" : "/**

The URL to use for cloning the repository over SSH.

\n@param cloneUrlSsh The URL to use for cloning the repository over SSH.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The URL to use for cloning the repository over SSH.

\n@param cloneUrlSsh The URL to use for cloning the repository over SSH.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The Amazon Resource Name (ARN) of the repository.

", "name" : "Arn", "c2jName" : "Arn", "c2jShape" : "Arn", "variable" : { "variableName" : "arn", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "arn", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Arn", "marshallLocationName" : "Arn", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The Amazon Resource Name (ARN) of the repository.

\n@param arn The Amazon Resource Name (ARN) of the repository.*/", "getterDocumentation" : "/**

The Amazon Resource Name (ARN) of the repository.

\n@return The Amazon Resource Name (ARN) of the repository.*/", "fluentSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the repository.

\n@param arn The Amazon Resource Name (ARN) of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the repository.

\n@param arn The Amazon Resource Name (ARN) of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "repositoryMetadata", "variableType" : "RepositoryMetadata", "variableDeclarationType" : "RepositoryMetadata", "documentation" : null, "simpleType" : "RepositoryMetadata", "variableSetterType" : "RepositoryMetadata" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryDescription" : { "documentation" : "

A comment or description about the repository.

", "name" : "RepositoryDescription", "c2jName" : "repositoryDescription", "c2jShape" : "RepositoryDescription", "variable" : { "variableName" : "repositoryDescription", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

A comment or description about the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryDescription", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryDescription", "marshallLocationName" : "repositoryDescription", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

A comment or description about the repository.

\n@param repositoryDescription A comment or description about the repository.*/", "getterDocumentation" : "/**

A comment or description about the repository.

\n@return A comment or description about the repository.*/", "fluentSetterDocumentation" : "/**

A comment or description about the repository.

\n@param repositoryDescription A comment or description about the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

A comment or description about the repository.

\n@param repositoryDescription A comment or description about the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "RepositoryName" : { "documentation" : "

The repository's name.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The repository's name.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The repository's name.

\n@param repositoryName The repository's name.*/", "getterDocumentation" : "/**

The repository's name.

\n@return The repository's name.*/", "fluentSetterDocumentation" : "/**

The repository's name.

\n@param repositoryName The repository's name.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The repository's name.

\n@param repositoryName The repository's name.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "DefaultBranch" : { "documentation" : "

The repository's default branch name.

", "name" : "DefaultBranch", "c2jName" : "defaultBranch", "c2jShape" : "BranchName", "variable" : { "variableName" : "defaultBranch", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The repository's default branch name.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "defaultBranch", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "defaultBranch", "marshallLocationName" : "defaultBranch", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The repository's default branch name.

\n@param defaultBranch The repository's default branch name.*/", "getterDocumentation" : "/**

The repository's default branch name.

\n@return The repository's default branch name.*/", "fluentSetterDocumentation" : "/**

The repository's default branch name.

\n@param defaultBranch The repository's default branch name.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The repository's default branch name.

\n@param defaultBranch The repository's default branch name.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "AccountId" : { "documentation" : "

The ID of the AWS account associated with the repository.

", "name" : "AccountId", "c2jName" : "accountId", "c2jShape" : "AccountId", "variable" : { "variableName" : "accountId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The ID of the AWS account associated with the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "accountId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "accountId", "marshallLocationName" : "accountId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The ID of the AWS account associated with the repository.

\n@param accountId The ID of the AWS account associated with the repository.*/", "getterDocumentation" : "/**

The ID of the AWS account associated with the repository.

\n@return The ID of the AWS account associated with the repository.*/", "fluentSetterDocumentation" : "/**

The ID of the AWS account associated with the repository.

\n@param accountId The ID of the AWS account associated with the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The ID of the AWS account associated with the repository.

\n@param accountId The ID of the AWS account associated with the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "CloneUrlSsh" : { "documentation" : "

The URL to use for cloning the repository over SSH.

", "name" : "CloneUrlSsh", "c2jName" : "cloneUrlSsh", "c2jShape" : "CloneUrlSsh", "variable" : { "variableName" : "cloneUrlSsh", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The URL to use for cloning the repository over SSH.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "cloneUrlSsh", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "cloneUrlSsh", "marshallLocationName" : "cloneUrlSsh", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The URL to use for cloning the repository over SSH.

\n@param cloneUrlSsh The URL to use for cloning the repository over SSH.*/", "getterDocumentation" : "/**

The URL to use for cloning the repository over SSH.

\n@return The URL to use for cloning the repository over SSH.*/", "fluentSetterDocumentation" : "/**

The URL to use for cloning the repository over SSH.

\n@param cloneUrlSsh The URL to use for cloning the repository over SSH.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The URL to use for cloning the repository over SSH.

\n@param cloneUrlSsh The URL to use for cloning the repository over SSH.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "LastModifiedDate" : { "documentation" : "

The date and time the repository was last modified, in timestamp format.

", "name" : "LastModifiedDate", "c2jName" : "lastModifiedDate", "c2jShape" : "LastModifiedDate", "variable" : { "variableName" : "lastModifiedDate", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

The date and time the repository was last modified, in timestamp format.

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "lastModifiedDate", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "lastModifiedDate", "marshallLocationName" : "lastModifiedDate", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The date and time the repository was last modified, in timestamp format.

\n@param lastModifiedDate The date and time the repository was last modified, in timestamp format.*/", "getterDocumentation" : "/**

The date and time the repository was last modified, in timestamp format.

\n@return The date and time the repository was last modified, in timestamp format.*/", "fluentSetterDocumentation" : "/**

The date and time the repository was last modified, in timestamp format.

\n@param lastModifiedDate The date and time the repository was last modified, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The date and time the repository was last modified, in timestamp format.

\n@param lastModifiedDate The date and time the repository was last modified, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "RepositoryId" : { "documentation" : "

The ID of the repository.

", "name" : "RepositoryId", "c2jName" : "repositoryId", "c2jShape" : "RepositoryId", "variable" : { "variableName" : "repositoryId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The ID of the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryId", "marshallLocationName" : "repositoryId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The ID of the repository.

\n@param repositoryId The ID of the repository.*/", "getterDocumentation" : "/**

The ID of the repository.

\n@return The ID of the repository.*/", "fluentSetterDocumentation" : "/**

The ID of the repository.

\n@param repositoryId The ID of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The ID of the repository.

\n@param repositoryId The ID of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "CreationDate" : { "documentation" : "

The date and time the repository was created, in timestamp format.

", "name" : "CreationDate", "c2jName" : "creationDate", "c2jShape" : "CreationDate", "variable" : { "variableName" : "creationDate", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

The date and time the repository was created, in timestamp format.

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "creationDate", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "creationDate", "marshallLocationName" : "creationDate", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The date and time the repository was created, in timestamp format.

\n@param creationDate The date and time the repository was created, in timestamp format.*/", "getterDocumentation" : "/**

The date and time the repository was created, in timestamp format.

\n@return The date and time the repository was created, in timestamp format.*/", "fluentSetterDocumentation" : "/**

The date and time the repository was created, in timestamp format.

\n@param creationDate The date and time the repository was created, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The date and time the repository was created, in timestamp format.

\n@param creationDate The date and time the repository was created, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Arn" : { "documentation" : "

The Amazon Resource Name (ARN) of the repository.

", "name" : "Arn", "c2jName" : "Arn", "c2jShape" : "Arn", "variable" : { "variableName" : "arn", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "arn", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Arn", "marshallLocationName" : "Arn", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The Amazon Resource Name (ARN) of the repository.

\n@param arn The Amazon Resource Name (ARN) of the repository.*/", "getterDocumentation" : "/**

The Amazon Resource Name (ARN) of the repository.

\n@return The Amazon Resource Name (ARN) of the repository.*/", "fluentSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the repository.

\n@param arn The Amazon Resource Name (ARN) of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the repository.

\n@param arn The Amazon Resource Name (ARN) of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "CloneUrlHttp" : { "documentation" : "

The URL to use for cloning the repository over HTTPS.

", "name" : "CloneUrlHttp", "c2jName" : "cloneUrlHttp", "c2jShape" : "CloneUrlHttp", "variable" : { "variableName" : "cloneUrlHttp", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The URL to use for cloning the repository over HTTPS.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "cloneUrlHttp", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "cloneUrlHttp", "marshallLocationName" : "cloneUrlHttp", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The URL to use for cloning the repository over HTTPS.

\n@param cloneUrlHttp The URL to use for cloning the repository over HTTPS.*/", "getterDocumentation" : "/**

The URL to use for cloning the repository over HTTPS.

\n@return The URL to use for cloning the repository over HTTPS.*/", "fluentSetterDocumentation" : "/**

The URL to use for cloning the repository over HTTPS.

\n@param cloneUrlHttp The URL to use for cloning the repository over HTTPS.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The URL to use for cloning the repository over HTTPS.

\n@param cloneUrlHttp The URL to use for cloning the repository over HTTPS.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "RepositoryTriggerEventEnum" : { "c2jName" : "RepositoryTriggerEventEnum", "documentation" : "", "shapeName" : "RepositoryTriggerEventEnum", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "All", "value" : "all" }, { "name" : "UpdateReference", "value" : "updateReference" }, { "name" : "CreateReference", "value" : "createReference" }, { "name" : "DeleteReference", "value" : "deleteReference" } ], "variable" : { "variableName" : "repositoryTriggerEventEnum", "variableType" : "RepositoryTriggerEventEnum", "variableDeclarationType" : "RepositoryTriggerEventEnum", "documentation" : null, "simpleType" : "RepositoryTriggerEventEnum", "variableSetterType" : "RepositoryTriggerEventEnum" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "MaximumBranchesExceededException" : { "c2jName" : "MaximumBranchesExceededException", "documentation" : "

The number of branches for the trigger was exceeded.

", "shapeName" : "MaximumBranchesExceededException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "maximumBranchesExceededException", "variableType" : "MaximumBranchesExceededException", "variableDeclarationType" : "MaximumBranchesExceededException", "documentation" : null, "simpleType" : "MaximumBranchesExceededException", "variableSetterType" : "MaximumBranchesExceededException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "MaximumBranchesExceededException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "BatchGetRepositoriesRequest" : { "c2jName" : "BatchGetRepositoriesInput", "documentation" : "

Represents the input of a batch get repositories operation.

", "shapeName" : "BatchGetRepositoriesRequest", "deprecated" : false, "required" : [ "repositoryNames" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The names of the repositories to get information about.

", "name" : "RepositoryNames", "c2jName" : "repositoryNames", "c2jShape" : "RepositoryNameList", "variable" : { "variableName" : "repositoryNames", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The names of the repositories to get information about.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "repositoryNames", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryNames", "marshallLocationName" : "repositoryNames", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The names of the repositories to get information about.

\n@param repositoryNames The names of the repositories to get information about.*/", "getterDocumentation" : "/**

The names of the repositories to get information about.

\n@return The names of the repositories to get information about.*/", "fluentSetterDocumentation" : "/**

The names of the repositories to get information about.

\n@param repositoryNames The names of the repositories to get information about.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The names of the repositories to get information about.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setRepositoryNames(java.util.Collection)} or {@link #withRepositoryNames(java.util.Collection)} if you want to override the existing values.

\n@param repositoryNames The names of the repositories to get information about.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "batchGetRepositoriesRequest", "variableType" : "BatchGetRepositoriesRequest", "variableDeclarationType" : "BatchGetRepositoriesRequest", "documentation" : null, "simpleType" : "BatchGetRepositoriesRequest", "variableSetterType" : "BatchGetRepositoriesRequest" }, "marshaller" : { "action" : "BatchGetRepositories", "verb" : "POST", "target" : "CodeCommit_20150413.BatchGetRepositories", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryNames" : { "documentation" : "

The names of the repositories to get information about.

", "name" : "RepositoryNames", "c2jName" : "repositoryNames", "c2jShape" : "RepositoryNameList", "variable" : { "variableName" : "repositoryNames", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The names of the repositories to get information about.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "repositoryNames", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryNames", "marshallLocationName" : "repositoryNames", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The names of the repositories to get information about.

\n@param repositoryNames The names of the repositories to get information about.*/", "getterDocumentation" : "/**

The names of the repositories to get information about.

\n@return The names of the repositories to get information about.*/", "fluentSetterDocumentation" : "/**

The names of the repositories to get information about.

\n@param repositoryNames The names of the repositories to get information about.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The names of the repositories to get information about.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setRepositoryNames(java.util.Collection)} or {@link #withRepositoryNames(java.util.Collection)} if you want to override the existing values.

\n@param repositoryNames The names of the repositories to get information about.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "EncryptionKeyNotFoundException" : { "c2jName" : "EncryptionKeyNotFoundException", "documentation" : "

No encryption key was found.

", "shapeName" : "EncryptionKeyNotFoundException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "encryptionKeyNotFoundException", "variableType" : "EncryptionKeyNotFoundException", "variableDeclarationType" : "EncryptionKeyNotFoundException", "documentation" : null, "simpleType" : "EncryptionKeyNotFoundException", "variableSetterType" : "EncryptionKeyNotFoundException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "EncryptionKeyNotFoundException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "BranchInfo" : { "c2jName" : "BranchInfo", "documentation" : "

Returns information about a branch.

", "shapeName" : "BranchInfo", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the branch.

", "name" : "BranchName", "c2jName" : "branchName", "c2jShape" : "BranchName", "variable" : { "variableName" : "branchName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the branch.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "branchName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "branchName", "marshallLocationName" : "branchName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the branch.

\n@param branchName The name of the branch.*/", "getterDocumentation" : "/**

The name of the branch.

\n@return The name of the branch.*/", "fluentSetterDocumentation" : "/**

The name of the branch.

\n@param branchName The name of the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the branch.

\n@param branchName The name of the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The ID of the last commit made to the branch.

", "name" : "CommitId", "c2jName" : "commitId", "c2jShape" : "CommitId", "variable" : { "variableName" : "commitId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The ID of the last commit made to the branch.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "commitId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "commitId", "marshallLocationName" : "commitId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The ID of the last commit made to the branch.

\n@param commitId The ID of the last commit made to the branch.*/", "getterDocumentation" : "/**

The ID of the last commit made to the branch.

\n@return The ID of the last commit made to the branch.*/", "fluentSetterDocumentation" : "/**

The ID of the last commit made to the branch.

\n@param commitId The ID of the last commit made to the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The ID of the last commit made to the branch.

\n@param commitId The ID of the last commit made to the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "branchInfo", "variableType" : "BranchInfo", "variableDeclarationType" : "BranchInfo", "documentation" : null, "simpleType" : "BranchInfo", "variableSetterType" : "BranchInfo" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "BranchName" : { "documentation" : "

The name of the branch.

", "name" : "BranchName", "c2jName" : "branchName", "c2jShape" : "BranchName", "variable" : { "variableName" : "branchName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the branch.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "branchName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "branchName", "marshallLocationName" : "branchName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the branch.

\n@param branchName The name of the branch.*/", "getterDocumentation" : "/**

The name of the branch.

\n@return The name of the branch.*/", "fluentSetterDocumentation" : "/**

The name of the branch.

\n@param branchName The name of the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the branch.

\n@param branchName The name of the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "CommitId" : { "documentation" : "

The ID of the last commit made to the branch.

", "name" : "CommitId", "c2jName" : "commitId", "c2jShape" : "CommitId", "variable" : { "variableName" : "commitId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The ID of the last commit made to the branch.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "commitId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "commitId", "marshallLocationName" : "commitId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The ID of the last commit made to the branch.

\n@param commitId The ID of the last commit made to the branch.*/", "getterDocumentation" : "/**

The ID of the last commit made to the branch.

\n@return The ID of the last commit made to the branch.*/", "fluentSetterDocumentation" : "/**

The ID of the last commit made to the branch.

\n@param commitId The ID of the last commit made to the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The ID of the last commit made to the branch.

\n@param commitId The ID of the last commit made to the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ListRepositoriesResult" : { "c2jName" : "ListRepositoriesOutput", "documentation" : "

Represents the output of a list repositories operation.

", "shapeName" : "ListRepositoriesResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Lists the repositories called by the list repositories operation.

", "name" : "Repositories", "c2jName" : "repositories", "c2jShape" : "RepositoryNameIdPairList", "variable" : { "variableName" : "repositories", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Lists the repositories called by the list repositories operation.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "repositories", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositories", "marshallLocationName" : "repositories", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "RepositoryNameIdPair", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryNameIdPair", "variable" : { "variableName" : "member", "variableType" : "RepositoryNameIdPair", "variableDeclarationType" : "RepositoryNameIdPair", "documentation" : "", "simpleType" : "RepositoryNameIdPair", "variableSetterType" : "RepositoryNameIdPair" }, "setterModel" : { "variableName" : "member", "variableType" : "RepositoryNameIdPair", "variableDeclarationType" : "RepositoryNameIdPair", "documentation" : "", "simpleType" : "RepositoryNameIdPair", "variableSetterType" : "RepositoryNameIdPair" }, "getterModel" : { "returnType" : "RepositoryNameIdPair", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "RepositoryNameIdPair", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Lists the repositories called by the list repositories operation.

\n@param repositories Lists the repositories called by the list repositories operation.*/", "getterDocumentation" : "/**

Lists the repositories called by the list repositories operation.

\n@return Lists the repositories called by the list repositories operation.*/", "fluentSetterDocumentation" : "/**

Lists the repositories called by the list repositories operation.

\n@param repositories Lists the repositories called by the list repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Lists the repositories called by the list repositories operation.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setRepositories(java.util.Collection)} or {@link #withRepositories(java.util.Collection)} if you want to override the existing values.

\n@param repositories Lists the repositories called by the list repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

", "name" : "NextToken", "c2jName" : "nextToken", "c2jShape" : "NextToken", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "nextToken", "marshallLocationName" : "nextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

\n@param nextToken An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.*/", "getterDocumentation" : "/**

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

\n@return An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.*/", "fluentSetterDocumentation" : "/**

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

\n@param nextToken An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

\n@param nextToken An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "listRepositoriesResult", "variableType" : "ListRepositoriesResult", "variableDeclarationType" : "ListRepositoriesResult", "documentation" : null, "simpleType" : "ListRepositoriesResult", "variableSetterType" : "ListRepositoriesResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

", "name" : "NextToken", "c2jName" : "nextToken", "c2jShape" : "NextToken", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "nextToken", "marshallLocationName" : "nextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

\n@param nextToken An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.*/", "getterDocumentation" : "/**

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

\n@return An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.*/", "fluentSetterDocumentation" : "/**

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

\n@param nextToken An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

\n@param nextToken An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Repositories" : { "documentation" : "

Lists the repositories called by the list repositories operation.

", "name" : "Repositories", "c2jName" : "repositories", "c2jShape" : "RepositoryNameIdPairList", "variable" : { "variableName" : "repositories", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Lists the repositories called by the list repositories operation.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "repositories", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositories", "marshallLocationName" : "repositories", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "RepositoryNameIdPair", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryNameIdPair", "variable" : { "variableName" : "member", "variableType" : "RepositoryNameIdPair", "variableDeclarationType" : "RepositoryNameIdPair", "documentation" : "", "simpleType" : "RepositoryNameIdPair", "variableSetterType" : "RepositoryNameIdPair" }, "setterModel" : { "variableName" : "member", "variableType" : "RepositoryNameIdPair", "variableDeclarationType" : "RepositoryNameIdPair", "documentation" : "", "simpleType" : "RepositoryNameIdPair", "variableSetterType" : "RepositoryNameIdPair" }, "getterModel" : { "returnType" : "RepositoryNameIdPair", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "RepositoryNameIdPair", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Lists the repositories called by the list repositories operation.

\n@param repositories Lists the repositories called by the list repositories operation.*/", "getterDocumentation" : "/**

Lists the repositories called by the list repositories operation.

\n@return Lists the repositories called by the list repositories operation.*/", "fluentSetterDocumentation" : "/**

Lists the repositories called by the list repositories operation.

\n@param repositories Lists the repositories called by the list repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Lists the repositories called by the list repositories operation.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setRepositories(java.util.Collection)} or {@link #withRepositories(java.util.Collection)} if you want to override the existing values.

\n@param repositories Lists the repositories called by the list repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "InvalidSortByException" : { "c2jName" : "InvalidSortByException", "documentation" : "

The specified sort by value is not valid.

", "shapeName" : "InvalidSortByException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "invalidSortByException", "variableType" : "InvalidSortByException", "variableDeclarationType" : "InvalidSortByException", "documentation" : null, "simpleType" : "InvalidSortByException", "variableSetterType" : "InvalidSortByException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InvalidSortByException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "InvalidRepositoryNameException" : { "c2jName" : "InvalidRepositoryNameException", "documentation" : "

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

", "shapeName" : "InvalidRepositoryNameException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "invalidRepositoryNameException", "variableType" : "InvalidRepositoryNameException", "variableDeclarationType" : "InvalidRepositoryNameException", "documentation" : null, "simpleType" : "InvalidRepositoryNameException", "variableSetterType" : "InvalidRepositoryNameException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InvalidRepositoryNameException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "InvalidRepositoryTriggerDestinationArnException" : { "c2jName" : "InvalidRepositoryTriggerDestinationArnException", "documentation" : "

The Amazon Resource Name (ARN) for the trigger is not valid for the specified destination. The most common reason for this error is that the ARN does not meet the requirements for the service type.

", "shapeName" : "InvalidRepositoryTriggerDestinationArnException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "invalidRepositoryTriggerDestinationArnException", "variableType" : "InvalidRepositoryTriggerDestinationArnException", "variableDeclarationType" : "InvalidRepositoryTriggerDestinationArnException", "documentation" : null, "simpleType" : "InvalidRepositoryTriggerDestinationArnException", "variableSetterType" : "InvalidRepositoryTriggerDestinationArnException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InvalidRepositoryTriggerDestinationArnException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "BatchGetRepositoriesResult" : { "c2jName" : "BatchGetRepositoriesOutput", "documentation" : "

Represents the output of a batch get repositories operation.

", "shapeName" : "BatchGetRepositoriesResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

A list of repositories returned by the batch get repositories operation.

", "name" : "Repositories", "c2jName" : "repositories", "c2jShape" : "RepositoryMetadataList", "variable" : { "variableName" : "repositories", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

A list of repositories returned by the batch get repositories operation.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "repositories", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositories", "marshallLocationName" : "repositories", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "RepositoryMetadata", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryMetadata", "variable" : { "variableName" : "member", "variableType" : "RepositoryMetadata", "variableDeclarationType" : "RepositoryMetadata", "documentation" : "", "simpleType" : "RepositoryMetadata", "variableSetterType" : "RepositoryMetadata" }, "setterModel" : { "variableName" : "member", "variableType" : "RepositoryMetadata", "variableDeclarationType" : "RepositoryMetadata", "documentation" : "", "simpleType" : "RepositoryMetadata", "variableSetterType" : "RepositoryMetadata" }, "getterModel" : { "returnType" : "RepositoryMetadata", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "RepositoryMetadata", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

A list of repositories returned by the batch get repositories operation.

\n@param repositories A list of repositories returned by the batch get repositories operation.*/", "getterDocumentation" : "/**

A list of repositories returned by the batch get repositories operation.

\n@return A list of repositories returned by the batch get repositories operation.*/", "fluentSetterDocumentation" : "/**

A list of repositories returned by the batch get repositories operation.

\n@param repositories A list of repositories returned by the batch get repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

A list of repositories returned by the batch get repositories operation.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setRepositories(java.util.Collection)} or {@link #withRepositories(java.util.Collection)} if you want to override the existing values.

\n@param repositories A list of repositories returned by the batch get repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Returns a list of repository names for which information could not be found.

", "name" : "RepositoriesNotFound", "c2jName" : "repositoriesNotFound", "c2jShape" : "RepositoryNotFoundList", "variable" : { "variableName" : "repositoriesNotFound", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Returns a list of repository names for which information could not be found.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "repositoriesNotFound", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoriesNotFound", "marshallLocationName" : "repositoriesNotFound", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Returns a list of repository names for which information could not be found.

\n@param repositoriesNotFound Returns a list of repository names for which information could not be found.*/", "getterDocumentation" : "/**

Returns a list of repository names for which information could not be found.

\n@return Returns a list of repository names for which information could not be found.*/", "fluentSetterDocumentation" : "/**

Returns a list of repository names for which information could not be found.

\n@param repositoriesNotFound Returns a list of repository names for which information could not be found.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Returns a list of repository names for which information could not be found.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setRepositoriesNotFound(java.util.Collection)} or {@link #withRepositoriesNotFound(java.util.Collection)} if you want to override the existing values.

\n@param repositoriesNotFound Returns a list of repository names for which information could not be found.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "batchGetRepositoriesResult", "variableType" : "BatchGetRepositoriesResult", "variableDeclarationType" : "BatchGetRepositoriesResult", "documentation" : null, "simpleType" : "BatchGetRepositoriesResult", "variableSetterType" : "BatchGetRepositoriesResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Repositories" : { "documentation" : "

A list of repositories returned by the batch get repositories operation.

", "name" : "Repositories", "c2jName" : "repositories", "c2jShape" : "RepositoryMetadataList", "variable" : { "variableName" : "repositories", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

A list of repositories returned by the batch get repositories operation.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "repositories", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositories", "marshallLocationName" : "repositories", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "RepositoryMetadata", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryMetadata", "variable" : { "variableName" : "member", "variableType" : "RepositoryMetadata", "variableDeclarationType" : "RepositoryMetadata", "documentation" : "", "simpleType" : "RepositoryMetadata", "variableSetterType" : "RepositoryMetadata" }, "setterModel" : { "variableName" : "member", "variableType" : "RepositoryMetadata", "variableDeclarationType" : "RepositoryMetadata", "documentation" : "", "simpleType" : "RepositoryMetadata", "variableSetterType" : "RepositoryMetadata" }, "getterModel" : { "returnType" : "RepositoryMetadata", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "RepositoryMetadata", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

A list of repositories returned by the batch get repositories operation.

\n@param repositories A list of repositories returned by the batch get repositories operation.*/", "getterDocumentation" : "/**

A list of repositories returned by the batch get repositories operation.

\n@return A list of repositories returned by the batch get repositories operation.*/", "fluentSetterDocumentation" : "/**

A list of repositories returned by the batch get repositories operation.

\n@param repositories A list of repositories returned by the batch get repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

A list of repositories returned by the batch get repositories operation.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setRepositories(java.util.Collection)} or {@link #withRepositories(java.util.Collection)} if you want to override the existing values.

\n@param repositories A list of repositories returned by the batch get repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "RepositoriesNotFound" : { "documentation" : "

Returns a list of repository names for which information could not be found.

", "name" : "RepositoriesNotFound", "c2jName" : "repositoriesNotFound", "c2jShape" : "RepositoryNotFoundList", "variable" : { "variableName" : "repositoriesNotFound", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Returns a list of repository names for which information could not be found.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "repositoriesNotFound", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoriesNotFound", "marshallLocationName" : "repositoriesNotFound", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Returns a list of repository names for which information could not be found.

\n@param repositoriesNotFound Returns a list of repository names for which information could not be found.*/", "getterDocumentation" : "/**

Returns a list of repository names for which information could not be found.

\n@return Returns a list of repository names for which information could not be found.*/", "fluentSetterDocumentation" : "/**

Returns a list of repository names for which information could not be found.

\n@param repositoriesNotFound Returns a list of repository names for which information could not be found.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Returns a list of repository names for which information could not be found.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setRepositoriesNotFound(java.util.Collection)} or {@link #withRepositoriesNotFound(java.util.Collection)} if you want to override the existing values.

\n@param repositoriesNotFound Returns a list of repository names for which information could not be found.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "EncryptionKeyDisabledException" : { "c2jName" : "EncryptionKeyDisabledException", "documentation" : "

The encryption key is disabled.

", "shapeName" : "EncryptionKeyDisabledException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "encryptionKeyDisabledException", "variableType" : "EncryptionKeyDisabledException", "variableDeclarationType" : "EncryptionKeyDisabledException", "documentation" : null, "simpleType" : "EncryptionKeyDisabledException", "variableSetterType" : "EncryptionKeyDisabledException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "EncryptionKeyDisabledException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "CreateRepositoryResult" : { "c2jName" : "CreateRepositoryOutput", "documentation" : "

Represents the output of a create repository operation.

", "shapeName" : "CreateRepositoryResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Information about the newly created repository.

", "name" : "RepositoryMetadata", "c2jName" : "repositoryMetadata", "c2jShape" : "RepositoryMetadata", "variable" : { "variableName" : "repositoryMetadata", "variableType" : "RepositoryMetadata", "variableDeclarationType" : "RepositoryMetadata", "documentation" : "

Information about the newly created repository.

", "simpleType" : "RepositoryMetadata", "variableSetterType" : "RepositoryMetadata" }, "setterModel" : { "variableName" : "repositoryMetadata", "variableType" : "RepositoryMetadata", "variableDeclarationType" : "RepositoryMetadata", "documentation" : "", "simpleType" : "RepositoryMetadata", "variableSetterType" : "RepositoryMetadata" }, "getterModel" : { "returnType" : "RepositoryMetadata", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryMetadata", "marshallLocationName" : "repositoryMetadata", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Information about the newly created repository.

\n@param repositoryMetadata Information about the newly created repository.*/", "getterDocumentation" : "/**

Information about the newly created repository.

\n@return Information about the newly created repository.*/", "fluentSetterDocumentation" : "/**

Information about the newly created repository.

\n@param repositoryMetadata Information about the newly created repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Information about the newly created repository.

\n@param repositoryMetadata Information about the newly created repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createRepositoryResult", "variableType" : "CreateRepositoryResult", "variableDeclarationType" : "CreateRepositoryResult", "documentation" : null, "simpleType" : "CreateRepositoryResult", "variableSetterType" : "CreateRepositoryResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryMetadata" : { "documentation" : "

Information about the newly created repository.

", "name" : "RepositoryMetadata", "c2jName" : "repositoryMetadata", "c2jShape" : "RepositoryMetadata", "variable" : { "variableName" : "repositoryMetadata", "variableType" : "RepositoryMetadata", "variableDeclarationType" : "RepositoryMetadata", "documentation" : "

Information about the newly created repository.

", "simpleType" : "RepositoryMetadata", "variableSetterType" : "RepositoryMetadata" }, "setterModel" : { "variableName" : "repositoryMetadata", "variableType" : "RepositoryMetadata", "variableDeclarationType" : "RepositoryMetadata", "documentation" : "", "simpleType" : "RepositoryMetadata", "variableSetterType" : "RepositoryMetadata" }, "getterModel" : { "returnType" : "RepositoryMetadata", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryMetadata", "marshallLocationName" : "repositoryMetadata", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Information about the newly created repository.

\n@param repositoryMetadata Information about the newly created repository.*/", "getterDocumentation" : "/**

Information about the newly created repository.

\n@return Information about the newly created repository.*/", "fluentSetterDocumentation" : "/**

Information about the newly created repository.

\n@param repositoryMetadata Information about the newly created repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Information about the newly created repository.

\n@param repositoryMetadata Information about the newly created repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ListBranchesRequest" : { "c2jName" : "ListBranchesInput", "documentation" : "

Represents the input of a list branches operation.

", "shapeName" : "ListBranchesRequest", "deprecated" : false, "required" : [ "repositoryName" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the repository that contains the branches.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository that contains the branches.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository that contains the branches.

\n@param repositoryName The name of the repository that contains the branches.*/", "getterDocumentation" : "/**

The name of the repository that contains the branches.

\n@return The name of the repository that contains the branches.*/", "fluentSetterDocumentation" : "/**

The name of the repository that contains the branches.

\n@param repositoryName The name of the repository that contains the branches.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository that contains the branches.

\n@param repositoryName The name of the repository that contains the branches.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

An enumeration token that allows the operation to batch the results.

", "name" : "NextToken", "c2jName" : "nextToken", "c2jShape" : "NextToken", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

An enumeration token that allows the operation to batch the results.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "nextToken", "marshallLocationName" : "nextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

An enumeration token that allows the operation to batch the results.

\n@param nextToken An enumeration token that allows the operation to batch the results.*/", "getterDocumentation" : "/**

An enumeration token that allows the operation to batch the results.

\n@return An enumeration token that allows the operation to batch the results.*/", "fluentSetterDocumentation" : "/**

An enumeration token that allows the operation to batch the results.

\n@param nextToken An enumeration token that allows the operation to batch the results.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

An enumeration token that allows the operation to batch the results.

\n@param nextToken An enumeration token that allows the operation to batch the results.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "listBranchesRequest", "variableType" : "ListBranchesRequest", "variableDeclarationType" : "ListBranchesRequest", "documentation" : null, "simpleType" : "ListBranchesRequest", "variableSetterType" : "ListBranchesRequest" }, "marshaller" : { "action" : "ListBranches", "verb" : "POST", "target" : "CodeCommit_20150413.ListBranches", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryName" : { "documentation" : "

The name of the repository that contains the branches.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository that contains the branches.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository that contains the branches.

\n@param repositoryName The name of the repository that contains the branches.*/", "getterDocumentation" : "/**

The name of the repository that contains the branches.

\n@return The name of the repository that contains the branches.*/", "fluentSetterDocumentation" : "/**

The name of the repository that contains the branches.

\n@param repositoryName The name of the repository that contains the branches.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository that contains the branches.

\n@param repositoryName The name of the repository that contains the branches.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "NextToken" : { "documentation" : "

An enumeration token that allows the operation to batch the results.

", "name" : "NextToken", "c2jName" : "nextToken", "c2jShape" : "NextToken", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

An enumeration token that allows the operation to batch the results.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "nextToken", "marshallLocationName" : "nextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

An enumeration token that allows the operation to batch the results.

\n@param nextToken An enumeration token that allows the operation to batch the results.*/", "getterDocumentation" : "/**

An enumeration token that allows the operation to batch the results.

\n@return An enumeration token that allows the operation to batch the results.*/", "fluentSetterDocumentation" : "/**

An enumeration token that allows the operation to batch the results.

\n@param nextToken An enumeration token that allows the operation to batch the results.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

An enumeration token that allows the operation to batch the results.

\n@param nextToken An enumeration token that allows the operation to batch the results.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "CreateBranchResult" : { "c2jName" : "CreateBranchResult", "documentation" : null, "shapeName" : "CreateBranchResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "createBranchResult", "variableType" : "CreateBranchResult", "variableDeclarationType" : "CreateBranchResult", "documentation" : null, "simpleType" : "CreateBranchResult", "variableSetterType" : "CreateBranchResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "InvalidRepositoryDescriptionException" : { "c2jName" : "InvalidRepositoryDescriptionException", "documentation" : "

The specified repository description is not valid.

", "shapeName" : "InvalidRepositoryDescriptionException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "invalidRepositoryDescriptionException", "variableType" : "InvalidRepositoryDescriptionException", "variableDeclarationType" : "InvalidRepositoryDescriptionException", "documentation" : null, "simpleType" : "InvalidRepositoryDescriptionException", "variableSetterType" : "InvalidRepositoryDescriptionException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InvalidRepositoryDescriptionException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "GetCommitResult" : { "c2jName" : "GetCommitOutput", "documentation" : "

Represents the output of a get commit operation.

", "shapeName" : "GetCommitResult", "deprecated" : false, "required" : [ "commit" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Information about the specified commit.

", "name" : "Commit", "c2jName" : "commit", "c2jShape" : "Commit", "variable" : { "variableName" : "commit", "variableType" : "Commit", "variableDeclarationType" : "Commit", "documentation" : "

Information about the specified commit.

", "simpleType" : "Commit", "variableSetterType" : "Commit" }, "setterModel" : { "variableName" : "commit", "variableType" : "Commit", "variableDeclarationType" : "Commit", "documentation" : "", "simpleType" : "Commit", "variableSetterType" : "Commit" }, "getterModel" : { "returnType" : "Commit", "documentation" : null }, "http" : { "unmarshallLocationName" : "commit", "marshallLocationName" : "commit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Information about the specified commit.

\n@param commit Information about the specified commit.*/", "getterDocumentation" : "/**

Information about the specified commit.

\n@return Information about the specified commit.*/", "fluentSetterDocumentation" : "/**

Information about the specified commit.

\n@param commit Information about the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Information about the specified commit.

\n@param commit Information about the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "getCommitResult", "variableType" : "GetCommitResult", "variableDeclarationType" : "GetCommitResult", "documentation" : null, "simpleType" : "GetCommitResult", "variableSetterType" : "GetCommitResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Commit" : { "documentation" : "

Information about the specified commit.

", "name" : "Commit", "c2jName" : "commit", "c2jShape" : "Commit", "variable" : { "variableName" : "commit", "variableType" : "Commit", "variableDeclarationType" : "Commit", "documentation" : "

Information about the specified commit.

", "simpleType" : "Commit", "variableSetterType" : "Commit" }, "setterModel" : { "variableName" : "commit", "variableType" : "Commit", "variableDeclarationType" : "Commit", "documentation" : "", "simpleType" : "Commit", "variableSetterType" : "Commit" }, "getterModel" : { "returnType" : "Commit", "documentation" : null }, "http" : { "unmarshallLocationName" : "commit", "marshallLocationName" : "commit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Information about the specified commit.

\n@param commit Information about the specified commit.*/", "getterDocumentation" : "/**

Information about the specified commit.

\n@return Information about the specified commit.*/", "fluentSetterDocumentation" : "/**

Information about the specified commit.

\n@param commit Information about the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Information about the specified commit.

\n@param commit Information about the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "TestRepositoryTriggersResult" : { "c2jName" : "TestRepositoryTriggersOutput", "documentation" : "

Represents the output of a test repository triggers operation.

", "shapeName" : "TestRepositoryTriggersResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.

", "name" : "SuccessfulExecutions", "c2jName" : "successfulExecutions", "c2jShape" : "RepositoryTriggerNameList", "variable" : { "variableName" : "successfulExecutions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "successfulExecutions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "successfulExecutions", "marshallLocationName" : "successfulExecutions", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryTriggerName", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.

\n@param successfulExecutions The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.*/", "getterDocumentation" : "/**

The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.

\n@return The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.*/", "fluentSetterDocumentation" : "/**

The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.

\n@param successfulExecutions The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setSuccessfulExecutions(java.util.Collection)} or {@link #withSuccessfulExecutions(java.util.Collection)} if you want to override the existing values.

\n@param successfulExecutions The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.

", "name" : "FailedExecutions", "c2jName" : "failedExecutions", "c2jShape" : "RepositoryTriggerExecutionFailureList", "variable" : { "variableName" : "failedExecutions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "failedExecutions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "failedExecutions", "marshallLocationName" : "failedExecutions", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "RepositoryTriggerExecutionFailure", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryTriggerExecutionFailure", "variable" : { "variableName" : "member", "variableType" : "RepositoryTriggerExecutionFailure", "variableDeclarationType" : "RepositoryTriggerExecutionFailure", "documentation" : "", "simpleType" : "RepositoryTriggerExecutionFailure", "variableSetterType" : "RepositoryTriggerExecutionFailure" }, "setterModel" : { "variableName" : "member", "variableType" : "RepositoryTriggerExecutionFailure", "variableDeclarationType" : "RepositoryTriggerExecutionFailure", "documentation" : "", "simpleType" : "RepositoryTriggerExecutionFailure", "variableSetterType" : "RepositoryTriggerExecutionFailure" }, "getterModel" : { "returnType" : "RepositoryTriggerExecutionFailure", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "RepositoryTriggerExecutionFailure", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.

\n@param failedExecutions The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.*/", "getterDocumentation" : "/**

The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.

\n@return The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.*/", "fluentSetterDocumentation" : "/**

The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.

\n@param failedExecutions The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFailedExecutions(java.util.Collection)} or {@link #withFailedExecutions(java.util.Collection)} if you want to override the existing values.

\n@param failedExecutions The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "testRepositoryTriggersResult", "variableType" : "TestRepositoryTriggersResult", "variableDeclarationType" : "TestRepositoryTriggersResult", "documentation" : null, "simpleType" : "TestRepositoryTriggersResult", "variableSetterType" : "TestRepositoryTriggersResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "SuccessfulExecutions" : { "documentation" : "

The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.

", "name" : "SuccessfulExecutions", "c2jName" : "successfulExecutions", "c2jShape" : "RepositoryTriggerNameList", "variable" : { "variableName" : "successfulExecutions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "successfulExecutions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "successfulExecutions", "marshallLocationName" : "successfulExecutions", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryTriggerName", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.

\n@param successfulExecutions The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.*/", "getterDocumentation" : "/**

The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.

\n@return The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.*/", "fluentSetterDocumentation" : "/**

The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.

\n@param successfulExecutions The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setSuccessfulExecutions(java.util.Collection)} or {@link #withSuccessfulExecutions(java.util.Collection)} if you want to override the existing values.

\n@param successfulExecutions The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FailedExecutions" : { "documentation" : "

The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.

", "name" : "FailedExecutions", "c2jName" : "failedExecutions", "c2jShape" : "RepositoryTriggerExecutionFailureList", "variable" : { "variableName" : "failedExecutions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "failedExecutions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "failedExecutions", "marshallLocationName" : "failedExecutions", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "RepositoryTriggerExecutionFailure", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryTriggerExecutionFailure", "variable" : { "variableName" : "member", "variableType" : "RepositoryTriggerExecutionFailure", "variableDeclarationType" : "RepositoryTriggerExecutionFailure", "documentation" : "", "simpleType" : "RepositoryTriggerExecutionFailure", "variableSetterType" : "RepositoryTriggerExecutionFailure" }, "setterModel" : { "variableName" : "member", "variableType" : "RepositoryTriggerExecutionFailure", "variableDeclarationType" : "RepositoryTriggerExecutionFailure", "documentation" : "", "simpleType" : "RepositoryTriggerExecutionFailure", "variableSetterType" : "RepositoryTriggerExecutionFailure" }, "getterModel" : { "returnType" : "RepositoryTriggerExecutionFailure", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "RepositoryTriggerExecutionFailure", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.

\n@param failedExecutions The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.*/", "getterDocumentation" : "/**

The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.

\n@return The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.*/", "fluentSetterDocumentation" : "/**

The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.

\n@param failedExecutions The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFailedExecutions(java.util.Collection)} or {@link #withFailedExecutions(java.util.Collection)} if you want to override the existing values.

\n@param failedExecutions The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "InvalidRepositoryTriggerNameException" : { "c2jName" : "InvalidRepositoryTriggerNameException", "documentation" : "

The name of the trigger is not valid.

", "shapeName" : "InvalidRepositoryTriggerNameException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "invalidRepositoryTriggerNameException", "variableType" : "InvalidRepositoryTriggerNameException", "variableDeclarationType" : "InvalidRepositoryTriggerNameException", "documentation" : null, "simpleType" : "InvalidRepositoryTriggerNameException", "variableSetterType" : "InvalidRepositoryTriggerNameException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InvalidRepositoryTriggerNameException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "InvalidRepositoryTriggerRegionException" : { "c2jName" : "InvalidRepositoryTriggerRegionException", "documentation" : "

The region for the trigger target does not match the region for the repository. Triggers must be created in the same region as the target for the trigger.

", "shapeName" : "InvalidRepositoryTriggerRegionException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "invalidRepositoryTriggerRegionException", "variableType" : "InvalidRepositoryTriggerRegionException", "variableDeclarationType" : "InvalidRepositoryTriggerRegionException", "documentation" : null, "simpleType" : "InvalidRepositoryTriggerRegionException", "variableSetterType" : "InvalidRepositoryTriggerRegionException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InvalidRepositoryTriggerRegionException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "BranchNameRequiredException" : { "c2jName" : "BranchNameRequiredException", "documentation" : "

A branch name is required but was not specified.

", "shapeName" : "BranchNameRequiredException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "branchNameRequiredException", "variableType" : "BranchNameRequiredException", "variableDeclarationType" : "BranchNameRequiredException", "documentation" : null, "simpleType" : "BranchNameRequiredException", "variableSetterType" : "BranchNameRequiredException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "BranchNameRequiredException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "TestRepositoryTriggersRequest" : { "c2jName" : "TestRepositoryTriggersInput", "documentation" : "

Represents the input of a test repository triggers operation.

", "shapeName" : "TestRepositoryTriggersRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the repository in which to test the triggers.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository in which to test the triggers.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository in which to test the triggers.

\n@param repositoryName The name of the repository in which to test the triggers.*/", "getterDocumentation" : "/**

The name of the repository in which to test the triggers.

\n@return The name of the repository in which to test the triggers.*/", "fluentSetterDocumentation" : "/**

The name of the repository in which to test the triggers.

\n@param repositoryName The name of the repository in which to test the triggers.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository in which to test the triggers.

\n@param repositoryName The name of the repository in which to test the triggers.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The list of triggers to test.

", "name" : "Triggers", "c2jName" : "triggers", "c2jShape" : "RepositoryTriggersList", "variable" : { "variableName" : "triggers", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The list of triggers to test.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "triggers", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "triggers", "marshallLocationName" : "triggers", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "RepositoryTrigger", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryTrigger", "variable" : { "variableName" : "member", "variableType" : "RepositoryTrigger", "variableDeclarationType" : "RepositoryTrigger", "documentation" : "", "simpleType" : "RepositoryTrigger", "variableSetterType" : "RepositoryTrigger" }, "setterModel" : { "variableName" : "member", "variableType" : "RepositoryTrigger", "variableDeclarationType" : "RepositoryTrigger", "documentation" : "", "simpleType" : "RepositoryTrigger", "variableSetterType" : "RepositoryTrigger" }, "getterModel" : { "returnType" : "RepositoryTrigger", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "RepositoryTrigger", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The list of triggers to test.

\n@param triggers The list of triggers to test.*/", "getterDocumentation" : "/**

The list of triggers to test.

\n@return The list of triggers to test.*/", "fluentSetterDocumentation" : "/**

The list of triggers to test.

\n@param triggers The list of triggers to test.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The list of triggers to test.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setTriggers(java.util.Collection)} or {@link #withTriggers(java.util.Collection)} if you want to override the existing values.

\n@param triggers The list of triggers to test.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "testRepositoryTriggersRequest", "variableType" : "TestRepositoryTriggersRequest", "variableDeclarationType" : "TestRepositoryTriggersRequest", "documentation" : null, "simpleType" : "TestRepositoryTriggersRequest", "variableSetterType" : "TestRepositoryTriggersRequest" }, "marshaller" : { "action" : "TestRepositoryTriggers", "verb" : "POST", "target" : "CodeCommit_20150413.TestRepositoryTriggers", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryName" : { "documentation" : "

The name of the repository in which to test the triggers.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository in which to test the triggers.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository in which to test the triggers.

\n@param repositoryName The name of the repository in which to test the triggers.*/", "getterDocumentation" : "/**

The name of the repository in which to test the triggers.

\n@return The name of the repository in which to test the triggers.*/", "fluentSetterDocumentation" : "/**

The name of the repository in which to test the triggers.

\n@param repositoryName The name of the repository in which to test the triggers.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository in which to test the triggers.

\n@param repositoryName The name of the repository in which to test the triggers.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Triggers" : { "documentation" : "

The list of triggers to test.

", "name" : "Triggers", "c2jName" : "triggers", "c2jShape" : "RepositoryTriggersList", "variable" : { "variableName" : "triggers", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The list of triggers to test.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "triggers", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "triggers", "marshallLocationName" : "triggers", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "RepositoryTrigger", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryTrigger", "variable" : { "variableName" : "member", "variableType" : "RepositoryTrigger", "variableDeclarationType" : "RepositoryTrigger", "documentation" : "", "simpleType" : "RepositoryTrigger", "variableSetterType" : "RepositoryTrigger" }, "setterModel" : { "variableName" : "member", "variableType" : "RepositoryTrigger", "variableDeclarationType" : "RepositoryTrigger", "documentation" : "", "simpleType" : "RepositoryTrigger", "variableSetterType" : "RepositoryTrigger" }, "getterModel" : { "returnType" : "RepositoryTrigger", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "RepositoryTrigger", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The list of triggers to test.

\n@param triggers The list of triggers to test.*/", "getterDocumentation" : "/**

The list of triggers to test.

\n@return The list of triggers to test.*/", "fluentSetterDocumentation" : "/**

The list of triggers to test.

\n@param triggers The list of triggers to test.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The list of triggers to test.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setTriggers(java.util.Collection)} or {@link #withTriggers(java.util.Collection)} if you want to override the existing values.

\n@param triggers The list of triggers to test.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "EncryptionKeyAccessDeniedException" : { "c2jName" : "EncryptionKeyAccessDeniedException", "documentation" : "

An encryption key could not be accessed.

", "shapeName" : "EncryptionKeyAccessDeniedException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "encryptionKeyAccessDeniedException", "variableType" : "EncryptionKeyAccessDeniedException", "variableDeclarationType" : "EncryptionKeyAccessDeniedException", "documentation" : null, "simpleType" : "EncryptionKeyAccessDeniedException", "variableSetterType" : "EncryptionKeyAccessDeniedException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "EncryptionKeyAccessDeniedException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "Commit" : { "c2jName" : "Commit", "documentation" : "

Returns information about a specific commit.

", "shapeName" : "Commit", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Tree information for the specified commit.

", "name" : "TreeId", "c2jName" : "treeId", "c2jShape" : "ObjectId", "variable" : { "variableName" : "treeId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Tree information for the specified commit.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "treeId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "treeId", "marshallLocationName" : "treeId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Tree information for the specified commit.

\n@param treeId Tree information for the specified commit.*/", "getterDocumentation" : "/**

Tree information for the specified commit.

\n@return Tree information for the specified commit.*/", "fluentSetterDocumentation" : "/**

Tree information for the specified commit.

\n@param treeId Tree information for the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Tree information for the specified commit.

\n@param treeId Tree information for the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The parent list for the specified commit.

", "name" : "Parents", "c2jName" : "parents", "c2jShape" : "ParentList", "variable" : { "variableName" : "parents", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The parent list for the specified commit.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "parents", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "parents", "marshallLocationName" : "parents", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "ObjectId", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The parent list for the specified commit.

\n@param parents The parent list for the specified commit.*/", "getterDocumentation" : "/**

The parent list for the specified commit.

\n@return The parent list for the specified commit.*/", "fluentSetterDocumentation" : "/**

The parent list for the specified commit.

\n@param parents The parent list for the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The parent list for the specified commit.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setParents(java.util.Collection)} or {@link #withParents(java.util.Collection)} if you want to override the existing values.

\n@param parents The parent list for the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The message associated with the specified commit.

", "name" : "Message", "c2jName" : "message", "c2jShape" : "Message", "variable" : { "variableName" : "message", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The message associated with the specified commit.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "message", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "message", "marshallLocationName" : "message", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The message associated with the specified commit.

\n@param message The message associated with the specified commit.*/", "getterDocumentation" : "/**

The message associated with the specified commit.

\n@return The message associated with the specified commit.*/", "fluentSetterDocumentation" : "/**

The message associated with the specified commit.

\n@param message The message associated with the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The message associated with the specified commit.

\n@param message The message associated with the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Information about the author of the specified commit.

", "name" : "Author", "c2jName" : "author", "c2jShape" : "UserInfo", "variable" : { "variableName" : "author", "variableType" : "UserInfo", "variableDeclarationType" : "UserInfo", "documentation" : "

Information about the author of the specified commit.

", "simpleType" : "UserInfo", "variableSetterType" : "UserInfo" }, "setterModel" : { "variableName" : "author", "variableType" : "UserInfo", "variableDeclarationType" : "UserInfo", "documentation" : "", "simpleType" : "UserInfo", "variableSetterType" : "UserInfo" }, "getterModel" : { "returnType" : "UserInfo", "documentation" : null }, "http" : { "unmarshallLocationName" : "author", "marshallLocationName" : "author", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Information about the author of the specified commit.

\n@param author Information about the author of the specified commit.*/", "getterDocumentation" : "/**

Information about the author of the specified commit.

\n@return Information about the author of the specified commit.*/", "fluentSetterDocumentation" : "/**

Information about the author of the specified commit.

\n@param author Information about the author of the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Information about the author of the specified commit.

\n@param author Information about the author of the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.

", "name" : "Committer", "c2jName" : "committer", "c2jShape" : "UserInfo", "variable" : { "variableName" : "committer", "variableType" : "UserInfo", "variableDeclarationType" : "UserInfo", "documentation" : "

Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.

", "simpleType" : "UserInfo", "variableSetterType" : "UserInfo" }, "setterModel" : { "variableName" : "committer", "variableType" : "UserInfo", "variableDeclarationType" : "UserInfo", "documentation" : "", "simpleType" : "UserInfo", "variableSetterType" : "UserInfo" }, "getterModel" : { "returnType" : "UserInfo", "documentation" : null }, "http" : { "unmarshallLocationName" : "committer", "marshallLocationName" : "committer", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.

\n@param committer Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.*/", "getterDocumentation" : "/**

Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.

\n@return Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.*/", "fluentSetterDocumentation" : "/**

Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.

\n@param committer Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.

\n@param committer Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Any additional data associated with the specified commit.

", "name" : "AdditionalData", "c2jName" : "additionalData", "c2jShape" : "AdditionalData", "variable" : { "variableName" : "additionalData", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Any additional data associated with the specified commit.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "additionalData", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "additionalData", "marshallLocationName" : "additionalData", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Any additional data associated with the specified commit.

\n@param additionalData Any additional data associated with the specified commit.*/", "getterDocumentation" : "/**

Any additional data associated with the specified commit.

\n@return Any additional data associated with the specified commit.*/", "fluentSetterDocumentation" : "/**

Any additional data associated with the specified commit.

\n@param additionalData Any additional data associated with the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Any additional data associated with the specified commit.

\n@param additionalData Any additional data associated with the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "commit", "variableType" : "Commit", "variableDeclarationType" : "Commit", "documentation" : null, "simpleType" : "Commit", "variableSetterType" : "Commit" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Committer" : { "documentation" : "

Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.

", "name" : "Committer", "c2jName" : "committer", "c2jShape" : "UserInfo", "variable" : { "variableName" : "committer", "variableType" : "UserInfo", "variableDeclarationType" : "UserInfo", "documentation" : "

Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.

", "simpleType" : "UserInfo", "variableSetterType" : "UserInfo" }, "setterModel" : { "variableName" : "committer", "variableType" : "UserInfo", "variableDeclarationType" : "UserInfo", "documentation" : "", "simpleType" : "UserInfo", "variableSetterType" : "UserInfo" }, "getterModel" : { "returnType" : "UserInfo", "documentation" : null }, "http" : { "unmarshallLocationName" : "committer", "marshallLocationName" : "committer", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.

\n@param committer Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.*/", "getterDocumentation" : "/**

Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.

\n@return Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.*/", "fluentSetterDocumentation" : "/**

Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.

\n@param committer Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.

\n@param committer Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "AdditionalData" : { "documentation" : "

Any additional data associated with the specified commit.

", "name" : "AdditionalData", "c2jName" : "additionalData", "c2jShape" : "AdditionalData", "variable" : { "variableName" : "additionalData", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Any additional data associated with the specified commit.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "additionalData", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "additionalData", "marshallLocationName" : "additionalData", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Any additional data associated with the specified commit.

\n@param additionalData Any additional data associated with the specified commit.*/", "getterDocumentation" : "/**

Any additional data associated with the specified commit.

\n@return Any additional data associated with the specified commit.*/", "fluentSetterDocumentation" : "/**

Any additional data associated with the specified commit.

\n@param additionalData Any additional data associated with the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Any additional data associated with the specified commit.

\n@param additionalData Any additional data associated with the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Message" : { "documentation" : "

The message associated with the specified commit.

", "name" : "Message", "c2jName" : "message", "c2jShape" : "Message", "variable" : { "variableName" : "message", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The message associated with the specified commit.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "message", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "message", "marshallLocationName" : "message", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The message associated with the specified commit.

\n@param message The message associated with the specified commit.*/", "getterDocumentation" : "/**

The message associated with the specified commit.

\n@return The message associated with the specified commit.*/", "fluentSetterDocumentation" : "/**

The message associated with the specified commit.

\n@param message The message associated with the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The message associated with the specified commit.

\n@param message The message associated with the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Author" : { "documentation" : "

Information about the author of the specified commit.

", "name" : "Author", "c2jName" : "author", "c2jShape" : "UserInfo", "variable" : { "variableName" : "author", "variableType" : "UserInfo", "variableDeclarationType" : "UserInfo", "documentation" : "

Information about the author of the specified commit.

", "simpleType" : "UserInfo", "variableSetterType" : "UserInfo" }, "setterModel" : { "variableName" : "author", "variableType" : "UserInfo", "variableDeclarationType" : "UserInfo", "documentation" : "", "simpleType" : "UserInfo", "variableSetterType" : "UserInfo" }, "getterModel" : { "returnType" : "UserInfo", "documentation" : null }, "http" : { "unmarshallLocationName" : "author", "marshallLocationName" : "author", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Information about the author of the specified commit.

\n@param author Information about the author of the specified commit.*/", "getterDocumentation" : "/**

Information about the author of the specified commit.

\n@return Information about the author of the specified commit.*/", "fluentSetterDocumentation" : "/**

Information about the author of the specified commit.

\n@param author Information about the author of the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Information about the author of the specified commit.

\n@param author Information about the author of the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Parents" : { "documentation" : "

The parent list for the specified commit.

", "name" : "Parents", "c2jName" : "parents", "c2jShape" : "ParentList", "variable" : { "variableName" : "parents", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The parent list for the specified commit.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "parents", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "parents", "marshallLocationName" : "parents", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "ObjectId", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The parent list for the specified commit.

\n@param parents The parent list for the specified commit.*/", "getterDocumentation" : "/**

The parent list for the specified commit.

\n@return The parent list for the specified commit.*/", "fluentSetterDocumentation" : "/**

The parent list for the specified commit.

\n@param parents The parent list for the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The parent list for the specified commit.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setParents(java.util.Collection)} or {@link #withParents(java.util.Collection)} if you want to override the existing values.

\n@param parents The parent list for the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "TreeId" : { "documentation" : "

Tree information for the specified commit.

", "name" : "TreeId", "c2jName" : "treeId", "c2jShape" : "ObjectId", "variable" : { "variableName" : "treeId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Tree information for the specified commit.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "treeId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "treeId", "marshallLocationName" : "treeId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Tree information for the specified commit.

\n@param treeId Tree information for the specified commit.*/", "getterDocumentation" : "/**

Tree information for the specified commit.

\n@return Tree information for the specified commit.*/", "fluentSetterDocumentation" : "/**

Tree information for the specified commit.

\n@param treeId Tree information for the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Tree information for the specified commit.

\n@param treeId Tree information for the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "GetBranchResult" : { "c2jName" : "GetBranchOutput", "documentation" : "

Represents the output of a get branch operation.

", "shapeName" : "GetBranchResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the branch.

", "name" : "Branch", "c2jName" : "branch", "c2jShape" : "BranchInfo", "variable" : { "variableName" : "branch", "variableType" : "BranchInfo", "variableDeclarationType" : "BranchInfo", "documentation" : "

The name of the branch.

", "simpleType" : "BranchInfo", "variableSetterType" : "BranchInfo" }, "setterModel" : { "variableName" : "branch", "variableType" : "BranchInfo", "variableDeclarationType" : "BranchInfo", "documentation" : "", "simpleType" : "BranchInfo", "variableSetterType" : "BranchInfo" }, "getterModel" : { "returnType" : "BranchInfo", "documentation" : null }, "http" : { "unmarshallLocationName" : "branch", "marshallLocationName" : "branch", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the branch.

\n@param branch The name of the branch.*/", "getterDocumentation" : "/**

The name of the branch.

\n@return The name of the branch.*/", "fluentSetterDocumentation" : "/**

The name of the branch.

\n@param branch The name of the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the branch.

\n@param branch The name of the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "getBranchResult", "variableType" : "GetBranchResult", "variableDeclarationType" : "GetBranchResult", "documentation" : null, "simpleType" : "GetBranchResult", "variableSetterType" : "GetBranchResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Branch" : { "documentation" : "

The name of the branch.

", "name" : "Branch", "c2jName" : "branch", "c2jShape" : "BranchInfo", "variable" : { "variableName" : "branch", "variableType" : "BranchInfo", "variableDeclarationType" : "BranchInfo", "documentation" : "

The name of the branch.

", "simpleType" : "BranchInfo", "variableSetterType" : "BranchInfo" }, "setterModel" : { "variableName" : "branch", "variableType" : "BranchInfo", "variableDeclarationType" : "BranchInfo", "documentation" : "", "simpleType" : "BranchInfo", "variableSetterType" : "BranchInfo" }, "getterModel" : { "returnType" : "BranchInfo", "documentation" : null }, "http" : { "unmarshallLocationName" : "branch", "marshallLocationName" : "branch", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the branch.

\n@param branch The name of the branch.*/", "getterDocumentation" : "/**

The name of the branch.

\n@return The name of the branch.*/", "fluentSetterDocumentation" : "/**

The name of the branch.

\n@param branch The name of the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the branch.

\n@param branch The name of the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ListBranchesResult" : { "c2jName" : "ListBranchesOutput", "documentation" : "

Represents the output of a list branches operation.

", "shapeName" : "ListBranchesResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The list of branch names.

", "name" : "Branches", "c2jName" : "branches", "c2jShape" : "BranchNameList", "variable" : { "variableName" : "branches", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The list of branch names.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "branches", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "branches", "marshallLocationName" : "branches", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "BranchName", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The list of branch names.

\n@param branches The list of branch names.*/", "getterDocumentation" : "/**

The list of branch names.

\n@return The list of branch names.*/", "fluentSetterDocumentation" : "/**

The list of branch names.

\n@param branches The list of branch names.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The list of branch names.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setBranches(java.util.Collection)} or {@link #withBranches(java.util.Collection)} if you want to override the existing values.

\n@param branches The list of branch names.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

An enumeration token that returns the batch of the results.

", "name" : "NextToken", "c2jName" : "nextToken", "c2jShape" : "NextToken", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

An enumeration token that returns the batch of the results.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "nextToken", "marshallLocationName" : "nextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

An enumeration token that returns the batch of the results.

\n@param nextToken An enumeration token that returns the batch of the results.*/", "getterDocumentation" : "/**

An enumeration token that returns the batch of the results.

\n@return An enumeration token that returns the batch of the results.*/", "fluentSetterDocumentation" : "/**

An enumeration token that returns the batch of the results.

\n@param nextToken An enumeration token that returns the batch of the results.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

An enumeration token that returns the batch of the results.

\n@param nextToken An enumeration token that returns the batch of the results.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "listBranchesResult", "variableType" : "ListBranchesResult", "variableDeclarationType" : "ListBranchesResult", "documentation" : null, "simpleType" : "ListBranchesResult", "variableSetterType" : "ListBranchesResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

An enumeration token that returns the batch of the results.

", "name" : "NextToken", "c2jName" : "nextToken", "c2jShape" : "NextToken", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

An enumeration token that returns the batch of the results.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "nextToken", "marshallLocationName" : "nextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

An enumeration token that returns the batch of the results.

\n@param nextToken An enumeration token that returns the batch of the results.*/", "getterDocumentation" : "/**

An enumeration token that returns the batch of the results.

\n@return An enumeration token that returns the batch of the results.*/", "fluentSetterDocumentation" : "/**

An enumeration token that returns the batch of the results.

\n@param nextToken An enumeration token that returns the batch of the results.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

An enumeration token that returns the batch of the results.

\n@param nextToken An enumeration token that returns the batch of the results.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Branches" : { "documentation" : "

The list of branch names.

", "name" : "Branches", "c2jName" : "branches", "c2jShape" : "BranchNameList", "variable" : { "variableName" : "branches", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The list of branch names.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "branches", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "branches", "marshallLocationName" : "branches", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "BranchName", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The list of branch names.

\n@param branches The list of branch names.*/", "getterDocumentation" : "/**

The list of branch names.

\n@return The list of branch names.*/", "fluentSetterDocumentation" : "/**

The list of branch names.

\n@param branches The list of branch names.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The list of branch names.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setBranches(java.util.Collection)} or {@link #withBranches(java.util.Collection)} if you want to override the existing values.

\n@param branches The list of branch names.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "SortByEnum" : { "c2jName" : "SortByEnum", "documentation" : "", "shapeName" : "SortByEnum", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "RepositoryName", "value" : "repositoryName" }, { "name" : "LastModifiedDate", "value" : "lastModifiedDate" } ], "variable" : { "variableName" : "sortByEnum", "variableType" : "SortByEnum", "variableDeclarationType" : "SortByEnum", "documentation" : null, "simpleType" : "SortByEnum", "variableSetterType" : "SortByEnum" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "InvalidRepositoryTriggerBranchNameException" : { "c2jName" : "InvalidRepositoryTriggerBranchNameException", "documentation" : "

One or more branch names specified for the trigger is not valid.

", "shapeName" : "InvalidRepositoryTriggerBranchNameException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "invalidRepositoryTriggerBranchNameException", "variableType" : "InvalidRepositoryTriggerBranchNameException", "variableDeclarationType" : "InvalidRepositoryTriggerBranchNameException", "documentation" : null, "simpleType" : "InvalidRepositoryTriggerBranchNameException", "variableSetterType" : "InvalidRepositoryTriggerBranchNameException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InvalidRepositoryTriggerBranchNameException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "RepositoryNameExistsException" : { "c2jName" : "RepositoryNameExistsException", "documentation" : "

The specified repository name already exists.

", "shapeName" : "RepositoryNameExistsException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "repositoryNameExistsException", "variableType" : "RepositoryNameExistsException", "variableDeclarationType" : "RepositoryNameExistsException", "documentation" : null, "simpleType" : "RepositoryNameExistsException", "variableSetterType" : "RepositoryNameExistsException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "RepositoryNameExistsException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "RepositoryTriggerDestinationArnRequiredException" : { "c2jName" : "RepositoryTriggerDestinationArnRequiredException", "documentation" : "

A destination ARN for the target service for the trigger is required but was not specified.

", "shapeName" : "RepositoryTriggerDestinationArnRequiredException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "repositoryTriggerDestinationArnRequiredException", "variableType" : "RepositoryTriggerDestinationArnRequiredException", "variableDeclarationType" : "RepositoryTriggerDestinationArnRequiredException", "documentation" : null, "simpleType" : "RepositoryTriggerDestinationArnRequiredException", "variableSetterType" : "RepositoryTriggerDestinationArnRequiredException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "RepositoryTriggerDestinationArnRequiredException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "InvalidOrderException" : { "c2jName" : "InvalidOrderException", "documentation" : "

The specified sort order is not valid.

", "shapeName" : "InvalidOrderException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "invalidOrderException", "variableType" : "InvalidOrderException", "variableDeclarationType" : "InvalidOrderException", "documentation" : null, "simpleType" : "InvalidOrderException", "variableSetterType" : "InvalidOrderException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InvalidOrderException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "RepositoryLimitExceededException" : { "c2jName" : "RepositoryLimitExceededException", "documentation" : "

A repository resource limit was exceeded.

", "shapeName" : "RepositoryLimitExceededException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "repositoryLimitExceededException", "variableType" : "RepositoryLimitExceededException", "variableDeclarationType" : "RepositoryLimitExceededException", "documentation" : null, "simpleType" : "RepositoryLimitExceededException", "variableSetterType" : "RepositoryLimitExceededException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "RepositoryLimitExceededException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "UpdateDefaultBranchRequest" : { "c2jName" : "UpdateDefaultBranchInput", "documentation" : "

Represents the input of an update default branch operation.

", "shapeName" : "UpdateDefaultBranchRequest", "deprecated" : false, "required" : [ "repositoryName", "defaultBranchName" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the repository to set or change the default branch for.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository to set or change the default branch for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository to set or change the default branch for.

\n@param repositoryName The name of the repository to set or change the default branch for.*/", "getterDocumentation" : "/**

The name of the repository to set or change the default branch for.

\n@return The name of the repository to set or change the default branch for.*/", "fluentSetterDocumentation" : "/**

The name of the repository to set or change the default branch for.

\n@param repositoryName The name of the repository to set or change the default branch for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository to set or change the default branch for.

\n@param repositoryName The name of the repository to set or change the default branch for.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The name of the branch to set as the default.

", "name" : "DefaultBranchName", "c2jName" : "defaultBranchName", "c2jShape" : "BranchName", "variable" : { "variableName" : "defaultBranchName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the branch to set as the default.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "defaultBranchName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "defaultBranchName", "marshallLocationName" : "defaultBranchName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the branch to set as the default.

\n@param defaultBranchName The name of the branch to set as the default.*/", "getterDocumentation" : "/**

The name of the branch to set as the default.

\n@return The name of the branch to set as the default.*/", "fluentSetterDocumentation" : "/**

The name of the branch to set as the default.

\n@param defaultBranchName The name of the branch to set as the default.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the branch to set as the default.

\n@param defaultBranchName The name of the branch to set as the default.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "updateDefaultBranchRequest", "variableType" : "UpdateDefaultBranchRequest", "variableDeclarationType" : "UpdateDefaultBranchRequest", "documentation" : null, "simpleType" : "UpdateDefaultBranchRequest", "variableSetterType" : "UpdateDefaultBranchRequest" }, "marshaller" : { "action" : "UpdateDefaultBranch", "verb" : "POST", "target" : "CodeCommit_20150413.UpdateDefaultBranch", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryName" : { "documentation" : "

The name of the repository to set or change the default branch for.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository to set or change the default branch for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository to set or change the default branch for.

\n@param repositoryName The name of the repository to set or change the default branch for.*/", "getterDocumentation" : "/**

The name of the repository to set or change the default branch for.

\n@return The name of the repository to set or change the default branch for.*/", "fluentSetterDocumentation" : "/**

The name of the repository to set or change the default branch for.

\n@param repositoryName The name of the repository to set or change the default branch for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository to set or change the default branch for.

\n@param repositoryName The name of the repository to set or change the default branch for.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "DefaultBranchName" : { "documentation" : "

The name of the branch to set as the default.

", "name" : "DefaultBranchName", "c2jName" : "defaultBranchName", "c2jShape" : "BranchName", "variable" : { "variableName" : "defaultBranchName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the branch to set as the default.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "defaultBranchName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "defaultBranchName", "marshallLocationName" : "defaultBranchName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the branch to set as the default.

\n@param defaultBranchName The name of the branch to set as the default.*/", "getterDocumentation" : "/**

The name of the branch to set as the default.

\n@return The name of the branch to set as the default.*/", "fluentSetterDocumentation" : "/**

The name of the branch to set as the default.

\n@param defaultBranchName The name of the branch to set as the default.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the branch to set as the default.

\n@param defaultBranchName The name of the branch to set as the default.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "InvalidCommitIdException" : { "c2jName" : "InvalidCommitIdException", "documentation" : "

The specified commit ID is not valid.

", "shapeName" : "InvalidCommitIdException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "invalidCommitIdException", "variableType" : "InvalidCommitIdException", "variableDeclarationType" : "InvalidCommitIdException", "documentation" : null, "simpleType" : "InvalidCommitIdException", "variableSetterType" : "InvalidCommitIdException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InvalidCommitIdException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "UpdateRepositoryDescriptionResult" : { "c2jName" : "UpdateRepositoryDescriptionResult", "documentation" : null, "shapeName" : "UpdateRepositoryDescriptionResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "updateRepositoryDescriptionResult", "variableType" : "UpdateRepositoryDescriptionResult", "variableDeclarationType" : "UpdateRepositoryDescriptionResult", "documentation" : null, "simpleType" : "UpdateRepositoryDescriptionResult", "variableSetterType" : "UpdateRepositoryDescriptionResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "RepositoryNameRequiredException" : { "c2jName" : "RepositoryNameRequiredException", "documentation" : "

A repository name is required but was not specified.

", "shapeName" : "RepositoryNameRequiredException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "repositoryNameRequiredException", "variableType" : "RepositoryNameRequiredException", "variableDeclarationType" : "RepositoryNameRequiredException", "documentation" : null, "simpleType" : "RepositoryNameRequiredException", "variableSetterType" : "RepositoryNameRequiredException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "RepositoryNameRequiredException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "RepositoryTriggerNameRequiredException" : { "c2jName" : "RepositoryTriggerNameRequiredException", "documentation" : "

A name for the trigger is required but was not specified.

", "shapeName" : "RepositoryTriggerNameRequiredException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "repositoryTriggerNameRequiredException", "variableType" : "RepositoryTriggerNameRequiredException", "variableDeclarationType" : "RepositoryTriggerNameRequiredException", "documentation" : null, "simpleType" : "RepositoryTriggerNameRequiredException", "variableSetterType" : "RepositoryTriggerNameRequiredException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "RepositoryTriggerNameRequiredException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "EncryptionKeyUnavailableException" : { "c2jName" : "EncryptionKeyUnavailableException", "documentation" : "

The encryption key is not available.

", "shapeName" : "EncryptionKeyUnavailableException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "encryptionKeyUnavailableException", "variableType" : "EncryptionKeyUnavailableException", "variableDeclarationType" : "EncryptionKeyUnavailableException", "documentation" : null, "simpleType" : "EncryptionKeyUnavailableException", "variableSetterType" : "EncryptionKeyUnavailableException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "EncryptionKeyUnavailableException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "GetBranchRequest" : { "c2jName" : "GetBranchInput", "documentation" : "

Represents the input of a get branch operation.

", "shapeName" : "GetBranchRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the repository that contains the branch for which you want to retrieve information.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository that contains the branch for which you want to retrieve information.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository that contains the branch for which you want to retrieve information.

\n@param repositoryName The name of the repository that contains the branch for which you want to retrieve information.*/", "getterDocumentation" : "/**

The name of the repository that contains the branch for which you want to retrieve information.

\n@return The name of the repository that contains the branch for which you want to retrieve information.*/", "fluentSetterDocumentation" : "/**

The name of the repository that contains the branch for which you want to retrieve information.

\n@param repositoryName The name of the repository that contains the branch for which you want to retrieve information.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository that contains the branch for which you want to retrieve information.

\n@param repositoryName The name of the repository that contains the branch for which you want to retrieve information.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The name of the branch for which you want to retrieve information.

", "name" : "BranchName", "c2jName" : "branchName", "c2jShape" : "BranchName", "variable" : { "variableName" : "branchName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the branch for which you want to retrieve information.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "branchName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "branchName", "marshallLocationName" : "branchName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the branch for which you want to retrieve information.

\n@param branchName The name of the branch for which you want to retrieve information.*/", "getterDocumentation" : "/**

The name of the branch for which you want to retrieve information.

\n@return The name of the branch for which you want to retrieve information.*/", "fluentSetterDocumentation" : "/**

The name of the branch for which you want to retrieve information.

\n@param branchName The name of the branch for which you want to retrieve information.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the branch for which you want to retrieve information.

\n@param branchName The name of the branch for which you want to retrieve information.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "getBranchRequest", "variableType" : "GetBranchRequest", "variableDeclarationType" : "GetBranchRequest", "documentation" : null, "simpleType" : "GetBranchRequest", "variableSetterType" : "GetBranchRequest" }, "marshaller" : { "action" : "GetBranch", "verb" : "POST", "target" : "CodeCommit_20150413.GetBranch", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryName" : { "documentation" : "

The name of the repository that contains the branch for which you want to retrieve information.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository that contains the branch for which you want to retrieve information.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository that contains the branch for which you want to retrieve information.

\n@param repositoryName The name of the repository that contains the branch for which you want to retrieve information.*/", "getterDocumentation" : "/**

The name of the repository that contains the branch for which you want to retrieve information.

\n@return The name of the repository that contains the branch for which you want to retrieve information.*/", "fluentSetterDocumentation" : "/**

The name of the repository that contains the branch for which you want to retrieve information.

\n@param repositoryName The name of the repository that contains the branch for which you want to retrieve information.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository that contains the branch for which you want to retrieve information.

\n@param repositoryName The name of the repository that contains the branch for which you want to retrieve information.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "BranchName" : { "documentation" : "

The name of the branch for which you want to retrieve information.

", "name" : "BranchName", "c2jName" : "branchName", "c2jShape" : "BranchName", "variable" : { "variableName" : "branchName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the branch for which you want to retrieve information.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "branchName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "branchName", "marshallLocationName" : "branchName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the branch for which you want to retrieve information.

\n@param branchName The name of the branch for which you want to retrieve information.*/", "getterDocumentation" : "/**

The name of the branch for which you want to retrieve information.

\n@return The name of the branch for which you want to retrieve information.*/", "fluentSetterDocumentation" : "/**

The name of the branch for which you want to retrieve information.

\n@param branchName The name of the branch for which you want to retrieve information.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the branch for which you want to retrieve information.

\n@param branchName The name of the branch for which you want to retrieve information.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "RepositoryTriggerExecutionFailure" : { "c2jName" : "RepositoryTriggerExecutionFailure", "documentation" : "

A trigger failed to run.

", "shapeName" : "RepositoryTriggerExecutionFailure", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the trigger that did not run.

", "name" : "Trigger", "c2jName" : "trigger", "c2jShape" : "RepositoryTriggerName", "variable" : { "variableName" : "trigger", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the trigger that did not run.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "trigger", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "trigger", "marshallLocationName" : "trigger", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the trigger that did not run.

\n@param trigger The name of the trigger that did not run.*/", "getterDocumentation" : "/**

The name of the trigger that did not run.

\n@return The name of the trigger that did not run.*/", "fluentSetterDocumentation" : "/**

The name of the trigger that did not run.

\n@param trigger The name of the trigger that did not run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the trigger that did not run.

\n@param trigger The name of the trigger that did not run.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Additional message information about the trigger that did not run.

", "name" : "FailureMessage", "c2jName" : "failureMessage", "c2jShape" : "RepositoryTriggerExecutionFailureMessage", "variable" : { "variableName" : "failureMessage", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Additional message information about the trigger that did not run.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "failureMessage", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "failureMessage", "marshallLocationName" : "failureMessage", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Additional message information about the trigger that did not run.

\n@param failureMessage Additional message information about the trigger that did not run.*/", "getterDocumentation" : "/**

Additional message information about the trigger that did not run.

\n@return Additional message information about the trigger that did not run.*/", "fluentSetterDocumentation" : "/**

Additional message information about the trigger that did not run.

\n@param failureMessage Additional message information about the trigger that did not run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Additional message information about the trigger that did not run.

\n@param failureMessage Additional message information about the trigger that did not run.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "repositoryTriggerExecutionFailure", "variableType" : "RepositoryTriggerExecutionFailure", "variableDeclarationType" : "RepositoryTriggerExecutionFailure", "documentation" : null, "simpleType" : "RepositoryTriggerExecutionFailure", "variableSetterType" : "RepositoryTriggerExecutionFailure" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FailureMessage" : { "documentation" : "

Additional message information about the trigger that did not run.

", "name" : "FailureMessage", "c2jName" : "failureMessage", "c2jShape" : "RepositoryTriggerExecutionFailureMessage", "variable" : { "variableName" : "failureMessage", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Additional message information about the trigger that did not run.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "failureMessage", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "failureMessage", "marshallLocationName" : "failureMessage", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Additional message information about the trigger that did not run.

\n@param failureMessage Additional message information about the trigger that did not run.*/", "getterDocumentation" : "/**

Additional message information about the trigger that did not run.

\n@return Additional message information about the trigger that did not run.*/", "fluentSetterDocumentation" : "/**

Additional message information about the trigger that did not run.

\n@param failureMessage Additional message information about the trigger that did not run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Additional message information about the trigger that did not run.

\n@param failureMessage Additional message information about the trigger that did not run.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Trigger" : { "documentation" : "

The name of the trigger that did not run.

", "name" : "Trigger", "c2jName" : "trigger", "c2jShape" : "RepositoryTriggerName", "variable" : { "variableName" : "trigger", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the trigger that did not run.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "trigger", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "trigger", "marshallLocationName" : "trigger", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the trigger that did not run.

\n@param trigger The name of the trigger that did not run.*/", "getterDocumentation" : "/**

The name of the trigger that did not run.

\n@return The name of the trigger that did not run.*/", "fluentSetterDocumentation" : "/**

The name of the trigger that did not run.

\n@param trigger The name of the trigger that did not run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the trigger that did not run.

\n@param trigger The name of the trigger that did not run.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "BranchDoesNotExistException" : { "c2jName" : "BranchDoesNotExistException", "documentation" : "

The specified branch does not exist.

", "shapeName" : "BranchDoesNotExistException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "branchDoesNotExistException", "variableType" : "BranchDoesNotExistException", "variableDeclarationType" : "BranchDoesNotExistException", "documentation" : null, "simpleType" : "BranchDoesNotExistException", "variableSetterType" : "BranchDoesNotExistException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "BranchDoesNotExistException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "UpdateRepositoryNameRequest" : { "c2jName" : "UpdateRepositoryNameInput", "documentation" : "

Represents the input of an update repository description operation.

", "shapeName" : "UpdateRepositoryNameRequest", "deprecated" : false, "required" : [ "oldName", "newName" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The existing name of the repository.

", "name" : "OldName", "c2jName" : "oldName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "oldName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The existing name of the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "oldName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "oldName", "marshallLocationName" : "oldName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The existing name of the repository.

\n@param oldName The existing name of the repository.*/", "getterDocumentation" : "/**

The existing name of the repository.

\n@return The existing name of the repository.*/", "fluentSetterDocumentation" : "/**

The existing name of the repository.

\n@param oldName The existing name of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The existing name of the repository.

\n@param oldName The existing name of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The new name for the repository.

", "name" : "NewName", "c2jName" : "newName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "newName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The new name for the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "newName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "newName", "marshallLocationName" : "newName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The new name for the repository.

\n@param newName The new name for the repository.*/", "getterDocumentation" : "/**

The new name for the repository.

\n@return The new name for the repository.*/", "fluentSetterDocumentation" : "/**

The new name for the repository.

\n@param newName The new name for the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The new name for the repository.

\n@param newName The new name for the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "updateRepositoryNameRequest", "variableType" : "UpdateRepositoryNameRequest", "variableDeclarationType" : "UpdateRepositoryNameRequest", "documentation" : null, "simpleType" : "UpdateRepositoryNameRequest", "variableSetterType" : "UpdateRepositoryNameRequest" }, "marshaller" : { "action" : "UpdateRepositoryName", "verb" : "POST", "target" : "CodeCommit_20150413.UpdateRepositoryName", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NewName" : { "documentation" : "

The new name for the repository.

", "name" : "NewName", "c2jName" : "newName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "newName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The new name for the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "newName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "newName", "marshallLocationName" : "newName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The new name for the repository.

\n@param newName The new name for the repository.*/", "getterDocumentation" : "/**

The new name for the repository.

\n@return The new name for the repository.*/", "fluentSetterDocumentation" : "/**

The new name for the repository.

\n@param newName The new name for the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The new name for the repository.

\n@param newName The new name for the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "OldName" : { "documentation" : "

The existing name of the repository.

", "name" : "OldName", "c2jName" : "oldName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "oldName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The existing name of the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "oldName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "oldName", "marshallLocationName" : "oldName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The existing name of the repository.

\n@param oldName The existing name of the repository.*/", "getterDocumentation" : "/**

The existing name of the repository.

\n@return The existing name of the repository.*/", "fluentSetterDocumentation" : "/**

The existing name of the repository.

\n@param oldName The existing name of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The existing name of the repository.

\n@param oldName The existing name of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DeleteRepositoryResult" : { "c2jName" : "DeleteRepositoryOutput", "documentation" : "

Represents the output of a delete repository operation.

", "shapeName" : "DeleteRepositoryResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The ID of the repository that was deleted.

", "name" : "RepositoryId", "c2jName" : "repositoryId", "c2jShape" : "RepositoryId", "variable" : { "variableName" : "repositoryId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The ID of the repository that was deleted.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryId", "marshallLocationName" : "repositoryId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The ID of the repository that was deleted.

\n@param repositoryId The ID of the repository that was deleted.*/", "getterDocumentation" : "/**

The ID of the repository that was deleted.

\n@return The ID of the repository that was deleted.*/", "fluentSetterDocumentation" : "/**

The ID of the repository that was deleted.

\n@param repositoryId The ID of the repository that was deleted.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The ID of the repository that was deleted.

\n@param repositoryId The ID of the repository that was deleted.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "deleteRepositoryResult", "variableType" : "DeleteRepositoryResult", "variableDeclarationType" : "DeleteRepositoryResult", "documentation" : null, "simpleType" : "DeleteRepositoryResult", "variableSetterType" : "DeleteRepositoryResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryId" : { "documentation" : "

The ID of the repository that was deleted.

", "name" : "RepositoryId", "c2jName" : "repositoryId", "c2jShape" : "RepositoryId", "variable" : { "variableName" : "repositoryId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The ID of the repository that was deleted.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryId", "marshallLocationName" : "repositoryId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The ID of the repository that was deleted.

\n@param repositoryId The ID of the repository that was deleted.*/", "getterDocumentation" : "/**

The ID of the repository that was deleted.

\n@return The ID of the repository that was deleted.*/", "fluentSetterDocumentation" : "/**

The ID of the repository that was deleted.

\n@param repositoryId The ID of the repository that was deleted.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The ID of the repository that was deleted.

\n@param repositoryId The ID of the repository that was deleted.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "RepositoryTriggersListRequiredException" : { "c2jName" : "RepositoryTriggersListRequiredException", "documentation" : "

The list of triggers for the repository is required but was not specified.

", "shapeName" : "RepositoryTriggersListRequiredException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "repositoryTriggersListRequiredException", "variableType" : "RepositoryTriggersListRequiredException", "variableDeclarationType" : "RepositoryTriggersListRequiredException", "documentation" : null, "simpleType" : "RepositoryTriggersListRequiredException", "variableSetterType" : "RepositoryTriggersListRequiredException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "RepositoryTriggersListRequiredException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "CreateBranchRequest" : { "c2jName" : "CreateBranchInput", "documentation" : "

Represents the input of a create branch operation.

", "shapeName" : "CreateBranchRequest", "deprecated" : false, "required" : [ "repositoryName", "branchName", "commitId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the repository in which you want to create the new branch.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository in which you want to create the new branch.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository in which you want to create the new branch.

\n@param repositoryName The name of the repository in which you want to create the new branch.*/", "getterDocumentation" : "/**

The name of the repository in which you want to create the new branch.

\n@return The name of the repository in which you want to create the new branch.*/", "fluentSetterDocumentation" : "/**

The name of the repository in which you want to create the new branch.

\n@param repositoryName The name of the repository in which you want to create the new branch.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository in which you want to create the new branch.

\n@param repositoryName The name of the repository in which you want to create the new branch.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The name of the new branch to create.

", "name" : "BranchName", "c2jName" : "branchName", "c2jShape" : "BranchName", "variable" : { "variableName" : "branchName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the new branch to create.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "branchName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "branchName", "marshallLocationName" : "branchName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the new branch to create.

\n@param branchName The name of the new branch to create.*/", "getterDocumentation" : "/**

The name of the new branch to create.

\n@return The name of the new branch to create.*/", "fluentSetterDocumentation" : "/**

The name of the new branch to create.

\n@param branchName The name of the new branch to create.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the new branch to create.

\n@param branchName The name of the new branch to create.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The ID of the commit to point the new branch to.

", "name" : "CommitId", "c2jName" : "commitId", "c2jShape" : "CommitId", "variable" : { "variableName" : "commitId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The ID of the commit to point the new branch to.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "commitId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "commitId", "marshallLocationName" : "commitId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The ID of the commit to point the new branch to.

\n@param commitId The ID of the commit to point the new branch to.*/", "getterDocumentation" : "/**

The ID of the commit to point the new branch to.

\n@return The ID of the commit to point the new branch to.*/", "fluentSetterDocumentation" : "/**

The ID of the commit to point the new branch to.

\n@param commitId The ID of the commit to point the new branch to.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The ID of the commit to point the new branch to.

\n@param commitId The ID of the commit to point the new branch to.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createBranchRequest", "variableType" : "CreateBranchRequest", "variableDeclarationType" : "CreateBranchRequest", "documentation" : null, "simpleType" : "CreateBranchRequest", "variableSetterType" : "CreateBranchRequest" }, "marshaller" : { "action" : "CreateBranch", "verb" : "POST", "target" : "CodeCommit_20150413.CreateBranch", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryName" : { "documentation" : "

The name of the repository in which you want to create the new branch.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository in which you want to create the new branch.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository in which you want to create the new branch.

\n@param repositoryName The name of the repository in which you want to create the new branch.*/", "getterDocumentation" : "/**

The name of the repository in which you want to create the new branch.

\n@return The name of the repository in which you want to create the new branch.*/", "fluentSetterDocumentation" : "/**

The name of the repository in which you want to create the new branch.

\n@param repositoryName The name of the repository in which you want to create the new branch.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository in which you want to create the new branch.

\n@param repositoryName The name of the repository in which you want to create the new branch.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "BranchName" : { "documentation" : "

The name of the new branch to create.

", "name" : "BranchName", "c2jName" : "branchName", "c2jShape" : "BranchName", "variable" : { "variableName" : "branchName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the new branch to create.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "branchName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "branchName", "marshallLocationName" : "branchName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the new branch to create.

\n@param branchName The name of the new branch to create.*/", "getterDocumentation" : "/**

The name of the new branch to create.

\n@return The name of the new branch to create.*/", "fluentSetterDocumentation" : "/**

The name of the new branch to create.

\n@param branchName The name of the new branch to create.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the new branch to create.

\n@param branchName The name of the new branch to create.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "CommitId" : { "documentation" : "

The ID of the commit to point the new branch to.

", "name" : "CommitId", "c2jName" : "commitId", "c2jShape" : "CommitId", "variable" : { "variableName" : "commitId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The ID of the commit to point the new branch to.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "commitId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "commitId", "marshallLocationName" : "commitId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The ID of the commit to point the new branch to.

\n@param commitId The ID of the commit to point the new branch to.*/", "getterDocumentation" : "/**

The ID of the commit to point the new branch to.

\n@return The ID of the commit to point the new branch to.*/", "fluentSetterDocumentation" : "/**

The ID of the commit to point the new branch to.

\n@param commitId The ID of the commit to point the new branch to.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The ID of the commit to point the new branch to.

\n@param commitId The ID of the commit to point the new branch to.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "GetRepositoryResult" : { "c2jName" : "GetRepositoryOutput", "documentation" : "

Represents the output of a get repository operation.

", "shapeName" : "GetRepositoryResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Information about the repository.

", "name" : "RepositoryMetadata", "c2jName" : "repositoryMetadata", "c2jShape" : "RepositoryMetadata", "variable" : { "variableName" : "repositoryMetadata", "variableType" : "RepositoryMetadata", "variableDeclarationType" : "RepositoryMetadata", "documentation" : "

Information about the repository.

", "simpleType" : "RepositoryMetadata", "variableSetterType" : "RepositoryMetadata" }, "setterModel" : { "variableName" : "repositoryMetadata", "variableType" : "RepositoryMetadata", "variableDeclarationType" : "RepositoryMetadata", "documentation" : "", "simpleType" : "RepositoryMetadata", "variableSetterType" : "RepositoryMetadata" }, "getterModel" : { "returnType" : "RepositoryMetadata", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryMetadata", "marshallLocationName" : "repositoryMetadata", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Information about the repository.

\n@param repositoryMetadata Information about the repository.*/", "getterDocumentation" : "/**

Information about the repository.

\n@return Information about the repository.*/", "fluentSetterDocumentation" : "/**

Information about the repository.

\n@param repositoryMetadata Information about the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Information about the repository.

\n@param repositoryMetadata Information about the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "getRepositoryResult", "variableType" : "GetRepositoryResult", "variableDeclarationType" : "GetRepositoryResult", "documentation" : null, "simpleType" : "GetRepositoryResult", "variableSetterType" : "GetRepositoryResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryMetadata" : { "documentation" : "

Information about the repository.

", "name" : "RepositoryMetadata", "c2jName" : "repositoryMetadata", "c2jShape" : "RepositoryMetadata", "variable" : { "variableName" : "repositoryMetadata", "variableType" : "RepositoryMetadata", "variableDeclarationType" : "RepositoryMetadata", "documentation" : "

Information about the repository.

", "simpleType" : "RepositoryMetadata", "variableSetterType" : "RepositoryMetadata" }, "setterModel" : { "variableName" : "repositoryMetadata", "variableType" : "RepositoryMetadata", "variableDeclarationType" : "RepositoryMetadata", "documentation" : "", "simpleType" : "RepositoryMetadata", "variableSetterType" : "RepositoryMetadata" }, "getterModel" : { "returnType" : "RepositoryMetadata", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryMetadata", "marshallLocationName" : "repositoryMetadata", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Information about the repository.

\n@param repositoryMetadata Information about the repository.*/", "getterDocumentation" : "/**

Information about the repository.

\n@return Information about the repository.*/", "fluentSetterDocumentation" : "/**

Information about the repository.

\n@param repositoryMetadata Information about the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Information about the repository.

\n@param repositoryMetadata Information about the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "InvalidRepositoryTriggerEventsException" : { "c2jName" : "InvalidRepositoryTriggerEventsException", "documentation" : "

One or more events specified for the trigger is not valid. Check to make sure that all events specified match the requirements for allowed events.

", "shapeName" : "InvalidRepositoryTriggerEventsException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "invalidRepositoryTriggerEventsException", "variableType" : "InvalidRepositoryTriggerEventsException", "variableDeclarationType" : "InvalidRepositoryTriggerEventsException", "documentation" : null, "simpleType" : "InvalidRepositoryTriggerEventsException", "variableSetterType" : "InvalidRepositoryTriggerEventsException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InvalidRepositoryTriggerEventsException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "UpdateDefaultBranchResult" : { "c2jName" : "UpdateDefaultBranchResult", "documentation" : null, "shapeName" : "UpdateDefaultBranchResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "updateDefaultBranchResult", "variableType" : "UpdateDefaultBranchResult", "variableDeclarationType" : "UpdateDefaultBranchResult", "documentation" : null, "simpleType" : "UpdateDefaultBranchResult", "variableSetterType" : "UpdateDefaultBranchResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "RepositoryDoesNotExistException" : { "c2jName" : "RepositoryDoesNotExistException", "documentation" : "

The specified repository does not exist.

", "shapeName" : "RepositoryDoesNotExistException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "repositoryDoesNotExistException", "variableType" : "RepositoryDoesNotExistException", "variableDeclarationType" : "RepositoryDoesNotExistException", "documentation" : null, "simpleType" : "RepositoryDoesNotExistException", "variableSetterType" : "RepositoryDoesNotExistException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "RepositoryDoesNotExistException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "DeleteRepositoryRequest" : { "c2jName" : "DeleteRepositoryInput", "documentation" : "

Represents the input of a delete repository operation.

", "shapeName" : "DeleteRepositoryRequest", "deprecated" : false, "required" : [ "repositoryName" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the repository to delete.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository to delete.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository to delete.

\n@param repositoryName The name of the repository to delete.*/", "getterDocumentation" : "/**

The name of the repository to delete.

\n@return The name of the repository to delete.*/", "fluentSetterDocumentation" : "/**

The name of the repository to delete.

\n@param repositoryName The name of the repository to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository to delete.

\n@param repositoryName The name of the repository to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "deleteRepositoryRequest", "variableType" : "DeleteRepositoryRequest", "variableDeclarationType" : "DeleteRepositoryRequest", "documentation" : null, "simpleType" : "DeleteRepositoryRequest", "variableSetterType" : "DeleteRepositoryRequest" }, "marshaller" : { "action" : "DeleteRepository", "verb" : "POST", "target" : "CodeCommit_20150413.DeleteRepository", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryName" : { "documentation" : "

The name of the repository to delete.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository to delete.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository to delete.

\n@param repositoryName The name of the repository to delete.*/", "getterDocumentation" : "/**

The name of the repository to delete.

\n@return The name of the repository to delete.*/", "fluentSetterDocumentation" : "/**

The name of the repository to delete.

\n@param repositoryName The name of the repository to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository to delete.

\n@param repositoryName The name of the repository to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "RepositoryTriggerEventsListRequiredException" : { "c2jName" : "RepositoryTriggerEventsListRequiredException", "documentation" : "

At least one event for the trigger is required but was not specified.

", "shapeName" : "RepositoryTriggerEventsListRequiredException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "repositoryTriggerEventsListRequiredException", "variableType" : "RepositoryTriggerEventsListRequiredException", "variableDeclarationType" : "RepositoryTriggerEventsListRequiredException", "documentation" : null, "simpleType" : "RepositoryTriggerEventsListRequiredException", "variableSetterType" : "RepositoryTriggerEventsListRequiredException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "RepositoryTriggerEventsListRequiredException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "BranchNameExistsException" : { "c2jName" : "BranchNameExistsException", "documentation" : "

The specified branch name already exists.

", "shapeName" : "BranchNameExistsException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "branchNameExistsException", "variableType" : "BranchNameExistsException", "variableDeclarationType" : "BranchNameExistsException", "documentation" : null, "simpleType" : "BranchNameExistsException", "variableSetterType" : "BranchNameExistsException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "BranchNameExistsException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "InvalidContinuationTokenException" : { "c2jName" : "InvalidContinuationTokenException", "documentation" : "

The specified continuation token is not valid.

", "shapeName" : "InvalidContinuationTokenException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "invalidContinuationTokenException", "variableType" : "InvalidContinuationTokenException", "variableDeclarationType" : "InvalidContinuationTokenException", "documentation" : null, "simpleType" : "InvalidContinuationTokenException", "variableSetterType" : "InvalidContinuationTokenException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InvalidContinuationTokenException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "PutRepositoryTriggersRequest" : { "c2jName" : "PutRepositoryTriggersInput", "documentation" : "

Represents the input ofa put repository triggers operation.

", "shapeName" : "PutRepositoryTriggersRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the repository where you want to create or update the trigger.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository where you want to create or update the trigger.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository where you want to create or update the trigger.

\n@param repositoryName The name of the repository where you want to create or update the trigger.*/", "getterDocumentation" : "/**

The name of the repository where you want to create or update the trigger.

\n@return The name of the repository where you want to create or update the trigger.*/", "fluentSetterDocumentation" : "/**

The name of the repository where you want to create or update the trigger.

\n@param repositoryName The name of the repository where you want to create or update the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository where you want to create or update the trigger.

\n@param repositoryName The name of the repository where you want to create or update the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The JSON block of configuration information for each trigger.

", "name" : "Triggers", "c2jName" : "triggers", "c2jShape" : "RepositoryTriggersList", "variable" : { "variableName" : "triggers", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The JSON block of configuration information for each trigger.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "triggers", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "triggers", "marshallLocationName" : "triggers", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "RepositoryTrigger", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryTrigger", "variable" : { "variableName" : "member", "variableType" : "RepositoryTrigger", "variableDeclarationType" : "RepositoryTrigger", "documentation" : "", "simpleType" : "RepositoryTrigger", "variableSetterType" : "RepositoryTrigger" }, "setterModel" : { "variableName" : "member", "variableType" : "RepositoryTrigger", "variableDeclarationType" : "RepositoryTrigger", "documentation" : "", "simpleType" : "RepositoryTrigger", "variableSetterType" : "RepositoryTrigger" }, "getterModel" : { "returnType" : "RepositoryTrigger", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "RepositoryTrigger", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The JSON block of configuration information for each trigger.

\n@param triggers The JSON block of configuration information for each trigger.*/", "getterDocumentation" : "/**

The JSON block of configuration information for each trigger.

\n@return The JSON block of configuration information for each trigger.*/", "fluentSetterDocumentation" : "/**

The JSON block of configuration information for each trigger.

\n@param triggers The JSON block of configuration information for each trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The JSON block of configuration information for each trigger.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setTriggers(java.util.Collection)} or {@link #withTriggers(java.util.Collection)} if you want to override the existing values.

\n@param triggers The JSON block of configuration information for each trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "putRepositoryTriggersRequest", "variableType" : "PutRepositoryTriggersRequest", "variableDeclarationType" : "PutRepositoryTriggersRequest", "documentation" : null, "simpleType" : "PutRepositoryTriggersRequest", "variableSetterType" : "PutRepositoryTriggersRequest" }, "marshaller" : { "action" : "PutRepositoryTriggers", "verb" : "POST", "target" : "CodeCommit_20150413.PutRepositoryTriggers", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryName" : { "documentation" : "

The name of the repository where you want to create or update the trigger.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository where you want to create or update the trigger.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository where you want to create or update the trigger.

\n@param repositoryName The name of the repository where you want to create or update the trigger.*/", "getterDocumentation" : "/**

The name of the repository where you want to create or update the trigger.

\n@return The name of the repository where you want to create or update the trigger.*/", "fluentSetterDocumentation" : "/**

The name of the repository where you want to create or update the trigger.

\n@param repositoryName The name of the repository where you want to create or update the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository where you want to create or update the trigger.

\n@param repositoryName The name of the repository where you want to create or update the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Triggers" : { "documentation" : "

The JSON block of configuration information for each trigger.

", "name" : "Triggers", "c2jName" : "triggers", "c2jShape" : "RepositoryTriggersList", "variable" : { "variableName" : "triggers", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The JSON block of configuration information for each trigger.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "triggers", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "triggers", "marshallLocationName" : "triggers", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "RepositoryTrigger", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryTrigger", "variable" : { "variableName" : "member", "variableType" : "RepositoryTrigger", "variableDeclarationType" : "RepositoryTrigger", "documentation" : "", "simpleType" : "RepositoryTrigger", "variableSetterType" : "RepositoryTrigger" }, "setterModel" : { "variableName" : "member", "variableType" : "RepositoryTrigger", "variableDeclarationType" : "RepositoryTrigger", "documentation" : "", "simpleType" : "RepositoryTrigger", "variableSetterType" : "RepositoryTrigger" }, "getterModel" : { "returnType" : "RepositoryTrigger", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "RepositoryTrigger", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The JSON block of configuration information for each trigger.

\n@param triggers The JSON block of configuration information for each trigger.*/", "getterDocumentation" : "/**

The JSON block of configuration information for each trigger.

\n@return The JSON block of configuration information for each trigger.*/", "fluentSetterDocumentation" : "/**

The JSON block of configuration information for each trigger.

\n@param triggers The JSON block of configuration information for each trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The JSON block of configuration information for each trigger.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setTriggers(java.util.Collection)} or {@link #withTriggers(java.util.Collection)} if you want to override the existing values.

\n@param triggers The JSON block of configuration information for each trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ListRepositoriesRequest" : { "c2jName" : "ListRepositoriesInput", "documentation" : "

Represents the input of a list repositories operation.

", "shapeName" : "ListRepositoriesRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

", "name" : "NextToken", "c2jName" : "nextToken", "c2jShape" : "NextToken", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "nextToken", "marshallLocationName" : "nextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

\n@param nextToken An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.*/", "getterDocumentation" : "/**

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

\n@return An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.*/", "fluentSetterDocumentation" : "/**

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

\n@param nextToken An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

\n@param nextToken An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The criteria used to sort the results of a list repositories operation.

", "name" : "SortBy", "c2jName" : "sortBy", "c2jShape" : "SortByEnum", "variable" : { "variableName" : "sortBy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The criteria used to sort the results of a list repositories operation.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "sortBy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "sortBy", "marshallLocationName" : "sortBy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "SortByEnum", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The criteria used to sort the results of a list repositories operation.

\n@param sortBy The criteria used to sort the results of a list repositories operation.\n@see SortByEnum*/", "getterDocumentation" : "/**

The criteria used to sort the results of a list repositories operation.

\n@return The criteria used to sort the results of a list repositories operation.\n@see SortByEnum*/", "fluentSetterDocumentation" : "/**

The criteria used to sort the results of a list repositories operation.

\n@param sortBy The criteria used to sort the results of a list repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.\n@see SortByEnum*/", "varargSetterDocumentation" : "/**

The criteria used to sort the results of a list repositories operation.

\n@param sortBy The criteria used to sort the results of a list repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.\n@see SortByEnum*/" }, { "documentation" : "

The order in which to sort the results of a list repositories operation.

", "name" : "Order", "c2jName" : "order", "c2jShape" : "OrderEnum", "variable" : { "variableName" : "order", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The order in which to sort the results of a list repositories operation.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "order", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "order", "marshallLocationName" : "order", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "OrderEnum", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The order in which to sort the results of a list repositories operation.

\n@param order The order in which to sort the results of a list repositories operation.\n@see OrderEnum*/", "getterDocumentation" : "/**

The order in which to sort the results of a list repositories operation.

\n@return The order in which to sort the results of a list repositories operation.\n@see OrderEnum*/", "fluentSetterDocumentation" : "/**

The order in which to sort the results of a list repositories operation.

\n@param order The order in which to sort the results of a list repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.\n@see OrderEnum*/", "varargSetterDocumentation" : "/**

The order in which to sort the results of a list repositories operation.

\n@param order The order in which to sort the results of a list repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.\n@see OrderEnum*/" } ], "enums" : null, "variable" : { "variableName" : "listRepositoriesRequest", "variableType" : "ListRepositoriesRequest", "variableDeclarationType" : "ListRepositoriesRequest", "documentation" : null, "simpleType" : "ListRepositoriesRequest", "variableSetterType" : "ListRepositoriesRequest" }, "marshaller" : { "action" : "ListRepositories", "verb" : "POST", "target" : "CodeCommit_20150413.ListRepositories", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

", "name" : "NextToken", "c2jName" : "nextToken", "c2jShape" : "NextToken", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "nextToken", "marshallLocationName" : "nextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

\n@param nextToken An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.*/", "getterDocumentation" : "/**

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

\n@return An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.*/", "fluentSetterDocumentation" : "/**

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

\n@param nextToken An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

\n@param nextToken An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "SortBy" : { "documentation" : "

The criteria used to sort the results of a list repositories operation.

", "name" : "SortBy", "c2jName" : "sortBy", "c2jShape" : "SortByEnum", "variable" : { "variableName" : "sortBy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The criteria used to sort the results of a list repositories operation.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "sortBy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "sortBy", "marshallLocationName" : "sortBy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "SortByEnum", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The criteria used to sort the results of a list repositories operation.

\n@param sortBy The criteria used to sort the results of a list repositories operation.\n@see SortByEnum*/", "getterDocumentation" : "/**

The criteria used to sort the results of a list repositories operation.

\n@return The criteria used to sort the results of a list repositories operation.\n@see SortByEnum*/", "fluentSetterDocumentation" : "/**

The criteria used to sort the results of a list repositories operation.

\n@param sortBy The criteria used to sort the results of a list repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.\n@see SortByEnum*/", "varargSetterDocumentation" : "/**

The criteria used to sort the results of a list repositories operation.

\n@param sortBy The criteria used to sort the results of a list repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.\n@see SortByEnum*/" }, "Order" : { "documentation" : "

The order in which to sort the results of a list repositories operation.

", "name" : "Order", "c2jName" : "order", "c2jShape" : "OrderEnum", "variable" : { "variableName" : "order", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The order in which to sort the results of a list repositories operation.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "order", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "order", "marshallLocationName" : "order", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "OrderEnum", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The order in which to sort the results of a list repositories operation.

\n@param order The order in which to sort the results of a list repositories operation.\n@see OrderEnum*/", "getterDocumentation" : "/**

The order in which to sort the results of a list repositories operation.

\n@return The order in which to sort the results of a list repositories operation.\n@see OrderEnum*/", "fluentSetterDocumentation" : "/**

The order in which to sort the results of a list repositories operation.

\n@param order The order in which to sort the results of a list repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.\n@see OrderEnum*/", "varargSetterDocumentation" : "/**

The order in which to sort the results of a list repositories operation.

\n@param order The order in which to sort the results of a list repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.\n@see OrderEnum*/" } } }, "OrderEnum" : { "c2jName" : "OrderEnum", "documentation" : "", "shapeName" : "OrderEnum", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "Ascending", "value" : "ascending" }, { "name" : "Descending", "value" : "descending" } ], "variable" : { "variableName" : "orderEnum", "variableType" : "OrderEnum", "variableDeclarationType" : "OrderEnum", "documentation" : null, "simpleType" : "OrderEnum", "variableSetterType" : "OrderEnum" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "UpdateRepositoryNameResult" : { "c2jName" : "UpdateRepositoryNameResult", "documentation" : null, "shapeName" : "UpdateRepositoryNameResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "updateRepositoryNameResult", "variableType" : "UpdateRepositoryNameResult", "variableDeclarationType" : "UpdateRepositoryNameResult", "documentation" : null, "simpleType" : "UpdateRepositoryNameResult", "variableSetterType" : "UpdateRepositoryNameResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "EncryptionIntegrityChecksFailedException" : { "c2jName" : "EncryptionIntegrityChecksFailedException", "documentation" : "

An encryption integrity check failed.

", "shapeName" : "EncryptionIntegrityChecksFailedException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "encryptionIntegrityChecksFailedException", "variableType" : "EncryptionIntegrityChecksFailedException", "variableDeclarationType" : "EncryptionIntegrityChecksFailedException", "documentation" : null, "simpleType" : "EncryptionIntegrityChecksFailedException", "variableSetterType" : "EncryptionIntegrityChecksFailedException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "EncryptionIntegrityChecksFailedException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "MaximumRepositoryTriggersExceededException" : { "c2jName" : "MaximumRepositoryTriggersExceededException", "documentation" : "

The number of triggers allowed for the repository was exceeded.

", "shapeName" : "MaximumRepositoryTriggersExceededException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "maximumRepositoryTriggersExceededException", "variableType" : "MaximumRepositoryTriggersExceededException", "variableDeclarationType" : "MaximumRepositoryTriggersExceededException", "documentation" : null, "simpleType" : "MaximumRepositoryTriggersExceededException", "variableSetterType" : "MaximumRepositoryTriggersExceededException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "MaximumRepositoryTriggersExceededException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "CommitIdDoesNotExistException" : { "c2jName" : "CommitIdDoesNotExistException", "documentation" : "

The specified commit ID does not exist.

", "shapeName" : "CommitIdDoesNotExistException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "commitIdDoesNotExistException", "variableType" : "CommitIdDoesNotExistException", "variableDeclarationType" : "CommitIdDoesNotExistException", "documentation" : null, "simpleType" : "CommitIdDoesNotExistException", "variableSetterType" : "CommitIdDoesNotExistException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "CommitIdDoesNotExistException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "CommitDoesNotExistException" : { "c2jName" : "CommitDoesNotExistException", "documentation" : "

The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

", "shapeName" : "CommitDoesNotExistException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "commitDoesNotExistException", "variableType" : "CommitDoesNotExistException", "variableDeclarationType" : "CommitDoesNotExistException", "documentation" : null, "simpleType" : "CommitDoesNotExistException", "variableSetterType" : "CommitDoesNotExistException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "CommitDoesNotExistException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "RepositoryNamesRequiredException" : { "c2jName" : "RepositoryNamesRequiredException", "documentation" : "

A repository names object is required but was not specified.

", "shapeName" : "RepositoryNamesRequiredException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "repositoryNamesRequiredException", "variableType" : "RepositoryNamesRequiredException", "variableDeclarationType" : "RepositoryNamesRequiredException", "documentation" : null, "simpleType" : "RepositoryNamesRequiredException", "variableSetterType" : "RepositoryNamesRequiredException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "RepositoryNamesRequiredException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "CreateRepositoryRequest" : { "c2jName" : "CreateRepositoryInput", "documentation" : "

Represents the input of a create repository operation.

", "shapeName" : "CreateRepositoryRequest", "deprecated" : false, "required" : [ "repositoryName" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

\n@param repositoryName The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

*/", "getterDocumentation" : "/**

The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

\n@return The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

*/", "fluentSetterDocumentation" : "/**

The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

\n@param repositoryName The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

\n@param repositoryName The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

", "name" : "RepositoryDescription", "c2jName" : "repositoryDescription", "c2jShape" : "RepositoryDescription", "variable" : { "variableName" : "repositoryDescription", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryDescription", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryDescription", "marshallLocationName" : "repositoryDescription", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

\n@param repositoryDescription A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

*/", "getterDocumentation" : "/**

A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

\n@return A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

*/", "fluentSetterDocumentation" : "/**

A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

\n@param repositoryDescription A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

\n@param repositoryDescription A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createRepositoryRequest", "variableType" : "CreateRepositoryRequest", "variableDeclarationType" : "CreateRepositoryRequest", "documentation" : null, "simpleType" : "CreateRepositoryRequest", "variableSetterType" : "CreateRepositoryRequest" }, "marshaller" : { "action" : "CreateRepository", "verb" : "POST", "target" : "CodeCommit_20150413.CreateRepository", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryDescription" : { "documentation" : "

A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

", "name" : "RepositoryDescription", "c2jName" : "repositoryDescription", "c2jShape" : "RepositoryDescription", "variable" : { "variableName" : "repositoryDescription", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryDescription", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryDescription", "marshallLocationName" : "repositoryDescription", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

\n@param repositoryDescription A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

*/", "getterDocumentation" : "/**

A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

\n@return A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

*/", "fluentSetterDocumentation" : "/**

A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

\n@param repositoryDescription A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

\n@param repositoryDescription A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "RepositoryName" : { "documentation" : "

The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

\n@param repositoryName The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

*/", "getterDocumentation" : "/**

The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

\n@return The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

*/", "fluentSetterDocumentation" : "/**

The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

\n@param repositoryName The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

\n@param repositoryName The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.

\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "GetRepositoryRequest" : { "c2jName" : "GetRepositoryInput", "documentation" : "

Represents the input of a get repository operation.

", "shapeName" : "GetRepositoryRequest", "deprecated" : false, "required" : [ "repositoryName" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the repository to get information about.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository to get information about.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository to get information about.

\n@param repositoryName The name of the repository to get information about.*/", "getterDocumentation" : "/**

The name of the repository to get information about.

\n@return The name of the repository to get information about.*/", "fluentSetterDocumentation" : "/**

The name of the repository to get information about.

\n@param repositoryName The name of the repository to get information about.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository to get information about.

\n@param repositoryName The name of the repository to get information about.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "getRepositoryRequest", "variableType" : "GetRepositoryRequest", "variableDeclarationType" : "GetRepositoryRequest", "documentation" : null, "simpleType" : "GetRepositoryRequest", "variableSetterType" : "GetRepositoryRequest" }, "marshaller" : { "action" : "GetRepository", "verb" : "POST", "target" : "CodeCommit_20150413.GetRepository", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryName" : { "documentation" : "

The name of the repository to get information about.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository to get information about.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository to get information about.

\n@param repositoryName The name of the repository to get information about.*/", "getterDocumentation" : "/**

The name of the repository to get information about.

\n@return The name of the repository to get information about.*/", "fluentSetterDocumentation" : "/**

The name of the repository to get information about.

\n@param repositoryName The name of the repository to get information about.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository to get information about.

\n@param repositoryName The name of the repository to get information about.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "InvalidRepositoryTriggerCustomDataException" : { "c2jName" : "InvalidRepositoryTriggerCustomDataException", "documentation" : "

The custom data provided for the trigger is not valid.

", "shapeName" : "InvalidRepositoryTriggerCustomDataException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "invalidRepositoryTriggerCustomDataException", "variableType" : "InvalidRepositoryTriggerCustomDataException", "variableDeclarationType" : "InvalidRepositoryTriggerCustomDataException", "documentation" : null, "simpleType" : "InvalidRepositoryTriggerCustomDataException", "variableSetterType" : "InvalidRepositoryTriggerCustomDataException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InvalidRepositoryTriggerCustomDataException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "RepositoryTrigger" : { "c2jName" : "RepositoryTrigger", "documentation" : "

Information about a trigger for a repository.

", "shapeName" : "RepositoryTrigger", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the trigger.

", "name" : "Name", "c2jName" : "name", "c2jShape" : "RepositoryTriggerName", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the trigger.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "name", "marshallLocationName" : "name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the trigger.

\n@param name The name of the trigger.*/", "getterDocumentation" : "/**

The name of the trigger.

\n@return The name of the trigger.*/", "fluentSetterDocumentation" : "/**

The name of the trigger.

\n@param name The name of the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the trigger.

\n@param name The name of the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).

", "name" : "DestinationArn", "c2jName" : "destinationArn", "c2jShape" : "Arn", "variable" : { "variableName" : "destinationArn", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "destinationArn", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "destinationArn", "marshallLocationName" : "destinationArn", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).

\n@param destinationArn The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).*/", "getterDocumentation" : "/**

The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).

\n@return The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).*/", "fluentSetterDocumentation" : "/**

The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).

\n@param destinationArn The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).

\n@param destinationArn The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.

", "name" : "CustomData", "c2jName" : "customData", "c2jShape" : "RepositoryTriggerCustomData", "variable" : { "variableName" : "customData", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "customData", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "customData", "marshallLocationName" : "customData", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.

\n@param customData Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.*/", "getterDocumentation" : "/**

Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.

\n@return Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.*/", "fluentSetterDocumentation" : "/**

Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.

\n@param customData Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.

\n@param customData Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.

", "name" : "Branches", "c2jName" : "branches", "c2jShape" : "BranchNameList", "variable" : { "variableName" : "branches", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "branches", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "branches", "marshallLocationName" : "branches", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "BranchName", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.

\n@param branches The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.*/", "getterDocumentation" : "/**

The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.

\n@return The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.*/", "fluentSetterDocumentation" : "/**

The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.

\n@param branches The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setBranches(java.util.Collection)} or {@link #withBranches(java.util.Collection)} if you want to override the existing values.

\n@param branches The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.

", "name" : "Events", "c2jName" : "events", "c2jShape" : "RepositoryTriggerEventList", "variable" : { "variableName" : "events", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "events", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "events", "marshallLocationName" : "events", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryTriggerEventEnum", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "RepositoryTriggerEventEnum", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member \n@see RepositoryTriggerEventEnum*/", "getterDocumentation" : "/**\n@return \n@see RepositoryTriggerEventEnum*/", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see RepositoryTriggerEventEnum*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see RepositoryTriggerEventEnum*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : "RepositoryTriggerEventEnum", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.

\n@param events The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.\n@see RepositoryTriggerEventEnum*/", "getterDocumentation" : "/**

The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.

\n@return The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.\n@see RepositoryTriggerEventEnum*/", "fluentSetterDocumentation" : "/**

The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.

\n@param events The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.\n@return Returns a reference to this object so that method calls can be chained together.\n@see RepositoryTriggerEventEnum*/", "varargSetterDocumentation" : "/**

The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setEvents(java.util.Collection)} or {@link #withEvents(java.util.Collection)} if you want to override the existing values.

\n@param events The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.\n@return Returns a reference to this object so that method calls can be chained together.\n@see RepositoryTriggerEventEnum*/" } ], "enums" : null, "variable" : { "variableName" : "repositoryTrigger", "variableType" : "RepositoryTrigger", "variableDeclarationType" : "RepositoryTrigger", "documentation" : null, "simpleType" : "RepositoryTrigger", "variableSetterType" : "RepositoryTrigger" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Name" : { "documentation" : "

The name of the trigger.

", "name" : "Name", "c2jName" : "name", "c2jShape" : "RepositoryTriggerName", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the trigger.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "name", "marshallLocationName" : "name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the trigger.

\n@param name The name of the trigger.*/", "getterDocumentation" : "/**

The name of the trigger.

\n@return The name of the trigger.*/", "fluentSetterDocumentation" : "/**

The name of the trigger.

\n@param name The name of the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the trigger.

\n@param name The name of the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Branches" : { "documentation" : "

The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.

", "name" : "Branches", "c2jName" : "branches", "c2jShape" : "BranchNameList", "variable" : { "variableName" : "branches", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "branches", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "branches", "marshallLocationName" : "branches", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "BranchName", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.

\n@param branches The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.*/", "getterDocumentation" : "/**

The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.

\n@return The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.*/", "fluentSetterDocumentation" : "/**

The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.

\n@param branches The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setBranches(java.util.Collection)} or {@link #withBranches(java.util.Collection)} if you want to override the existing values.

\n@param branches The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "DestinationArn" : { "documentation" : "

The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).

", "name" : "DestinationArn", "c2jName" : "destinationArn", "c2jShape" : "Arn", "variable" : { "variableName" : "destinationArn", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "destinationArn", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "destinationArn", "marshallLocationName" : "destinationArn", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).

\n@param destinationArn The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).*/", "getterDocumentation" : "/**

The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).

\n@return The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).*/", "fluentSetterDocumentation" : "/**

The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).

\n@param destinationArn The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).

\n@param destinationArn The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Events" : { "documentation" : "

The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.

", "name" : "Events", "c2jName" : "events", "c2jShape" : "RepositoryTriggerEventList", "variable" : { "variableName" : "events", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "events", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "events", "marshallLocationName" : "events", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "RepositoryTriggerEventEnum", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "RepositoryTriggerEventEnum", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member \n@see RepositoryTriggerEventEnum*/", "getterDocumentation" : "/**\n@return \n@see RepositoryTriggerEventEnum*/", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see RepositoryTriggerEventEnum*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see RepositoryTriggerEventEnum*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : "RepositoryTriggerEventEnum", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.

\n@param events The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.\n@see RepositoryTriggerEventEnum*/", "getterDocumentation" : "/**

The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.

\n@return The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.\n@see RepositoryTriggerEventEnum*/", "fluentSetterDocumentation" : "/**

The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.

\n@param events The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.\n@return Returns a reference to this object so that method calls can be chained together.\n@see RepositoryTriggerEventEnum*/", "varargSetterDocumentation" : "/**

The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setEvents(java.util.Collection)} or {@link #withEvents(java.util.Collection)} if you want to override the existing values.

\n@param events The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events.\n@return Returns a reference to this object so that method calls can be chained together.\n@see RepositoryTriggerEventEnum*/" }, "CustomData" : { "documentation" : "

Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.

", "name" : "CustomData", "c2jName" : "customData", "c2jShape" : "RepositoryTriggerCustomData", "variable" : { "variableName" : "customData", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "customData", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "customData", "marshallLocationName" : "customData", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.

\n@param customData Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.*/", "getterDocumentation" : "/**

Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.

\n@return Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.*/", "fluentSetterDocumentation" : "/**

Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.

\n@param customData Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.

\n@param customData Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "UpdateRepositoryDescriptionRequest" : { "c2jName" : "UpdateRepositoryDescriptionInput", "documentation" : "

Represents the input of an update repository description operation.

", "shapeName" : "UpdateRepositoryDescriptionRequest", "deprecated" : false, "required" : [ "repositoryName" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the repository to set or change the comment or description for.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository to set or change the comment or description for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository to set or change the comment or description for.

\n@param repositoryName The name of the repository to set or change the comment or description for.*/", "getterDocumentation" : "/**

The name of the repository to set or change the comment or description for.

\n@return The name of the repository to set or change the comment or description for.*/", "fluentSetterDocumentation" : "/**

The name of the repository to set or change the comment or description for.

\n@param repositoryName The name of the repository to set or change the comment or description for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository to set or change the comment or description for.

\n@param repositoryName The name of the repository to set or change the comment or description for.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.

", "name" : "RepositoryDescription", "c2jName" : "repositoryDescription", "c2jShape" : "RepositoryDescription", "variable" : { "variableName" : "repositoryDescription", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryDescription", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryDescription", "marshallLocationName" : "repositoryDescription", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.

\n@param repositoryDescription The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.*/", "getterDocumentation" : "/**

The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.

\n@return The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.*/", "fluentSetterDocumentation" : "/**

The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.

\n@param repositoryDescription The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.

\n@param repositoryDescription The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "updateRepositoryDescriptionRequest", "variableType" : "UpdateRepositoryDescriptionRequest", "variableDeclarationType" : "UpdateRepositoryDescriptionRequest", "documentation" : null, "simpleType" : "UpdateRepositoryDescriptionRequest", "variableSetterType" : "UpdateRepositoryDescriptionRequest" }, "marshaller" : { "action" : "UpdateRepositoryDescription", "verb" : "POST", "target" : "CodeCommit_20150413.UpdateRepositoryDescription", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryDescription" : { "documentation" : "

The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.

", "name" : "RepositoryDescription", "c2jName" : "repositoryDescription", "c2jShape" : "RepositoryDescription", "variable" : { "variableName" : "repositoryDescription", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryDescription", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryDescription", "marshallLocationName" : "repositoryDescription", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.

\n@param repositoryDescription The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.*/", "getterDocumentation" : "/**

The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.

\n@return The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.*/", "fluentSetterDocumentation" : "/**

The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.

\n@param repositoryDescription The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.

\n@param repositoryDescription The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "RepositoryName" : { "documentation" : "

The name of the repository to set or change the comment or description for.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository to set or change the comment or description for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository to set or change the comment or description for.

\n@param repositoryName The name of the repository to set or change the comment or description for.*/", "getterDocumentation" : "/**

The name of the repository to set or change the comment or description for.

\n@return The name of the repository to set or change the comment or description for.*/", "fluentSetterDocumentation" : "/**

The name of the repository to set or change the comment or description for.

\n@param repositoryName The name of the repository to set or change the comment or description for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository to set or change the comment or description for.

\n@param repositoryName The name of the repository to set or change the comment or description for.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "CommitIdRequiredException" : { "c2jName" : "CommitIdRequiredException", "documentation" : "

A commit ID was not specified.

", "shapeName" : "CommitIdRequiredException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "commitIdRequiredException", "variableType" : "CommitIdRequiredException", "variableDeclarationType" : "CommitIdRequiredException", "documentation" : null, "simpleType" : "CommitIdRequiredException", "variableSetterType" : "CommitIdRequiredException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "CommitIdRequiredException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "MaximumRepositoryNamesExceededException" : { "c2jName" : "MaximumRepositoryNamesExceededException", "documentation" : "

The maximum number of allowed repository names was exceeded. Currently, this number is 25.

", "shapeName" : "MaximumRepositoryNamesExceededException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "maximumRepositoryNamesExceededException", "variableType" : "MaximumRepositoryNamesExceededException", "variableDeclarationType" : "MaximumRepositoryNamesExceededException", "documentation" : null, "simpleType" : "MaximumRepositoryNamesExceededException", "variableSetterType" : "MaximumRepositoryNamesExceededException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "MaximumRepositoryNamesExceededException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "RepositoryNameIdPair" : { "c2jName" : "RepositoryNameIdPair", "documentation" : "

Information about a repository name and ID.

", "shapeName" : "RepositoryNameIdPair", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name associated with the repository.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name associated with the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name associated with the repository.

\n@param repositoryName The name associated with the repository.*/", "getterDocumentation" : "/**

The name associated with the repository.

\n@return The name associated with the repository.*/", "fluentSetterDocumentation" : "/**

The name associated with the repository.

\n@param repositoryName The name associated with the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name associated with the repository.

\n@param repositoryName The name associated with the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The ID associated with the repository.

", "name" : "RepositoryId", "c2jName" : "repositoryId", "c2jShape" : "RepositoryId", "variable" : { "variableName" : "repositoryId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The ID associated with the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryId", "marshallLocationName" : "repositoryId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The ID associated with the repository.

\n@param repositoryId The ID associated with the repository.*/", "getterDocumentation" : "/**

The ID associated with the repository.

\n@return The ID associated with the repository.*/", "fluentSetterDocumentation" : "/**

The ID associated with the repository.

\n@param repositoryId The ID associated with the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The ID associated with the repository.

\n@param repositoryId The ID associated with the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "repositoryNameIdPair", "variableType" : "RepositoryNameIdPair", "variableDeclarationType" : "RepositoryNameIdPair", "documentation" : null, "simpleType" : "RepositoryNameIdPair", "variableSetterType" : "RepositoryNameIdPair" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryName" : { "documentation" : "

The name associated with the repository.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name associated with the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name associated with the repository.

\n@param repositoryName The name associated with the repository.*/", "getterDocumentation" : "/**

The name associated with the repository.

\n@return The name associated with the repository.*/", "fluentSetterDocumentation" : "/**

The name associated with the repository.

\n@param repositoryName The name associated with the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name associated with the repository.

\n@param repositoryName The name associated with the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "RepositoryId" : { "documentation" : "

The ID associated with the repository.

", "name" : "RepositoryId", "c2jName" : "repositoryId", "c2jShape" : "RepositoryId", "variable" : { "variableName" : "repositoryId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The ID associated with the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryId", "marshallLocationName" : "repositoryId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The ID associated with the repository.

\n@param repositoryId The ID associated with the repository.*/", "getterDocumentation" : "/**

The ID associated with the repository.

\n@return The ID associated with the repository.*/", "fluentSetterDocumentation" : "/**

The ID associated with the repository.

\n@param repositoryId The ID associated with the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The ID associated with the repository.

\n@param repositoryId The ID associated with the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "InvalidBranchNameException" : { "c2jName" : "InvalidBranchNameException", "documentation" : "

The specified branch name is not valid.

", "shapeName" : "InvalidBranchNameException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "invalidBranchNameException", "variableType" : "InvalidBranchNameException", "variableDeclarationType" : "InvalidBranchNameException", "documentation" : null, "simpleType" : "InvalidBranchNameException", "variableSetterType" : "InvalidBranchNameException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InvalidBranchNameException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "UserInfo" : { "c2jName" : "UserInfo", "documentation" : "

Information about the user who made a specified commit.

", "shapeName" : "UserInfo", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the user who made the specified commit.

", "name" : "Name", "c2jName" : "name", "c2jShape" : "Name", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the user who made the specified commit.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "name", "marshallLocationName" : "name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the user who made the specified commit.

\n@param name The name of the user who made the specified commit.*/", "getterDocumentation" : "/**

The name of the user who made the specified commit.

\n@return The name of the user who made the specified commit.*/", "fluentSetterDocumentation" : "/**

The name of the user who made the specified commit.

\n@param name The name of the user who made the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the user who made the specified commit.

\n@param name The name of the user who made the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The email address associated with the user who made the commit, if any.

", "name" : "Email", "c2jName" : "email", "c2jShape" : "Email", "variable" : { "variableName" : "email", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The email address associated with the user who made the commit, if any.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "email", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "email", "marshallLocationName" : "email", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The email address associated with the user who made the commit, if any.

\n@param email The email address associated with the user who made the commit, if any.*/", "getterDocumentation" : "/**

The email address associated with the user who made the commit, if any.

\n@return The email address associated with the user who made the commit, if any.*/", "fluentSetterDocumentation" : "/**

The email address associated with the user who made the commit, if any.

\n@param email The email address associated with the user who made the commit, if any.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The email address associated with the user who made the commit, if any.

\n@param email The email address associated with the user who made the commit, if any.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The date when the specified commit was pushed to the repository.

", "name" : "Date", "c2jName" : "date", "c2jShape" : "Date", "variable" : { "variableName" : "dateValue", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The date when the specified commit was pushed to the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "dateValue", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "date", "marshallLocationName" : "date", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The date when the specified commit was pushed to the repository.

\n@param dateValue The date when the specified commit was pushed to the repository.*/", "getterDocumentation" : "/**

The date when the specified commit was pushed to the repository.

\n@return The date when the specified commit was pushed to the repository.*/", "fluentSetterDocumentation" : "/**

The date when the specified commit was pushed to the repository.

\n@param dateValue The date when the specified commit was pushed to the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The date when the specified commit was pushed to the repository.

\n@param dateValue The date when the specified commit was pushed to the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "userInfo", "variableType" : "UserInfo", "variableDeclarationType" : "UserInfo", "documentation" : null, "simpleType" : "UserInfo", "variableSetterType" : "UserInfo" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Name" : { "documentation" : "

The name of the user who made the specified commit.

", "name" : "Name", "c2jName" : "name", "c2jShape" : "Name", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the user who made the specified commit.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "name", "marshallLocationName" : "name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the user who made the specified commit.

\n@param name The name of the user who made the specified commit.*/", "getterDocumentation" : "/**

The name of the user who made the specified commit.

\n@return The name of the user who made the specified commit.*/", "fluentSetterDocumentation" : "/**

The name of the user who made the specified commit.

\n@param name The name of the user who made the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the user who made the specified commit.

\n@param name The name of the user who made the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Email" : { "documentation" : "

The email address associated with the user who made the commit, if any.

", "name" : "Email", "c2jName" : "email", "c2jShape" : "Email", "variable" : { "variableName" : "email", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The email address associated with the user who made the commit, if any.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "email", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "email", "marshallLocationName" : "email", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The email address associated with the user who made the commit, if any.

\n@param email The email address associated with the user who made the commit, if any.*/", "getterDocumentation" : "/**

The email address associated with the user who made the commit, if any.

\n@return The email address associated with the user who made the commit, if any.*/", "fluentSetterDocumentation" : "/**

The email address associated with the user who made the commit, if any.

\n@param email The email address associated with the user who made the commit, if any.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The email address associated with the user who made the commit, if any.

\n@param email The email address associated with the user who made the commit, if any.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Date" : { "documentation" : "

The date when the specified commit was pushed to the repository.

", "name" : "Date", "c2jName" : "date", "c2jShape" : "Date", "variable" : { "variableName" : "dateValue", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The date when the specified commit was pushed to the repository.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "dateValue", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "date", "marshallLocationName" : "date", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The date when the specified commit was pushed to the repository.

\n@param dateValue The date when the specified commit was pushed to the repository.*/", "getterDocumentation" : "/**

The date when the specified commit was pushed to the repository.

\n@return The date when the specified commit was pushed to the repository.*/", "fluentSetterDocumentation" : "/**

The date when the specified commit was pushed to the repository.

\n@param dateValue The date when the specified commit was pushed to the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The date when the specified commit was pushed to the repository.

\n@param dateValue The date when the specified commit was pushed to the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "RepositoryTriggerBranchNameListRequiredException" : { "c2jName" : "RepositoryTriggerBranchNameListRequiredException", "documentation" : "

At least one branch name is required but was not specified in the trigger configuration.

", "shapeName" : "RepositoryTriggerBranchNameListRequiredException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "repositoryTriggerBranchNameListRequiredException", "variableType" : "RepositoryTriggerBranchNameListRequiredException", "variableDeclarationType" : "RepositoryTriggerBranchNameListRequiredException", "documentation" : null, "simpleType" : "RepositoryTriggerBranchNameListRequiredException", "variableSetterType" : "RepositoryTriggerBranchNameListRequiredException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "RepositoryTriggerBranchNameListRequiredException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "GetCommitRequest" : { "c2jName" : "GetCommitInput", "documentation" : "

Represents the input of a get commit operation.

", "shapeName" : "GetCommitRequest", "deprecated" : false, "required" : [ "repositoryName", "commitId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the repository to which the commit was made.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository to which the commit was made.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository to which the commit was made.

\n@param repositoryName The name of the repository to which the commit was made.*/", "getterDocumentation" : "/**

The name of the repository to which the commit was made.

\n@return The name of the repository to which the commit was made.*/", "fluentSetterDocumentation" : "/**

The name of the repository to which the commit was made.

\n@param repositoryName The name of the repository to which the commit was made.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository to which the commit was made.

\n@param repositoryName The name of the repository to which the commit was made.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The commit ID.

", "name" : "CommitId", "c2jName" : "commitId", "c2jShape" : "ObjectId", "variable" : { "variableName" : "commitId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The commit ID.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "commitId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "commitId", "marshallLocationName" : "commitId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The commit ID.

\n@param commitId The commit ID.*/", "getterDocumentation" : "/**

The commit ID.

\n@return The commit ID.*/", "fluentSetterDocumentation" : "/**

The commit ID.

\n@param commitId The commit ID.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The commit ID.

\n@param commitId The commit ID.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "getCommitRequest", "variableType" : "GetCommitRequest", "variableDeclarationType" : "GetCommitRequest", "documentation" : null, "simpleType" : "GetCommitRequest", "variableSetterType" : "GetCommitRequest" }, "marshaller" : { "action" : "GetCommit", "verb" : "POST", "target" : "CodeCommit_20150413.GetCommit", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryName" : { "documentation" : "

The name of the repository to which the commit was made.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository to which the commit was made.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository to which the commit was made.

\n@param repositoryName The name of the repository to which the commit was made.*/", "getterDocumentation" : "/**

The name of the repository to which the commit was made.

\n@return The name of the repository to which the commit was made.*/", "fluentSetterDocumentation" : "/**

The name of the repository to which the commit was made.

\n@param repositoryName The name of the repository to which the commit was made.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository to which the commit was made.

\n@param repositoryName The name of the repository to which the commit was made.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "CommitId" : { "documentation" : "

The commit ID.

", "name" : "CommitId", "c2jName" : "commitId", "c2jShape" : "ObjectId", "variable" : { "variableName" : "commitId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The commit ID.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "commitId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "commitId", "marshallLocationName" : "commitId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The commit ID.

\n@param commitId The commit ID.*/", "getterDocumentation" : "/**

The commit ID.

\n@return The commit ID.*/", "fluentSetterDocumentation" : "/**

The commit ID.

\n@param commitId The commit ID.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The commit ID.

\n@param commitId The commit ID.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "PutRepositoryTriggersResult" : { "c2jName" : "PutRepositoryTriggersOutput", "documentation" : "

Represents the output of a put repository triggers operation.

", "shapeName" : "PutRepositoryTriggersResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The system-generated unique ID for the create or update operation.

", "name" : "ConfigurationId", "c2jName" : "configurationId", "c2jShape" : "RepositoryTriggersConfigurationId", "variable" : { "variableName" : "configurationId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The system-generated unique ID for the create or update operation.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "configurationId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "configurationId", "marshallLocationName" : "configurationId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The system-generated unique ID for the create or update operation.

\n@param configurationId The system-generated unique ID for the create or update operation.*/", "getterDocumentation" : "/**

The system-generated unique ID for the create or update operation.

\n@return The system-generated unique ID for the create or update operation.*/", "fluentSetterDocumentation" : "/**

The system-generated unique ID for the create or update operation.

\n@param configurationId The system-generated unique ID for the create or update operation.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The system-generated unique ID for the create or update operation.

\n@param configurationId The system-generated unique ID for the create or update operation.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "putRepositoryTriggersResult", "variableType" : "PutRepositoryTriggersResult", "variableDeclarationType" : "PutRepositoryTriggersResult", "documentation" : null, "simpleType" : "PutRepositoryTriggersResult", "variableSetterType" : "PutRepositoryTriggersResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ConfigurationId" : { "documentation" : "

The system-generated unique ID for the create or update operation.

", "name" : "ConfigurationId", "c2jName" : "configurationId", "c2jShape" : "RepositoryTriggersConfigurationId", "variable" : { "variableName" : "configurationId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The system-generated unique ID for the create or update operation.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "configurationId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "configurationId", "marshallLocationName" : "configurationId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The system-generated unique ID for the create or update operation.

\n@param configurationId The system-generated unique ID for the create or update operation.*/", "getterDocumentation" : "/**

The system-generated unique ID for the create or update operation.

\n@return The system-generated unique ID for the create or update operation.*/", "fluentSetterDocumentation" : "/**

The system-generated unique ID for the create or update operation.

\n@param configurationId The system-generated unique ID for the create or update operation.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The system-generated unique ID for the create or update operation.

\n@param configurationId The system-generated unique ID for the create or update operation.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "GetRepositoryTriggersRequest" : { "c2jName" : "GetRepositoryTriggersInput", "documentation" : "

Represents the input of a get repository triggers operation.

", "shapeName" : "GetRepositoryTriggersRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

The name of the repository for which the trigger is configured.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository for which the trigger is configured.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository for which the trigger is configured.

\n@param repositoryName The name of the repository for which the trigger is configured.*/", "getterDocumentation" : "/**

The name of the repository for which the trigger is configured.

\n@return The name of the repository for which the trigger is configured.*/", "fluentSetterDocumentation" : "/**

The name of the repository for which the trigger is configured.

\n@param repositoryName The name of the repository for which the trigger is configured.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository for which the trigger is configured.

\n@param repositoryName The name of the repository for which the trigger is configured.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "getRepositoryTriggersRequest", "variableType" : "GetRepositoryTriggersRequest", "variableDeclarationType" : "GetRepositoryTriggersRequest", "documentation" : null, "simpleType" : "GetRepositoryTriggersRequest", "variableSetterType" : "GetRepositoryTriggersRequest" }, "marshaller" : { "action" : "GetRepositoryTriggers", "verb" : "POST", "target" : "CodeCommit_20150413.GetRepositoryTriggers", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "RepositoryName" : { "documentation" : "

The name of the repository for which the trigger is configured.

", "name" : "RepositoryName", "c2jName" : "repositoryName", "c2jShape" : "RepositoryName", "variable" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The name of the repository for which the trigger is configured.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "repositoryName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "repositoryName", "marshallLocationName" : "repositoryName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The name of the repository for which the trigger is configured.

\n@param repositoryName The name of the repository for which the trigger is configured.*/", "getterDocumentation" : "/**

The name of the repository for which the trigger is configured.

\n@return The name of the repository for which the trigger is configured.*/", "fluentSetterDocumentation" : "/**

The name of the repository for which the trigger is configured.

\n@param repositoryName The name of the repository for which the trigger is configured.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

The name of the repository for which the trigger is configured.

\n@param repositoryName The name of the repository for which the trigger is configured.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } } }, "customizationConfig" : { "requestMetrics" : null, "useAutoConstructList" : false, "useAutoConstructMap" : false, "serviceClientHoldInputStream" : false, "operationsWithResponseStreamContentLengthValidation" : null, "customExceptionUnmarshallerImpl" : null, "customClientConfigFactory" : null, "customResponseMetadataClassName" : null, "skipInterfaceAdditions" : false, "customServiceNameForRequest" : null, "requiredParamValidationEnabled" : false, "additionalShapeConstructors" : null, "simpleMethods" : null, "renameShapes" : null, "sendEmptyAutoConstructedListAsEmptyList" : null, "authPolicyActions" : { "skip" : true, "actionPrefix" : null, "fileNamePrefix" : null }, "customServiceMetadata" : null, "customCodeTemplates" : null, "operationModifiers" : null, "shapeSubstitutions" : null, "shapeModifiers" : null, "customErrorCodeFieldName" : null, "convenienceTypeOverloads" : [ ] }, "examples" : { "version" : "1.0", "operationExamples" : { } }, "clientConfigFactory" : "ClientConfigurationFactory" }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy