
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",
"exceptionUnmarshallerImpl" : null,
"protocol" : "json",
"checksumFormat" : null,
"documentation" : "AWS CodeCommit This is the AWS CodeCommit API Reference. This reference provides descriptions of the operations and data types for AWS CodeCommit API.
You can use the AWS CodeCommit API to work with the following objects:
- Repositories, by calling the following:
- BatchGetRepositories, which returns information about one or more repositories associated with your AWS account
- CreateRepository, which creates an AWS CodeCommit repository
- DeleteRepository, which deletes an AWS CodeCommit repository
- GetRepository, which returns information about a specified repository
- ListRepositories, which lists all AWS CodeCommit repositories associated with your AWS account
- UpdateRepositoryDescription, which sets or updates the description of the repository
- UpdateRepositoryName, which changes the name of the repository. If you change the name of a repository, no other users of that repository will be able to access it until you send them the new HTTPS or SSH URL to use.
- Branches, by calling the following:
- CreateBranch, which creates a new branch in a specified repository
- GetBranch, which returns information about a specified branch
- ListBranches, which lists all branches for a specified repository
- UpdateDefaultBranch, which changes the default branch for a repository
- Information about committed code in a repository, by calling the following:
- GetCommit, which returns information about a commit, including commit messages and committer information.
- Triggers, by calling the following:
- GetRepositoryTriggers, which returns information about triggers configured for a repository
- PutRepositoryTriggers, which replaces all triggers for a repository and can be used to create or delete triggers
- TestRepositoryTriggers, which tests the functionality of a repository trigger by sending data to the trigger target
For information about how to use AWS CodeCommit, see the AWS CodeCommit User Guide.
",
"defaultEndpoint" : "https://codecommit.us-east-1.amazonaws.com",
"defaultEndpointWithoutHttpProtocol" : "codecommit.us-east-1.amazonaws.com",
"syncInterface" : "AWSCodeCommit",
"syncClient" : "AWSCodeCommitClient",
"asyncInterface" : "AWSCodeCommitAsync",
"asyncClient" : "AWSCodeCommitAsyncClient",
"packageName" : "com.amazonaws.services.codecommit",
"packagePath" : "com/amazonaws/services/codecommit",
"serviceAbbreviation" : "CodeCommit",
"serviceFullName" : "AWS CodeCommit",
"hasApiWithStreamInput" : false,
"jsonContentVersion" : "application/x-amz-json-1.1",
"jsonVersion" : "1.1",
"endpointPrefix" : "codecommit",
"signingName" : "codecommit",
"jsonProtocol" : true,
"serviceName" : "CodeCommit",
"cborProtocol" : false,
"xmlProtocol" : false,
"unmarshallerContextClassName" : "JsonUnmarshallerContext",
"unmarshallerClassSuffix" : "JsonUnmarshaller",
"protocolDefaultExceptionUnmarshallerType" : "JsonErrorUnmarshaller"
},
"operations" : {
"BatchGetRepositories" : {
"documentation" : "Returns information about one or more repositories.
The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.
",
"operationName" : "BatchGetRepositories",
"deprecated" : false,
"input" : {
"variableName" : "batchGetRepositoriesRequest",
"variableType" : "BatchGetRepositoriesRequest",
"variableDeclarationType" : "BatchGetRepositoriesRequest",
"documentation" : "Represents the input of a batch get repositories operation.
",
"simpleType" : "BatchGetRepositoriesRequest",
"variableSetterType" : "BatchGetRepositoriesRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "BatchGetRepositoriesResult",
"documentation" : "Represents the output of a batch get repositories operation.
"
},
"exceptions" : [ {
"exceptionName" : "RepositoryNamesRequiredException",
"documentation" : "A repository names object is required but was not specified.
"
}, {
"exceptionName" : "MaximumRepositoryNamesExceededException",
"documentation" : "The maximum number of allowed repository names was exceeded. Currently, this number is 25.
"
}, {
"exceptionName" : "InvalidRepositoryNameException",
"documentation" : "At least one specified repository name is not valid.
This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.
"
}, {
"exceptionName" : "EncryptionIntegrityChecksFailedException",
"documentation" : "An encryption integrity check failed.
"
}, {
"exceptionName" : "EncryptionKeyAccessDeniedException",
"documentation" : "An encryption key could not be accessed.
"
}, {
"exceptionName" : "EncryptionKeyDisabledException",
"documentation" : "The encryption key is disabled.
"
}, {
"exceptionName" : "EncryptionKeyNotFoundException",
"documentation" : "No encryption key was found.
"
}, {
"exceptionName" : "EncryptionKeyUnavailableException",
"documentation" : "The encryption key is not available.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "BatchGetRepositoriesResult",
"asyncReturnType" : "BatchGetRepositoriesResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "batchGetRepositories"
},
"CreateBranch" : {
"documentation" : "Creates a new branch in a repository and points the branch to a commit.
Calling the create branch operation does not set a repository's default branch. To do this, call the update default branch operation.
",
"operationName" : "CreateBranch",
"deprecated" : false,
"input" : {
"variableName" : "createBranchRequest",
"variableType" : "CreateBranchRequest",
"variableDeclarationType" : "CreateBranchRequest",
"documentation" : "Represents the input of a create branch operation.
",
"simpleType" : "CreateBranchRequest",
"variableSetterType" : "CreateBranchRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "CreateBranchResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "RepositoryNameRequiredException",
"documentation" : "A repository name is required but was not specified.
"
}, {
"exceptionName" : "InvalidRepositoryNameException",
"documentation" : "At least one specified repository name is not valid.
This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.
"
}, {
"exceptionName" : "RepositoryDoesNotExistException",
"documentation" : "The specified repository does not exist.
"
}, {
"exceptionName" : "BranchNameRequiredException",
"documentation" : "A branch name is required but was not specified.
"
}, {
"exceptionName" : "BranchNameExistsException",
"documentation" : "The specified branch name already exists.
"
}, {
"exceptionName" : "InvalidBranchNameException",
"documentation" : "The specified branch name is not valid.
"
}, {
"exceptionName" : "CommitIdRequiredException",
"documentation" : "A commit ID was not specified.
"
}, {
"exceptionName" : "CommitDoesNotExistException",
"documentation" : "The specified commit does not exist or no commit was specified, and the specified repository has no default branch.
"
}, {
"exceptionName" : "InvalidCommitIdException",
"documentation" : "The specified commit ID is not valid.
"
}, {
"exceptionName" : "EncryptionIntegrityChecksFailedException",
"documentation" : "An encryption integrity check failed.
"
}, {
"exceptionName" : "EncryptionKeyAccessDeniedException",
"documentation" : "An encryption key could not be accessed.
"
}, {
"exceptionName" : "EncryptionKeyDisabledException",
"documentation" : "The encryption key is disabled.
"
}, {
"exceptionName" : "EncryptionKeyNotFoundException",
"documentation" : "No encryption key was found.
"
}, {
"exceptionName" : "EncryptionKeyUnavailableException",
"documentation" : "The encryption key is not available.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "CreateBranchResult",
"asyncReturnType" : "CreateBranchResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "createBranch"
},
"CreateRepository" : {
"documentation" : "Creates a new, empty repository.
",
"operationName" : "CreateRepository",
"deprecated" : false,
"input" : {
"variableName" : "createRepositoryRequest",
"variableType" : "CreateRepositoryRequest",
"variableDeclarationType" : "CreateRepositoryRequest",
"documentation" : "Represents the input of a create repository operation.
",
"simpleType" : "CreateRepositoryRequest",
"variableSetterType" : "CreateRepositoryRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "CreateRepositoryResult",
"documentation" : "Represents the output of a create repository operation.
"
},
"exceptions" : [ {
"exceptionName" : "RepositoryNameExistsException",
"documentation" : "The specified repository name already exists.
"
}, {
"exceptionName" : "RepositoryNameRequiredException",
"documentation" : "A repository name is required but was not specified.
"
}, {
"exceptionName" : "InvalidRepositoryNameException",
"documentation" : "At least one specified repository name is not valid.
This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.
"
}, {
"exceptionName" : "InvalidRepositoryDescriptionException",
"documentation" : "The specified repository description is not valid.
"
}, {
"exceptionName" : "RepositoryLimitExceededException",
"documentation" : "A repository resource limit was exceeded.
"
}, {
"exceptionName" : "EncryptionIntegrityChecksFailedException",
"documentation" : "An encryption integrity check failed.
"
}, {
"exceptionName" : "EncryptionKeyAccessDeniedException",
"documentation" : "An encryption key could not be accessed.
"
}, {
"exceptionName" : "EncryptionKeyDisabledException",
"documentation" : "The encryption key is disabled.
"
}, {
"exceptionName" : "EncryptionKeyNotFoundException",
"documentation" : "No encryption key was found.
"
}, {
"exceptionName" : "EncryptionKeyUnavailableException",
"documentation" : "The encryption key is not available.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "CreateRepositoryResult",
"asyncReturnType" : "CreateRepositoryResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "createRepository"
},
"DeleteRepository" : {
"documentation" : "Deletes a repository. If a specified repository was already deleted, a null repository ID will be returned.
Deleting a repository also deletes all associated objects and metadata. After a repository is deleted, all future push calls to the deleted repository will fail. ",
"operationName" : "DeleteRepository",
"deprecated" : false,
"input" : {
"variableName" : "deleteRepositoryRequest",
"variableType" : "DeleteRepositoryRequest",
"variableDeclarationType" : "DeleteRepositoryRequest",
"documentation" : "Represents the input of a delete repository operation.
",
"simpleType" : "DeleteRepositoryRequest",
"variableSetterType" : "DeleteRepositoryRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DeleteRepositoryResult",
"documentation" : "Represents the output of a delete repository operation.
"
},
"exceptions" : [ {
"exceptionName" : "RepositoryNameRequiredException",
"documentation" : "A repository name is required but was not specified.
"
}, {
"exceptionName" : "InvalidRepositoryNameException",
"documentation" : "At least one specified repository name is not valid.
This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.
"
}, {
"exceptionName" : "EncryptionIntegrityChecksFailedException",
"documentation" : "An encryption integrity check failed.
"
}, {
"exceptionName" : "EncryptionKeyAccessDeniedException",
"documentation" : "An encryption key could not be accessed.
"
}, {
"exceptionName" : "EncryptionKeyDisabledException",
"documentation" : "The encryption key is disabled.
"
}, {
"exceptionName" : "EncryptionKeyNotFoundException",
"documentation" : "No encryption key was found.
"
}, {
"exceptionName" : "EncryptionKeyUnavailableException",
"documentation" : "The encryption key is not available.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "DeleteRepositoryResult",
"asyncReturnType" : "DeleteRepositoryResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "deleteRepository"
},
"GetBranch" : {
"documentation" : "Returns information about a repository branch, including its name and the last commit ID.
",
"operationName" : "GetBranch",
"deprecated" : false,
"input" : {
"variableName" : "getBranchRequest",
"variableType" : "GetBranchRequest",
"variableDeclarationType" : "GetBranchRequest",
"documentation" : "Represents the input of a get branch operation.
",
"simpleType" : "GetBranchRequest",
"variableSetterType" : "GetBranchRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetBranchResult",
"documentation" : "Represents the output of a get branch operation.
"
},
"exceptions" : [ {
"exceptionName" : "RepositoryNameRequiredException",
"documentation" : "A repository name is required but was not specified.
"
}, {
"exceptionName" : "RepositoryDoesNotExistException",
"documentation" : "The specified repository does not exist.
"
}, {
"exceptionName" : "InvalidRepositoryNameException",
"documentation" : "At least one specified repository name is not valid.
This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.
"
}, {
"exceptionName" : "BranchNameRequiredException",
"documentation" : "A branch name is required but was not specified.
"
}, {
"exceptionName" : "InvalidBranchNameException",
"documentation" : "The specified branch name is not valid.
"
}, {
"exceptionName" : "BranchDoesNotExistException",
"documentation" : "The specified branch does not exist.
"
}, {
"exceptionName" : "EncryptionIntegrityChecksFailedException",
"documentation" : "An encryption integrity check failed.
"
}, {
"exceptionName" : "EncryptionKeyAccessDeniedException",
"documentation" : "An encryption key could not be accessed.
"
}, {
"exceptionName" : "EncryptionKeyDisabledException",
"documentation" : "The encryption key is disabled.
"
}, {
"exceptionName" : "EncryptionKeyNotFoundException",
"documentation" : "No encryption key was found.
"
}, {
"exceptionName" : "EncryptionKeyUnavailableException",
"documentation" : "The encryption key is not available.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "GetBranchResult",
"asyncReturnType" : "GetBranchResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "getBranch"
},
"GetCommit" : {
"documentation" : "Returns information about a commit, including commit message and committer information.
",
"operationName" : "GetCommit",
"deprecated" : false,
"input" : {
"variableName" : "getCommitRequest",
"variableType" : "GetCommitRequest",
"variableDeclarationType" : "GetCommitRequest",
"documentation" : "Represents the input of a get commit operation.
",
"simpleType" : "GetCommitRequest",
"variableSetterType" : "GetCommitRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetCommitResult",
"documentation" : "Represents the output of a get commit operation.
"
},
"exceptions" : [ {
"exceptionName" : "RepositoryNameRequiredException",
"documentation" : "A repository name is required but was not specified.
"
}, {
"exceptionName" : "InvalidRepositoryNameException",
"documentation" : "At least one specified repository name is not valid.
This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.
"
}, {
"exceptionName" : "RepositoryDoesNotExistException",
"documentation" : "The specified repository does not exist.
"
}, {
"exceptionName" : "CommitIdRequiredException",
"documentation" : "A commit ID was not specified.
"
}, {
"exceptionName" : "InvalidCommitIdException",
"documentation" : "The specified commit ID is not valid.
"
}, {
"exceptionName" : "CommitIdDoesNotExistException",
"documentation" : "The specified commit ID does not exist.
"
}, {
"exceptionName" : "EncryptionIntegrityChecksFailedException",
"documentation" : "An encryption integrity check failed.
"
}, {
"exceptionName" : "EncryptionKeyAccessDeniedException",
"documentation" : "An encryption key could not be accessed.
"
}, {
"exceptionName" : "EncryptionKeyDisabledException",
"documentation" : "The encryption key is disabled.
"
}, {
"exceptionName" : "EncryptionKeyNotFoundException",
"documentation" : "No encryption key was found.
"
}, {
"exceptionName" : "EncryptionKeyUnavailableException",
"documentation" : "The encryption key is not available.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "GetCommitResult",
"asyncReturnType" : "GetCommitResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "getCommit"
},
"GetRepository" : {
"documentation" : "Returns information about a repository.
The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.
",
"operationName" : "GetRepository",
"deprecated" : false,
"input" : {
"variableName" : "getRepositoryRequest",
"variableType" : "GetRepositoryRequest",
"variableDeclarationType" : "GetRepositoryRequest",
"documentation" : "Represents the input of a get repository operation.
",
"simpleType" : "GetRepositoryRequest",
"variableSetterType" : "GetRepositoryRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetRepositoryResult",
"documentation" : "Represents the output of a get repository operation.
"
},
"exceptions" : [ {
"exceptionName" : "RepositoryNameRequiredException",
"documentation" : "A repository name is required but was not specified.
"
}, {
"exceptionName" : "RepositoryDoesNotExistException",
"documentation" : "The specified repository does not exist.
"
}, {
"exceptionName" : "InvalidRepositoryNameException",
"documentation" : "At least one specified repository name is not valid.
This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.
"
}, {
"exceptionName" : "EncryptionIntegrityChecksFailedException",
"documentation" : "An encryption integrity check failed.
"
}, {
"exceptionName" : "EncryptionKeyAccessDeniedException",
"documentation" : "An encryption key could not be accessed.
"
}, {
"exceptionName" : "EncryptionKeyDisabledException",
"documentation" : "The encryption key is disabled.
"
}, {
"exceptionName" : "EncryptionKeyNotFoundException",
"documentation" : "No encryption key was found.
"
}, {
"exceptionName" : "EncryptionKeyUnavailableException",
"documentation" : "The encryption key is not available.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "GetRepositoryResult",
"asyncReturnType" : "GetRepositoryResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "getRepository"
},
"GetRepositoryTriggers" : {
"documentation" : "Gets information about triggers configured for a repository.
",
"operationName" : "GetRepositoryTriggers",
"deprecated" : false,
"input" : {
"variableName" : "getRepositoryTriggersRequest",
"variableType" : "GetRepositoryTriggersRequest",
"variableDeclarationType" : "GetRepositoryTriggersRequest",
"documentation" : "Represents the input of a get repository triggers operation.
",
"simpleType" : "GetRepositoryTriggersRequest",
"variableSetterType" : "GetRepositoryTriggersRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetRepositoryTriggersResult",
"documentation" : "Represents the output of a get repository triggers operation.
"
},
"exceptions" : [ {
"exceptionName" : "RepositoryNameRequiredException",
"documentation" : "A repository name is required but was not specified.
"
}, {
"exceptionName" : "InvalidRepositoryNameException",
"documentation" : "At least one specified repository name is not valid.
This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.
"
}, {
"exceptionName" : "RepositoryDoesNotExistException",
"documentation" : "The specified repository does not exist.
"
}, {
"exceptionName" : "EncryptionIntegrityChecksFailedException",
"documentation" : "An encryption integrity check failed.
"
}, {
"exceptionName" : "EncryptionKeyAccessDeniedException",
"documentation" : "An encryption key could not be accessed.
"
}, {
"exceptionName" : "EncryptionKeyDisabledException",
"documentation" : "The encryption key is disabled.
"
}, {
"exceptionName" : "EncryptionKeyNotFoundException",
"documentation" : "No encryption key was found.
"
}, {
"exceptionName" : "EncryptionKeyUnavailableException",
"documentation" : "The encryption key is not available.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "GetRepositoryTriggersResult",
"asyncReturnType" : "GetRepositoryTriggersResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "getRepositoryTriggers"
},
"ListBranches" : {
"documentation" : "Gets information about one or more branches in a repository.
",
"operationName" : "ListBranches",
"deprecated" : false,
"input" : {
"variableName" : "listBranchesRequest",
"variableType" : "ListBranchesRequest",
"variableDeclarationType" : "ListBranchesRequest",
"documentation" : "Represents the input of a list branches operation.
",
"simpleType" : "ListBranchesRequest",
"variableSetterType" : "ListBranchesRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ListBranchesResult",
"documentation" : "Represents the output of a list branches operation.
"
},
"exceptions" : [ {
"exceptionName" : "RepositoryNameRequiredException",
"documentation" : "A repository name is required but was not specified.
"
}, {
"exceptionName" : "RepositoryDoesNotExistException",
"documentation" : "The specified repository does not exist.
"
}, {
"exceptionName" : "InvalidRepositoryNameException",
"documentation" : "At least one specified repository name is not valid.
This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.
"
}, {
"exceptionName" : "EncryptionIntegrityChecksFailedException",
"documentation" : "An encryption integrity check failed.
"
}, {
"exceptionName" : "EncryptionKeyAccessDeniedException",
"documentation" : "An encryption key could not be accessed.
"
}, {
"exceptionName" : "EncryptionKeyDisabledException",
"documentation" : "The encryption key is disabled.
"
}, {
"exceptionName" : "EncryptionKeyNotFoundException",
"documentation" : "No encryption key was found.
"
}, {
"exceptionName" : "EncryptionKeyUnavailableException",
"documentation" : "The encryption key is not available.
"
}, {
"exceptionName" : "InvalidContinuationTokenException",
"documentation" : "The specified continuation token is not valid.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "ListBranchesResult",
"asyncReturnType" : "ListBranchesResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "listBranches"
},
"ListRepositories" : {
"documentation" : "Gets information about one or more repositories.
",
"operationName" : "ListRepositories",
"deprecated" : false,
"input" : {
"variableName" : "listRepositoriesRequest",
"variableType" : "ListRepositoriesRequest",
"variableDeclarationType" : "ListRepositoriesRequest",
"documentation" : "Represents the input of a list repositories operation.
",
"simpleType" : "ListRepositoriesRequest",
"variableSetterType" : "ListRepositoriesRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ListRepositoriesResult",
"documentation" : "Represents the output of a list repositories operation.
"
},
"exceptions" : [ {
"exceptionName" : "InvalidSortByException",
"documentation" : "The specified sort by value is not valid.
"
}, {
"exceptionName" : "InvalidOrderException",
"documentation" : "The specified sort order is not valid.
"
}, {
"exceptionName" : "InvalidContinuationTokenException",
"documentation" : "The specified continuation token is not valid.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "ListRepositoriesResult",
"asyncReturnType" : "ListRepositoriesResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "listRepositories"
},
"PutRepositoryTriggers" : {
"documentation" : "Replaces all triggers for a repository. This can be used to create or delete triggers.
",
"operationName" : "PutRepositoryTriggers",
"deprecated" : false,
"input" : {
"variableName" : "putRepositoryTriggersRequest",
"variableType" : "PutRepositoryTriggersRequest",
"variableDeclarationType" : "PutRepositoryTriggersRequest",
"documentation" : "Represents the input ofa put repository triggers operation.
",
"simpleType" : "PutRepositoryTriggersRequest",
"variableSetterType" : "PutRepositoryTriggersRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "PutRepositoryTriggersResult",
"documentation" : "Represents the output of a put repository triggers operation.
"
},
"exceptions" : [ {
"exceptionName" : "RepositoryDoesNotExistException",
"documentation" : "The specified repository does not exist.
"
}, {
"exceptionName" : "RepositoryNameRequiredException",
"documentation" : "A repository name is required but was not specified.
"
}, {
"exceptionName" : "InvalidRepositoryNameException",
"documentation" : "At least one specified repository name is not valid.
This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.
"
}, {
"exceptionName" : "RepositoryTriggersListRequiredException",
"documentation" : "The list of triggers for the repository is required but was not specified.
"
}, {
"exceptionName" : "MaximumRepositoryTriggersExceededException",
"documentation" : "The number of triggers allowed for the repository was exceeded.
"
}, {
"exceptionName" : "InvalidRepositoryTriggerNameException",
"documentation" : "The name of the trigger is not valid.
"
}, {
"exceptionName" : "InvalidRepositoryTriggerDestinationArnException",
"documentation" : "The Amazon Resource Name (ARN) for the trigger is not valid for the specified destination. The most common reason for this error is that the ARN does not meet the requirements for the service type.
"
}, {
"exceptionName" : "InvalidRepositoryTriggerRegionException",
"documentation" : "The region for the trigger target does not match the region for the repository. Triggers must be created in the same region as the target for the trigger.
"
}, {
"exceptionName" : "InvalidRepositoryTriggerCustomDataException",
"documentation" : "The custom data provided for the trigger is not valid.
"
}, {
"exceptionName" : "MaximumBranchesExceededException",
"documentation" : "The number of branches for the trigger was exceeded.
"
}, {
"exceptionName" : "InvalidRepositoryTriggerBranchNameException",
"documentation" : "One or more branch names specified for the trigger is not valid.
"
}, {
"exceptionName" : "InvalidRepositoryTriggerEventsException",
"documentation" : "One or more events specified for the trigger is not valid. Check to make sure that all events specified match the requirements for allowed events.
"
}, {
"exceptionName" : "RepositoryTriggerNameRequiredException",
"documentation" : "A name for the trigger is required but was not specified.
"
}, {
"exceptionName" : "RepositoryTriggerDestinationArnRequiredException",
"documentation" : "A destination ARN for the target service for the trigger is required but was not specified.
"
}, {
"exceptionName" : "RepositoryTriggerBranchNameListRequiredException",
"documentation" : "At least one branch name is required but was not specified in the trigger configuration.
"
}, {
"exceptionName" : "RepositoryTriggerEventsListRequiredException",
"documentation" : "At least one event for the trigger is required but was not specified.
"
}, {
"exceptionName" : "EncryptionIntegrityChecksFailedException",
"documentation" : "An encryption integrity check failed.
"
}, {
"exceptionName" : "EncryptionKeyAccessDeniedException",
"documentation" : "An encryption key could not be accessed.
"
}, {
"exceptionName" : "EncryptionKeyDisabledException",
"documentation" : "The encryption key is disabled.
"
}, {
"exceptionName" : "EncryptionKeyNotFoundException",
"documentation" : "No encryption key was found.
"
}, {
"exceptionName" : "EncryptionKeyUnavailableException",
"documentation" : "The encryption key is not available.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "PutRepositoryTriggersResult",
"asyncReturnType" : "PutRepositoryTriggersResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "putRepositoryTriggers"
},
"TestRepositoryTriggers" : {
"documentation" : "Tests the functionality of repository triggers by sending information to the trigger target. If real data is available in the repository, the test will send data from the last commit. If no data is available, sample data will be generated.
",
"operationName" : "TestRepositoryTriggers",
"deprecated" : false,
"input" : {
"variableName" : "testRepositoryTriggersRequest",
"variableType" : "TestRepositoryTriggersRequest",
"variableDeclarationType" : "TestRepositoryTriggersRequest",
"documentation" : "Represents the input of a test repository triggers operation.
",
"simpleType" : "TestRepositoryTriggersRequest",
"variableSetterType" : "TestRepositoryTriggersRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "TestRepositoryTriggersResult",
"documentation" : "Represents the output of a test repository triggers operation.
"
},
"exceptions" : [ {
"exceptionName" : "RepositoryDoesNotExistException",
"documentation" : "The specified repository does not exist.
"
}, {
"exceptionName" : "RepositoryNameRequiredException",
"documentation" : "A repository name is required but was not specified.
"
}, {
"exceptionName" : "InvalidRepositoryNameException",
"documentation" : "At least one specified repository name is not valid.
This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.
"
}, {
"exceptionName" : "RepositoryTriggersListRequiredException",
"documentation" : "The list of triggers for the repository is required but was not specified.
"
}, {
"exceptionName" : "MaximumRepositoryTriggersExceededException",
"documentation" : "The number of triggers allowed for the repository was exceeded.
"
}, {
"exceptionName" : "InvalidRepositoryTriggerNameException",
"documentation" : "The name of the trigger is not valid.
"
}, {
"exceptionName" : "InvalidRepositoryTriggerDestinationArnException",
"documentation" : "The Amazon Resource Name (ARN) for the trigger is not valid for the specified destination. The most common reason for this error is that the ARN does not meet the requirements for the service type.
"
}, {
"exceptionName" : "InvalidRepositoryTriggerRegionException",
"documentation" : "The region for the trigger target does not match the region for the repository. Triggers must be created in the same region as the target for the trigger.
"
}, {
"exceptionName" : "InvalidRepositoryTriggerCustomDataException",
"documentation" : "The custom data provided for the trigger is not valid.
"
}, {
"exceptionName" : "MaximumBranchesExceededException",
"documentation" : "The number of branches for the trigger was exceeded.
"
}, {
"exceptionName" : "InvalidRepositoryTriggerBranchNameException",
"documentation" : "One or more branch names specified for the trigger is not valid.
"
}, {
"exceptionName" : "InvalidRepositoryTriggerEventsException",
"documentation" : "One or more events specified for the trigger is not valid. Check to make sure that all events specified match the requirements for allowed events.
"
}, {
"exceptionName" : "RepositoryTriggerNameRequiredException",
"documentation" : "A name for the trigger is required but was not specified.
"
}, {
"exceptionName" : "RepositoryTriggerDestinationArnRequiredException",
"documentation" : "A destination ARN for the target service for the trigger is required but was not specified.
"
}, {
"exceptionName" : "RepositoryTriggerBranchNameListRequiredException",
"documentation" : "At least one branch name is required but was not specified in the trigger configuration.
"
}, {
"exceptionName" : "RepositoryTriggerEventsListRequiredException",
"documentation" : "At least one event for the trigger is required but was not specified.
"
}, {
"exceptionName" : "EncryptionIntegrityChecksFailedException",
"documentation" : "An encryption integrity check failed.
"
}, {
"exceptionName" : "EncryptionKeyAccessDeniedException",
"documentation" : "An encryption key could not be accessed.
"
}, {
"exceptionName" : "EncryptionKeyDisabledException",
"documentation" : "The encryption key is disabled.
"
}, {
"exceptionName" : "EncryptionKeyNotFoundException",
"documentation" : "No encryption key was found.
"
}, {
"exceptionName" : "EncryptionKeyUnavailableException",
"documentation" : "The encryption key is not available.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "TestRepositoryTriggersResult",
"asyncReturnType" : "TestRepositoryTriggersResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "testRepositoryTriggers"
},
"UpdateDefaultBranch" : {
"documentation" : "Sets or changes the default branch name for the specified repository.
If you use this operation to change the default branch name to the current default branch name, a success message is returned even though the default branch did not change.
",
"operationName" : "UpdateDefaultBranch",
"deprecated" : false,
"input" : {
"variableName" : "updateDefaultBranchRequest",
"variableType" : "UpdateDefaultBranchRequest",
"variableDeclarationType" : "UpdateDefaultBranchRequest",
"documentation" : "Represents the input of an update default branch operation.
",
"simpleType" : "UpdateDefaultBranchRequest",
"variableSetterType" : "UpdateDefaultBranchRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "UpdateDefaultBranchResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "RepositoryNameRequiredException",
"documentation" : "A repository name is required but was not specified.
"
}, {
"exceptionName" : "RepositoryDoesNotExistException",
"documentation" : "The specified repository does not exist.
"
}, {
"exceptionName" : "InvalidRepositoryNameException",
"documentation" : "At least one specified repository name is not valid.
This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.
"
}, {
"exceptionName" : "BranchNameRequiredException",
"documentation" : "A branch name is required but was not specified.
"
}, {
"exceptionName" : "InvalidBranchNameException",
"documentation" : "The specified branch name is not valid.
"
}, {
"exceptionName" : "BranchDoesNotExistException",
"documentation" : "The specified branch does not exist.
"
}, {
"exceptionName" : "EncryptionIntegrityChecksFailedException",
"documentation" : "An encryption integrity check failed.
"
}, {
"exceptionName" : "EncryptionKeyAccessDeniedException",
"documentation" : "An encryption key could not be accessed.
"
}, {
"exceptionName" : "EncryptionKeyDisabledException",
"documentation" : "The encryption key is disabled.
"
}, {
"exceptionName" : "EncryptionKeyNotFoundException",
"documentation" : "No encryption key was found.
"
}, {
"exceptionName" : "EncryptionKeyUnavailableException",
"documentation" : "The encryption key is not available.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "UpdateDefaultBranchResult",
"asyncReturnType" : "UpdateDefaultBranchResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "updateDefaultBranch"
},
"UpdateRepositoryDescription" : {
"documentation" : "Sets or changes the comment or description for a repository.
The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.
",
"operationName" : "UpdateRepositoryDescription",
"deprecated" : false,
"input" : {
"variableName" : "updateRepositoryDescriptionRequest",
"variableType" : "UpdateRepositoryDescriptionRequest",
"variableDeclarationType" : "UpdateRepositoryDescriptionRequest",
"documentation" : "Represents the input of an update repository description operation.
",
"simpleType" : "UpdateRepositoryDescriptionRequest",
"variableSetterType" : "UpdateRepositoryDescriptionRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "UpdateRepositoryDescriptionResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "RepositoryNameRequiredException",
"documentation" : "A repository name is required but was not specified.
"
}, {
"exceptionName" : "RepositoryDoesNotExistException",
"documentation" : "The specified repository does not exist.
"
}, {
"exceptionName" : "InvalidRepositoryNameException",
"documentation" : "At least one specified repository name is not valid.
This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.
"
}, {
"exceptionName" : "InvalidRepositoryDescriptionException",
"documentation" : "The specified repository description is not valid.
"
}, {
"exceptionName" : "EncryptionIntegrityChecksFailedException",
"documentation" : "An encryption integrity check failed.
"
}, {
"exceptionName" : "EncryptionKeyAccessDeniedException",
"documentation" : "An encryption key could not be accessed.
"
}, {
"exceptionName" : "EncryptionKeyDisabledException",
"documentation" : "The encryption key is disabled.
"
}, {
"exceptionName" : "EncryptionKeyNotFoundException",
"documentation" : "No encryption key was found.
"
}, {
"exceptionName" : "EncryptionKeyUnavailableException",
"documentation" : "The encryption key is not available.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "UpdateRepositoryDescriptionResult",
"asyncReturnType" : "UpdateRepositoryDescriptionResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "updateRepositoryDescription"
},
"UpdateRepositoryName" : {
"documentation" : "Renames a repository. The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. The suffix \".git\" is prohibited. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide.
",
"operationName" : "UpdateRepositoryName",
"deprecated" : false,
"input" : {
"variableName" : "updateRepositoryNameRequest",
"variableType" : "UpdateRepositoryNameRequest",
"variableDeclarationType" : "UpdateRepositoryNameRequest",
"documentation" : "Represents the input of an update repository description operation.
",
"simpleType" : "UpdateRepositoryNameRequest",
"variableSetterType" : "UpdateRepositoryNameRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "UpdateRepositoryNameResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "RepositoryDoesNotExistException",
"documentation" : "The specified repository does not exist.
"
}, {
"exceptionName" : "RepositoryNameExistsException",
"documentation" : "The specified repository name already exists.
"
}, {
"exceptionName" : "RepositoryNameRequiredException",
"documentation" : "A repository name is required but was not specified.
"
}, {
"exceptionName" : "InvalidRepositoryNameException",
"documentation" : "At least one specified repository name is not valid.
This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "UpdateRepositoryNameResult",
"asyncReturnType" : "UpdateRepositoryNameResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "updateRepositoryName"
}
},
"shapes" : {
"GetRepositoryTriggersResult" : {
"c2jName" : "GetRepositoryTriggersOutput",
"documentation" : "Represents the output of a get repository triggers operation.
",
"shapeName" : "GetRepositoryTriggersResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The system-generated unique ID for the trigger.
",
"name" : "ConfigurationId",
"c2jName" : "configurationId",
"c2jShape" : "RepositoryTriggersConfigurationId",
"variable" : {
"variableName" : "configurationId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The system-generated unique ID for the trigger.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "configurationId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "configurationId",
"marshallLocationName" : "configurationId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The system-generated unique ID for the trigger.
\n@param configurationId The system-generated unique ID for the trigger.*/",
"getterDocumentation" : "/**The system-generated unique ID for the trigger.
\n@return The system-generated unique ID for the trigger.*/",
"fluentSetterDocumentation" : "/**The system-generated unique ID for the trigger.
\n@param configurationId The system-generated unique ID for the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The system-generated unique ID for the trigger.
\n@param configurationId The system-generated unique ID for the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The JSON block of configuration information for each trigger.
",
"name" : "Triggers",
"c2jName" : "triggers",
"c2jShape" : "RepositoryTriggersList",
"variable" : {
"variableName" : "triggers",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "The JSON block of configuration information for each trigger.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "triggers",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "triggers",
"marshallLocationName" : "triggers",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "RepositoryTrigger",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "RepositoryTrigger",
"variable" : {
"variableName" : "member",
"variableType" : "RepositoryTrigger",
"variableDeclarationType" : "RepositoryTrigger",
"documentation" : "",
"simpleType" : "RepositoryTrigger",
"variableSetterType" : "RepositoryTrigger"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "RepositoryTrigger",
"variableDeclarationType" : "RepositoryTrigger",
"documentation" : "",
"simpleType" : "RepositoryTrigger",
"variableSetterType" : "RepositoryTrigger"
},
"getterModel" : {
"returnType" : "RepositoryTrigger",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "RepositoryTrigger",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The JSON block of configuration information for each trigger.
\n@param triggers The JSON block of configuration information for each trigger.*/",
"getterDocumentation" : "/**The JSON block of configuration information for each trigger.
\n@return The JSON block of configuration information for each trigger.*/",
"fluentSetterDocumentation" : "/**The JSON block of configuration information for each trigger.
\n@param triggers The JSON block of configuration information for each trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The JSON block of configuration information for each trigger.
\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" : {
"ConfigurationId" : {
"documentation" : "The system-generated unique ID for the trigger.
",
"name" : "ConfigurationId",
"c2jName" : "configurationId",
"c2jShape" : "RepositoryTriggersConfigurationId",
"variable" : {
"variableName" : "configurationId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The system-generated unique ID for the trigger.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "configurationId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "configurationId",
"marshallLocationName" : "configurationId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The system-generated unique ID for the trigger.
\n@param configurationId The system-generated unique ID for the trigger.*/",
"getterDocumentation" : "/**The system-generated unique ID for the trigger.
\n@return The system-generated unique ID for the trigger.*/",
"fluentSetterDocumentation" : "/**The system-generated unique ID for the trigger.
\n@param configurationId The system-generated unique ID for the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The system-generated unique ID for the trigger.
\n@param configurationId The system-generated unique ID for the trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Triggers" : {
"documentation" : "The JSON block of configuration information for each trigger.
",
"name" : "Triggers",
"c2jName" : "triggers",
"c2jShape" : "RepositoryTriggersList",
"variable" : {
"variableName" : "triggers",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "The JSON block of configuration information for each trigger.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "triggers",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "triggers",
"marshallLocationName" : "triggers",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "RepositoryTrigger",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "RepositoryTrigger",
"variable" : {
"variableName" : "member",
"variableType" : "RepositoryTrigger",
"variableDeclarationType" : "RepositoryTrigger",
"documentation" : "",
"simpleType" : "RepositoryTrigger",
"variableSetterType" : "RepositoryTrigger"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "RepositoryTrigger",
"variableDeclarationType" : "RepositoryTrigger",
"documentation" : "",
"simpleType" : "RepositoryTrigger",
"variableSetterType" : "RepositoryTrigger"
},
"getterModel" : {
"returnType" : "RepositoryTrigger",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "RepositoryTrigger",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The JSON block of configuration information for each trigger.
\n@param triggers The JSON block of configuration information for each trigger.*/",
"getterDocumentation" : "/**The JSON block of configuration information for each trigger.
\n@return The JSON block of configuration information for each trigger.*/",
"fluentSetterDocumentation" : "/**The JSON block of configuration information for each trigger.
\n@param triggers The JSON block of configuration information for each trigger.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The JSON block of configuration information for each trigger.
\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.*/"
}
}
},
"RepositoryMetadata" : {
"c2jName" : "RepositoryMetadata",
"documentation" : "Information about a repository.
",
"shapeName" : "RepositoryMetadata",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The ID of the AWS account associated with the repository.
",
"name" : "AccountId",
"c2jName" : "accountId",
"c2jShape" : "AccountId",
"variable" : {
"variableName" : "accountId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ID of the AWS account associated with the repository.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "accountId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "accountId",
"marshallLocationName" : "accountId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the AWS account associated with the repository.
\n@param accountId The ID of the AWS account associated with the repository.*/",
"getterDocumentation" : "/**The ID of the AWS account associated with the repository.
\n@return The ID of the AWS account associated with the repository.*/",
"fluentSetterDocumentation" : "/**The ID of the AWS account associated with the repository.
\n@param accountId The ID of the AWS account associated with the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the AWS account associated with the repository.
\n@param accountId The ID of the AWS account associated with the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The ID of the repository.
",
"name" : "RepositoryId",
"c2jName" : "repositoryId",
"c2jShape" : "RepositoryId",
"variable" : {
"variableName" : "repositoryId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ID of the repository.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "repositoryId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositoryId",
"marshallLocationName" : "repositoryId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the repository.
\n@param repositoryId The ID of the repository.*/",
"getterDocumentation" : "/**The ID of the repository.
\n@return The ID of the repository.*/",
"fluentSetterDocumentation" : "/**The ID of the repository.
\n@param repositoryId The ID of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the repository.
\n@param repositoryId The ID of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The repository's name.
",
"name" : "RepositoryName",
"c2jName" : "repositoryName",
"c2jShape" : "RepositoryName",
"variable" : {
"variableName" : "repositoryName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The repository's name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "repositoryName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositoryName",
"marshallLocationName" : "repositoryName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The repository's name.
\n@param repositoryName The repository's name.*/",
"getterDocumentation" : "/**The repository's name.
\n@return The repository's name.*/",
"fluentSetterDocumentation" : "/**The repository's name.
\n@param repositoryName The repository's name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The repository's name.
\n@param repositoryName The repository's name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A comment or description about the repository.
",
"name" : "RepositoryDescription",
"c2jName" : "repositoryDescription",
"c2jShape" : "RepositoryDescription",
"variable" : {
"variableName" : "repositoryDescription",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A comment or description about the repository.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "repositoryDescription",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositoryDescription",
"marshallLocationName" : "repositoryDescription",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A comment or description about the repository.
\n@param repositoryDescription A comment or description about the repository.*/",
"getterDocumentation" : "/**A comment or description about the repository.
\n@return A comment or description about the repository.*/",
"fluentSetterDocumentation" : "/**A comment or description about the repository.
\n@param repositoryDescription A comment or description about the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A comment or description about the repository.
\n@param repositoryDescription A comment or description about the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The repository's default branch name.
",
"name" : "DefaultBranch",
"c2jName" : "defaultBranch",
"c2jShape" : "BranchName",
"variable" : {
"variableName" : "defaultBranch",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The repository's default branch name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "defaultBranch",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "defaultBranch",
"marshallLocationName" : "defaultBranch",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The repository's default branch name.
\n@param defaultBranch The repository's default branch name.*/",
"getterDocumentation" : "/**The repository's default branch name.
\n@return The repository's default branch name.*/",
"fluentSetterDocumentation" : "/**The repository's default branch name.
\n@param defaultBranch The repository's default branch name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The repository's default branch name.
\n@param defaultBranch The repository's default branch name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The date and time the repository was last modified, in timestamp format.
",
"name" : "LastModifiedDate",
"c2jName" : "lastModifiedDate",
"c2jShape" : "LastModifiedDate",
"variable" : {
"variableName" : "lastModifiedDate",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The date and time the repository was last modified, in timestamp format.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "lastModifiedDate",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "lastModifiedDate",
"marshallLocationName" : "lastModifiedDate",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The date and time the repository was last modified, in timestamp format.
\n@param lastModifiedDate The date and time the repository was last modified, in timestamp format.*/",
"getterDocumentation" : "/**The date and time the repository was last modified, in timestamp format.
\n@return The date and time the repository was last modified, in timestamp format.*/",
"fluentSetterDocumentation" : "/**The date and time the repository was last modified, in timestamp format.
\n@param lastModifiedDate The date and time the repository was last modified, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The date and time the repository was last modified, in timestamp format.
\n@param lastModifiedDate The date and time the repository was last modified, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The date and time the repository was created, in timestamp format.
",
"name" : "CreationDate",
"c2jName" : "creationDate",
"c2jShape" : "CreationDate",
"variable" : {
"variableName" : "creationDate",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The date and time the repository was created, in timestamp format.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "creationDate",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "creationDate",
"marshallLocationName" : "creationDate",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The date and time the repository was created, in timestamp format.
\n@param creationDate The date and time the repository was created, in timestamp format.*/",
"getterDocumentation" : "/**The date and time the repository was created, in timestamp format.
\n@return The date and time the repository was created, in timestamp format.*/",
"fluentSetterDocumentation" : "/**The date and time the repository was created, in timestamp format.
\n@param creationDate The date and time the repository was created, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The date and time the repository was created, in timestamp format.
\n@param creationDate The date and time the repository was created, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The URL to use for cloning the repository over HTTPS.
",
"name" : "CloneUrlHttp",
"c2jName" : "cloneUrlHttp",
"c2jShape" : "CloneUrlHttp",
"variable" : {
"variableName" : "cloneUrlHttp",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The URL to use for cloning the repository over HTTPS.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "cloneUrlHttp",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "cloneUrlHttp",
"marshallLocationName" : "cloneUrlHttp",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The URL to use for cloning the repository over HTTPS.
\n@param cloneUrlHttp The URL to use for cloning the repository over HTTPS.*/",
"getterDocumentation" : "/**The URL to use for cloning the repository over HTTPS.
\n@return The URL to use for cloning the repository over HTTPS.*/",
"fluentSetterDocumentation" : "/**The URL to use for cloning the repository over HTTPS.
\n@param cloneUrlHttp The URL to use for cloning the repository over HTTPS.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The URL to use for cloning the repository over HTTPS.
\n@param cloneUrlHttp The URL to use for cloning the repository over HTTPS.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The URL to use for cloning the repository over SSH.
",
"name" : "CloneUrlSsh",
"c2jName" : "cloneUrlSsh",
"c2jShape" : "CloneUrlSsh",
"variable" : {
"variableName" : "cloneUrlSsh",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The URL to use for cloning the repository over SSH.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "cloneUrlSsh",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "cloneUrlSsh",
"marshallLocationName" : "cloneUrlSsh",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The URL to use for cloning the repository over SSH.
\n@param cloneUrlSsh The URL to use for cloning the repository over SSH.*/",
"getterDocumentation" : "/**The URL to use for cloning the repository over SSH.
\n@return The URL to use for cloning the repository over SSH.*/",
"fluentSetterDocumentation" : "/**The URL to use for cloning the repository over SSH.
\n@param cloneUrlSsh The URL to use for cloning the repository over SSH.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The URL to use for cloning the repository over SSH.
\n@param cloneUrlSsh The URL to use for cloning the repository over SSH.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The Amazon Resource Name (ARN) of the repository.
",
"name" : "Arn",
"c2jName" : "Arn",
"c2jShape" : "Arn",
"variable" : {
"variableName" : "arn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) of the repository.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "arn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Arn",
"marshallLocationName" : "Arn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) of the repository.
\n@param arn The Amazon Resource Name (ARN) of the repository.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) of the repository.
\n@return The Amazon Resource Name (ARN) of the repository.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the repository.
\n@param arn The Amazon Resource Name (ARN) of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the repository.
\n@param arn The Amazon Resource Name (ARN) of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "repositoryMetadata",
"variableType" : "RepositoryMetadata",
"variableDeclarationType" : "RepositoryMetadata",
"documentation" : null,
"simpleType" : "RepositoryMetadata",
"variableSetterType" : "RepositoryMetadata"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"RepositoryDescription" : {
"documentation" : "A comment or description about the repository.
",
"name" : "RepositoryDescription",
"c2jName" : "repositoryDescription",
"c2jShape" : "RepositoryDescription",
"variable" : {
"variableName" : "repositoryDescription",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A comment or description about the repository.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "repositoryDescription",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositoryDescription",
"marshallLocationName" : "repositoryDescription",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A comment or description about the repository.
\n@param repositoryDescription A comment or description about the repository.*/",
"getterDocumentation" : "/**A comment or description about the repository.
\n@return A comment or description about the repository.*/",
"fluentSetterDocumentation" : "/**A comment or description about the repository.
\n@param repositoryDescription A comment or description about the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A comment or description about the repository.
\n@param repositoryDescription A comment or description about the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"RepositoryName" : {
"documentation" : "The repository's name.
",
"name" : "RepositoryName",
"c2jName" : "repositoryName",
"c2jShape" : "RepositoryName",
"variable" : {
"variableName" : "repositoryName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The repository's name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "repositoryName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositoryName",
"marshallLocationName" : "repositoryName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The repository's name.
\n@param repositoryName The repository's name.*/",
"getterDocumentation" : "/**The repository's name.
\n@return The repository's name.*/",
"fluentSetterDocumentation" : "/**The repository's name.
\n@param repositoryName The repository's name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The repository's name.
\n@param repositoryName The repository's name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"DefaultBranch" : {
"documentation" : "The repository's default branch name.
",
"name" : "DefaultBranch",
"c2jName" : "defaultBranch",
"c2jShape" : "BranchName",
"variable" : {
"variableName" : "defaultBranch",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The repository's default branch name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "defaultBranch",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "defaultBranch",
"marshallLocationName" : "defaultBranch",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The repository's default branch name.
\n@param defaultBranch The repository's default branch name.*/",
"getterDocumentation" : "/**The repository's default branch name.
\n@return The repository's default branch name.*/",
"fluentSetterDocumentation" : "/**The repository's default branch name.
\n@param defaultBranch The repository's default branch name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The repository's default branch name.
\n@param defaultBranch The repository's default branch name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"AccountId" : {
"documentation" : "The ID of the AWS account associated with the repository.
",
"name" : "AccountId",
"c2jName" : "accountId",
"c2jShape" : "AccountId",
"variable" : {
"variableName" : "accountId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ID of the AWS account associated with the repository.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "accountId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "accountId",
"marshallLocationName" : "accountId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the AWS account associated with the repository.
\n@param accountId The ID of the AWS account associated with the repository.*/",
"getterDocumentation" : "/**The ID of the AWS account associated with the repository.
\n@return The ID of the AWS account associated with the repository.*/",
"fluentSetterDocumentation" : "/**The ID of the AWS account associated with the repository.
\n@param accountId The ID of the AWS account associated with the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the AWS account associated with the repository.
\n@param accountId The ID of the AWS account associated with the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"CloneUrlSsh" : {
"documentation" : "The URL to use for cloning the repository over SSH.
",
"name" : "CloneUrlSsh",
"c2jName" : "cloneUrlSsh",
"c2jShape" : "CloneUrlSsh",
"variable" : {
"variableName" : "cloneUrlSsh",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The URL to use for cloning the repository over SSH.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "cloneUrlSsh",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "cloneUrlSsh",
"marshallLocationName" : "cloneUrlSsh",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The URL to use for cloning the repository over SSH.
\n@param cloneUrlSsh The URL to use for cloning the repository over SSH.*/",
"getterDocumentation" : "/**The URL to use for cloning the repository over SSH.
\n@return The URL to use for cloning the repository over SSH.*/",
"fluentSetterDocumentation" : "/**The URL to use for cloning the repository over SSH.
\n@param cloneUrlSsh The URL to use for cloning the repository over SSH.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The URL to use for cloning the repository over SSH.
\n@param cloneUrlSsh The URL to use for cloning the repository over SSH.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LastModifiedDate" : {
"documentation" : "The date and time the repository was last modified, in timestamp format.
",
"name" : "LastModifiedDate",
"c2jName" : "lastModifiedDate",
"c2jShape" : "LastModifiedDate",
"variable" : {
"variableName" : "lastModifiedDate",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The date and time the repository was last modified, in timestamp format.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "lastModifiedDate",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "lastModifiedDate",
"marshallLocationName" : "lastModifiedDate",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The date and time the repository was last modified, in timestamp format.
\n@param lastModifiedDate The date and time the repository was last modified, in timestamp format.*/",
"getterDocumentation" : "/**The date and time the repository was last modified, in timestamp format.
\n@return The date and time the repository was last modified, in timestamp format.*/",
"fluentSetterDocumentation" : "/**The date and time the repository was last modified, in timestamp format.
\n@param lastModifiedDate The date and time the repository was last modified, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The date and time the repository was last modified, in timestamp format.
\n@param lastModifiedDate The date and time the repository was last modified, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"RepositoryId" : {
"documentation" : "The ID of the repository.
",
"name" : "RepositoryId",
"c2jName" : "repositoryId",
"c2jShape" : "RepositoryId",
"variable" : {
"variableName" : "repositoryId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ID of the repository.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "repositoryId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositoryId",
"marshallLocationName" : "repositoryId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the repository.
\n@param repositoryId The ID of the repository.*/",
"getterDocumentation" : "/**The ID of the repository.
\n@return The ID of the repository.*/",
"fluentSetterDocumentation" : "/**The ID of the repository.
\n@param repositoryId The ID of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the repository.
\n@param repositoryId The ID of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"CreationDate" : {
"documentation" : "The date and time the repository was created, in timestamp format.
",
"name" : "CreationDate",
"c2jName" : "creationDate",
"c2jShape" : "CreationDate",
"variable" : {
"variableName" : "creationDate",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The date and time the repository was created, in timestamp format.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "creationDate",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "creationDate",
"marshallLocationName" : "creationDate",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The date and time the repository was created, in timestamp format.
\n@param creationDate The date and time the repository was created, in timestamp format.*/",
"getterDocumentation" : "/**The date and time the repository was created, in timestamp format.
\n@return The date and time the repository was created, in timestamp format.*/",
"fluentSetterDocumentation" : "/**The date and time the repository was created, in timestamp format.
\n@param creationDate The date and time the repository was created, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The date and time the repository was created, in timestamp format.
\n@param creationDate The date and time the repository was created, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Arn" : {
"documentation" : "The Amazon Resource Name (ARN) of the repository.
",
"name" : "Arn",
"c2jName" : "Arn",
"c2jShape" : "Arn",
"variable" : {
"variableName" : "arn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) of the repository.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "arn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Arn",
"marshallLocationName" : "Arn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) of the repository.
\n@param arn The Amazon Resource Name (ARN) of the repository.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) of the repository.
\n@return The Amazon Resource Name (ARN) of the repository.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the repository.
\n@param arn The Amazon Resource Name (ARN) of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the repository.
\n@param arn The Amazon Resource Name (ARN) of the repository.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"CloneUrlHttp" : {
"documentation" : "The URL to use for cloning the repository over HTTPS.
",
"name" : "CloneUrlHttp",
"c2jName" : "cloneUrlHttp",
"c2jShape" : "CloneUrlHttp",
"variable" : {
"variableName" : "cloneUrlHttp",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The URL to use for cloning the repository over HTTPS.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "cloneUrlHttp",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "cloneUrlHttp",
"marshallLocationName" : "cloneUrlHttp",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The URL to use for cloning the repository over HTTPS.
\n@param cloneUrlHttp The URL to use for cloning the repository over HTTPS.*/",
"getterDocumentation" : "/**The URL to use for cloning the repository over HTTPS.
\n@return The URL to use for cloning the repository over HTTPS.*/",
"fluentSetterDocumentation" : "/**The URL to use for cloning the repository over HTTPS.
\n@param cloneUrlHttp The URL to use for cloning the repository over HTTPS.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The URL to use for cloning the repository over HTTPS.
\n@param cloneUrlHttp The URL to use for cloning the repository over HTTPS.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"RepositoryTriggerEventEnum" : {
"c2jName" : "RepositoryTriggerEventEnum",
"documentation" : "",
"shapeName" : "RepositoryTriggerEventEnum",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "All",
"value" : "all"
}, {
"name" : "UpdateReference",
"value" : "updateReference"
}, {
"name" : "CreateReference",
"value" : "createReference"
}, {
"name" : "DeleteReference",
"value" : "deleteReference"
} ],
"variable" : {
"variableName" : "repositoryTriggerEventEnum",
"variableType" : "RepositoryTriggerEventEnum",
"variableDeclarationType" : "RepositoryTriggerEventEnum",
"documentation" : null,
"simpleType" : "RepositoryTriggerEventEnum",
"variableSetterType" : "RepositoryTriggerEventEnum"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"MaximumBranchesExceededException" : {
"c2jName" : "MaximumBranchesExceededException",
"documentation" : "The number of branches for the trigger was exceeded.
",
"shapeName" : "MaximumBranchesExceededException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "maximumBranchesExceededException",
"variableType" : "MaximumBranchesExceededException",
"variableDeclarationType" : "MaximumBranchesExceededException",
"documentation" : null,
"simpleType" : "MaximumBranchesExceededException",
"variableSetterType" : "MaximumBranchesExceededException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "MaximumBranchesExceededException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"BatchGetRepositoriesRequest" : {
"c2jName" : "BatchGetRepositoriesInput",
"documentation" : "Represents the input of a batch get repositories operation.
",
"shapeName" : "BatchGetRepositoriesRequest",
"deprecated" : false,
"required" : [ "repositoryNames" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The names of the repositories to get information about.
",
"name" : "RepositoryNames",
"c2jName" : "repositoryNames",
"c2jShape" : "RepositoryNameList",
"variable" : {
"variableName" : "repositoryNames",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "The names of the repositories to get information about.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "repositoryNames",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositoryNames",
"marshallLocationName" : "repositoryNames",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "RepositoryName",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The names of the repositories to get information about.
\n@param repositoryNames The names of the repositories to get information about.*/",
"getterDocumentation" : "/**The names of the repositories to get information about.
\n@return The names of the repositories to get information about.*/",
"fluentSetterDocumentation" : "/**The names of the repositories to get information about.
\n@param repositoryNames The names of the repositories to get information about.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The names of the repositories to get information about.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setRepositoryNames(java.util.Collection)} or {@link #withRepositoryNames(java.util.Collection)} if you want to override the existing values.
\n@param repositoryNames The names of the repositories to get information about.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "batchGetRepositoriesRequest",
"variableType" : "BatchGetRepositoriesRequest",
"variableDeclarationType" : "BatchGetRepositoriesRequest",
"documentation" : null,
"simpleType" : "BatchGetRepositoriesRequest",
"variableSetterType" : "BatchGetRepositoriesRequest"
},
"marshaller" : {
"action" : "BatchGetRepositories",
"verb" : "POST",
"target" : "CodeCommit_20150413.BatchGetRepositories",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"RepositoryNames" : {
"documentation" : "The names of the repositories to get information about.
",
"name" : "RepositoryNames",
"c2jName" : "repositoryNames",
"c2jShape" : "RepositoryNameList",
"variable" : {
"variableName" : "repositoryNames",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "The names of the repositories to get information about.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "repositoryNames",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositoryNames",
"marshallLocationName" : "repositoryNames",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "RepositoryName",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The names of the repositories to get information about.
\n@param repositoryNames The names of the repositories to get information about.*/",
"getterDocumentation" : "/**The names of the repositories to get information about.
\n@return The names of the repositories to get information about.*/",
"fluentSetterDocumentation" : "/**The names of the repositories to get information about.
\n@param repositoryNames The names of the repositories to get information about.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The names of the repositories to get information about.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setRepositoryNames(java.util.Collection)} or {@link #withRepositoryNames(java.util.Collection)} if you want to override the existing values.
\n@param repositoryNames The names of the repositories to get information about.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"EncryptionKeyNotFoundException" : {
"c2jName" : "EncryptionKeyNotFoundException",
"documentation" : "No encryption key was found.
",
"shapeName" : "EncryptionKeyNotFoundException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "encryptionKeyNotFoundException",
"variableType" : "EncryptionKeyNotFoundException",
"variableDeclarationType" : "EncryptionKeyNotFoundException",
"documentation" : null,
"simpleType" : "EncryptionKeyNotFoundException",
"variableSetterType" : "EncryptionKeyNotFoundException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "EncryptionKeyNotFoundException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"BranchInfo" : {
"c2jName" : "BranchInfo",
"documentation" : "Returns information about a branch.
",
"shapeName" : "BranchInfo",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the branch.
",
"name" : "BranchName",
"c2jName" : "branchName",
"c2jShape" : "BranchName",
"variable" : {
"variableName" : "branchName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the branch.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "branchName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "branchName",
"marshallLocationName" : "branchName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the branch.
\n@param branchName The name of the branch.*/",
"getterDocumentation" : "/**The name of the branch.
\n@return The name of the branch.*/",
"fluentSetterDocumentation" : "/**The name of the branch.
\n@param branchName The name of the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the branch.
\n@param branchName The name of the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The ID of the last commit made to the branch.
",
"name" : "CommitId",
"c2jName" : "commitId",
"c2jShape" : "CommitId",
"variable" : {
"variableName" : "commitId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ID of the last commit made to the branch.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "commitId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "commitId",
"marshallLocationName" : "commitId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the last commit made to the branch.
\n@param commitId The ID of the last commit made to the branch.*/",
"getterDocumentation" : "/**The ID of the last commit made to the branch.
\n@return The ID of the last commit made to the branch.*/",
"fluentSetterDocumentation" : "/**The ID of the last commit made to the branch.
\n@param commitId The ID of the last commit made to the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the last commit made to the branch.
\n@param commitId The ID of the last commit made to the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "branchInfo",
"variableType" : "BranchInfo",
"variableDeclarationType" : "BranchInfo",
"documentation" : null,
"simpleType" : "BranchInfo",
"variableSetterType" : "BranchInfo"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BranchName" : {
"documentation" : "The name of the branch.
",
"name" : "BranchName",
"c2jName" : "branchName",
"c2jShape" : "BranchName",
"variable" : {
"variableName" : "branchName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the branch.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "branchName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "branchName",
"marshallLocationName" : "branchName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the branch.
\n@param branchName The name of the branch.*/",
"getterDocumentation" : "/**The name of the branch.
\n@return The name of the branch.*/",
"fluentSetterDocumentation" : "/**The name of the branch.
\n@param branchName The name of the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the branch.
\n@param branchName The name of the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"CommitId" : {
"documentation" : "The ID of the last commit made to the branch.
",
"name" : "CommitId",
"c2jName" : "commitId",
"c2jShape" : "CommitId",
"variable" : {
"variableName" : "commitId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ID of the last commit made to the branch.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "commitId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "commitId",
"marshallLocationName" : "commitId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the last commit made to the branch.
\n@param commitId The ID of the last commit made to the branch.*/",
"getterDocumentation" : "/**The ID of the last commit made to the branch.
\n@return The ID of the last commit made to the branch.*/",
"fluentSetterDocumentation" : "/**The ID of the last commit made to the branch.
\n@param commitId The ID of the last commit made to the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the last commit made to the branch.
\n@param commitId The ID of the last commit made to the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListRepositoriesResult" : {
"c2jName" : "ListRepositoriesOutput",
"documentation" : "Represents the output of a list repositories operation.
",
"shapeName" : "ListRepositoriesResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Lists the repositories called by the list repositories operation.
",
"name" : "Repositories",
"c2jName" : "repositories",
"c2jShape" : "RepositoryNameIdPairList",
"variable" : {
"variableName" : "repositories",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "Lists the repositories called by the list repositories operation.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "repositories",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositories",
"marshallLocationName" : "repositories",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "RepositoryNameIdPair",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "RepositoryNameIdPair",
"variable" : {
"variableName" : "member",
"variableType" : "RepositoryNameIdPair",
"variableDeclarationType" : "RepositoryNameIdPair",
"documentation" : "",
"simpleType" : "RepositoryNameIdPair",
"variableSetterType" : "RepositoryNameIdPair"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "RepositoryNameIdPair",
"variableDeclarationType" : "RepositoryNameIdPair",
"documentation" : "",
"simpleType" : "RepositoryNameIdPair",
"variableSetterType" : "RepositoryNameIdPair"
},
"getterModel" : {
"returnType" : "RepositoryNameIdPair",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "RepositoryNameIdPair",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**Lists the repositories called by the list repositories operation.
\n@param repositories Lists the repositories called by the list repositories operation.*/",
"getterDocumentation" : "/**Lists the repositories called by the list repositories operation.
\n@return Lists the repositories called by the list repositories operation.*/",
"fluentSetterDocumentation" : "/**Lists the repositories called by the list repositories operation.
\n@param repositories Lists the repositories called by the list repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Lists the repositories called by the list repositories operation.
\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" : {
"NextToken" : {
"documentation" : "An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.
",
"name" : "NextToken",
"c2jName" : "nextToken",
"c2jShape" : "NextToken",
"variable" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "nextToken",
"marshallLocationName" : "nextToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.
\n@param nextToken An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.*/",
"getterDocumentation" : "/**An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.
\n@return An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.*/",
"fluentSetterDocumentation" : "/**An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.
\n@param nextToken An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.
\n@param nextToken An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Repositories" : {
"documentation" : "Lists the repositories called by the list repositories operation.
",
"name" : "Repositories",
"c2jName" : "repositories",
"c2jShape" : "RepositoryNameIdPairList",
"variable" : {
"variableName" : "repositories",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "Lists the repositories called by the list repositories operation.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "repositories",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositories",
"marshallLocationName" : "repositories",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "RepositoryNameIdPair",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "RepositoryNameIdPair",
"variable" : {
"variableName" : "member",
"variableType" : "RepositoryNameIdPair",
"variableDeclarationType" : "RepositoryNameIdPair",
"documentation" : "",
"simpleType" : "RepositoryNameIdPair",
"variableSetterType" : "RepositoryNameIdPair"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "RepositoryNameIdPair",
"variableDeclarationType" : "RepositoryNameIdPair",
"documentation" : "",
"simpleType" : "RepositoryNameIdPair",
"variableSetterType" : "RepositoryNameIdPair"
},
"getterModel" : {
"returnType" : "RepositoryNameIdPair",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "RepositoryNameIdPair",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**Lists the repositories called by the list repositories operation.
\n@param repositories Lists the repositories called by the list repositories operation.*/",
"getterDocumentation" : "/**Lists the repositories called by the list repositories operation.
\n@return Lists the repositories called by the list repositories operation.*/",
"fluentSetterDocumentation" : "/**Lists the repositories called by the list repositories operation.
\n@param repositories Lists the repositories called by the list repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Lists the repositories called by the list repositories operation.
\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.*/"
}
}
},
"InvalidSortByException" : {
"c2jName" : "InvalidSortByException",
"documentation" : "The specified sort by value is not valid.
",
"shapeName" : "InvalidSortByException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "invalidSortByException",
"variableType" : "InvalidSortByException",
"variableDeclarationType" : "InvalidSortByException",
"documentation" : null,
"simpleType" : "InvalidSortByException",
"variableSetterType" : "InvalidSortByException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidSortByException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"InvalidRepositoryNameException" : {
"c2jName" : "InvalidRepositoryNameException",
"documentation" : "At least one specified repository name is not valid.
This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.
",
"shapeName" : "InvalidRepositoryNameException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "invalidRepositoryNameException",
"variableType" : "InvalidRepositoryNameException",
"variableDeclarationType" : "InvalidRepositoryNameException",
"documentation" : null,
"simpleType" : "InvalidRepositoryNameException",
"variableSetterType" : "InvalidRepositoryNameException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidRepositoryNameException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"InvalidRepositoryTriggerDestinationArnException" : {
"c2jName" : "InvalidRepositoryTriggerDestinationArnException",
"documentation" : "The Amazon Resource Name (ARN) for the trigger is not valid for the specified destination. The most common reason for this error is that the ARN does not meet the requirements for the service type.
",
"shapeName" : "InvalidRepositoryTriggerDestinationArnException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "invalidRepositoryTriggerDestinationArnException",
"variableType" : "InvalidRepositoryTriggerDestinationArnException",
"variableDeclarationType" : "InvalidRepositoryTriggerDestinationArnException",
"documentation" : null,
"simpleType" : "InvalidRepositoryTriggerDestinationArnException",
"variableSetterType" : "InvalidRepositoryTriggerDestinationArnException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidRepositoryTriggerDestinationArnException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"BatchGetRepositoriesResult" : {
"c2jName" : "BatchGetRepositoriesOutput",
"documentation" : "Represents the output of a batch get repositories operation.
",
"shapeName" : "BatchGetRepositoriesResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A list of repositories returned by the batch get repositories operation.
",
"name" : "Repositories",
"c2jName" : "repositories",
"c2jShape" : "RepositoryMetadataList",
"variable" : {
"variableName" : "repositories",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "A list of repositories returned by the batch get repositories operation.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "repositories",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositories",
"marshallLocationName" : "repositories",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "RepositoryMetadata",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "RepositoryMetadata",
"variable" : {
"variableName" : "member",
"variableType" : "RepositoryMetadata",
"variableDeclarationType" : "RepositoryMetadata",
"documentation" : "",
"simpleType" : "RepositoryMetadata",
"variableSetterType" : "RepositoryMetadata"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "RepositoryMetadata",
"variableDeclarationType" : "RepositoryMetadata",
"documentation" : "",
"simpleType" : "RepositoryMetadata",
"variableSetterType" : "RepositoryMetadata"
},
"getterModel" : {
"returnType" : "RepositoryMetadata",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "RepositoryMetadata",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of repositories returned by the batch get repositories operation.
\n@param repositories A list of repositories returned by the batch get repositories operation.*/",
"getterDocumentation" : "/**A list of repositories returned by the batch get repositories operation.
\n@return A list of repositories returned by the batch get repositories operation.*/",
"fluentSetterDocumentation" : "/**A list of repositories returned by the batch get repositories operation.
\n@param repositories A list of repositories returned by the batch get repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of repositories returned by the batch get repositories operation.
\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 A list of repositories returned by the batch get repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Returns a list of repository names for which information could not be found.
",
"name" : "RepositoriesNotFound",
"c2jName" : "repositoriesNotFound",
"c2jShape" : "RepositoryNotFoundList",
"variable" : {
"variableName" : "repositoriesNotFound",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "Returns a list of repository names for which information could not be found.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "repositoriesNotFound",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositoriesNotFound",
"marshallLocationName" : "repositoriesNotFound",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "RepositoryName",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**Returns a list of repository names for which information could not be found.
\n@param repositoriesNotFound Returns a list of repository names for which information could not be found.*/",
"getterDocumentation" : "/**Returns a list of repository names for which information could not be found.
\n@return Returns a list of repository names for which information could not be found.*/",
"fluentSetterDocumentation" : "/**Returns a list of repository names for which information could not be found.
\n@param repositoriesNotFound Returns a list of repository names for which information could not be found.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Returns a list of repository names for which information could not be found.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setRepositoriesNotFound(java.util.Collection)} or {@link #withRepositoriesNotFound(java.util.Collection)} if you want to override the existing values.
\n@param repositoriesNotFound Returns a list of repository names for which information could not be found.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "batchGetRepositoriesResult",
"variableType" : "BatchGetRepositoriesResult",
"variableDeclarationType" : "BatchGetRepositoriesResult",
"documentation" : null,
"simpleType" : "BatchGetRepositoriesResult",
"variableSetterType" : "BatchGetRepositoriesResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Repositories" : {
"documentation" : "A list of repositories returned by the batch get repositories operation.
",
"name" : "Repositories",
"c2jName" : "repositories",
"c2jShape" : "RepositoryMetadataList",
"variable" : {
"variableName" : "repositories",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "A list of repositories returned by the batch get repositories operation.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "repositories",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositories",
"marshallLocationName" : "repositories",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "RepositoryMetadata",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "RepositoryMetadata",
"variable" : {
"variableName" : "member",
"variableType" : "RepositoryMetadata",
"variableDeclarationType" : "RepositoryMetadata",
"documentation" : "",
"simpleType" : "RepositoryMetadata",
"variableSetterType" : "RepositoryMetadata"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "RepositoryMetadata",
"variableDeclarationType" : "RepositoryMetadata",
"documentation" : "",
"simpleType" : "RepositoryMetadata",
"variableSetterType" : "RepositoryMetadata"
},
"getterModel" : {
"returnType" : "RepositoryMetadata",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "RepositoryMetadata",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of repositories returned by the batch get repositories operation.
\n@param repositories A list of repositories returned by the batch get repositories operation.*/",
"getterDocumentation" : "/**A list of repositories returned by the batch get repositories operation.
\n@return A list of repositories returned by the batch get repositories operation.*/",
"fluentSetterDocumentation" : "/**A list of repositories returned by the batch get repositories operation.
\n@param repositories A list of repositories returned by the batch get repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of repositories returned by the batch get repositories operation.
\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 A list of repositories returned by the batch get repositories operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"RepositoriesNotFound" : {
"documentation" : "Returns a list of repository names for which information could not be found.
",
"name" : "RepositoriesNotFound",
"c2jName" : "repositoriesNotFound",
"c2jShape" : "RepositoryNotFoundList",
"variable" : {
"variableName" : "repositoriesNotFound",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "Returns a list of repository names for which information could not be found.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "repositoriesNotFound",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositoriesNotFound",
"marshallLocationName" : "repositoriesNotFound",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "RepositoryName",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**Returns a list of repository names for which information could not be found.
\n@param repositoriesNotFound Returns a list of repository names for which information could not be found.*/",
"getterDocumentation" : "/**Returns a list of repository names for which information could not be found.
\n@return Returns a list of repository names for which information could not be found.*/",
"fluentSetterDocumentation" : "/**Returns a list of repository names for which information could not be found.
\n@param repositoriesNotFound Returns a list of repository names for which information could not be found.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Returns a list of repository names for which information could not be found.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setRepositoriesNotFound(java.util.Collection)} or {@link #withRepositoriesNotFound(java.util.Collection)} if you want to override the existing values.
\n@param repositoriesNotFound Returns a list of repository names for which information could not be found.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"EncryptionKeyDisabledException" : {
"c2jName" : "EncryptionKeyDisabledException",
"documentation" : "The encryption key is disabled.
",
"shapeName" : "EncryptionKeyDisabledException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "encryptionKeyDisabledException",
"variableType" : "EncryptionKeyDisabledException",
"variableDeclarationType" : "EncryptionKeyDisabledException",
"documentation" : null,
"simpleType" : "EncryptionKeyDisabledException",
"variableSetterType" : "EncryptionKeyDisabledException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "EncryptionKeyDisabledException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"CreateRepositoryResult" : {
"c2jName" : "CreateRepositoryOutput",
"documentation" : "Represents the output of a create repository operation.
",
"shapeName" : "CreateRepositoryResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Information about the newly created repository.
",
"name" : "RepositoryMetadata",
"c2jName" : "repositoryMetadata",
"c2jShape" : "RepositoryMetadata",
"variable" : {
"variableName" : "repositoryMetadata",
"variableType" : "RepositoryMetadata",
"variableDeclarationType" : "RepositoryMetadata",
"documentation" : "Information about the newly created repository.
",
"simpleType" : "RepositoryMetadata",
"variableSetterType" : "RepositoryMetadata"
},
"setterModel" : {
"variableName" : "repositoryMetadata",
"variableType" : "RepositoryMetadata",
"variableDeclarationType" : "RepositoryMetadata",
"documentation" : "",
"simpleType" : "RepositoryMetadata",
"variableSetterType" : "RepositoryMetadata"
},
"getterModel" : {
"returnType" : "RepositoryMetadata",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositoryMetadata",
"marshallLocationName" : "repositoryMetadata",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Information about the newly created repository.
\n@param repositoryMetadata Information about the newly created repository.*/",
"getterDocumentation" : "/**Information about the newly created repository.
\n@return Information about the newly created repository.*/",
"fluentSetterDocumentation" : "/**Information about the newly created repository.
\n@param repositoryMetadata Information about the newly created repository.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Information about the newly created repository.
\n@param repositoryMetadata Information about the newly created repository.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "createRepositoryResult",
"variableType" : "CreateRepositoryResult",
"variableDeclarationType" : "CreateRepositoryResult",
"documentation" : null,
"simpleType" : "CreateRepositoryResult",
"variableSetterType" : "CreateRepositoryResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"RepositoryMetadata" : {
"documentation" : "Information about the newly created repository.
",
"name" : "RepositoryMetadata",
"c2jName" : "repositoryMetadata",
"c2jShape" : "RepositoryMetadata",
"variable" : {
"variableName" : "repositoryMetadata",
"variableType" : "RepositoryMetadata",
"variableDeclarationType" : "RepositoryMetadata",
"documentation" : "Information about the newly created repository.
",
"simpleType" : "RepositoryMetadata",
"variableSetterType" : "RepositoryMetadata"
},
"setterModel" : {
"variableName" : "repositoryMetadata",
"variableType" : "RepositoryMetadata",
"variableDeclarationType" : "RepositoryMetadata",
"documentation" : "",
"simpleType" : "RepositoryMetadata",
"variableSetterType" : "RepositoryMetadata"
},
"getterModel" : {
"returnType" : "RepositoryMetadata",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositoryMetadata",
"marshallLocationName" : "repositoryMetadata",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Information about the newly created repository.
\n@param repositoryMetadata Information about the newly created repository.*/",
"getterDocumentation" : "/**Information about the newly created repository.
\n@return Information about the newly created repository.*/",
"fluentSetterDocumentation" : "/**Information about the newly created repository.
\n@param repositoryMetadata Information about the newly created repository.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Information about the newly created repository.
\n@param repositoryMetadata Information about the newly created repository.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListBranchesRequest" : {
"c2jName" : "ListBranchesInput",
"documentation" : "Represents the input of a list branches operation.
",
"shapeName" : "ListBranchesRequest",
"deprecated" : false,
"required" : [ "repositoryName" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the repository that contains the branches.
",
"name" : "RepositoryName",
"c2jName" : "repositoryName",
"c2jShape" : "RepositoryName",
"variable" : {
"variableName" : "repositoryName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the repository that contains the branches.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "repositoryName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositoryName",
"marshallLocationName" : "repositoryName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the repository that contains the branches.
\n@param repositoryName The name of the repository that contains the branches.*/",
"getterDocumentation" : "/**The name of the repository that contains the branches.
\n@return The name of the repository that contains the branches.*/",
"fluentSetterDocumentation" : "/**The name of the repository that contains the branches.
\n@param repositoryName The name of the repository that contains the branches.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the repository that contains the branches.
\n@param repositoryName The name of the repository that contains the branches.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "An enumeration token that allows the operation to batch the results.
",
"name" : "NextToken",
"c2jName" : "nextToken",
"c2jShape" : "NextToken",
"variable" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "An enumeration token that allows the operation to batch the results.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "nextToken",
"marshallLocationName" : "nextToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**An enumeration token that allows the operation to batch the results.
\n@param nextToken An enumeration token that allows the operation to batch the results.*/",
"getterDocumentation" : "/**An enumeration token that allows the operation to batch the results.
\n@return An enumeration token that allows the operation to batch the results.*/",
"fluentSetterDocumentation" : "/**An enumeration token that allows the operation to batch the results.
\n@param nextToken An enumeration token that allows the operation to batch the results.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An enumeration token that allows the operation to batch the results.
\n@param nextToken An enumeration token that allows the operation to batch the results.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listBranchesRequest",
"variableType" : "ListBranchesRequest",
"variableDeclarationType" : "ListBranchesRequest",
"documentation" : null,
"simpleType" : "ListBranchesRequest",
"variableSetterType" : "ListBranchesRequest"
},
"marshaller" : {
"action" : "ListBranches",
"verb" : "POST",
"target" : "CodeCommit_20150413.ListBranches",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"RepositoryName" : {
"documentation" : "The name of the repository that contains the branches.
",
"name" : "RepositoryName",
"c2jName" : "repositoryName",
"c2jShape" : "RepositoryName",
"variable" : {
"variableName" : "repositoryName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the repository that contains the branches.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "repositoryName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositoryName",
"marshallLocationName" : "repositoryName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the repository that contains the branches.
\n@param repositoryName The name of the repository that contains the branches.*/",
"getterDocumentation" : "/**The name of the repository that contains the branches.
\n@return The name of the repository that contains the branches.*/",
"fluentSetterDocumentation" : "/**The name of the repository that contains the branches.
\n@param repositoryName The name of the repository that contains the branches.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the repository that contains the branches.
\n@param repositoryName The name of the repository that contains the branches.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"NextToken" : {
"documentation" : "An enumeration token that allows the operation to batch the results.
",
"name" : "NextToken",
"c2jName" : "nextToken",
"c2jShape" : "NextToken",
"variable" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "An enumeration token that allows the operation to batch the results.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "nextToken",
"marshallLocationName" : "nextToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**An enumeration token that allows the operation to batch the results.
\n@param nextToken An enumeration token that allows the operation to batch the results.*/",
"getterDocumentation" : "/**An enumeration token that allows the operation to batch the results.
\n@return An enumeration token that allows the operation to batch the results.*/",
"fluentSetterDocumentation" : "/**An enumeration token that allows the operation to batch the results.
\n@param nextToken An enumeration token that allows the operation to batch the results.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An enumeration token that allows the operation to batch the results.
\n@param nextToken An enumeration token that allows the operation to batch the results.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"CreateBranchResult" : {
"c2jName" : "CreateBranchResult",
"documentation" : null,
"shapeName" : "CreateBranchResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "createBranchResult",
"variableType" : "CreateBranchResult",
"variableDeclarationType" : "CreateBranchResult",
"documentation" : null,
"simpleType" : "CreateBranchResult",
"variableSetterType" : "CreateBranchResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"InvalidRepositoryDescriptionException" : {
"c2jName" : "InvalidRepositoryDescriptionException",
"documentation" : "The specified repository description is not valid.
",
"shapeName" : "InvalidRepositoryDescriptionException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "invalidRepositoryDescriptionException",
"variableType" : "InvalidRepositoryDescriptionException",
"variableDeclarationType" : "InvalidRepositoryDescriptionException",
"documentation" : null,
"simpleType" : "InvalidRepositoryDescriptionException",
"variableSetterType" : "InvalidRepositoryDescriptionException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidRepositoryDescriptionException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"GetCommitResult" : {
"c2jName" : "GetCommitOutput",
"documentation" : "Represents the output of a get commit operation.
",
"shapeName" : "GetCommitResult",
"deprecated" : false,
"required" : [ "commit" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Information about the specified commit.
",
"name" : "Commit",
"c2jName" : "commit",
"c2jShape" : "Commit",
"variable" : {
"variableName" : "commit",
"variableType" : "Commit",
"variableDeclarationType" : "Commit",
"documentation" : "Information about the specified commit.
",
"simpleType" : "Commit",
"variableSetterType" : "Commit"
},
"setterModel" : {
"variableName" : "commit",
"variableType" : "Commit",
"variableDeclarationType" : "Commit",
"documentation" : "",
"simpleType" : "Commit",
"variableSetterType" : "Commit"
},
"getterModel" : {
"returnType" : "Commit",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "commit",
"marshallLocationName" : "commit",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Information about the specified commit.
\n@param commit Information about the specified commit.*/",
"getterDocumentation" : "/**Information about the specified commit.
\n@return Information about the specified commit.*/",
"fluentSetterDocumentation" : "/**Information about the specified commit.
\n@param commit Information about the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Information about the specified commit.
\n@param commit Information about the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getCommitResult",
"variableType" : "GetCommitResult",
"variableDeclarationType" : "GetCommitResult",
"documentation" : null,
"simpleType" : "GetCommitResult",
"variableSetterType" : "GetCommitResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Commit" : {
"documentation" : "Information about the specified commit.
",
"name" : "Commit",
"c2jName" : "commit",
"c2jShape" : "Commit",
"variable" : {
"variableName" : "commit",
"variableType" : "Commit",
"variableDeclarationType" : "Commit",
"documentation" : "Information about the specified commit.
",
"simpleType" : "Commit",
"variableSetterType" : "Commit"
},
"setterModel" : {
"variableName" : "commit",
"variableType" : "Commit",
"variableDeclarationType" : "Commit",
"documentation" : "",
"simpleType" : "Commit",
"variableSetterType" : "Commit"
},
"getterModel" : {
"returnType" : "Commit",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "commit",
"marshallLocationName" : "commit",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Information about the specified commit.
\n@param commit Information about the specified commit.*/",
"getterDocumentation" : "/**Information about the specified commit.
\n@return Information about the specified commit.*/",
"fluentSetterDocumentation" : "/**Information about the specified commit.
\n@param commit Information about the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Information about the specified commit.
\n@param commit Information about the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"TestRepositoryTriggersResult" : {
"c2jName" : "TestRepositoryTriggersOutput",
"documentation" : "Represents the output of a test repository triggers operation.
",
"shapeName" : "TestRepositoryTriggersResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.
",
"name" : "SuccessfulExecutions",
"c2jName" : "successfulExecutions",
"c2jShape" : "RepositoryTriggerNameList",
"variable" : {
"variableName" : "successfulExecutions",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "successfulExecutions",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "successfulExecutions",
"marshallLocationName" : "successfulExecutions",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "RepositoryTriggerName",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.
\n@param successfulExecutions The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.*/",
"getterDocumentation" : "/**The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.
\n@return The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.*/",
"fluentSetterDocumentation" : "/**The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.
\n@param successfulExecutions The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.
\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" : {
"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.*/"
},
"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.*/"
}
}
},
"InvalidRepositoryTriggerNameException" : {
"c2jName" : "InvalidRepositoryTriggerNameException",
"documentation" : "The name of the trigger is not valid.
",
"shapeName" : "InvalidRepositoryTriggerNameException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "invalidRepositoryTriggerNameException",
"variableType" : "InvalidRepositoryTriggerNameException",
"variableDeclarationType" : "InvalidRepositoryTriggerNameException",
"documentation" : null,
"simpleType" : "InvalidRepositoryTriggerNameException",
"variableSetterType" : "InvalidRepositoryTriggerNameException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidRepositoryTriggerNameException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"InvalidRepositoryTriggerRegionException" : {
"c2jName" : "InvalidRepositoryTriggerRegionException",
"documentation" : "The region for the trigger target does not match the region for the repository. Triggers must be created in the same region as the target for the trigger.
",
"shapeName" : "InvalidRepositoryTriggerRegionException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "invalidRepositoryTriggerRegionException",
"variableType" : "InvalidRepositoryTriggerRegionException",
"variableDeclarationType" : "InvalidRepositoryTriggerRegionException",
"documentation" : null,
"simpleType" : "InvalidRepositoryTriggerRegionException",
"variableSetterType" : "InvalidRepositoryTriggerRegionException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidRepositoryTriggerRegionException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"BranchNameRequiredException" : {
"c2jName" : "BranchNameRequiredException",
"documentation" : "A branch name is required but was not specified.
",
"shapeName" : "BranchNameRequiredException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "branchNameRequiredException",
"variableType" : "BranchNameRequiredException",
"variableDeclarationType" : "BranchNameRequiredException",
"documentation" : null,
"simpleType" : "BranchNameRequiredException",
"variableSetterType" : "BranchNameRequiredException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "BranchNameRequiredException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"TestRepositoryTriggersRequest" : {
"c2jName" : "TestRepositoryTriggersInput",
"documentation" : "Represents the input of a test repository triggers operation.
",
"shapeName" : "TestRepositoryTriggersRequest",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the repository in which to test the triggers.
",
"name" : "RepositoryName",
"c2jName" : "repositoryName",
"c2jShape" : "RepositoryName",
"variable" : {
"variableName" : "repositoryName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the repository in which to test the triggers.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "repositoryName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "repositoryName",
"marshallLocationName" : "repositoryName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the repository in which to test the triggers.
\n@param repositoryName The name of the repository in which to test the triggers.*/",
"getterDocumentation" : "/**The name of the repository in which to test the triggers.
\n@return The name of the repository in which to test the triggers.*/",
"fluentSetterDocumentation" : "/**The name of the repository in which to test the triggers.
\n@param repositoryName The name of the repository in which to test the triggers.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the repository in which to test the triggers.
\n@param repositoryName The name of the repository in which to test the triggers.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The list of triggers to test.
",
"name" : "Triggers",
"c2jName" : "triggers",
"c2jShape" : "RepositoryTriggersList",
"variable" : {
"variableName" : "triggers",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "The list of triggers to test.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "triggers",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "triggers",
"marshallLocationName" : "triggers",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "RepositoryTrigger",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "RepositoryTrigger",
"variable" : {
"variableName" : "member",
"variableType" : "RepositoryTrigger",
"variableDeclarationType" : "RepositoryTrigger",
"documentation" : "",
"simpleType" : "RepositoryTrigger",
"variableSetterType" : "RepositoryTrigger"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "RepositoryTrigger",
"variableDeclarationType" : "RepositoryTrigger",
"documentation" : "",
"simpleType" : "RepositoryTrigger",
"variableSetterType" : "RepositoryTrigger"
},
"getterModel" : {
"returnType" : "RepositoryTrigger",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "RepositoryTrigger",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The list of triggers to test.
\n@param triggers The list of triggers to test.*/",
"getterDocumentation" : "/**The list of triggers to test.
\n@return The list of triggers to test.*/",
"fluentSetterDocumentation" : "/**The list of triggers to test.
\n@param triggers The list of triggers to test.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The list of triggers to test.
\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.*/"
}
}
},
"EncryptionKeyAccessDeniedException" : {
"c2jName" : "EncryptionKeyAccessDeniedException",
"documentation" : "An encryption key could not be accessed.
",
"shapeName" : "EncryptionKeyAccessDeniedException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "encryptionKeyAccessDeniedException",
"variableType" : "EncryptionKeyAccessDeniedException",
"variableDeclarationType" : "EncryptionKeyAccessDeniedException",
"documentation" : null,
"simpleType" : "EncryptionKeyAccessDeniedException",
"variableSetterType" : "EncryptionKeyAccessDeniedException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "EncryptionKeyAccessDeniedException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"Commit" : {
"c2jName" : "Commit",
"documentation" : "Returns information about a specific commit.
",
"shapeName" : "Commit",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Tree information for the specified commit.
",
"name" : "TreeId",
"c2jName" : "treeId",
"c2jShape" : "ObjectId",
"variable" : {
"variableName" : "treeId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Tree information for the specified commit.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "treeId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "treeId",
"marshallLocationName" : "treeId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Tree information for the specified commit.
\n@param treeId Tree information for the specified commit.*/",
"getterDocumentation" : "/**Tree information for the specified commit.
\n@return Tree information for the specified commit.*/",
"fluentSetterDocumentation" : "/**Tree information for the specified commit.
\n@param treeId Tree information for the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Tree information for the specified commit.
\n@param treeId Tree information for the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The parent list for the specified commit.
",
"name" : "Parents",
"c2jName" : "parents",
"c2jShape" : "ParentList",
"variable" : {
"variableName" : "parents",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "The parent list for the specified commit.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "parents",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "parents",
"marshallLocationName" : "parents",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "ObjectId",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The parent list for the specified commit.
\n@param parents The parent list for the specified commit.*/",
"getterDocumentation" : "/**The parent list for the specified commit.
\n@return The parent list for the specified commit.*/",
"fluentSetterDocumentation" : "/**The parent list for the specified commit.
\n@param parents The parent list for the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The parent list for the specified commit.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setParents(java.util.Collection)} or {@link #withParents(java.util.Collection)} if you want to override the existing values.
\n@param parents The parent list for the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The message associated with the specified commit.
",
"name" : "Message",
"c2jName" : "message",
"c2jShape" : "Message",
"variable" : {
"variableName" : "message",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The message associated with the specified commit.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "message",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "message",
"marshallLocationName" : "message",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The message associated with the specified commit.
\n@param message The message associated with the specified commit.*/",
"getterDocumentation" : "/**The message associated with the specified commit.
\n@return The message associated with the specified commit.*/",
"fluentSetterDocumentation" : "/**The message associated with the specified commit.
\n@param message The message associated with the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The message associated with the specified commit.
\n@param message The message associated with the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Information about the author of the specified commit.
",
"name" : "Author",
"c2jName" : "author",
"c2jShape" : "UserInfo",
"variable" : {
"variableName" : "author",
"variableType" : "UserInfo",
"variableDeclarationType" : "UserInfo",
"documentation" : "Information about the author of the specified commit.
",
"simpleType" : "UserInfo",
"variableSetterType" : "UserInfo"
},
"setterModel" : {
"variableName" : "author",
"variableType" : "UserInfo",
"variableDeclarationType" : "UserInfo",
"documentation" : "",
"simpleType" : "UserInfo",
"variableSetterType" : "UserInfo"
},
"getterModel" : {
"returnType" : "UserInfo",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "author",
"marshallLocationName" : "author",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Information about the author of the specified commit.
\n@param author Information about the author of the specified commit.*/",
"getterDocumentation" : "/**Information about the author of the specified commit.
\n@return Information about the author of the specified commit.*/",
"fluentSetterDocumentation" : "/**Information about the author of the specified commit.
\n@param author Information about the author of the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Information about the author of the specified commit.
\n@param author Information about the author of the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.
",
"name" : "Committer",
"c2jName" : "committer",
"c2jShape" : "UserInfo",
"variable" : {
"variableName" : "committer",
"variableType" : "UserInfo",
"variableDeclarationType" : "UserInfo",
"documentation" : "Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.
",
"simpleType" : "UserInfo",
"variableSetterType" : "UserInfo"
},
"setterModel" : {
"variableName" : "committer",
"variableType" : "UserInfo",
"variableDeclarationType" : "UserInfo",
"documentation" : "",
"simpleType" : "UserInfo",
"variableSetterType" : "UserInfo"
},
"getterModel" : {
"returnType" : "UserInfo",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "committer",
"marshallLocationName" : "committer",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.
\n@param committer Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.*/",
"getterDocumentation" : "/**Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.
\n@return Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.*/",
"fluentSetterDocumentation" : "/**Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.
\n@param committer Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.
\n@param committer Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Any additional data associated with the specified commit.
",
"name" : "AdditionalData",
"c2jName" : "additionalData",
"c2jShape" : "AdditionalData",
"variable" : {
"variableName" : "additionalData",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Any additional data associated with the specified commit.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "additionalData",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "additionalData",
"marshallLocationName" : "additionalData",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Any additional data associated with the specified commit.
\n@param additionalData Any additional data associated with the specified commit.*/",
"getterDocumentation" : "/**Any additional data associated with the specified commit.
\n@return Any additional data associated with the specified commit.*/",
"fluentSetterDocumentation" : "/**Any additional data associated with the specified commit.
\n@param additionalData Any additional data associated with the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Any additional data associated with the specified commit.
\n@param additionalData Any additional data associated with the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "commit",
"variableType" : "Commit",
"variableDeclarationType" : "Commit",
"documentation" : null,
"simpleType" : "Commit",
"variableSetterType" : "Commit"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Committer" : {
"documentation" : "Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.
",
"name" : "Committer",
"c2jName" : "committer",
"c2jShape" : "UserInfo",
"variable" : {
"variableName" : "committer",
"variableType" : "UserInfo",
"variableDeclarationType" : "UserInfo",
"documentation" : "Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.
",
"simpleType" : "UserInfo",
"variableSetterType" : "UserInfo"
},
"setterModel" : {
"variableName" : "committer",
"variableType" : "UserInfo",
"variableDeclarationType" : "UserInfo",
"documentation" : "",
"simpleType" : "UserInfo",
"variableSetterType" : "UserInfo"
},
"getterModel" : {
"returnType" : "UserInfo",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "committer",
"marshallLocationName" : "committer",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.
\n@param committer Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.*/",
"getterDocumentation" : "/**Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.
\n@return Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.*/",
"fluentSetterDocumentation" : "/**Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.
\n@param committer Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.
\n@param committer Information about the person who committed the specified commit, also known as the committer. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"AdditionalData" : {
"documentation" : "Any additional data associated with the specified commit.
",
"name" : "AdditionalData",
"c2jName" : "additionalData",
"c2jShape" : "AdditionalData",
"variable" : {
"variableName" : "additionalData",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Any additional data associated with the specified commit.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "additionalData",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "additionalData",
"marshallLocationName" : "additionalData",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Any additional data associated with the specified commit.
\n@param additionalData Any additional data associated with the specified commit.*/",
"getterDocumentation" : "/**Any additional data associated with the specified commit.
\n@return Any additional data associated with the specified commit.*/",
"fluentSetterDocumentation" : "/**Any additional data associated with the specified commit.
\n@param additionalData Any additional data associated with the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Any additional data associated with the specified commit.
\n@param additionalData Any additional data associated with the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Message" : {
"documentation" : "The message associated with the specified commit.
",
"name" : "Message",
"c2jName" : "message",
"c2jShape" : "Message",
"variable" : {
"variableName" : "message",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The message associated with the specified commit.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "message",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "message",
"marshallLocationName" : "message",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The message associated with the specified commit.
\n@param message The message associated with the specified commit.*/",
"getterDocumentation" : "/**The message associated with the specified commit.
\n@return The message associated with the specified commit.*/",
"fluentSetterDocumentation" : "/**The message associated with the specified commit.
\n@param message The message associated with the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The message associated with the specified commit.
\n@param message The message associated with the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Author" : {
"documentation" : "Information about the author of the specified commit.
",
"name" : "Author",
"c2jName" : "author",
"c2jShape" : "UserInfo",
"variable" : {
"variableName" : "author",
"variableType" : "UserInfo",
"variableDeclarationType" : "UserInfo",
"documentation" : "Information about the author of the specified commit.
",
"simpleType" : "UserInfo",
"variableSetterType" : "UserInfo"
},
"setterModel" : {
"variableName" : "author",
"variableType" : "UserInfo",
"variableDeclarationType" : "UserInfo",
"documentation" : "",
"simpleType" : "UserInfo",
"variableSetterType" : "UserInfo"
},
"getterModel" : {
"returnType" : "UserInfo",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "author",
"marshallLocationName" : "author",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Information about the author of the specified commit.
\n@param author Information about the author of the specified commit.*/",
"getterDocumentation" : "/**Information about the author of the specified commit.
\n@return Information about the author of the specified commit.*/",
"fluentSetterDocumentation" : "/**Information about the author of the specified commit.
\n@param author Information about the author of the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Information about the author of the specified commit.
\n@param author Information about the author of the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Parents" : {
"documentation" : "The parent list for the specified commit.
",
"name" : "Parents",
"c2jName" : "parents",
"c2jShape" : "ParentList",
"variable" : {
"variableName" : "parents",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "The parent list for the specified commit.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "parents",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "parents",
"marshallLocationName" : "parents",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "ObjectId",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The parent list for the specified commit.
\n@param parents The parent list for the specified commit.*/",
"getterDocumentation" : "/**The parent list for the specified commit.
\n@return The parent list for the specified commit.*/",
"fluentSetterDocumentation" : "/**The parent list for the specified commit.
\n@param parents The parent list for the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The parent list for the specified commit.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setParents(java.util.Collection)} or {@link #withParents(java.util.Collection)} if you want to override the existing values.
\n@param parents The parent list for the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"TreeId" : {
"documentation" : "Tree information for the specified commit.
",
"name" : "TreeId",
"c2jName" : "treeId",
"c2jShape" : "ObjectId",
"variable" : {
"variableName" : "treeId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Tree information for the specified commit.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "treeId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "treeId",
"marshallLocationName" : "treeId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Tree information for the specified commit.
\n@param treeId Tree information for the specified commit.*/",
"getterDocumentation" : "/**Tree information for the specified commit.
\n@return Tree information for the specified commit.*/",
"fluentSetterDocumentation" : "/**Tree information for the specified commit.
\n@param treeId Tree information for the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Tree information for the specified commit.
\n@param treeId Tree information for the specified commit.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"GetBranchResult" : {
"c2jName" : "GetBranchOutput",
"documentation" : "Represents the output of a get branch operation.
",
"shapeName" : "GetBranchResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the branch.
",
"name" : "Branch",
"c2jName" : "branch",
"c2jShape" : "BranchInfo",
"variable" : {
"variableName" : "branch",
"variableType" : "BranchInfo",
"variableDeclarationType" : "BranchInfo",
"documentation" : "The name of the branch.
",
"simpleType" : "BranchInfo",
"variableSetterType" : "BranchInfo"
},
"setterModel" : {
"variableName" : "branch",
"variableType" : "BranchInfo",
"variableDeclarationType" : "BranchInfo",
"documentation" : "",
"simpleType" : "BranchInfo",
"variableSetterType" : "BranchInfo"
},
"getterModel" : {
"returnType" : "BranchInfo",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "branch",
"marshallLocationName" : "branch",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the branch.
\n@param branch The name of the branch.*/",
"getterDocumentation" : "/**The name of the branch.
\n@return The name of the branch.*/",
"fluentSetterDocumentation" : "/**The name of the branch.
\n@param branch The name of the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the branch.
\n@param branch The name of the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getBranchResult",
"variableType" : "GetBranchResult",
"variableDeclarationType" : "GetBranchResult",
"documentation" : null,
"simpleType" : "GetBranchResult",
"variableSetterType" : "GetBranchResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Branch" : {
"documentation" : "The name of the branch.
",
"name" : "Branch",
"c2jName" : "branch",
"c2jShape" : "BranchInfo",
"variable" : {
"variableName" : "branch",
"variableType" : "BranchInfo",
"variableDeclarationType" : "BranchInfo",
"documentation" : "The name of the branch.
",
"simpleType" : "BranchInfo",
"variableSetterType" : "BranchInfo"
},
"setterModel" : {
"variableName" : "branch",
"variableType" : "BranchInfo",
"variableDeclarationType" : "BranchInfo",
"documentation" : "",
"simpleType" : "BranchInfo",
"variableSetterType" : "BranchInfo"
},
"getterModel" : {
"returnType" : "BranchInfo",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "branch",
"marshallLocationName" : "branch",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the branch.
\n@param branch The name of the branch.*/",
"getterDocumentation" : "/**The name of the branch.
\n@return The name of the branch.*/",
"fluentSetterDocumentation" : "/**The name of the branch.
\n@param branch The name of the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the branch.
\n@param branch The name of the branch.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListBranchesResult" : {
"c2jName" : "ListBranchesOutput",
"documentation" : "Represents the output of a list branches operation.
",
"shapeName" : "ListBranchesResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The list of branch names.
",
"name" : "Branches",
"c2jName" : "branches",
"c2jShape" : "BranchNameList",
"variable" : {
"variableName" : "branches",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "The list of branch names.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "branches",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection