
models.codecommit-2015-04-13-intermediate.json Maven / Gradle / Ivy
Show all versions of aws-java-sdk-codecommit Show documentation
{
"metadata" : {
"apiVersion" : "2015-04-13",
"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,
"contentType" : null,
"jsonVersion" : "1.1",
"endpointPrefix" : "codecommit",
"signingName" : "codecommit",
"protocolDefaultExceptionUmarshallerImpl" : null,
"syncClientBuilderClassName" : "AWSCodeCommitClientBuilder",
"asyncClientBuilderClassName" : "AWSCodeCommitAsyncClientBuilder",
"cucumberModuleInjectorClassName" : "AWSCodeCommitModuleInjector",
"smokeTestsPackageName" : "com.amazonaws.services.codecommit.smoketests",
"serviceName" : "CodeCommit",
"cborProtocol" : false,
"xmlProtocol" : false,
"unmarshallerContextClassName" : "JsonUnmarshallerContext",
"unmarshallerClassSuffix" : "JsonUnmarshaller",
"jsonProtocol" : true
},
"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" : {
"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" : { }
},
"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" : { }
},
"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.
\nNOTE: 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.
\nNOTE: 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.*/"
}
}
},
"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" : { }
},
"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.*/"
}
}
},
"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" : {
"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.*/"
},
"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.*/"
}
}
},
"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" : { }
},
"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.*/"
}
}
},
"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" : {
"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*/"
},
"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*/"
}
}
},
"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.
\nNOTE: 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" : {
"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.
\nNOTE: 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.*/"
},
"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.*/"
}
}
},
"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" : { }
},
"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.*/"
}
}
},
"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" : { }
},
"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" : { }
},
"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" : {
"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.*/"
},
"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.*/"
}
}
},
"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" : { }
},
"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" : { }
},
"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.
\nNOTE: 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.
\nNOTE: 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" : {
"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.
\nNOTE: 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.*/"
},
"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.
\nNOTE: 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.*/"
}
}
},
"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.
\nNOTE: 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.
\nNOTE: 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.*/"
}
}
},
"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" : {
"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.*/"
},
"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.*/"
}
}
},
"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.*/"
}
}
},
"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.*/"
}
}
},
"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" : { }
},
"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" : {
"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.*/"
},
"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.*/"
}
}
},
"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" : { }
},
"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" : { }
},
"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" : { }
},
"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.
\nNOTE: 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.
\nNOTE: 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" : {
"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.
\nNOTE: 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*/"
},
"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.
\nNOTE: 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.*/"
},
"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.*/"
},
"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.*/"
},
"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.*/"
}
}
},
"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" : { }
},
"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" : { }
},
"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" : { }
},
"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.*/"
}
}
},
"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" : {
"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.*/"
},
"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.*/"
}
}
},
"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" : { }
},
"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" : { }
},
"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.*/"
}
}
},
"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" : { }
},
"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" : { }
},
"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" : { }
},
"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" : {
"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.*/"
},
"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.*/"
}
}
},
"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" : { }
},
"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.
\nNOTE: 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" : {
"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.
\nNOTE: 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.*/"
},
"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.*/"
}
}
},
"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" : { }
},
"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" : { }
},
"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" : { }
},
"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.*/"
}
}
},
"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" : { }
},
"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.
\nNOTE: 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" : "