models.codeartifact-2018-09-22-intermediate.json Maven / Gradle / Ivy
Show all versions of codeartifact Show documentation
{
"customizationConfig" : {
"attachPayloadTraitToMember" : { },
"blacklistedSimpleMethods" : [ ],
"calculateCrc32FromCompressedData" : false,
"convenienceTypeOverloads" : [ ],
"customErrorCodeFieldName" : null,
"customProtocolFactoryFqcn" : null,
"customResponseMetadata" : null,
"customRetryPolicy" : null,
"customServiceMetadata" : null,
"defaultSimpleMethodTestRegion" : null,
"deprecatedOperations" : [ ],
"deprecatedShapes" : [ ],
"enableEndpointDiscoveryMethodRequired" : false,
"excludeClientCreateMethod" : false,
"modelMarshallerDefaultValueSupplier" : { },
"operationModifiers" : null,
"paginationCustomization" : null,
"renameShapes" : null,
"sdkModeledExceptionBaseClassName" : null,
"sdkRequestBaseClassName" : null,
"sdkResponseBaseClassName" : null,
"serviceSpecificClientConfigClass" : null,
"serviceSpecificHttpConfig" : null,
"shapeModifiers" : null,
"shapeSubstitutions" : null,
"shareModelConfig" : null,
"skipSyncClientGeneration" : false,
"useAutoConstructList" : true,
"useAutoConstructMap" : true,
"utilitiesMethod" : null,
"verifiedSimpleMethods" : [ ]
},
"metadata" : {
"apiVersion" : "2018-09-22",
"asyncBuilder" : "DefaultCodeartifactAsyncClientBuilder",
"asyncBuilderInterface" : "CodeartifactAsyncClientBuilder",
"asyncClient" : "DefaultCodeartifactAsyncClient",
"asyncInterface" : "CodeartifactAsyncClient",
"authPolicyPackageName" : null,
"authType" : "V4",
"baseBuilder" : "DefaultCodeartifactBaseClientBuilder",
"baseBuilderInterface" : "CodeartifactBaseClientBuilder",
"baseExceptionName" : "CodeartifactException",
"baseRequestName" : "CodeartifactRequest",
"baseResponseName" : "CodeartifactResponse",
"cborProtocol" : false,
"clientPackageName" : "codeartifact",
"contentType" : null,
"defaultEndpoint" : null,
"defaultEndpointWithoutHttpProtocol" : null,
"defaultRegion" : null,
"descriptiveServiceName" : "CodeArtifact",
"documentation" : " AWS CodeArtifact is a fully managed artifact repository compatible with language-native package managers and build tools such as npm, Apache Maven, and pip. You can use CodeArtifact to share packages with development teams and pull packages. Packages can be pulled from both public and CodeArtifact repositories. You can also create an upstream relationship between a CodeArtifact repository and another repository, which effectively merges their contents from the point of view of a package manager client.
AWS CodeArtifact Components
Use the information in this guide to help you work with the following CodeArtifact components:
-
Repository: A CodeArtifact repository contains a set of package versions, each of which maps to a set of assets, or files. Repositories are polyglot, so a single repository can contain packages of any supported type. Each repository exposes endpoints for fetching and publishing packages using tools like the npm
CLI, the Maven CLI ( mvn
), and pip
. You can create up to 100 repositories per AWS account.
-
Domain: Repositories are aggregated into a higher-level entity known as a domain. All package assets and metadata are stored in the domain, but are consumed through repositories. A given package asset, such as a Maven JAR file, is stored once per domain, no matter how many repositories it's present in. All of the assets and metadata in a domain are encrypted with the same customer master key (CMK) stored in AWS Key Management Service (AWS KMS).
Each repository is a member of a single domain and can't be moved to a different domain.
The domain allows organizational policy to be applied across multiple repositories, such as which accounts can access repositories in the domain, and which public repositories can be used as sources of packages.
Although an organization can have multiple domains, we recommend a single production domain that contains all published artifacts so that teams can find and share packages across their organization.
-
Package: A package is a bundle of software and the metadata required to resolve dependencies and install the software. CodeArtifact supports npm, PyPI, and Maven package formats.
In CodeArtifact, a package consists of:
-
A name (for example, webpack
is the name of a popular npm package)
-
An optional namespace (for example, @types
in @types/node
)
-
A set of versions (for example, 1.0.0
, 1.0.1
, 1.0.2
, etc.)
-
Package-level metadata (for example, npm tags)
-
Package version: A version of a package, such as @types/node 12.6.9
. The version number format and semantics vary for different package formats. For example, npm package versions must conform to the Semantic Versioning specification. In CodeArtifact, a package version consists of the version identifier, metadata at the package version level, and a set of assets.
-
Upstream repository: One repository is upstream of another when the package versions in it can be accessed from the repository endpoint of the downstream repository, effectively merging the contents of the two repositories from the point of view of a client. CodeArtifact allows creating an upstream relationship between two repositories.
-
Asset: An individual file stored in CodeArtifact associated with a package version, such as an npm .tgz
file or Maven POM and JAR files.
CodeArtifact supports these operations:
-
AssociateExternalConnection
: Adds an existing external connection to a repository.
-
CopyPackageVersions
: Copies package versions from one repository to another repository in the same domain.
-
CreateDomain
: Creates a domain
-
CreateRepository
: Creates a CodeArtifact repository in a domain.
-
DeleteDomain
: Deletes a domain. You cannot delete a domain that contains repositories.
-
DeleteDomainPermissionsPolicy
: Deletes the resource policy that is set on a domain.
-
DeletePackageVersions
: Deletes versions of a package. After a package has been deleted, it can be republished, but its assets and metadata cannot be restored because they have been permanently removed from storage.
-
DeleteRepository
: Deletes a repository.
-
DeleteRepositoryPermissionsPolicy
: Deletes the resource policy that is set on a repository.
-
DescribeDomain
: Returns a DomainDescription
object that contains information about the requested domain.
-
DescribePackageVersion
: Returns a PackageVersionDescription
object that contains details about a package version.
-
DescribeRepository
: Returns a RepositoryDescription
object that contains detailed information about the requested repository.
-
DisposePackageVersions
: Disposes versions of a package. A package version with the status Disposed
cannot be restored because they have been permanently removed from storage.
-
DisassociateExternalConnection
: Removes an existing external connection from a repository.
-
GetAuthorizationToken
: Generates a temporary authorization token for accessing repositories in the domain. The token expires the authorization period has passed. The default authorization period is 12 hours and can be customized to any length with a maximum of 12 hours.
-
GetDomainPermissionsPolicy
: Returns the policy of a resource that is attached to the specified domain.
-
GetPackageVersionAsset
: Returns the contents of an asset that is in a package version.
-
GetPackageVersionReadme
: Gets the readme file or descriptive text for a package version.
-
GetRepositoryEndpoint
: Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format:
-
npm
-
pypi
-
maven
-
GetRepositoryPermissionsPolicy
: Returns the resource policy that is set on a repository.
-
ListDomains
: Returns a list of DomainSummary
objects. Each returned DomainSummary
object contains information about a domain.
-
ListPackages
: Lists the packages in a repository.
-
ListPackageVersionAssets
: Lists the assets for a given package version.
-
ListPackageVersionDependencies
: Returns a list of the direct dependencies for a package version.
-
ListPackageVersions
: Returns a list of package versions for a specified package in a repository.
-
ListRepositories
: Returns a list of repositories owned by the AWS account that called this method.
-
ListRepositoriesInDomain
: Returns a list of the repositories in a domain.
-
PutDomainPermissionsPolicy
: Attaches a resource policy to a domain.
-
PutRepositoryPermissionsPolicy
: Sets the resource policy on a repository that specifies permissions to access it.
-
UpdatePackageVersionsStatus
: Updates the status of one or more versions of a package.
-
UpdateRepository
: Updates the properties of a repository.
",
"endpointPrefix" : "codeartifact",
"fullAuthPolicyPackageName" : "software.amazon.awssdk.services",
"fullClientPackageName" : "software.amazon.awssdk.services.codeartifact",
"fullModelPackageName" : "software.amazon.awssdk.services.codeartifact.model",
"fullPaginatorsPackageName" : "software.amazon.awssdk.services.codeartifact.paginators",
"fullRequestTransformPackageName" : "software.amazon.awssdk.services.codeartifact.transform",
"fullTransformPackageName" : "software.amazon.awssdk.services.codeartifact.transform",
"ionProtocol" : false,
"jsonProtocol" : true,
"jsonVersion" : "1.1",
"modelPackageName" : "codeartifact.model",
"paginatorsPackageName" : "codeartifact.paginators",
"protocol" : "rest-json",
"queryProtocol" : false,
"requestTransformPackageName" : "codeartifact.transform",
"requiresApiKey" : false,
"requiresIamSigners" : false,
"rootPackageName" : "software.amazon.awssdk.services",
"serviceId" : "codeartifact",
"serviceName" : "Codeartifact",
"signingName" : "codeartifact",
"syncBuilder" : "DefaultCodeartifactClientBuilder",
"syncBuilderInterface" : "CodeartifactClientBuilder",
"syncClient" : "DefaultCodeartifactClient",
"syncInterface" : "CodeartifactClient",
"transformPackageName" : "codeartifact.transform",
"uid" : "codeartifact-2018-09-22",
"xmlProtocol" : false
},
"operations" : {
"AssociateExternalConnection" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : "Adds an existing external connection to a repository. One external connection is allowed per repository.
A repository can have one or more upstream repositories, or an external connection.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "ConflictException",
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"httpStatusCode" : 409
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ServiceQuotaExceededException",
"documentation" : " The operation did not succeed because it would have exceeded a service limit for your account.
",
"httpStatusCode" : 402
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "AssociateExternalConnectionRequest",
"variableName" : "associateExternalConnectionRequest",
"variableType" : "AssociateExternalConnectionRequest",
"documentation" : "",
"simpleType" : "AssociateExternalConnectionRequest",
"variableSetterType" : "AssociateExternalConnectionRequest"
},
"methodName" : "associateExternalConnection",
"operationName" : "AssociateExternalConnection",
"paginated" : false,
"returnType" : {
"returnType" : "AssociateExternalConnectionResponse",
"documentation" : null
},
"syncReturnType" : "AssociateExternalConnectionResponse"
},
"CopyPackageVersions" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Copies package versions from one repository to another repository in the same domain.
You must specify versions
or versionRevisions
. You cannot specify both.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "ConflictException",
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"httpStatusCode" : 409
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ServiceQuotaExceededException",
"documentation" : " The operation did not succeed because it would have exceeded a service limit for your account.
",
"httpStatusCode" : 402
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "CopyPackageVersionsRequest",
"variableName" : "copyPackageVersionsRequest",
"variableType" : "CopyPackageVersionsRequest",
"documentation" : "",
"simpleType" : "CopyPackageVersionsRequest",
"variableSetterType" : "CopyPackageVersionsRequest"
},
"methodName" : "copyPackageVersions",
"operationName" : "CopyPackageVersions",
"paginated" : false,
"returnType" : {
"returnType" : "CopyPackageVersionsResponse",
"documentation" : null
},
"syncReturnType" : "CopyPackageVersionsResponse"
},
"CreateDomain" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Creates a domain. CodeArtifact domains make it easier to manage multiple repositories across an organization. You can use a domain to apply permissions across many repositories owned by different AWS accounts. An asset is stored only once in a domain, even if it's in multiple repositories.
Although you can have multiple domains, we recommend a single production domain that contains all published artifacts so that your development teams can find and share packages. You can use a second pre-production domain to test changes to the production domain configuration.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "ConflictException",
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"httpStatusCode" : 409
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ServiceQuotaExceededException",
"documentation" : " The operation did not succeed because it would have exceeded a service limit for your account.
",
"httpStatusCode" : 402
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "CreateDomainRequest",
"variableName" : "createDomainRequest",
"variableType" : "CreateDomainRequest",
"documentation" : "",
"simpleType" : "CreateDomainRequest",
"variableSetterType" : "CreateDomainRequest"
},
"methodName" : "createDomain",
"operationName" : "CreateDomain",
"paginated" : false,
"returnType" : {
"returnType" : "CreateDomainResponse",
"documentation" : null
},
"syncReturnType" : "CreateDomainResponse"
},
"CreateRepository" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Creates a repository.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "ConflictException",
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"httpStatusCode" : 409
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ServiceQuotaExceededException",
"documentation" : " The operation did not succeed because it would have exceeded a service limit for your account.
",
"httpStatusCode" : 402
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "CreateRepositoryRequest",
"variableName" : "createRepositoryRequest",
"variableType" : "CreateRepositoryRequest",
"documentation" : "",
"simpleType" : "CreateRepositoryRequest",
"variableSetterType" : "CreateRepositoryRequest"
},
"methodName" : "createRepository",
"operationName" : "CreateRepository",
"paginated" : false,
"returnType" : {
"returnType" : "CreateRepositoryResponse",
"documentation" : null
},
"syncReturnType" : "CreateRepositoryResponse"
},
"DeleteDomain" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Deletes a domain. You cannot delete a domain that contains repositories. If you want to delete a domain with repositories, first delete its repositories.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "ConflictException",
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"httpStatusCode" : 409
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "DeleteDomainRequest",
"variableName" : "deleteDomainRequest",
"variableType" : "DeleteDomainRequest",
"documentation" : "",
"simpleType" : "DeleteDomainRequest",
"variableSetterType" : "DeleteDomainRequest"
},
"methodName" : "deleteDomain",
"operationName" : "DeleteDomain",
"paginated" : false,
"returnType" : {
"returnType" : "DeleteDomainResponse",
"documentation" : null
},
"syncReturnType" : "DeleteDomainResponse"
},
"DeleteDomainPermissionsPolicy" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Deletes the resource policy set on a domain.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "ConflictException",
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"httpStatusCode" : 409
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "DeleteDomainPermissionsPolicyRequest",
"variableName" : "deleteDomainPermissionsPolicyRequest",
"variableType" : "DeleteDomainPermissionsPolicyRequest",
"documentation" : "",
"simpleType" : "DeleteDomainPermissionsPolicyRequest",
"variableSetterType" : "DeleteDomainPermissionsPolicyRequest"
},
"methodName" : "deleteDomainPermissionsPolicy",
"operationName" : "DeleteDomainPermissionsPolicy",
"paginated" : false,
"returnType" : {
"returnType" : "DeleteDomainPermissionsPolicyResponse",
"documentation" : null
},
"syncReturnType" : "DeleteDomainPermissionsPolicyResponse"
},
"DeletePackageVersions" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Deletes one or more versions of a package. A deleted package version cannot be restored in your repository. If you want to remove a package version from your repository and be able to restore it later, set its status to Archived
. Archived packages cannot be downloaded from a repository and don't show up with list package APIs (for example, ListackageVersions
), but you can restore them using UpdatePackageVersionsStatus
.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "ConflictException",
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"httpStatusCode" : 409
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "DeletePackageVersionsRequest",
"variableName" : "deletePackageVersionsRequest",
"variableType" : "DeletePackageVersionsRequest",
"documentation" : "",
"simpleType" : "DeletePackageVersionsRequest",
"variableSetterType" : "DeletePackageVersionsRequest"
},
"methodName" : "deletePackageVersions",
"operationName" : "DeletePackageVersions",
"paginated" : false,
"returnType" : {
"returnType" : "DeletePackageVersionsResponse",
"documentation" : null
},
"syncReturnType" : "DeletePackageVersionsResponse"
},
"DeleteRepository" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Deletes a repository.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "ConflictException",
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"httpStatusCode" : 409
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "DeleteRepositoryRequest",
"variableName" : "deleteRepositoryRequest",
"variableType" : "DeleteRepositoryRequest",
"documentation" : "",
"simpleType" : "DeleteRepositoryRequest",
"variableSetterType" : "DeleteRepositoryRequest"
},
"methodName" : "deleteRepository",
"operationName" : "DeleteRepository",
"paginated" : false,
"returnType" : {
"returnType" : "DeleteRepositoryResponse",
"documentation" : null
},
"syncReturnType" : "DeleteRepositoryResponse"
},
"DeleteRepositoryPermissionsPolicy" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Deletes the resource policy that is set on a repository. After a resource policy is deleted, the permissions allowed and denied by the deleted policy are removed. The effect of deleting a resource policy might not be immediate.
Use DeleteRepositoryPermissionsPolicy
with caution. After a policy is deleted, AWS users, roles, and accounts lose permissions to perform the repository actions granted by the deleted policy.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "ConflictException",
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"httpStatusCode" : 409
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "DeleteRepositoryPermissionsPolicyRequest",
"variableName" : "deleteRepositoryPermissionsPolicyRequest",
"variableType" : "DeleteRepositoryPermissionsPolicyRequest",
"documentation" : "",
"simpleType" : "DeleteRepositoryPermissionsPolicyRequest",
"variableSetterType" : "DeleteRepositoryPermissionsPolicyRequest"
},
"methodName" : "deleteRepositoryPermissionsPolicy",
"operationName" : "DeleteRepositoryPermissionsPolicy",
"paginated" : false,
"returnType" : {
"returnType" : "DeleteRepositoryPermissionsPolicyResponse",
"documentation" : null
},
"syncReturnType" : "DeleteRepositoryPermissionsPolicyResponse"
},
"DescribeDomain" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Returns a DomainDescription
object that contains information about the requested domain.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "DescribeDomainRequest",
"variableName" : "describeDomainRequest",
"variableType" : "DescribeDomainRequest",
"documentation" : "",
"simpleType" : "DescribeDomainRequest",
"variableSetterType" : "DescribeDomainRequest"
},
"methodName" : "describeDomain",
"operationName" : "DescribeDomain",
"paginated" : false,
"returnType" : {
"returnType" : "DescribeDomainResponse",
"documentation" : null
},
"syncReturnType" : "DescribeDomainResponse"
},
"DescribePackageVersion" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Returns a PackageVersionDescription
object that contains information about the requested package version.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "ConflictException",
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"httpStatusCode" : 409
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "DescribePackageVersionRequest",
"variableName" : "describePackageVersionRequest",
"variableType" : "DescribePackageVersionRequest",
"documentation" : "",
"simpleType" : "DescribePackageVersionRequest",
"variableSetterType" : "DescribePackageVersionRequest"
},
"methodName" : "describePackageVersion",
"operationName" : "DescribePackageVersion",
"paginated" : false,
"returnType" : {
"returnType" : "DescribePackageVersionResponse",
"documentation" : null
},
"syncReturnType" : "DescribePackageVersionResponse"
},
"DescribeRepository" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Returns a RepositoryDescription
object that contains detailed information about the requested repository.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "DescribeRepositoryRequest",
"variableName" : "describeRepositoryRequest",
"variableType" : "DescribeRepositoryRequest",
"documentation" : "",
"simpleType" : "DescribeRepositoryRequest",
"variableSetterType" : "DescribeRepositoryRequest"
},
"methodName" : "describeRepository",
"operationName" : "DescribeRepository",
"paginated" : false,
"returnType" : {
"returnType" : "DescribeRepositoryResponse",
"documentation" : null
},
"syncReturnType" : "DescribeRepositoryResponse"
},
"DisassociateExternalConnection" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Removes an existing external connection from a repository.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "ConflictException",
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"httpStatusCode" : 409
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ServiceQuotaExceededException",
"documentation" : " The operation did not succeed because it would have exceeded a service limit for your account.
",
"httpStatusCode" : 402
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "DisassociateExternalConnectionRequest",
"variableName" : "disassociateExternalConnectionRequest",
"variableType" : "DisassociateExternalConnectionRequest",
"documentation" : "",
"simpleType" : "DisassociateExternalConnectionRequest",
"variableSetterType" : "DisassociateExternalConnectionRequest"
},
"methodName" : "disassociateExternalConnection",
"operationName" : "DisassociateExternalConnection",
"paginated" : false,
"returnType" : {
"returnType" : "DisassociateExternalConnectionResponse",
"documentation" : null
},
"syncReturnType" : "DisassociateExternalConnectionResponse"
},
"DisposePackageVersions" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Deletes the assets in package versions and sets the package versions' status to Disposed
. A disposed package version cannot be restored in your repository because its assets are deleted.
To view all disposed package versions in a repository, use ListackageVersions
and set the status
parameter to Disposed
.
To view information about a disposed package version, use ListPackageVersions
and set the status
parameter to Disposed
.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "ConflictException",
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"httpStatusCode" : 409
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "DisposePackageVersionsRequest",
"variableName" : "disposePackageVersionsRequest",
"variableType" : "DisposePackageVersionsRequest",
"documentation" : "",
"simpleType" : "DisposePackageVersionsRequest",
"variableSetterType" : "DisposePackageVersionsRequest"
},
"methodName" : "disposePackageVersions",
"operationName" : "DisposePackageVersions",
"paginated" : false,
"returnType" : {
"returnType" : "DisposePackageVersionsResponse",
"documentation" : null
},
"syncReturnType" : "DisposePackageVersionsResponse"
},
"GetAuthorizationToken" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Generates a temporary authentication token for accessing repositories in the domain. This API requires the codeartifact:GetAuthorizationToken
and sts:GetServiceBearerToken
permissions.
CodeArtifact authorization tokens are valid for a period of 12 hours when created with the login
command. You can call login
periodically to refresh the token. When you create an authorization token with the GetAuthorizationToken
API, you can set a custom authorization period, up to a maximum of 12 hours, with the durationSeconds
parameter.
The authorization period begins after login
or GetAuthorizationToken
is called. If login
or GetAuthorizationToken
is called while assuming a role, the token lifetime is independent of the maximum session duration of the role. For example, if you call sts assume-role
and specify a session duration of 15 minutes, then generate a CodeArtifact authorization token, the token will be valid for the full authorization period even though this is longer than the 15-minute session duration.
See Using IAM Roles for more information on controlling session duration.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "GetAuthorizationTokenRequest",
"variableName" : "getAuthorizationTokenRequest",
"variableType" : "GetAuthorizationTokenRequest",
"documentation" : "",
"simpleType" : "GetAuthorizationTokenRequest",
"variableSetterType" : "GetAuthorizationTokenRequest"
},
"methodName" : "getAuthorizationToken",
"operationName" : "GetAuthorizationToken",
"paginated" : false,
"returnType" : {
"returnType" : "GetAuthorizationTokenResponse",
"documentation" : null
},
"syncReturnType" : "GetAuthorizationTokenResponse"
},
"GetDomainPermissionsPolicy" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Returns the resource policy attached to the specified domain.
The policy is a resource-based policy, not an identity-based policy. For more information, see Identity-based policies and resource-based policies in the AWS Identity and Access Management User Guide.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "GetDomainPermissionsPolicyRequest",
"variableName" : "getDomainPermissionsPolicyRequest",
"variableType" : "GetDomainPermissionsPolicyRequest",
"documentation" : "",
"simpleType" : "GetDomainPermissionsPolicyRequest",
"variableSetterType" : "GetDomainPermissionsPolicyRequest"
},
"methodName" : "getDomainPermissionsPolicy",
"operationName" : "GetDomainPermissionsPolicy",
"paginated" : false,
"returnType" : {
"returnType" : "GetDomainPermissionsPolicyResponse",
"documentation" : null
},
"syncReturnType" : "GetDomainPermissionsPolicyResponse"
},
"GetPackageVersionAsset" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Returns an asset (or file) that is in a package. For example, for a Maven package version, use GetPackageVersionAsset
to download a JAR
file, a POM
file, or any other assets in the package version.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : true,
"input" : {
"variableDeclarationType" : "GetPackageVersionAssetRequest",
"variableName" : "getPackageVersionAssetRequest",
"variableType" : "GetPackageVersionAssetRequest",
"documentation" : "",
"simpleType" : "GetPackageVersionAssetRequest",
"variableSetterType" : "GetPackageVersionAssetRequest"
},
"methodName" : "getPackageVersionAsset",
"operationName" : "GetPackageVersionAsset",
"paginated" : false,
"returnType" : {
"returnType" : "GetPackageVersionAssetResponse",
"documentation" : null
},
"syncReturnType" : "GetPackageVersionAssetResponse"
},
"GetPackageVersionReadme" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Gets the readme file or descriptive text for a package version. For packages that do not contain a readme file, CodeArtifact extracts a description from a metadata file. For example, from the <description>
element in the pom.xml
file of a Maven package.
The returned text might contain formatting. For example, it might contain formatting for Markdown or reStructuredText.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "GetPackageVersionReadmeRequest",
"variableName" : "getPackageVersionReadmeRequest",
"variableType" : "GetPackageVersionReadmeRequest",
"documentation" : "",
"simpleType" : "GetPackageVersionReadmeRequest",
"variableSetterType" : "GetPackageVersionReadmeRequest"
},
"methodName" : "getPackageVersionReadme",
"operationName" : "GetPackageVersionReadme",
"paginated" : false,
"returnType" : {
"returnType" : "GetPackageVersionReadmeResponse",
"documentation" : null
},
"syncReturnType" : "GetPackageVersionReadmeResponse"
},
"GetRepositoryEndpoint" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format:
-
npm
-
pypi
-
maven
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "GetRepositoryEndpointRequest",
"variableName" : "getRepositoryEndpointRequest",
"variableType" : "GetRepositoryEndpointRequest",
"documentation" : "",
"simpleType" : "GetRepositoryEndpointRequest",
"variableSetterType" : "GetRepositoryEndpointRequest"
},
"methodName" : "getRepositoryEndpoint",
"operationName" : "GetRepositoryEndpoint",
"paginated" : false,
"returnType" : {
"returnType" : "GetRepositoryEndpointResponse",
"documentation" : null
},
"syncReturnType" : "GetRepositoryEndpointResponse"
},
"GetRepositoryPermissionsPolicy" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Returns the resource policy that is set on a repository.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "GetRepositoryPermissionsPolicyRequest",
"variableName" : "getRepositoryPermissionsPolicyRequest",
"variableType" : "GetRepositoryPermissionsPolicyRequest",
"documentation" : "",
"simpleType" : "GetRepositoryPermissionsPolicyRequest",
"variableSetterType" : "GetRepositoryPermissionsPolicyRequest"
},
"methodName" : "getRepositoryPermissionsPolicy",
"operationName" : "GetRepositoryPermissionsPolicy",
"paginated" : false,
"returnType" : {
"returnType" : "GetRepositoryPermissionsPolicyResponse",
"documentation" : null
},
"syncReturnType" : "GetRepositoryPermissionsPolicyResponse"
},
"ListDomains" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Returns a list of DomainSummary
objects for all domains owned by the AWS account that makes this call. Each returned DomainSummary
object contains information about a domain.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "ListDomainsRequest",
"variableName" : "listDomainsRequest",
"variableType" : "ListDomainsRequest",
"documentation" : "",
"simpleType" : "ListDomainsRequest",
"variableSetterType" : "ListDomainsRequest"
},
"methodName" : "listDomains",
"operationName" : "ListDomains",
"paginated" : true,
"returnType" : {
"returnType" : "ListDomainsResponse",
"documentation" : null
},
"syncReturnType" : "ListDomainsResponse"
},
"ListPackageVersionAssets" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Returns a list of AssetSummary
objects for assets in a package version.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "ListPackageVersionAssetsRequest",
"variableName" : "listPackageVersionAssetsRequest",
"variableType" : "ListPackageVersionAssetsRequest",
"documentation" : "",
"simpleType" : "ListPackageVersionAssetsRequest",
"variableSetterType" : "ListPackageVersionAssetsRequest"
},
"methodName" : "listPackageVersionAssets",
"operationName" : "ListPackageVersionAssets",
"paginated" : true,
"returnType" : {
"returnType" : "ListPackageVersionAssetsResponse",
"documentation" : null
},
"syncReturnType" : "ListPackageVersionAssetsResponse"
},
"ListPackageVersionDependencies" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Returns the direct dependencies for a package version. The dependencies are returned as PackageDependency
objects. CodeArtifact extracts the dependencies for a package version from the metadata file for the package format (for example, the package.json
file for npm packages and the pom.xml
file for Maven). Any package version dependencies that are not listed in the configuration file are not returned.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "ListPackageVersionDependenciesRequest",
"variableName" : "listPackageVersionDependenciesRequest",
"variableType" : "ListPackageVersionDependenciesRequest",
"documentation" : "",
"simpleType" : "ListPackageVersionDependenciesRequest",
"variableSetterType" : "ListPackageVersionDependenciesRequest"
},
"methodName" : "listPackageVersionDependencies",
"operationName" : "ListPackageVersionDependencies",
"paginated" : false,
"returnType" : {
"returnType" : "ListPackageVersionDependenciesResponse",
"documentation" : null
},
"syncReturnType" : "ListPackageVersionDependenciesResponse"
},
"ListPackageVersions" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Returns a list of PackageVersionSummary
objects for package versions in a repository that match the request parameters.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "ListPackageVersionsRequest",
"variableName" : "listPackageVersionsRequest",
"variableType" : "ListPackageVersionsRequest",
"documentation" : "",
"simpleType" : "ListPackageVersionsRequest",
"variableSetterType" : "ListPackageVersionsRequest"
},
"methodName" : "listPackageVersions",
"operationName" : "ListPackageVersions",
"paginated" : true,
"returnType" : {
"returnType" : "ListPackageVersionsResponse",
"documentation" : null
},
"syncReturnType" : "ListPackageVersionsResponse"
},
"ListPackages" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Returns a list of PackageSummary
objects for packages in a repository that match the request parameters.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "ListPackagesRequest",
"variableName" : "listPackagesRequest",
"variableType" : "ListPackagesRequest",
"documentation" : "",
"simpleType" : "ListPackagesRequest",
"variableSetterType" : "ListPackagesRequest"
},
"methodName" : "listPackages",
"operationName" : "ListPackages",
"paginated" : true,
"returnType" : {
"returnType" : "ListPackagesResponse",
"documentation" : null
},
"syncReturnType" : "ListPackagesResponse"
},
"ListRepositories" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Returns a list of RepositorySummary
objects. Each RepositorySummary
contains information about a repository in the specified AWS account and that matches the input parameters.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "ListRepositoriesRequest",
"variableName" : "listRepositoriesRequest",
"variableType" : "ListRepositoriesRequest",
"documentation" : "",
"simpleType" : "ListRepositoriesRequest",
"variableSetterType" : "ListRepositoriesRequest"
},
"methodName" : "listRepositories",
"operationName" : "ListRepositories",
"paginated" : true,
"returnType" : {
"returnType" : "ListRepositoriesResponse",
"documentation" : null
},
"syncReturnType" : "ListRepositoriesResponse"
},
"ListRepositoriesInDomain" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Returns a list of RepositorySummary
objects. Each RepositorySummary
contains information about a repository in the specified domain and that matches the input parameters.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "ListRepositoriesInDomainRequest",
"variableName" : "listRepositoriesInDomainRequest",
"variableType" : "ListRepositoriesInDomainRequest",
"documentation" : "",
"simpleType" : "ListRepositoriesInDomainRequest",
"variableSetterType" : "ListRepositoriesInDomainRequest"
},
"methodName" : "listRepositoriesInDomain",
"operationName" : "ListRepositoriesInDomain",
"paginated" : true,
"returnType" : {
"returnType" : "ListRepositoriesInDomainResponse",
"documentation" : null
},
"syncReturnType" : "ListRepositoriesInDomainResponse"
},
"PutDomainPermissionsPolicy" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Sets a resource policy on a domain that specifies permissions to access it.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "ConflictException",
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"httpStatusCode" : 409
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ServiceQuotaExceededException",
"documentation" : " The operation did not succeed because it would have exceeded a service limit for your account.
",
"httpStatusCode" : 402
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "PutDomainPermissionsPolicyRequest",
"variableName" : "putDomainPermissionsPolicyRequest",
"variableType" : "PutDomainPermissionsPolicyRequest",
"documentation" : "",
"simpleType" : "PutDomainPermissionsPolicyRequest",
"variableSetterType" : "PutDomainPermissionsPolicyRequest"
},
"methodName" : "putDomainPermissionsPolicy",
"operationName" : "PutDomainPermissionsPolicy",
"paginated" : false,
"returnType" : {
"returnType" : "PutDomainPermissionsPolicyResponse",
"documentation" : null
},
"syncReturnType" : "PutDomainPermissionsPolicyResponse"
},
"PutRepositoryPermissionsPolicy" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Sets the resource policy on a repository that specifies permissions to access it.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "ConflictException",
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"httpStatusCode" : 409
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ServiceQuotaExceededException",
"documentation" : " The operation did not succeed because it would have exceeded a service limit for your account.
",
"httpStatusCode" : 402
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "PutRepositoryPermissionsPolicyRequest",
"variableName" : "putRepositoryPermissionsPolicyRequest",
"variableType" : "PutRepositoryPermissionsPolicyRequest",
"documentation" : "",
"simpleType" : "PutRepositoryPermissionsPolicyRequest",
"variableSetterType" : "PutRepositoryPermissionsPolicyRequest"
},
"methodName" : "putRepositoryPermissionsPolicy",
"operationName" : "PutRepositoryPermissionsPolicy",
"paginated" : false,
"returnType" : {
"returnType" : "PutRepositoryPermissionsPolicyResponse",
"documentation" : null
},
"syncReturnType" : "PutRepositoryPermissionsPolicyResponse"
},
"UpdatePackageVersionsStatus" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Updates the status of one or more versions of a package.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "ConflictException",
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"httpStatusCode" : 409
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "UpdatePackageVersionsStatusRequest",
"variableName" : "updatePackageVersionsStatusRequest",
"variableType" : "UpdatePackageVersionsStatusRequest",
"documentation" : "",
"simpleType" : "UpdatePackageVersionsStatusRequest",
"variableSetterType" : "UpdatePackageVersionsStatusRequest"
},
"methodName" : "updatePackageVersionsStatus",
"operationName" : "UpdatePackageVersionsStatus",
"paginated" : false,
"returnType" : {
"returnType" : "UpdatePackageVersionsStatusResponse",
"documentation" : null
},
"syncReturnType" : "UpdatePackageVersionsStatusResponse"
},
"UpdateRepository" : {
"authType" : "IAM",
"authenticated" : true,
"deprecated" : false,
"documentation" : " Update the properties of a repository.
",
"endpointCacheRequired" : false,
"endpointDiscovery" : null,
"endpointOperation" : false,
"endpointTrait" : null,
"exceptions" : [ {
"exceptionName" : "AccessDeniedException",
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"httpStatusCode" : 403
}, {
"exceptionName" : "ConflictException",
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"httpStatusCode" : 409
}, {
"exceptionName" : "InternalServerException",
"documentation" : " The operation did not succeed because of an error that occurred inside AWS CodeArtifact.
",
"httpStatusCode" : 500
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : " The operation did not succeed because the resource requested is not found in the service.
",
"httpStatusCode" : 404
}, {
"exceptionName" : "ServiceQuotaExceededException",
"documentation" : " The operation did not succeed because it would have exceeded a service limit for your account.
",
"httpStatusCode" : 402
}, {
"exceptionName" : "ThrottlingException",
"documentation" : " The operation did not succeed because too many requests are sent to the service.
",
"httpStatusCode" : 429
}, {
"exceptionName" : "ValidationException",
"documentation" : " The operation did not succeed because a parameter in the request was sent with an invalid value.
",
"httpStatusCode" : 400
} ],
"hasBlobMemberAsPayload" : false,
"input" : {
"variableDeclarationType" : "UpdateRepositoryRequest",
"variableName" : "updateRepositoryRequest",
"variableType" : "UpdateRepositoryRequest",
"documentation" : "",
"simpleType" : "UpdateRepositoryRequest",
"variableSetterType" : "UpdateRepositoryRequest"
},
"methodName" : "updateRepository",
"operationName" : "UpdateRepository",
"paginated" : false,
"returnType" : {
"returnType" : "UpdateRepositoryResponse",
"documentation" : null
},
"syncReturnType" : "UpdateRepositoryResponse"
}
},
"shapes" : {
"AccessDeniedException" : {
"c2jName" : "AccessDeniedException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingMarshaller" : false,
"skipGeneratingModelClass" : false,
"skipGeneratingUnmarshaller" : false,
"staxTargetDepthOffset" : 0
},
"deprecated" : false,
"documentation" : " The operation did not succeed because of an unauthorized access attempt.
",
"endpointDiscovery" : null,
"enums" : null,
"errorCode" : "AccessDeniedException",
"event" : false,
"eventStream" : false,
"explicitEventPayloadMember" : null,
"hasHeaderMember" : false,
"hasPayloadMember" : false,
"hasRequiresLengthMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"httpStatusCode" : 403,
"marshaller" : null,
"members" : [ ],
"membersAsMap" : { },
"nonStreamingMembers" : [ ],
"requestSignerAware" : false,
"requestSignerClassFqcn" : null,
"required" : [ "message" ],
"shapeName" : "AccessDeniedException",
"simpleMethod" : false,
"unmarshaller" : null,
"variable" : {
"variableDeclarationType" : "AccessDeniedException",
"variableName" : "accessDeniedException",
"variableType" : "AccessDeniedException",
"documentation" : null,
"simpleType" : "AccessDeniedException",
"variableSetterType" : "AccessDeniedException"
},
"wrapper" : false,
"xmlNamespace" : null
},
"AssetSummary" : {
"c2jName" : "AssetSummary",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingMarshaller" : false,
"skipGeneratingModelClass" : false,
"skipGeneratingUnmarshaller" : false,
"staxTargetDepthOffset" : 0
},
"deprecated" : false,
"documentation" : " Contains details about a package version asset.
",
"endpointDiscovery" : null,
"enums" : null,
"errorCode" : null,
"event" : false,
"eventStream" : false,
"explicitEventPayloadMember" : null,
"hasHeaderMember" : false,
"hasPayloadMember" : false,
"hasRequiresLengthMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"httpStatusCode" : null,
"marshaller" : null,
"members" : [ {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getName",
"beanStyleSetterMethodName" : "setName",
"c2jName" : "name",
"c2jShape" : "AssetName",
"defaultConsumerFluentSetterDocumentation" : " The name of the asset.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #name(String)}.\n@param name a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #name(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the asset.
\n@return The name of the asset.\n@deprecated Use {@link #name()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the asset.
\n@param name The name of the asset.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #name(String)}\n",
"documentation" : " The name of the asset.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Name property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasName",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "name",
"fluentSetterDocumentation" : " The name of the asset.
\n@param name The name of the asset.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "name",
"getterDocumentation" : " The name of the asset.
\n@return The name of the asset.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "name",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "name",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Name",
"sensitive" : false,
"setterDocumentation" : " The name of the asset.
\n@param name The name of the asset.",
"setterMethodName" : "setName",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "name",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "name",
"variableType" : "String",
"documentation" : " The name of the asset.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getSize",
"beanStyleSetterMethodName" : "setSize",
"c2jName" : "size",
"c2jShape" : "LongOptional",
"defaultConsumerFluentSetterDocumentation" : " The size of the asset.
\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #size(Long)}.\n@param size a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #size(Long)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The size of the asset.
\n@return The size of the asset.\n@deprecated Use {@link #size()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The size of the asset.
\n@param size The size of the asset.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #size(Long)}\n",
"documentation" : " The size of the asset.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Size property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasSize",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "size",
"fluentSetterDocumentation" : " The size of the asset.
\n@param size The size of the asset.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "size",
"getterDocumentation" : " The size of the asset.
\n@return The size of the asset.",
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "size",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "size",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "LONG",
"name" : "Size",
"sensitive" : false,
"setterDocumentation" : " The size of the asset.
\n@param size The size of the asset.",
"setterMethodName" : "setSize",
"setterModel" : {
"variableDeclarationType" : "Long",
"variableName" : "size",
"variableType" : "Long",
"documentation" : null,
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "Long",
"variableName" : "size",
"variableType" : "Long",
"documentation" : " The size of the asset.
",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : true
},
"beanStyleGetterMethodName" : "getHashes",
"beanStyleSetterMethodName" : "setHashes",
"c2jName" : "hashes",
"c2jShape" : "AssetHashes",
"defaultConsumerFluentSetterDocumentation" : " The hashes of the asset.
\nThis is a convenience that creates an instance of the {@link Map.Builder} avoiding the need to create one manually via {@link Map#builder()}.\n\nWhen the {@link Consumer} completes, {@link Map.Builder#build()} is called immediately and its result is passed to {@link #hashesAsStrings(Map)}.\n@param hashes a consumer that will call methods on {@link Map.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #hashesWithStrings(Map)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The hashes of the asset.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasHashes()} to see if a value was sent in this field.\n
\n@return The hashes of the asset.\n@deprecated Use {@link #hashesAsStrings()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The hashes of the asset.
\n@param hashes The hashes of the asset.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #hashesWithStrings(Map)}\n",
"documentation" : " The hashes of the asset.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Hashes property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasHashes",
"fluentEnumGetterMethodName" : "hashes",
"fluentEnumSetterMethodName" : "hashes",
"fluentGetterMethodName" : "hashesAsStrings",
"fluentSetterDocumentation" : " The hashes of the asset.
\n@param hashes The hashes of the asset.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "hashesWithStrings",
"getterDocumentation" : " The hashes of the asset.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasHashes()} to see if a value was sent in this field.\n
\n@return The hashes of the asset.",
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "hashes",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "hashes",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : true,
"mapModel" : {
"implType" : "java.util.HashMap",
"interfaceType" : "java.util.Map",
"keyLocationName" : "key",
"keyModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getKey",
"beanStyleSetterMethodName" : "setKey",
"c2jName" : "key",
"c2jShape" : "HashAlgorithm",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Key property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #keyAsString(String)}.\n@param key a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #key(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Key property for this object.\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #key} will return {@link HashAlgorithm#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #keyAsString}.\n
\n@return The value of the Key property for this object.\n@see HashAlgorithm\n@deprecated Use {@link #keyAsString()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@see HashAlgorithm\n@return Returns a reference to this object so that method calls can be chained together.\n@see HashAlgorithm\n@deprecated Use {@link #key(String)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : "HashAlgorithm",
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Key property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasKey",
"fluentEnumGetterMethodName" : "key",
"fluentEnumSetterMethodName" : "key",
"fluentGetterMethodName" : "keyAsString",
"fluentSetterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@see HashAlgorithm\n@return Returns a reference to this object so that method calls can be chained together.\n@see HashAlgorithm",
"fluentSetterMethodName" : "key",
"getterDocumentation" : "Returns the value of the Key property for this object.\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #key} will return {@link HashAlgorithm#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #keyAsString}.\n
\n@return The value of the Key property for this object.\n@see HashAlgorithm",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "key",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "key",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Key",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@see HashAlgorithm",
"setterMethodName" : "setKey",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "key",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "key",
"variableType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"valueLocationName" : "value",
"valueModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getValue",
"beanStyleSetterMethodName" : "setValue",
"c2jName" : "value",
"c2jShape" : "HashValue",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Value property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #value(String)}.\n@param value a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #value(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Value property for this object.\n@return The value of the Value property for this object.\n@deprecated Use {@link #value()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #value(String)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Value property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasValue",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "value",
"fluentSetterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "value",
"getterDocumentation" : "Returns the value of the Value property for this object.\n@return The value of the Value property for this object.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "value",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "value",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Value",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.",
"setterMethodName" : "setValue",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "value",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "value",
"variableType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"entryType" : "Map.Entry",
"templateType" : "java.util.Map"
},
"marshallingType" : "MAP",
"name" : "Hashes",
"sensitive" : false,
"setterDocumentation" : " The hashes of the asset.
\n@param hashes The hashes of the asset.",
"setterMethodName" : "setHashes",
"setterModel" : {
"variableDeclarationType" : "java.util.Map",
"variableName" : "hashes",
"variableType" : "java.util.Map",
"documentation" : null,
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"simple" : false,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "java.util.Map",
"variableName" : "hashes",
"variableType" : "java.util.Map",
"documentation" : " The hashes of the asset.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
} ],
"membersAsMap" : {
"Hashes" : {
"autoConstructClassIfExists" : {
"present" : true
},
"beanStyleGetterMethodName" : "getHashes",
"beanStyleSetterMethodName" : "setHashes",
"c2jName" : "hashes",
"c2jShape" : "AssetHashes",
"defaultConsumerFluentSetterDocumentation" : " The hashes of the asset.
\nThis is a convenience that creates an instance of the {@link Map.Builder} avoiding the need to create one manually via {@link Map#builder()}.\n\nWhen the {@link Consumer} completes, {@link Map.Builder#build()} is called immediately and its result is passed to {@link #hashesAsStrings(Map)}.\n@param hashes a consumer that will call methods on {@link Map.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #hashesWithStrings(Map)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The hashes of the asset.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasHashes()} to see if a value was sent in this field.\n
\n@return The hashes of the asset.\n@deprecated Use {@link #hashesAsStrings()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The hashes of the asset.
\n@param hashes The hashes of the asset.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #hashesWithStrings(Map)}\n",
"documentation" : " The hashes of the asset.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Hashes property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasHashes",
"fluentEnumGetterMethodName" : "hashes",
"fluentEnumSetterMethodName" : "hashes",
"fluentGetterMethodName" : "hashesAsStrings",
"fluentSetterDocumentation" : " The hashes of the asset.
\n@param hashes The hashes of the asset.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "hashesWithStrings",
"getterDocumentation" : " The hashes of the asset.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasHashes()} to see if a value was sent in this field.\n
\n@return The hashes of the asset.",
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "hashes",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "hashes",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : true,
"mapModel" : {
"implType" : "java.util.HashMap",
"interfaceType" : "java.util.Map",
"keyLocationName" : "key",
"keyModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getKey",
"beanStyleSetterMethodName" : "setKey",
"c2jName" : "key",
"c2jShape" : "HashAlgorithm",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Key property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #keyAsString(String)}.\n@param key a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #key(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Key property for this object.\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #key} will return {@link HashAlgorithm#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #keyAsString}.\n
\n@return The value of the Key property for this object.\n@see HashAlgorithm\n@deprecated Use {@link #keyAsString()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@see HashAlgorithm\n@return Returns a reference to this object so that method calls can be chained together.\n@see HashAlgorithm\n@deprecated Use {@link #key(String)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : "HashAlgorithm",
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Key property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasKey",
"fluentEnumGetterMethodName" : "key",
"fluentEnumSetterMethodName" : "key",
"fluentGetterMethodName" : "keyAsString",
"fluentSetterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@see HashAlgorithm\n@return Returns a reference to this object so that method calls can be chained together.\n@see HashAlgorithm",
"fluentSetterMethodName" : "key",
"getterDocumentation" : "Returns the value of the Key property for this object.\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #key} will return {@link HashAlgorithm#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #keyAsString}.\n
\n@return The value of the Key property for this object.\n@see HashAlgorithm",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "key",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "key",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Key",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@see HashAlgorithm",
"setterMethodName" : "setKey",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "key",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "key",
"variableType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"valueLocationName" : "value",
"valueModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getValue",
"beanStyleSetterMethodName" : "setValue",
"c2jName" : "value",
"c2jShape" : "HashValue",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Value property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #value(String)}.\n@param value a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #value(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Value property for this object.\n@return The value of the Value property for this object.\n@deprecated Use {@link #value()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #value(String)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Value property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasValue",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "value",
"fluentSetterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "value",
"getterDocumentation" : "Returns the value of the Value property for this object.\n@return The value of the Value property for this object.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "value",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "value",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Value",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.",
"setterMethodName" : "setValue",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "value",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "value",
"variableType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"entryType" : "Map.Entry",
"templateType" : "java.util.Map"
},
"marshallingType" : "MAP",
"name" : "Hashes",
"sensitive" : false,
"setterDocumentation" : " The hashes of the asset.
\n@param hashes The hashes of the asset.",
"setterMethodName" : "setHashes",
"setterModel" : {
"variableDeclarationType" : "java.util.Map",
"variableName" : "hashes",
"variableType" : "java.util.Map",
"documentation" : null,
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"simple" : false,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "java.util.Map",
"variableName" : "hashes",
"variableType" : "java.util.Map",
"documentation" : " The hashes of the asset.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"Name" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getName",
"beanStyleSetterMethodName" : "setName",
"c2jName" : "name",
"c2jShape" : "AssetName",
"defaultConsumerFluentSetterDocumentation" : " The name of the asset.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #name(String)}.\n@param name a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #name(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the asset.
\n@return The name of the asset.\n@deprecated Use {@link #name()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the asset.
\n@param name The name of the asset.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #name(String)}\n",
"documentation" : " The name of the asset.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Name property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasName",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "name",
"fluentSetterDocumentation" : " The name of the asset.
\n@param name The name of the asset.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "name",
"getterDocumentation" : " The name of the asset.
\n@return The name of the asset.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "name",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "name",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Name",
"sensitive" : false,
"setterDocumentation" : " The name of the asset.
\n@param name The name of the asset.",
"setterMethodName" : "setName",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "name",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "name",
"variableType" : "String",
"documentation" : " The name of the asset.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"Size" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getSize",
"beanStyleSetterMethodName" : "setSize",
"c2jName" : "size",
"c2jShape" : "LongOptional",
"defaultConsumerFluentSetterDocumentation" : " The size of the asset.
\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #size(Long)}.\n@param size a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #size(Long)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The size of the asset.
\n@return The size of the asset.\n@deprecated Use {@link #size()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The size of the asset.
\n@param size The size of the asset.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #size(Long)}\n",
"documentation" : " The size of the asset.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Size property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasSize",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "size",
"fluentSetterDocumentation" : " The size of the asset.
\n@param size The size of the asset.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "size",
"getterDocumentation" : " The size of the asset.
\n@return The size of the asset.",
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "size",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "size",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "LONG",
"name" : "Size",
"sensitive" : false,
"setterDocumentation" : " The size of the asset.
\n@param size The size of the asset.",
"setterMethodName" : "setSize",
"setterModel" : {
"variableDeclarationType" : "Long",
"variableName" : "size",
"variableType" : "Long",
"documentation" : null,
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "Long",
"variableName" : "size",
"variableType" : "Long",
"documentation" : " The size of the asset.
",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}
},
"nonStreamingMembers" : [ {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getName",
"beanStyleSetterMethodName" : "setName",
"c2jName" : "name",
"c2jShape" : "AssetName",
"defaultConsumerFluentSetterDocumentation" : " The name of the asset.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #name(String)}.\n@param name a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #name(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the asset.
\n@return The name of the asset.\n@deprecated Use {@link #name()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the asset.
\n@param name The name of the asset.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #name(String)}\n",
"documentation" : " The name of the asset.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Name property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasName",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "name",
"fluentSetterDocumentation" : " The name of the asset.
\n@param name The name of the asset.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "name",
"getterDocumentation" : " The name of the asset.
\n@return The name of the asset.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "name",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "name",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Name",
"sensitive" : false,
"setterDocumentation" : " The name of the asset.
\n@param name The name of the asset.",
"setterMethodName" : "setName",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "name",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "name",
"variableType" : "String",
"documentation" : " The name of the asset.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getSize",
"beanStyleSetterMethodName" : "setSize",
"c2jName" : "size",
"c2jShape" : "LongOptional",
"defaultConsumerFluentSetterDocumentation" : " The size of the asset.
\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #size(Long)}.\n@param size a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #size(Long)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The size of the asset.
\n@return The size of the asset.\n@deprecated Use {@link #size()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The size of the asset.
\n@param size The size of the asset.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #size(Long)}\n",
"documentation" : " The size of the asset.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Size property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasSize",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "size",
"fluentSetterDocumentation" : " The size of the asset.
\n@param size The size of the asset.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "size",
"getterDocumentation" : " The size of the asset.
\n@return The size of the asset.",
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "size",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "size",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "LONG",
"name" : "Size",
"sensitive" : false,
"setterDocumentation" : " The size of the asset.
\n@param size The size of the asset.",
"setterMethodName" : "setSize",
"setterModel" : {
"variableDeclarationType" : "Long",
"variableName" : "size",
"variableType" : "Long",
"documentation" : null,
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "Long",
"variableName" : "size",
"variableType" : "Long",
"documentation" : " The size of the asset.
",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : true
},
"beanStyleGetterMethodName" : "getHashes",
"beanStyleSetterMethodName" : "setHashes",
"c2jName" : "hashes",
"c2jShape" : "AssetHashes",
"defaultConsumerFluentSetterDocumentation" : " The hashes of the asset.
\nThis is a convenience that creates an instance of the {@link Map.Builder} avoiding the need to create one manually via {@link Map#builder()}.\n\nWhen the {@link Consumer} completes, {@link Map.Builder#build()} is called immediately and its result is passed to {@link #hashesAsStrings(Map)}.\n@param hashes a consumer that will call methods on {@link Map.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #hashesWithStrings(Map)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The hashes of the asset.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasHashes()} to see if a value was sent in this field.\n
\n@return The hashes of the asset.\n@deprecated Use {@link #hashesAsStrings()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The hashes of the asset.
\n@param hashes The hashes of the asset.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #hashesWithStrings(Map)}\n",
"documentation" : " The hashes of the asset.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Hashes property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasHashes",
"fluentEnumGetterMethodName" : "hashes",
"fluentEnumSetterMethodName" : "hashes",
"fluentGetterMethodName" : "hashesAsStrings",
"fluentSetterDocumentation" : " The hashes of the asset.
\n@param hashes The hashes of the asset.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "hashesWithStrings",
"getterDocumentation" : " The hashes of the asset.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasHashes()} to see if a value was sent in this field.\n
\n@return The hashes of the asset.",
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "hashes",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "hashes",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : true,
"mapModel" : {
"implType" : "java.util.HashMap",
"interfaceType" : "java.util.Map",
"keyLocationName" : "key",
"keyModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getKey",
"beanStyleSetterMethodName" : "setKey",
"c2jName" : "key",
"c2jShape" : "HashAlgorithm",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Key property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #keyAsString(String)}.\n@param key a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #key(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Key property for this object.\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #key} will return {@link HashAlgorithm#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #keyAsString}.\n
\n@return The value of the Key property for this object.\n@see HashAlgorithm\n@deprecated Use {@link #keyAsString()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@see HashAlgorithm\n@return Returns a reference to this object so that method calls can be chained together.\n@see HashAlgorithm\n@deprecated Use {@link #key(String)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : "HashAlgorithm",
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Key property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasKey",
"fluentEnumGetterMethodName" : "key",
"fluentEnumSetterMethodName" : "key",
"fluentGetterMethodName" : "keyAsString",
"fluentSetterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@see HashAlgorithm\n@return Returns a reference to this object so that method calls can be chained together.\n@see HashAlgorithm",
"fluentSetterMethodName" : "key",
"getterDocumentation" : "Returns the value of the Key property for this object.\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #key} will return {@link HashAlgorithm#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #keyAsString}.\n
\n@return The value of the Key property for this object.\n@see HashAlgorithm",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "key",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "key",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Key",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@see HashAlgorithm",
"setterMethodName" : "setKey",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "key",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "key",
"variableType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"valueLocationName" : "value",
"valueModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getValue",
"beanStyleSetterMethodName" : "setValue",
"c2jName" : "value",
"c2jShape" : "HashValue",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Value property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #value(String)}.\n@param value a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #value(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Value property for this object.\n@return The value of the Value property for this object.\n@deprecated Use {@link #value()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #value(String)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Value property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasValue",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "value",
"fluentSetterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "value",
"getterDocumentation" : "Returns the value of the Value property for this object.\n@return The value of the Value property for this object.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "value",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "value",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Value",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.",
"setterMethodName" : "setValue",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "value",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "value",
"variableType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"entryType" : "Map.Entry",
"templateType" : "java.util.Map"
},
"marshallingType" : "MAP",
"name" : "Hashes",
"sensitive" : false,
"setterDocumentation" : " The hashes of the asset.
\n@param hashes The hashes of the asset.",
"setterMethodName" : "setHashes",
"setterModel" : {
"variableDeclarationType" : "java.util.Map",
"variableName" : "hashes",
"variableType" : "java.util.Map",
"documentation" : null,
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"simple" : false,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "java.util.Map",
"variableName" : "hashes",
"variableType" : "java.util.Map",
"documentation" : " The hashes of the asset.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
} ],
"requestSignerAware" : false,
"requestSignerClassFqcn" : null,
"required" : [ "name" ],
"shapeName" : "AssetSummary",
"simpleMethod" : false,
"unmarshaller" : {
"flattened" : false,
"resultWrapper" : null
},
"variable" : {
"variableDeclarationType" : "AssetSummary",
"variableName" : "assetSummary",
"variableType" : "AssetSummary",
"documentation" : null,
"simpleType" : "AssetSummary",
"variableSetterType" : "AssetSummary"
},
"wrapper" : false,
"xmlNamespace" : null
},
"AssociateExternalConnectionRequest" : {
"c2jName" : "AssociateExternalConnectionRequest",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingMarshaller" : false,
"skipGeneratingModelClass" : false,
"skipGeneratingUnmarshaller" : false,
"staxTargetDepthOffset" : 0
},
"deprecated" : false,
"documentation" : "",
"endpointDiscovery" : null,
"enums" : null,
"errorCode" : null,
"event" : false,
"eventStream" : false,
"explicitEventPayloadMember" : null,
"hasHeaderMember" : false,
"hasPayloadMember" : false,
"hasRequiresLengthMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"httpStatusCode" : null,
"marshaller" : {
"action" : "AssociateExternalConnection",
"locationName" : null,
"requestUri" : "/v1/repository/external-connection",
"target" : null,
"verb" : "POST",
"xmlNameSpaceUri" : null
},
"members" : [ {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getDomain",
"beanStyleSetterMethodName" : "setDomain",
"c2jName" : "domain",
"c2jShape" : "DomainName",
"defaultConsumerFluentSetterDocumentation" : "The name of the domain that contains the repository.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #domain(String)}.\n@param domain a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #domain(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "The name of the domain that contains the repository.
\n@return The name of the domain that contains the repository.\n@deprecated Use {@link #domain()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "The name of the domain that contains the repository.
\n@param domain The name of the domain that contains the repository.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #domain(String)}\n",
"documentation" : "The name of the domain that contains the repository.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Domain property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasDomain",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "domain",
"fluentSetterDocumentation" : "The name of the domain that contains the repository.
\n@param domain The name of the domain that contains the repository.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "domain",
"getterDocumentation" : "The name of the domain that contains the repository.
\n@return The name of the domain that contains the repository.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "domain",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "domain",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Domain",
"sensitive" : false,
"setterDocumentation" : "The name of the domain that contains the repository.
\n@param domain The name of the domain that contains the repository.",
"setterMethodName" : "setDomain",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "domain",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "domain",
"variableType" : "String",
"documentation" : "The name of the domain that contains the repository.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getDomainOwner",
"beanStyleSetterMethodName" : "setDomainOwner",
"c2jName" : "domainOwner",
"c2jShape" : "AccountId",
"defaultConsumerFluentSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #domainOwner(String)}.\n@param domainOwner a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #domainOwner(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@return The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@deprecated Use {@link #domainOwner()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #domainOwner(String)}\n",
"documentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the DomainOwner property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasDomainOwner",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "domainOwner",
"fluentSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "domainOwner",
"getterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@return The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "domain-owner",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "domain-owner",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "DomainOwner",
"sensitive" : false,
"setterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.",
"setterMethodName" : "setDomainOwner",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "domainOwner",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "domainOwner",
"variableType" : "String",
"documentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getRepository",
"beanStyleSetterMethodName" : "setRepository",
"c2jName" : "repository",
"c2jShape" : "RepositoryName",
"defaultConsumerFluentSetterDocumentation" : " The name of the repository to which the external connection is added.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #repository(String)}.\n@param repository a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #repository(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the repository to which the external connection is added.
\n@return The name of the repository to which the external connection is added.\n@deprecated Use {@link #repository()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the repository to which the external connection is added.
\n@param repository The name of the repository to which the external connection is added.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #repository(String)}\n",
"documentation" : " The name of the repository to which the external connection is added.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Repository property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasRepository",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "repository",
"fluentSetterDocumentation" : " The name of the repository to which the external connection is added.
\n@param repository The name of the repository to which the external connection is added.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "repository",
"getterDocumentation" : " The name of the repository to which the external connection is added.
\n@return The name of the repository to which the external connection is added.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "repository",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "repository",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Repository",
"sensitive" : false,
"setterDocumentation" : " The name of the repository to which the external connection is added.
\n@param repository The name of the repository to which the external connection is added.",
"setterMethodName" : "setRepository",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "repository",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "repository",
"variableType" : "String",
"documentation" : " The name of the repository to which the external connection is added.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getExternalConnection",
"beanStyleSetterMethodName" : "setExternalConnection",
"c2jName" : "externalConnection",
"c2jShape" : "ExternalConnectionName",
"defaultConsumerFluentSetterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #externalConnection(String)}.\n@param externalConnection a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #externalConnection(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@return The name of the external connection to add to the repository. The following values are supported: -
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@deprecated Use {@link #externalConnection()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@param externalConnection The name of the external connection to add to the repository. The following values are supported: -
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #externalConnection(String)}\n",
"documentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the ExternalConnection property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasExternalConnection",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "externalConnection",
"fluentSetterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@param externalConnection The name of the external connection to add to the repository. The following values are supported: -
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "externalConnection",
"getterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@return The name of the external connection to add to the repository. The following values are supported: -
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "external-connection",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "external-connection",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "ExternalConnection",
"sensitive" : false,
"setterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@param externalConnection The name of the external connection to add to the repository. The following values are supported: -
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
",
"setterMethodName" : "setExternalConnection",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "externalConnection",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "externalConnection",
"variableType" : "String",
"documentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
} ],
"membersAsMap" : {
"Domain" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getDomain",
"beanStyleSetterMethodName" : "setDomain",
"c2jName" : "domain",
"c2jShape" : "DomainName",
"defaultConsumerFluentSetterDocumentation" : "The name of the domain that contains the repository.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #domain(String)}.\n@param domain a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #domain(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "The name of the domain that contains the repository.
\n@return The name of the domain that contains the repository.\n@deprecated Use {@link #domain()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "The name of the domain that contains the repository.
\n@param domain The name of the domain that contains the repository.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #domain(String)}\n",
"documentation" : "The name of the domain that contains the repository.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Domain property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasDomain",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "domain",
"fluentSetterDocumentation" : "The name of the domain that contains the repository.
\n@param domain The name of the domain that contains the repository.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "domain",
"getterDocumentation" : "The name of the domain that contains the repository.
\n@return The name of the domain that contains the repository.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "domain",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "domain",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Domain",
"sensitive" : false,
"setterDocumentation" : "The name of the domain that contains the repository.
\n@param domain The name of the domain that contains the repository.",
"setterMethodName" : "setDomain",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "domain",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "domain",
"variableType" : "String",
"documentation" : "The name of the domain that contains the repository.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"DomainOwner" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getDomainOwner",
"beanStyleSetterMethodName" : "setDomainOwner",
"c2jName" : "domainOwner",
"c2jShape" : "AccountId",
"defaultConsumerFluentSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #domainOwner(String)}.\n@param domainOwner a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #domainOwner(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@return The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@deprecated Use {@link #domainOwner()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #domainOwner(String)}\n",
"documentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the DomainOwner property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasDomainOwner",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "domainOwner",
"fluentSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "domainOwner",
"getterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@return The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "domain-owner",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "domain-owner",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "DomainOwner",
"sensitive" : false,
"setterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.",
"setterMethodName" : "setDomainOwner",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "domainOwner",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "domainOwner",
"variableType" : "String",
"documentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"ExternalConnection" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getExternalConnection",
"beanStyleSetterMethodName" : "setExternalConnection",
"c2jName" : "externalConnection",
"c2jShape" : "ExternalConnectionName",
"defaultConsumerFluentSetterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #externalConnection(String)}.\n@param externalConnection a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #externalConnection(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@return The name of the external connection to add to the repository. The following values are supported: -
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@deprecated Use {@link #externalConnection()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@param externalConnection The name of the external connection to add to the repository. The following values are supported: -
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #externalConnection(String)}\n",
"documentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the ExternalConnection property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasExternalConnection",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "externalConnection",
"fluentSetterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@param externalConnection The name of the external connection to add to the repository. The following values are supported: -
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "externalConnection",
"getterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@return The name of the external connection to add to the repository. The following values are supported: -
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "external-connection",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "external-connection",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "ExternalConnection",
"sensitive" : false,
"setterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@param externalConnection The name of the external connection to add to the repository. The following values are supported: -
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
",
"setterMethodName" : "setExternalConnection",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "externalConnection",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "externalConnection",
"variableType" : "String",
"documentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"Repository" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getRepository",
"beanStyleSetterMethodName" : "setRepository",
"c2jName" : "repository",
"c2jShape" : "RepositoryName",
"defaultConsumerFluentSetterDocumentation" : " The name of the repository to which the external connection is added.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #repository(String)}.\n@param repository a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #repository(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the repository to which the external connection is added.
\n@return The name of the repository to which the external connection is added.\n@deprecated Use {@link #repository()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the repository to which the external connection is added.
\n@param repository The name of the repository to which the external connection is added.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #repository(String)}\n",
"documentation" : " The name of the repository to which the external connection is added.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Repository property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasRepository",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "repository",
"fluentSetterDocumentation" : " The name of the repository to which the external connection is added.
\n@param repository The name of the repository to which the external connection is added.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "repository",
"getterDocumentation" : " The name of the repository to which the external connection is added.
\n@return The name of the repository to which the external connection is added.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "repository",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "repository",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Repository",
"sensitive" : false,
"setterDocumentation" : " The name of the repository to which the external connection is added.
\n@param repository The name of the repository to which the external connection is added.",
"setterMethodName" : "setRepository",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "repository",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "repository",
"variableType" : "String",
"documentation" : " The name of the repository to which the external connection is added.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}
},
"nonStreamingMembers" : [ {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getDomain",
"beanStyleSetterMethodName" : "setDomain",
"c2jName" : "domain",
"c2jShape" : "DomainName",
"defaultConsumerFluentSetterDocumentation" : "The name of the domain that contains the repository.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #domain(String)}.\n@param domain a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #domain(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "The name of the domain that contains the repository.
\n@return The name of the domain that contains the repository.\n@deprecated Use {@link #domain()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "The name of the domain that contains the repository.
\n@param domain The name of the domain that contains the repository.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #domain(String)}\n",
"documentation" : "The name of the domain that contains the repository.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Domain property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasDomain",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "domain",
"fluentSetterDocumentation" : "The name of the domain that contains the repository.
\n@param domain The name of the domain that contains the repository.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "domain",
"getterDocumentation" : "The name of the domain that contains the repository.
\n@return The name of the domain that contains the repository.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "domain",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "domain",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Domain",
"sensitive" : false,
"setterDocumentation" : "The name of the domain that contains the repository.
\n@param domain The name of the domain that contains the repository.",
"setterMethodName" : "setDomain",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "domain",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "domain",
"variableType" : "String",
"documentation" : "The name of the domain that contains the repository.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getDomainOwner",
"beanStyleSetterMethodName" : "setDomainOwner",
"c2jName" : "domainOwner",
"c2jShape" : "AccountId",
"defaultConsumerFluentSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #domainOwner(String)}.\n@param domainOwner a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #domainOwner(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@return The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@deprecated Use {@link #domainOwner()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #domainOwner(String)}\n",
"documentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the DomainOwner property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasDomainOwner",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "domainOwner",
"fluentSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "domainOwner",
"getterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@return The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "domain-owner",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "domain-owner",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "DomainOwner",
"sensitive" : false,
"setterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.",
"setterMethodName" : "setDomainOwner",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "domainOwner",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "domainOwner",
"variableType" : "String",
"documentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getRepository",
"beanStyleSetterMethodName" : "setRepository",
"c2jName" : "repository",
"c2jShape" : "RepositoryName",
"defaultConsumerFluentSetterDocumentation" : " The name of the repository to which the external connection is added.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #repository(String)}.\n@param repository a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #repository(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the repository to which the external connection is added.
\n@return The name of the repository to which the external connection is added.\n@deprecated Use {@link #repository()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the repository to which the external connection is added.
\n@param repository The name of the repository to which the external connection is added.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #repository(String)}\n",
"documentation" : " The name of the repository to which the external connection is added.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Repository property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasRepository",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "repository",
"fluentSetterDocumentation" : " The name of the repository to which the external connection is added.
\n@param repository The name of the repository to which the external connection is added.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "repository",
"getterDocumentation" : " The name of the repository to which the external connection is added.
\n@return The name of the repository to which the external connection is added.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "repository",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "repository",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Repository",
"sensitive" : false,
"setterDocumentation" : " The name of the repository to which the external connection is added.
\n@param repository The name of the repository to which the external connection is added.",
"setterMethodName" : "setRepository",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "repository",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "repository",
"variableType" : "String",
"documentation" : " The name of the repository to which the external connection is added.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getExternalConnection",
"beanStyleSetterMethodName" : "setExternalConnection",
"c2jName" : "externalConnection",
"c2jShape" : "ExternalConnectionName",
"defaultConsumerFluentSetterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #externalConnection(String)}.\n@param externalConnection a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #externalConnection(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@return The name of the external connection to add to the repository. The following values are supported: -
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@deprecated Use {@link #externalConnection()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@param externalConnection The name of the external connection to add to the repository. The following values are supported: -
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #externalConnection(String)}\n",
"documentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the ExternalConnection property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasExternalConnection",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "externalConnection",
"fluentSetterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@param externalConnection The name of the external connection to add to the repository. The following values are supported: -
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "externalConnection",
"getterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@return The name of the external connection to add to the repository. The following values are supported: -
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "external-connection",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "external-connection",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "ExternalConnection",
"sensitive" : false,
"setterDocumentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
\n@param externalConnection The name of the external connection to add to the repository. The following values are supported: -
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
",
"setterMethodName" : "setExternalConnection",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "externalConnection",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "externalConnection",
"variableType" : "String",
"documentation" : " The name of the external connection to add to the repository. The following values are supported:
-
public:npmjs
- for the npm public repository.
-
public:pypi
- for the Python Package Index.
-
public:maven-central
- for Maven Central.
-
public:maven-googleandroid
- for the Google Android repository.
-
public:maven-gradleplugins
- for the Gradle plugins repository.
-
public:maven-commonsware
- for the CommonsWare Android repository.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
} ],
"requestSignerAware" : false,
"requestSignerClassFqcn" : null,
"required" : [ "domain", "repository", "externalConnection" ],
"shapeName" : "AssociateExternalConnectionRequest",
"simpleMethod" : false,
"unmarshaller" : null,
"variable" : {
"variableDeclarationType" : "AssociateExternalConnectionRequest",
"variableName" : "associateExternalConnectionRequest",
"variableType" : "AssociateExternalConnectionRequest",
"documentation" : null,
"simpleType" : "AssociateExternalConnectionRequest",
"variableSetterType" : "AssociateExternalConnectionRequest"
},
"wrapper" : false,
"xmlNamespace" : null
},
"AssociateExternalConnectionResponse" : {
"c2jName" : "AssociateExternalConnectionResult",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingMarshaller" : false,
"skipGeneratingModelClass" : false,
"skipGeneratingUnmarshaller" : false,
"staxTargetDepthOffset" : 0
},
"deprecated" : false,
"documentation" : "",
"endpointDiscovery" : null,
"enums" : null,
"errorCode" : null,
"event" : false,
"eventStream" : false,
"explicitEventPayloadMember" : null,
"hasHeaderMember" : false,
"hasPayloadMember" : false,
"hasRequiresLengthMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"httpStatusCode" : null,
"marshaller" : null,
"members" : [ {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getRepository",
"beanStyleSetterMethodName" : "setRepository",
"c2jName" : "repository",
"c2jShape" : "RepositoryDescription",
"defaultConsumerFluentSetterDocumentation" : " Information about the connected repository after processing the request.
\nThis is a convenience that creates an instance of the {@link RepositoryDescription.Builder} avoiding the need to create one manually via {@link RepositoryDescription#builder()}.\n\nWhen the {@link Consumer} completes, {@link RepositoryDescription.Builder#build()} is called immediately and its result is passed to {@link #repository(RepositoryDescription)}.\n@param repository a consumer that will call methods on {@link RepositoryDescription.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #repository(RepositoryDescription)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " Information about the connected repository after processing the request.
\n@return Information about the connected repository after processing the request.\n@deprecated Use {@link #repository()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " Information about the connected repository after processing the request.
\n@param repository Information about the connected repository after processing the request.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #repository(RepositoryDescription)}\n",
"documentation" : " Information about the connected repository after processing the request.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Repository property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasRepository",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "repository",
"fluentSetterDocumentation" : " Information about the connected repository after processing the request.
\n@param repository Information about the connected repository after processing the request.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "repository",
"getterDocumentation" : " Information about the connected repository after processing the request.
\n@return Information about the connected repository after processing the request.",
"getterModel" : {
"returnType" : "RepositoryDescription",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "repository",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "repository",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "SDK_POJO",
"name" : "Repository",
"sensitive" : false,
"setterDocumentation" : " Information about the connected repository after processing the request.
\n@param repository Information about the connected repository after processing the request.",
"setterMethodName" : "setRepository",
"setterModel" : {
"variableDeclarationType" : "RepositoryDescription",
"variableName" : "repository",
"variableType" : "RepositoryDescription",
"documentation" : null,
"simpleType" : "RepositoryDescription",
"variableSetterType" : "RepositoryDescription"
},
"simple" : false,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "RepositoryDescription",
"variableName" : "repository",
"variableType" : "RepositoryDescription",
"documentation" : " Information about the connected repository after processing the request.
",
"simpleType" : "RepositoryDescription",
"variableSetterType" : "RepositoryDescription"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
} ],
"membersAsMap" : {
"Repository" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getRepository",
"beanStyleSetterMethodName" : "setRepository",
"c2jName" : "repository",
"c2jShape" : "RepositoryDescription",
"defaultConsumerFluentSetterDocumentation" : " Information about the connected repository after processing the request.
\nThis is a convenience that creates an instance of the {@link RepositoryDescription.Builder} avoiding the need to create one manually via {@link RepositoryDescription#builder()}.\n\nWhen the {@link Consumer} completes, {@link RepositoryDescription.Builder#build()} is called immediately and its result is passed to {@link #repository(RepositoryDescription)}.\n@param repository a consumer that will call methods on {@link RepositoryDescription.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #repository(RepositoryDescription)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " Information about the connected repository after processing the request.
\n@return Information about the connected repository after processing the request.\n@deprecated Use {@link #repository()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " Information about the connected repository after processing the request.
\n@param repository Information about the connected repository after processing the request.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #repository(RepositoryDescription)}\n",
"documentation" : " Information about the connected repository after processing the request.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Repository property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasRepository",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "repository",
"fluentSetterDocumentation" : " Information about the connected repository after processing the request.
\n@param repository Information about the connected repository after processing the request.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "repository",
"getterDocumentation" : " Information about the connected repository after processing the request.
\n@return Information about the connected repository after processing the request.",
"getterModel" : {
"returnType" : "RepositoryDescription",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "repository",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "repository",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "SDK_POJO",
"name" : "Repository",
"sensitive" : false,
"setterDocumentation" : " Information about the connected repository after processing the request.
\n@param repository Information about the connected repository after processing the request.",
"setterMethodName" : "setRepository",
"setterModel" : {
"variableDeclarationType" : "RepositoryDescription",
"variableName" : "repository",
"variableType" : "RepositoryDescription",
"documentation" : null,
"simpleType" : "RepositoryDescription",
"variableSetterType" : "RepositoryDescription"
},
"simple" : false,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "RepositoryDescription",
"variableName" : "repository",
"variableType" : "RepositoryDescription",
"documentation" : " Information about the connected repository after processing the request.
",
"simpleType" : "RepositoryDescription",
"variableSetterType" : "RepositoryDescription"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}
},
"nonStreamingMembers" : [ {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getRepository",
"beanStyleSetterMethodName" : "setRepository",
"c2jName" : "repository",
"c2jShape" : "RepositoryDescription",
"defaultConsumerFluentSetterDocumentation" : " Information about the connected repository after processing the request.
\nThis is a convenience that creates an instance of the {@link RepositoryDescription.Builder} avoiding the need to create one manually via {@link RepositoryDescription#builder()}.\n\nWhen the {@link Consumer} completes, {@link RepositoryDescription.Builder#build()} is called immediately and its result is passed to {@link #repository(RepositoryDescription)}.\n@param repository a consumer that will call methods on {@link RepositoryDescription.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #repository(RepositoryDescription)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " Information about the connected repository after processing the request.
\n@return Information about the connected repository after processing the request.\n@deprecated Use {@link #repository()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " Information about the connected repository after processing the request.
\n@param repository Information about the connected repository after processing the request.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #repository(RepositoryDescription)}\n",
"documentation" : " Information about the connected repository after processing the request.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Repository property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasRepository",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "repository",
"fluentSetterDocumentation" : " Information about the connected repository after processing the request.
\n@param repository Information about the connected repository after processing the request.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "repository",
"getterDocumentation" : " Information about the connected repository after processing the request.
\n@return Information about the connected repository after processing the request.",
"getterModel" : {
"returnType" : "RepositoryDescription",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "repository",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "repository",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "SDK_POJO",
"name" : "Repository",
"sensitive" : false,
"setterDocumentation" : " Information about the connected repository after processing the request.
\n@param repository Information about the connected repository after processing the request.",
"setterMethodName" : "setRepository",
"setterModel" : {
"variableDeclarationType" : "RepositoryDescription",
"variableName" : "repository",
"variableType" : "RepositoryDescription",
"documentation" : null,
"simpleType" : "RepositoryDescription",
"variableSetterType" : "RepositoryDescription"
},
"simple" : false,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "RepositoryDescription",
"variableName" : "repository",
"variableType" : "RepositoryDescription",
"documentation" : " Information about the connected repository after processing the request.
",
"simpleType" : "RepositoryDescription",
"variableSetterType" : "RepositoryDescription"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
} ],
"requestSignerAware" : false,
"requestSignerClassFqcn" : null,
"required" : null,
"shapeName" : "AssociateExternalConnectionResponse",
"simpleMethod" : false,
"unmarshaller" : {
"flattened" : false,
"resultWrapper" : null
},
"variable" : {
"variableDeclarationType" : "AssociateExternalConnectionResponse",
"variableName" : "associateExternalConnectionResponse",
"variableType" : "AssociateExternalConnectionResponse",
"documentation" : null,
"simpleType" : "AssociateExternalConnectionResponse",
"variableSetterType" : "AssociateExternalConnectionResponse"
},
"wrapper" : false,
"xmlNamespace" : null
},
"ConflictException" : {
"c2jName" : "ConflictException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingMarshaller" : false,
"skipGeneratingModelClass" : false,
"skipGeneratingUnmarshaller" : false,
"staxTargetDepthOffset" : 0
},
"deprecated" : false,
"documentation" : " The operation did not succeed because prerequisites are not met.
",
"endpointDiscovery" : null,
"enums" : null,
"errorCode" : "ConflictException",
"event" : false,
"eventStream" : false,
"explicitEventPayloadMember" : null,
"hasHeaderMember" : false,
"hasPayloadMember" : false,
"hasRequiresLengthMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"httpStatusCode" : 409,
"marshaller" : null,
"members" : [ {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getResourceId",
"beanStyleSetterMethodName" : "setResourceId",
"c2jName" : "resourceId",
"c2jShape" : "String",
"defaultConsumerFluentSetterDocumentation" : " The ID of the resource.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceId(String)}.\n@param resourceId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceId(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The ID of the resource.
\n@return The ID of the resource.\n@deprecated Use {@link #resourceId()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The ID of the resource.
\n@param resourceId The ID of the resource.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #resourceId(String)}\n",
"documentation" : " The ID of the resource.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the ResourceId property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasResourceId",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "resourceId",
"fluentSetterDocumentation" : " The ID of the resource.
\n@param resourceId The ID of the resource.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "resourceId",
"getterDocumentation" : " The ID of the resource.
\n@return The ID of the resource.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "resourceId",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "resourceId",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "ResourceId",
"sensitive" : false,
"setterDocumentation" : " The ID of the resource.
\n@param resourceId The ID of the resource.",
"setterMethodName" : "setResourceId",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "resourceId",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "resourceId",
"variableType" : "String",
"documentation" : " The ID of the resource.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getResourceType",
"beanStyleSetterMethodName" : "setResourceType",
"c2jName" : "resourceType",
"c2jShape" : "ResourceType",
"defaultConsumerFluentSetterDocumentation" : " The type of AWS resource.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceTypeAsString(String)}.\n@param resourceType a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceType(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The type of AWS resource.
\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #resourceType} will return {@link ResourceType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #resourceTypeAsString}.\n
\n@return The type of AWS resource.\n@see ResourceType\n@deprecated Use {@link #resourceTypeAsString()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The type of AWS resource.
\n@param resourceType The type of AWS resource.\n@see ResourceType\n@return Returns a reference to this object so that method calls can be chained together.\n@see ResourceType\n@deprecated Use {@link #resourceType(String)}\n",
"documentation" : " The type of AWS resource.
",
"endpointDiscoveryId" : false,
"enumType" : "ResourceType",
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the ResourceType property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasResourceType",
"fluentEnumGetterMethodName" : "resourceType",
"fluentEnumSetterMethodName" : "resourceType",
"fluentGetterMethodName" : "resourceTypeAsString",
"fluentSetterDocumentation" : " The type of AWS resource.
\n@param resourceType The type of AWS resource.\n@see ResourceType\n@return Returns a reference to this object so that method calls can be chained together.\n@see ResourceType",
"fluentSetterMethodName" : "resourceType",
"getterDocumentation" : " The type of AWS resource.
\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #resourceType} will return {@link ResourceType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #resourceTypeAsString}.\n
\n@return The type of AWS resource.\n@see ResourceType",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "resourceType",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "resourceType",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "ResourceType",
"sensitive" : false,
"setterDocumentation" : " The type of AWS resource.
\n@param resourceType The type of AWS resource.\n@see ResourceType",
"setterMethodName" : "setResourceType",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "resourceType",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "resourceType",
"variableType" : "String",
"documentation" : " The type of AWS resource.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
} ],
"membersAsMap" : {
"ResourceId" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getResourceId",
"beanStyleSetterMethodName" : "setResourceId",
"c2jName" : "resourceId",
"c2jShape" : "String",
"defaultConsumerFluentSetterDocumentation" : " The ID of the resource.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceId(String)}.\n@param resourceId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceId(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The ID of the resource.
\n@return The ID of the resource.\n@deprecated Use {@link #resourceId()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The ID of the resource.
\n@param resourceId The ID of the resource.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #resourceId(String)}\n",
"documentation" : " The ID of the resource.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the ResourceId property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasResourceId",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "resourceId",
"fluentSetterDocumentation" : " The ID of the resource.
\n@param resourceId The ID of the resource.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "resourceId",
"getterDocumentation" : " The ID of the resource.
\n@return The ID of the resource.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "resourceId",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "resourceId",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "ResourceId",
"sensitive" : false,
"setterDocumentation" : " The ID of the resource.
\n@param resourceId The ID of the resource.",
"setterMethodName" : "setResourceId",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "resourceId",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "resourceId",
"variableType" : "String",
"documentation" : " The ID of the resource.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"ResourceType" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getResourceType",
"beanStyleSetterMethodName" : "setResourceType",
"c2jName" : "resourceType",
"c2jShape" : "ResourceType",
"defaultConsumerFluentSetterDocumentation" : " The type of AWS resource.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceTypeAsString(String)}.\n@param resourceType a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceType(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The type of AWS resource.
\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #resourceType} will return {@link ResourceType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #resourceTypeAsString}.\n
\n@return The type of AWS resource.\n@see ResourceType\n@deprecated Use {@link #resourceTypeAsString()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The type of AWS resource.
\n@param resourceType The type of AWS resource.\n@see ResourceType\n@return Returns a reference to this object so that method calls can be chained together.\n@see ResourceType\n@deprecated Use {@link #resourceType(String)}\n",
"documentation" : " The type of AWS resource.
",
"endpointDiscoveryId" : false,
"enumType" : "ResourceType",
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the ResourceType property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasResourceType",
"fluentEnumGetterMethodName" : "resourceType",
"fluentEnumSetterMethodName" : "resourceType",
"fluentGetterMethodName" : "resourceTypeAsString",
"fluentSetterDocumentation" : " The type of AWS resource.
\n@param resourceType The type of AWS resource.\n@see ResourceType\n@return Returns a reference to this object so that method calls can be chained together.\n@see ResourceType",
"fluentSetterMethodName" : "resourceType",
"getterDocumentation" : " The type of AWS resource.
\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #resourceType} will return {@link ResourceType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #resourceTypeAsString}.\n
\n@return The type of AWS resource.\n@see ResourceType",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "resourceType",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "resourceType",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "ResourceType",
"sensitive" : false,
"setterDocumentation" : " The type of AWS resource.
\n@param resourceType The type of AWS resource.\n@see ResourceType",
"setterMethodName" : "setResourceType",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "resourceType",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "resourceType",
"variableType" : "String",
"documentation" : " The type of AWS resource.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}
},
"nonStreamingMembers" : [ {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getResourceId",
"beanStyleSetterMethodName" : "setResourceId",
"c2jName" : "resourceId",
"c2jShape" : "String",
"defaultConsumerFluentSetterDocumentation" : " The ID of the resource.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceId(String)}.\n@param resourceId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceId(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The ID of the resource.
\n@return The ID of the resource.\n@deprecated Use {@link #resourceId()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The ID of the resource.
\n@param resourceId The ID of the resource.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #resourceId(String)}\n",
"documentation" : " The ID of the resource.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the ResourceId property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasResourceId",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "resourceId",
"fluentSetterDocumentation" : " The ID of the resource.
\n@param resourceId The ID of the resource.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "resourceId",
"getterDocumentation" : " The ID of the resource.
\n@return The ID of the resource.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "resourceId",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "resourceId",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "ResourceId",
"sensitive" : false,
"setterDocumentation" : " The ID of the resource.
\n@param resourceId The ID of the resource.",
"setterMethodName" : "setResourceId",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "resourceId",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "resourceId",
"variableType" : "String",
"documentation" : " The ID of the resource.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getResourceType",
"beanStyleSetterMethodName" : "setResourceType",
"c2jName" : "resourceType",
"c2jShape" : "ResourceType",
"defaultConsumerFluentSetterDocumentation" : " The type of AWS resource.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceTypeAsString(String)}.\n@param resourceType a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceType(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The type of AWS resource.
\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #resourceType} will return {@link ResourceType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #resourceTypeAsString}.\n
\n@return The type of AWS resource.\n@see ResourceType\n@deprecated Use {@link #resourceTypeAsString()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The type of AWS resource.
\n@param resourceType The type of AWS resource.\n@see ResourceType\n@return Returns a reference to this object so that method calls can be chained together.\n@see ResourceType\n@deprecated Use {@link #resourceType(String)}\n",
"documentation" : " The type of AWS resource.
",
"endpointDiscoveryId" : false,
"enumType" : "ResourceType",
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the ResourceType property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasResourceType",
"fluentEnumGetterMethodName" : "resourceType",
"fluentEnumSetterMethodName" : "resourceType",
"fluentGetterMethodName" : "resourceTypeAsString",
"fluentSetterDocumentation" : " The type of AWS resource.
\n@param resourceType The type of AWS resource.\n@see ResourceType\n@return Returns a reference to this object so that method calls can be chained together.\n@see ResourceType",
"fluentSetterMethodName" : "resourceType",
"getterDocumentation" : " The type of AWS resource.
\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #resourceType} will return {@link ResourceType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #resourceTypeAsString}.\n
\n@return The type of AWS resource.\n@see ResourceType",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "resourceType",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "resourceType",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "ResourceType",
"sensitive" : false,
"setterDocumentation" : " The type of AWS resource.
\n@param resourceType The type of AWS resource.\n@see ResourceType",
"setterMethodName" : "setResourceType",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "resourceType",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "resourceType",
"variableType" : "String",
"documentation" : " The type of AWS resource.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
} ],
"requestSignerAware" : false,
"requestSignerClassFqcn" : null,
"required" : [ "message" ],
"shapeName" : "ConflictException",
"simpleMethod" : false,
"unmarshaller" : null,
"variable" : {
"variableDeclarationType" : "ConflictException",
"variableName" : "conflictException",
"variableType" : "ConflictException",
"documentation" : null,
"simpleType" : "ConflictException",
"variableSetterType" : "ConflictException"
},
"wrapper" : false,
"xmlNamespace" : null
},
"CopyPackageVersionsRequest" : {
"c2jName" : "CopyPackageVersionsRequest",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingMarshaller" : false,
"skipGeneratingModelClass" : false,
"skipGeneratingUnmarshaller" : false,
"staxTargetDepthOffset" : 0
},
"deprecated" : false,
"documentation" : "",
"endpointDiscovery" : null,
"enums" : null,
"errorCode" : null,
"event" : false,
"eventStream" : false,
"explicitEventPayloadMember" : null,
"hasHeaderMember" : false,
"hasPayloadMember" : false,
"hasRequiresLengthMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"httpStatusCode" : null,
"marshaller" : {
"action" : "CopyPackageVersions",
"locationName" : null,
"requestUri" : "/v1/package/versions/copy",
"target" : null,
"verb" : "POST",
"xmlNameSpaceUri" : null
},
"members" : [ {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getDomain",
"beanStyleSetterMethodName" : "setDomain",
"c2jName" : "domain",
"c2jShape" : "DomainName",
"defaultConsumerFluentSetterDocumentation" : " The name of the domain that contains the source and destination repositories.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #domain(String)}.\n@param domain a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #domain(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the domain that contains the source and destination repositories.
\n@return The name of the domain that contains the source and destination repositories.\n@deprecated Use {@link #domain()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the domain that contains the source and destination repositories.
\n@param domain The name of the domain that contains the source and destination repositories.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #domain(String)}\n",
"documentation" : " The name of the domain that contains the source and destination repositories.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Domain property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasDomain",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "domain",
"fluentSetterDocumentation" : " The name of the domain that contains the source and destination repositories.
\n@param domain The name of the domain that contains the source and destination repositories.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "domain",
"getterDocumentation" : " The name of the domain that contains the source and destination repositories.
\n@return The name of the domain that contains the source and destination repositories.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "domain",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "domain",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Domain",
"sensitive" : false,
"setterDocumentation" : " The name of the domain that contains the source and destination repositories.
\n@param domain The name of the domain that contains the source and destination repositories.",
"setterMethodName" : "setDomain",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "domain",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "domain",
"variableType" : "String",
"documentation" : " The name of the domain that contains the source and destination repositories.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getDomainOwner",
"beanStyleSetterMethodName" : "setDomainOwner",
"c2jName" : "domainOwner",
"c2jShape" : "AccountId",
"defaultConsumerFluentSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #domainOwner(String)}.\n@param domainOwner a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #domainOwner(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@return The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@deprecated Use {@link #domainOwner()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #domainOwner(String)}\n",
"documentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the DomainOwner property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasDomainOwner",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "domainOwner",
"fluentSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "domainOwner",
"getterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@return The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "domain-owner",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "domain-owner",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "DomainOwner",
"sensitive" : false,
"setterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.",
"setterMethodName" : "setDomainOwner",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "domainOwner",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "domainOwner",
"variableType" : "String",
"documentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getSourceRepository",
"beanStyleSetterMethodName" : "setSourceRepository",
"c2jName" : "sourceRepository",
"c2jShape" : "RepositoryName",
"defaultConsumerFluentSetterDocumentation" : " The name of the repository that contains the package versions to copy.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #sourceRepository(String)}.\n@param sourceRepository a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #sourceRepository(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the repository that contains the package versions to copy.
\n@return The name of the repository that contains the package versions to copy.\n@deprecated Use {@link #sourceRepository()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the repository that contains the package versions to copy.
\n@param sourceRepository The name of the repository that contains the package versions to copy.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #sourceRepository(String)}\n",
"documentation" : " The name of the repository that contains the package versions to copy.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the SourceRepository property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasSourceRepository",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "sourceRepository",
"fluentSetterDocumentation" : " The name of the repository that contains the package versions to copy.
\n@param sourceRepository The name of the repository that contains the package versions to copy.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "sourceRepository",
"getterDocumentation" : " The name of the repository that contains the package versions to copy.
\n@return The name of the repository that contains the package versions to copy.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "source-repository",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "source-repository",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "SourceRepository",
"sensitive" : false,
"setterDocumentation" : " The name of the repository that contains the package versions to copy.
\n@param sourceRepository The name of the repository that contains the package versions to copy.",
"setterMethodName" : "setSourceRepository",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "sourceRepository",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "sourceRepository",
"variableType" : "String",
"documentation" : " The name of the repository that contains the package versions to copy.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getDestinationRepository",
"beanStyleSetterMethodName" : "setDestinationRepository",
"c2jName" : "destinationRepository",
"c2jShape" : "RepositoryName",
"defaultConsumerFluentSetterDocumentation" : " The name of the repository into which package versions are copied.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #destinationRepository(String)}.\n@param destinationRepository a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #destinationRepository(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the repository into which package versions are copied.
\n@return The name of the repository into which package versions are copied.\n@deprecated Use {@link #destinationRepository()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the repository into which package versions are copied.
\n@param destinationRepository The name of the repository into which package versions are copied.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #destinationRepository(String)}\n",
"documentation" : " The name of the repository into which package versions are copied.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the DestinationRepository property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasDestinationRepository",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "destinationRepository",
"fluentSetterDocumentation" : " The name of the repository into which package versions are copied.
\n@param destinationRepository The name of the repository into which package versions are copied.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "destinationRepository",
"getterDocumentation" : " The name of the repository into which package versions are copied.
\n@return The name of the repository into which package versions are copied.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "destination-repository",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "destination-repository",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "DestinationRepository",
"sensitive" : false,
"setterDocumentation" : " The name of the repository into which package versions are copied.
\n@param destinationRepository The name of the repository into which package versions are copied.",
"setterMethodName" : "setDestinationRepository",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "destinationRepository",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "destinationRepository",
"variableType" : "String",
"documentation" : " The name of the repository into which package versions are copied.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getFormat",
"beanStyleSetterMethodName" : "setFormat",
"c2jName" : "format",
"c2jShape" : "PackageFormat",
"defaultConsumerFluentSetterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #formatAsString(String)}.\n@param format a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #format(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #format} will return {@link PackageFormat#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #formatAsString}.\n
\n@return The format of the package that is copied. The valid package types are: -
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@see PackageFormat\n@deprecated Use {@link #formatAsString()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@param format The format of the package that is copied. The valid package types are: -
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@see PackageFormat\n@return Returns a reference to this object so that method calls can be chained together.\n@see PackageFormat\n@deprecated Use {@link #format(String)}\n",
"documentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
",
"endpointDiscoveryId" : false,
"enumType" : "PackageFormat",
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Format property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasFormat",
"fluentEnumGetterMethodName" : "format",
"fluentEnumSetterMethodName" : "format",
"fluentGetterMethodName" : "formatAsString",
"fluentSetterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@param format The format of the package that is copied. The valid package types are: -
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@see PackageFormat\n@return Returns a reference to this object so that method calls can be chained together.\n@see PackageFormat",
"fluentSetterMethodName" : "format",
"getterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #format} will return {@link PackageFormat#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #formatAsString}.\n
\n@return The format of the package that is copied. The valid package types are: -
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@see PackageFormat",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "format",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "format",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Format",
"sensitive" : false,
"setterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@param format The format of the package that is copied. The valid package types are: -
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@see PackageFormat",
"setterMethodName" : "setFormat",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "format",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "format",
"variableType" : "String",
"documentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getNamespace",
"beanStyleSetterMethodName" : "setNamespace",
"c2jName" : "namespace",
"c2jShape" : "PackageNamespace",
"defaultConsumerFluentSetterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #namespace(String)}.\n@param namespace a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #namespace(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@return The namespace of the package. The package component that specifies its namespace depends on its type. For example: -
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@deprecated Use {@link #namespace()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@param namespace The namespace of the package. The package component that specifies its namespace depends on its type. For example: -
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #namespace(String)}\n",
"documentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Namespace property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasNamespace",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "namespace",
"fluentSetterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@param namespace The namespace of the package. The package component that specifies its namespace depends on its type. For example: -
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "namespace",
"getterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@return The namespace of the package. The package component that specifies its namespace depends on its type. For example: -
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "namespace",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "namespace",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Namespace",
"sensitive" : false,
"setterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@param namespace The namespace of the package. The package component that specifies its namespace depends on its type. For example: -
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
",
"setterMethodName" : "setNamespace",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "namespace",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "namespace",
"variableType" : "String",
"documentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getPackageValue",
"beanStyleSetterMethodName" : "setPackageValue",
"c2jName" : "package",
"c2jShape" : "PackageName",
"defaultConsumerFluentSetterDocumentation" : " The name of the package that is copied.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #packageValue(String)}.\n@param packageValue a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #packageValue(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the package that is copied.
\n@return The name of the package that is copied.\n@deprecated Use {@link #packageValue()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the package that is copied.
\n@param packageValue The name of the package that is copied.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #packageValue(String)}\n",
"documentation" : " The name of the package that is copied.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Package property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasPackageValue",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "packageValue",
"fluentSetterDocumentation" : " The name of the package that is copied.
\n@param packageValue The name of the package that is copied.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "packageValue",
"getterDocumentation" : " The name of the package that is copied.
\n@return The name of the package that is copied.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "package",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "package",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Package",
"sensitive" : false,
"setterDocumentation" : " The name of the package that is copied.
\n@param packageValue The name of the package that is copied.",
"setterMethodName" : "setPackageValue",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "packageValue",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "packageValue",
"variableType" : "String",
"documentation" : " The name of the package that is copied.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : true
},
"beanStyleGetterMethodName" : "getVersions",
"beanStyleSetterMethodName" : "setVersions",
"c2jName" : "versions",
"c2jShape" : "PackageVersionList",
"defaultConsumerFluentSetterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #versions(List)}.\n@param versions a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #versions(List)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasVersions()} to see if a value was sent in this field.\n
\n@return The versions of the package to copy. You must specify versions
or versionRevisions
. You cannot specify both.
\n@deprecated Use {@link #versions()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versions The versions of the package to copy. You must specify versions
or versionRevisions
. You cannot specify both.
\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #versions(List)}\n",
"documentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Versions property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasVersions",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "versions",
"fluentSetterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versions The versions of the package to copy. You must specify versions
or versionRevisions
. You cannot specify both.
\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "versions",
"getterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasVersions()} to see if a value was sent in this field.\n
\n@return The versions of the package to copy. You must specify versions
or versionRevisions
. You cannot specify both.
",
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "versions",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "versions",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : true,
"listModel" : {
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getMember",
"beanStyleSetterMethodName" : "setMember",
"c2jName" : "member",
"c2jShape" : "PackageVersion",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #member(String)}.\n@param member a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.\n@deprecated Use {@link #member()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #member(String)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Member property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasMember",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "member",
"fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "member",
"getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "member",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "member",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Member",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.",
"setterMethodName" : "setMember",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "member",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "member",
"variableType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"memberLocationName" : null,
"memberType" : "String",
"map" : false,
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"simple" : true,
"simpleType" : "String",
"templateImplType" : "java.util.ArrayList",
"templateType" : "java.util.List"
},
"map" : false,
"mapModel" : null,
"marshallingType" : "LIST",
"name" : "Versions",
"sensitive" : false,
"setterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versions The versions of the package to copy. You must specify versions
or versionRevisions
. You cannot specify both.
",
"setterMethodName" : "setVersions",
"setterModel" : {
"variableDeclarationType" : "java.util.List",
"variableName" : "versions",
"variableType" : "java.util.List",
"documentation" : null,
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"simple" : false,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "java.util.List",
"variableName" : "versions",
"variableType" : "java.util.List",
"documentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : true
},
"beanStyleGetterMethodName" : "getVersionRevisions",
"beanStyleSetterMethodName" : "setVersionRevisions",
"c2jName" : "versionRevisions",
"c2jShape" : "PackageVersionRevisionMap",
"defaultConsumerFluentSetterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\nThis is a convenience that creates an instance of the {@link Map.Builder} avoiding the need to create one manually via {@link Map#builder()}.\n\nWhen the {@link Consumer} completes, {@link Map.Builder#build()} is called immediately and its result is passed to {@link #versionRevisions(Map)}.\n@param versionRevisions a consumer that will call methods on {@link Map.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #versionRevisions(Map)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasVersionRevisions()} to see if a value was sent in this field.\n
\n@return A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision. You must specify versions
or versionRevisions
. You cannot specify both.
\n@deprecated Use {@link #versionRevisions()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versionRevisions A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision. You must specify versions
or versionRevisions
. You cannot specify both.
\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #versionRevisions(Map)}\n",
"documentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the VersionRevisions property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasVersionRevisions",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "versionRevisions",
"fluentSetterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versionRevisions A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision. You must specify versions
or versionRevisions
. You cannot specify both.
\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "versionRevisions",
"getterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasVersionRevisions()} to see if a value was sent in this field.\n
\n@return A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision. You must specify versions
or versionRevisions
. You cannot specify both.
",
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "versionRevisions",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "versionRevisions",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : true,
"mapModel" : {
"implType" : "java.util.HashMap",
"interfaceType" : "java.util.Map",
"keyLocationName" : "key",
"keyModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getKey",
"beanStyleSetterMethodName" : "setKey",
"c2jName" : "key",
"c2jShape" : "PackageVersion",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Key property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #key(String)}.\n@param key a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #key(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Key property for this object.\n@return The value of the Key property for this object.\n@deprecated Use {@link #key()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #key(String)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Key property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasKey",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "key",
"fluentSetterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "key",
"getterDocumentation" : "Returns the value of the Key property for this object.\n@return The value of the Key property for this object.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "key",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "key",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Key",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.",
"setterMethodName" : "setKey",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "key",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "key",
"variableType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"valueLocationName" : "value",
"valueModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getValue",
"beanStyleSetterMethodName" : "setValue",
"c2jName" : "value",
"c2jShape" : "PackageVersionRevision",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Value property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #value(String)}.\n@param value a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #value(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Value property for this object.\n@return The value of the Value property for this object.\n@deprecated Use {@link #value()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #value(String)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Value property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasValue",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "value",
"fluentSetterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "value",
"getterDocumentation" : "Returns the value of the Value property for this object.\n@return The value of the Value property for this object.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "value",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "value",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Value",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.",
"setterMethodName" : "setValue",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "value",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "value",
"variableType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"entryType" : "Map.Entry",
"templateType" : "java.util.Map"
},
"marshallingType" : "MAP",
"name" : "VersionRevisions",
"sensitive" : false,
"setterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versionRevisions A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision. You must specify versions
or versionRevisions
. You cannot specify both.
",
"setterMethodName" : "setVersionRevisions",
"setterModel" : {
"variableDeclarationType" : "java.util.Map",
"variableName" : "versionRevisions",
"variableType" : "java.util.Map",
"documentation" : null,
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"simple" : false,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "java.util.Map",
"variableName" : "versionRevisions",
"variableType" : "java.util.Map",
"documentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getAllowOverwrite",
"beanStyleSetterMethodName" : "setAllowOverwrite",
"c2jName" : "allowOverwrite",
"c2jShape" : "BooleanOptional",
"defaultConsumerFluentSetterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #allowOverwrite(Boolean)}.\n@param allowOverwrite a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #allowOverwrite(Boolean)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\n@return Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.\n@deprecated Use {@link #allowOverwrite()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\n@param allowOverwrite Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #allowOverwrite(Boolean)}\n",
"documentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the AllowOverwrite property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasAllowOverwrite",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "allowOverwrite",
"fluentSetterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\n@param allowOverwrite Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "allowOverwrite",
"getterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\n@return Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.",
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "allowOverwrite",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "allowOverwrite",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "BOOLEAN",
"name" : "AllowOverwrite",
"sensitive" : false,
"setterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\n@param allowOverwrite Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.",
"setterMethodName" : "setAllowOverwrite",
"setterModel" : {
"variableDeclarationType" : "Boolean",
"variableName" : "allowOverwrite",
"variableType" : "Boolean",
"documentation" : null,
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "Boolean",
"variableName" : "allowOverwrite",
"variableType" : "Boolean",
"documentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getIncludeFromUpstream",
"beanStyleSetterMethodName" : "setIncludeFromUpstream",
"c2jName" : "includeFromUpstream",
"c2jShape" : "BooleanOptional",
"defaultConsumerFluentSetterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #includeFromUpstream(Boolean)}.\n@param includeFromUpstream a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #includeFromUpstream(Boolean)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\n@return Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.\n@deprecated Use {@link #includeFromUpstream()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\n@param includeFromUpstream Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #includeFromUpstream(Boolean)}\n",
"documentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the IncludeFromUpstream property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasIncludeFromUpstream",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "includeFromUpstream",
"fluentSetterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\n@param includeFromUpstream Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "includeFromUpstream",
"getterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\n@return Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.",
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "includeFromUpstream",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "includeFromUpstream",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "BOOLEAN",
"name" : "IncludeFromUpstream",
"sensitive" : false,
"setterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\n@param includeFromUpstream Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.",
"setterMethodName" : "setIncludeFromUpstream",
"setterModel" : {
"variableDeclarationType" : "Boolean",
"variableName" : "includeFromUpstream",
"variableType" : "Boolean",
"documentation" : null,
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "Boolean",
"variableName" : "includeFromUpstream",
"variableType" : "Boolean",
"documentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
} ],
"membersAsMap" : {
"AllowOverwrite" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getAllowOverwrite",
"beanStyleSetterMethodName" : "setAllowOverwrite",
"c2jName" : "allowOverwrite",
"c2jShape" : "BooleanOptional",
"defaultConsumerFluentSetterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #allowOverwrite(Boolean)}.\n@param allowOverwrite a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #allowOverwrite(Boolean)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\n@return Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.\n@deprecated Use {@link #allowOverwrite()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\n@param allowOverwrite Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #allowOverwrite(Boolean)}\n",
"documentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the AllowOverwrite property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasAllowOverwrite",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "allowOverwrite",
"fluentSetterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\n@param allowOverwrite Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "allowOverwrite",
"getterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\n@return Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.",
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "allowOverwrite",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "allowOverwrite",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "BOOLEAN",
"name" : "AllowOverwrite",
"sensitive" : false,
"setterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\n@param allowOverwrite Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.",
"setterMethodName" : "setAllowOverwrite",
"setterModel" : {
"variableDeclarationType" : "Boolean",
"variableName" : "allowOverwrite",
"variableType" : "Boolean",
"documentation" : null,
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "Boolean",
"variableName" : "allowOverwrite",
"variableType" : "Boolean",
"documentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"DestinationRepository" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getDestinationRepository",
"beanStyleSetterMethodName" : "setDestinationRepository",
"c2jName" : "destinationRepository",
"c2jShape" : "RepositoryName",
"defaultConsumerFluentSetterDocumentation" : " The name of the repository into which package versions are copied.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #destinationRepository(String)}.\n@param destinationRepository a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #destinationRepository(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the repository into which package versions are copied.
\n@return The name of the repository into which package versions are copied.\n@deprecated Use {@link #destinationRepository()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the repository into which package versions are copied.
\n@param destinationRepository The name of the repository into which package versions are copied.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #destinationRepository(String)}\n",
"documentation" : " The name of the repository into which package versions are copied.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the DestinationRepository property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasDestinationRepository",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "destinationRepository",
"fluentSetterDocumentation" : " The name of the repository into which package versions are copied.
\n@param destinationRepository The name of the repository into which package versions are copied.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "destinationRepository",
"getterDocumentation" : " The name of the repository into which package versions are copied.
\n@return The name of the repository into which package versions are copied.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "destination-repository",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "destination-repository",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "DestinationRepository",
"sensitive" : false,
"setterDocumentation" : " The name of the repository into which package versions are copied.
\n@param destinationRepository The name of the repository into which package versions are copied.",
"setterMethodName" : "setDestinationRepository",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "destinationRepository",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "destinationRepository",
"variableType" : "String",
"documentation" : " The name of the repository into which package versions are copied.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"Domain" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getDomain",
"beanStyleSetterMethodName" : "setDomain",
"c2jName" : "domain",
"c2jShape" : "DomainName",
"defaultConsumerFluentSetterDocumentation" : " The name of the domain that contains the source and destination repositories.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #domain(String)}.\n@param domain a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #domain(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the domain that contains the source and destination repositories.
\n@return The name of the domain that contains the source and destination repositories.\n@deprecated Use {@link #domain()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the domain that contains the source and destination repositories.
\n@param domain The name of the domain that contains the source and destination repositories.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #domain(String)}\n",
"documentation" : " The name of the domain that contains the source and destination repositories.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Domain property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasDomain",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "domain",
"fluentSetterDocumentation" : " The name of the domain that contains the source and destination repositories.
\n@param domain The name of the domain that contains the source and destination repositories.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "domain",
"getterDocumentation" : " The name of the domain that contains the source and destination repositories.
\n@return The name of the domain that contains the source and destination repositories.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "domain",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "domain",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Domain",
"sensitive" : false,
"setterDocumentation" : " The name of the domain that contains the source and destination repositories.
\n@param domain The name of the domain that contains the source and destination repositories.",
"setterMethodName" : "setDomain",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "domain",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "domain",
"variableType" : "String",
"documentation" : " The name of the domain that contains the source and destination repositories.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"DomainOwner" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getDomainOwner",
"beanStyleSetterMethodName" : "setDomainOwner",
"c2jName" : "domainOwner",
"c2jShape" : "AccountId",
"defaultConsumerFluentSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #domainOwner(String)}.\n@param domainOwner a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #domainOwner(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@return The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@deprecated Use {@link #domainOwner()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #domainOwner(String)}\n",
"documentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the DomainOwner property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasDomainOwner",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "domainOwner",
"fluentSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "domainOwner",
"getterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@return The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "domain-owner",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "domain-owner",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "DomainOwner",
"sensitive" : false,
"setterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.",
"setterMethodName" : "setDomainOwner",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "domainOwner",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "domainOwner",
"variableType" : "String",
"documentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"Format" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getFormat",
"beanStyleSetterMethodName" : "setFormat",
"c2jName" : "format",
"c2jShape" : "PackageFormat",
"defaultConsumerFluentSetterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #formatAsString(String)}.\n@param format a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #format(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #format} will return {@link PackageFormat#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #formatAsString}.\n
\n@return The format of the package that is copied. The valid package types are: -
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@see PackageFormat\n@deprecated Use {@link #formatAsString()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@param format The format of the package that is copied. The valid package types are: -
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@see PackageFormat\n@return Returns a reference to this object so that method calls can be chained together.\n@see PackageFormat\n@deprecated Use {@link #format(String)}\n",
"documentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
",
"endpointDiscoveryId" : false,
"enumType" : "PackageFormat",
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Format property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasFormat",
"fluentEnumGetterMethodName" : "format",
"fluentEnumSetterMethodName" : "format",
"fluentGetterMethodName" : "formatAsString",
"fluentSetterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@param format The format of the package that is copied. The valid package types are: -
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@see PackageFormat\n@return Returns a reference to this object so that method calls can be chained together.\n@see PackageFormat",
"fluentSetterMethodName" : "format",
"getterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #format} will return {@link PackageFormat#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #formatAsString}.\n
\n@return The format of the package that is copied. The valid package types are: -
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@see PackageFormat",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "format",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "format",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Format",
"sensitive" : false,
"setterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@param format The format of the package that is copied. The valid package types are: -
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@see PackageFormat",
"setterMethodName" : "setFormat",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "format",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "format",
"variableType" : "String",
"documentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"IncludeFromUpstream" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getIncludeFromUpstream",
"beanStyleSetterMethodName" : "setIncludeFromUpstream",
"c2jName" : "includeFromUpstream",
"c2jShape" : "BooleanOptional",
"defaultConsumerFluentSetterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #includeFromUpstream(Boolean)}.\n@param includeFromUpstream a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #includeFromUpstream(Boolean)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\n@return Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.\n@deprecated Use {@link #includeFromUpstream()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\n@param includeFromUpstream Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #includeFromUpstream(Boolean)}\n",
"documentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the IncludeFromUpstream property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasIncludeFromUpstream",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "includeFromUpstream",
"fluentSetterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\n@param includeFromUpstream Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "includeFromUpstream",
"getterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\n@return Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.",
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "includeFromUpstream",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "includeFromUpstream",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "BOOLEAN",
"name" : "IncludeFromUpstream",
"sensitive" : false,
"setterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\n@param includeFromUpstream Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.",
"setterMethodName" : "setIncludeFromUpstream",
"setterModel" : {
"variableDeclarationType" : "Boolean",
"variableName" : "includeFromUpstream",
"variableType" : "Boolean",
"documentation" : null,
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "Boolean",
"variableName" : "includeFromUpstream",
"variableType" : "Boolean",
"documentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"Namespace" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getNamespace",
"beanStyleSetterMethodName" : "setNamespace",
"c2jName" : "namespace",
"c2jShape" : "PackageNamespace",
"defaultConsumerFluentSetterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #namespace(String)}.\n@param namespace a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #namespace(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@return The namespace of the package. The package component that specifies its namespace depends on its type. For example: -
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@deprecated Use {@link #namespace()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@param namespace The namespace of the package. The package component that specifies its namespace depends on its type. For example: -
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #namespace(String)}\n",
"documentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Namespace property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasNamespace",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "namespace",
"fluentSetterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@param namespace The namespace of the package. The package component that specifies its namespace depends on its type. For example: -
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "namespace",
"getterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@return The namespace of the package. The package component that specifies its namespace depends on its type. For example: -
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "namespace",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "namespace",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Namespace",
"sensitive" : false,
"setterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@param namespace The namespace of the package. The package component that specifies its namespace depends on its type. For example: -
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
",
"setterMethodName" : "setNamespace",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "namespace",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "namespace",
"variableType" : "String",
"documentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"Package" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getPackageValue",
"beanStyleSetterMethodName" : "setPackageValue",
"c2jName" : "package",
"c2jShape" : "PackageName",
"defaultConsumerFluentSetterDocumentation" : " The name of the package that is copied.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #packageValue(String)}.\n@param packageValue a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #packageValue(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the package that is copied.
\n@return The name of the package that is copied.\n@deprecated Use {@link #packageValue()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the package that is copied.
\n@param packageValue The name of the package that is copied.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #packageValue(String)}\n",
"documentation" : " The name of the package that is copied.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Package property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasPackageValue",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "packageValue",
"fluentSetterDocumentation" : " The name of the package that is copied.
\n@param packageValue The name of the package that is copied.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "packageValue",
"getterDocumentation" : " The name of the package that is copied.
\n@return The name of the package that is copied.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "package",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "package",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Package",
"sensitive" : false,
"setterDocumentation" : " The name of the package that is copied.
\n@param packageValue The name of the package that is copied.",
"setterMethodName" : "setPackageValue",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "packageValue",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "packageValue",
"variableType" : "String",
"documentation" : " The name of the package that is copied.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"SourceRepository" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getSourceRepository",
"beanStyleSetterMethodName" : "setSourceRepository",
"c2jName" : "sourceRepository",
"c2jShape" : "RepositoryName",
"defaultConsumerFluentSetterDocumentation" : " The name of the repository that contains the package versions to copy.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #sourceRepository(String)}.\n@param sourceRepository a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #sourceRepository(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the repository that contains the package versions to copy.
\n@return The name of the repository that contains the package versions to copy.\n@deprecated Use {@link #sourceRepository()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the repository that contains the package versions to copy.
\n@param sourceRepository The name of the repository that contains the package versions to copy.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #sourceRepository(String)}\n",
"documentation" : " The name of the repository that contains the package versions to copy.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the SourceRepository property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasSourceRepository",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "sourceRepository",
"fluentSetterDocumentation" : " The name of the repository that contains the package versions to copy.
\n@param sourceRepository The name of the repository that contains the package versions to copy.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "sourceRepository",
"getterDocumentation" : " The name of the repository that contains the package versions to copy.
\n@return The name of the repository that contains the package versions to copy.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "source-repository",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "source-repository",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "SourceRepository",
"sensitive" : false,
"setterDocumentation" : " The name of the repository that contains the package versions to copy.
\n@param sourceRepository The name of the repository that contains the package versions to copy.",
"setterMethodName" : "setSourceRepository",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "sourceRepository",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "sourceRepository",
"variableType" : "String",
"documentation" : " The name of the repository that contains the package versions to copy.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"VersionRevisions" : {
"autoConstructClassIfExists" : {
"present" : true
},
"beanStyleGetterMethodName" : "getVersionRevisions",
"beanStyleSetterMethodName" : "setVersionRevisions",
"c2jName" : "versionRevisions",
"c2jShape" : "PackageVersionRevisionMap",
"defaultConsumerFluentSetterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\nThis is a convenience that creates an instance of the {@link Map.Builder} avoiding the need to create one manually via {@link Map#builder()}.\n\nWhen the {@link Consumer} completes, {@link Map.Builder#build()} is called immediately and its result is passed to {@link #versionRevisions(Map)}.\n@param versionRevisions a consumer that will call methods on {@link Map.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #versionRevisions(Map)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasVersionRevisions()} to see if a value was sent in this field.\n
\n@return A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision. You must specify versions
or versionRevisions
. You cannot specify both.
\n@deprecated Use {@link #versionRevisions()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versionRevisions A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision. You must specify versions
or versionRevisions
. You cannot specify both.
\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #versionRevisions(Map)}\n",
"documentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the VersionRevisions property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasVersionRevisions",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "versionRevisions",
"fluentSetterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versionRevisions A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision. You must specify versions
or versionRevisions
. You cannot specify both.
\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "versionRevisions",
"getterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasVersionRevisions()} to see if a value was sent in this field.\n
\n@return A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision. You must specify versions
or versionRevisions
. You cannot specify both.
",
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "versionRevisions",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "versionRevisions",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : true,
"mapModel" : {
"implType" : "java.util.HashMap",
"interfaceType" : "java.util.Map",
"keyLocationName" : "key",
"keyModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getKey",
"beanStyleSetterMethodName" : "setKey",
"c2jName" : "key",
"c2jShape" : "PackageVersion",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Key property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #key(String)}.\n@param key a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #key(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Key property for this object.\n@return The value of the Key property for this object.\n@deprecated Use {@link #key()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #key(String)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Key property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasKey",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "key",
"fluentSetterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "key",
"getterDocumentation" : "Returns the value of the Key property for this object.\n@return The value of the Key property for this object.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "key",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "key",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Key",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.",
"setterMethodName" : "setKey",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "key",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "key",
"variableType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"valueLocationName" : "value",
"valueModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getValue",
"beanStyleSetterMethodName" : "setValue",
"c2jName" : "value",
"c2jShape" : "PackageVersionRevision",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Value property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #value(String)}.\n@param value a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #value(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Value property for this object.\n@return The value of the Value property for this object.\n@deprecated Use {@link #value()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #value(String)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Value property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasValue",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "value",
"fluentSetterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "value",
"getterDocumentation" : "Returns the value of the Value property for this object.\n@return The value of the Value property for this object.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "value",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "value",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Value",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.",
"setterMethodName" : "setValue",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "value",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "value",
"variableType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"entryType" : "Map.Entry",
"templateType" : "java.util.Map"
},
"marshallingType" : "MAP",
"name" : "VersionRevisions",
"sensitive" : false,
"setterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versionRevisions A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision. You must specify versions
or versionRevisions
. You cannot specify both.
",
"setterMethodName" : "setVersionRevisions",
"setterModel" : {
"variableDeclarationType" : "java.util.Map",
"variableName" : "versionRevisions",
"variableType" : "java.util.Map",
"documentation" : null,
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"simple" : false,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "java.util.Map",
"variableName" : "versionRevisions",
"variableType" : "java.util.Map",
"documentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"Versions" : {
"autoConstructClassIfExists" : {
"present" : true
},
"beanStyleGetterMethodName" : "getVersions",
"beanStyleSetterMethodName" : "setVersions",
"c2jName" : "versions",
"c2jShape" : "PackageVersionList",
"defaultConsumerFluentSetterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #versions(List)}.\n@param versions a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #versions(List)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasVersions()} to see if a value was sent in this field.\n
\n@return The versions of the package to copy. You must specify versions
or versionRevisions
. You cannot specify both.
\n@deprecated Use {@link #versions()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versions The versions of the package to copy. You must specify versions
or versionRevisions
. You cannot specify both.
\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #versions(List)}\n",
"documentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Versions property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasVersions",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "versions",
"fluentSetterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versions The versions of the package to copy. You must specify versions
or versionRevisions
. You cannot specify both.
\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "versions",
"getterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasVersions()} to see if a value was sent in this field.\n
\n@return The versions of the package to copy. You must specify versions
or versionRevisions
. You cannot specify both.
",
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "versions",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "versions",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : true,
"listModel" : {
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getMember",
"beanStyleSetterMethodName" : "setMember",
"c2jName" : "member",
"c2jShape" : "PackageVersion",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #member(String)}.\n@param member a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.\n@deprecated Use {@link #member()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #member(String)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Member property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasMember",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "member",
"fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "member",
"getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "member",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "member",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Member",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.",
"setterMethodName" : "setMember",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "member",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "member",
"variableType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"memberLocationName" : null,
"memberType" : "String",
"map" : false,
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"simple" : true,
"simpleType" : "String",
"templateImplType" : "java.util.ArrayList",
"templateType" : "java.util.List"
},
"map" : false,
"mapModel" : null,
"marshallingType" : "LIST",
"name" : "Versions",
"sensitive" : false,
"setterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versions The versions of the package to copy. You must specify versions
or versionRevisions
. You cannot specify both.
",
"setterMethodName" : "setVersions",
"setterModel" : {
"variableDeclarationType" : "java.util.List",
"variableName" : "versions",
"variableType" : "java.util.List",
"documentation" : null,
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"simple" : false,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "java.util.List",
"variableName" : "versions",
"variableType" : "java.util.List",
"documentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}
},
"nonStreamingMembers" : [ {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getDomain",
"beanStyleSetterMethodName" : "setDomain",
"c2jName" : "domain",
"c2jShape" : "DomainName",
"defaultConsumerFluentSetterDocumentation" : " The name of the domain that contains the source and destination repositories.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #domain(String)}.\n@param domain a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #domain(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the domain that contains the source and destination repositories.
\n@return The name of the domain that contains the source and destination repositories.\n@deprecated Use {@link #domain()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the domain that contains the source and destination repositories.
\n@param domain The name of the domain that contains the source and destination repositories.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #domain(String)}\n",
"documentation" : " The name of the domain that contains the source and destination repositories.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Domain property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasDomain",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "domain",
"fluentSetterDocumentation" : " The name of the domain that contains the source and destination repositories.
\n@param domain The name of the domain that contains the source and destination repositories.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "domain",
"getterDocumentation" : " The name of the domain that contains the source and destination repositories.
\n@return The name of the domain that contains the source and destination repositories.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "domain",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "domain",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Domain",
"sensitive" : false,
"setterDocumentation" : " The name of the domain that contains the source and destination repositories.
\n@param domain The name of the domain that contains the source and destination repositories.",
"setterMethodName" : "setDomain",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "domain",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "domain",
"variableType" : "String",
"documentation" : " The name of the domain that contains the source and destination repositories.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getDomainOwner",
"beanStyleSetterMethodName" : "setDomainOwner",
"c2jName" : "domainOwner",
"c2jShape" : "AccountId",
"defaultConsumerFluentSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #domainOwner(String)}.\n@param domainOwner a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #domainOwner(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@return The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@deprecated Use {@link #domainOwner()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #domainOwner(String)}\n",
"documentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the DomainOwner property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasDomainOwner",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "domainOwner",
"fluentSetterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "domainOwner",
"getterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@return The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "domain-owner",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "domain-owner",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "DomainOwner",
"sensitive" : false,
"setterDocumentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
\n@param domainOwner The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.",
"setterMethodName" : "setDomainOwner",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "domainOwner",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "domainOwner",
"variableType" : "String",
"documentation" : " The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getSourceRepository",
"beanStyleSetterMethodName" : "setSourceRepository",
"c2jName" : "sourceRepository",
"c2jShape" : "RepositoryName",
"defaultConsumerFluentSetterDocumentation" : " The name of the repository that contains the package versions to copy.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #sourceRepository(String)}.\n@param sourceRepository a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #sourceRepository(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the repository that contains the package versions to copy.
\n@return The name of the repository that contains the package versions to copy.\n@deprecated Use {@link #sourceRepository()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the repository that contains the package versions to copy.
\n@param sourceRepository The name of the repository that contains the package versions to copy.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #sourceRepository(String)}\n",
"documentation" : " The name of the repository that contains the package versions to copy.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the SourceRepository property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasSourceRepository",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "sourceRepository",
"fluentSetterDocumentation" : " The name of the repository that contains the package versions to copy.
\n@param sourceRepository The name of the repository that contains the package versions to copy.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "sourceRepository",
"getterDocumentation" : " The name of the repository that contains the package versions to copy.
\n@return The name of the repository that contains the package versions to copy.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "source-repository",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "source-repository",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "SourceRepository",
"sensitive" : false,
"setterDocumentation" : " The name of the repository that contains the package versions to copy.
\n@param sourceRepository The name of the repository that contains the package versions to copy.",
"setterMethodName" : "setSourceRepository",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "sourceRepository",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "sourceRepository",
"variableType" : "String",
"documentation" : " The name of the repository that contains the package versions to copy.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getDestinationRepository",
"beanStyleSetterMethodName" : "setDestinationRepository",
"c2jName" : "destinationRepository",
"c2jShape" : "RepositoryName",
"defaultConsumerFluentSetterDocumentation" : " The name of the repository into which package versions are copied.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #destinationRepository(String)}.\n@param destinationRepository a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #destinationRepository(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the repository into which package versions are copied.
\n@return The name of the repository into which package versions are copied.\n@deprecated Use {@link #destinationRepository()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the repository into which package versions are copied.
\n@param destinationRepository The name of the repository into which package versions are copied.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #destinationRepository(String)}\n",
"documentation" : " The name of the repository into which package versions are copied.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the DestinationRepository property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasDestinationRepository",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "destinationRepository",
"fluentSetterDocumentation" : " The name of the repository into which package versions are copied.
\n@param destinationRepository The name of the repository into which package versions are copied.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "destinationRepository",
"getterDocumentation" : " The name of the repository into which package versions are copied.
\n@return The name of the repository into which package versions are copied.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "destination-repository",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "destination-repository",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "DestinationRepository",
"sensitive" : false,
"setterDocumentation" : " The name of the repository into which package versions are copied.
\n@param destinationRepository The name of the repository into which package versions are copied.",
"setterMethodName" : "setDestinationRepository",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "destinationRepository",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "destinationRepository",
"variableType" : "String",
"documentation" : " The name of the repository into which package versions are copied.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getFormat",
"beanStyleSetterMethodName" : "setFormat",
"c2jName" : "format",
"c2jShape" : "PackageFormat",
"defaultConsumerFluentSetterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #formatAsString(String)}.\n@param format a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #format(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #format} will return {@link PackageFormat#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #formatAsString}.\n
\n@return The format of the package that is copied. The valid package types are: -
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@see PackageFormat\n@deprecated Use {@link #formatAsString()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@param format The format of the package that is copied. The valid package types are: -
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@see PackageFormat\n@return Returns a reference to this object so that method calls can be chained together.\n@see PackageFormat\n@deprecated Use {@link #format(String)}\n",
"documentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
",
"endpointDiscoveryId" : false,
"enumType" : "PackageFormat",
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Format property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasFormat",
"fluentEnumGetterMethodName" : "format",
"fluentEnumSetterMethodName" : "format",
"fluentGetterMethodName" : "formatAsString",
"fluentSetterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@param format The format of the package that is copied. The valid package types are: -
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@see PackageFormat\n@return Returns a reference to this object so that method calls can be chained together.\n@see PackageFormat",
"fluentSetterMethodName" : "format",
"getterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n\nIf the service returns an enum value that is not available in the current SDK version, {@link #format} will return {@link PackageFormat#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #formatAsString}.\n
\n@return The format of the package that is copied. The valid package types are: -
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@see PackageFormat",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "format",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "format",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Format",
"sensitive" : false,
"setterDocumentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@param format The format of the package that is copied. The valid package types are: -
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
\n@see PackageFormat",
"setterMethodName" : "setFormat",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "format",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "format",
"variableType" : "String",
"documentation" : " The format of the package that is copied. The valid package types are:
-
npm
: A Node Package Manager (npm) package.
-
pypi
: A Python Package Index (PyPI) package.
-
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getNamespace",
"beanStyleSetterMethodName" : "setNamespace",
"c2jName" : "namespace",
"c2jShape" : "PackageNamespace",
"defaultConsumerFluentSetterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #namespace(String)}.\n@param namespace a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #namespace(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@return The namespace of the package. The package component that specifies its namespace depends on its type. For example: -
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@deprecated Use {@link #namespace()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@param namespace The namespace of the package. The package component that specifies its namespace depends on its type. For example: -
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #namespace(String)}\n",
"documentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Namespace property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasNamespace",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "namespace",
"fluentSetterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@param namespace The namespace of the package. The package component that specifies its namespace depends on its type. For example: -
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "namespace",
"getterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@return The namespace of the package. The package component that specifies its namespace depends on its type. For example: -
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "namespace",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "namespace",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Namespace",
"sensitive" : false,
"setterDocumentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
\n@param namespace The namespace of the package. The package component that specifies its namespace depends on its type. For example: -
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
",
"setterMethodName" : "setNamespace",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "namespace",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "namespace",
"variableType" : "String",
"documentation" : " The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its groupId
.
-
The namespace of an npm package is its scope
.
-
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getPackageValue",
"beanStyleSetterMethodName" : "setPackageValue",
"c2jName" : "package",
"c2jShape" : "PackageName",
"defaultConsumerFluentSetterDocumentation" : " The name of the package that is copied.
\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #packageValue(String)}.\n@param packageValue a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #packageValue(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The name of the package that is copied.
\n@return The name of the package that is copied.\n@deprecated Use {@link #packageValue()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The name of the package that is copied.
\n@param packageValue The name of the package that is copied.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #packageValue(String)}\n",
"documentation" : " The name of the package that is copied.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Package property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasPackageValue",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "packageValue",
"fluentSetterDocumentation" : " The name of the package that is copied.
\n@param packageValue The name of the package that is copied.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "packageValue",
"getterDocumentation" : " The name of the package that is copied.
\n@return The name of the package that is copied.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"marshallLocation" : "QUERY_PARAM",
"marshallLocationName" : "package",
"queryString" : true,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "package",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Package",
"sensitive" : false,
"setterDocumentation" : " The name of the package that is copied.
\n@param packageValue The name of the package that is copied.",
"setterMethodName" : "setPackageValue",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "packageValue",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "packageValue",
"variableType" : "String",
"documentation" : " The name of the package that is copied.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : true
},
"beanStyleGetterMethodName" : "getVersions",
"beanStyleSetterMethodName" : "setVersions",
"c2jName" : "versions",
"c2jShape" : "PackageVersionList",
"defaultConsumerFluentSetterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #versions(List)}.\n@param versions a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #versions(List)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasVersions()} to see if a value was sent in this field.\n
\n@return The versions of the package to copy. You must specify versions
or versionRevisions
. You cannot specify both.
\n@deprecated Use {@link #versions()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versions The versions of the package to copy. You must specify versions
or versionRevisions
. You cannot specify both.
\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #versions(List)}\n",
"documentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Versions property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasVersions",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "versions",
"fluentSetterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versions The versions of the package to copy. You must specify versions
or versionRevisions
. You cannot specify both.
\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "versions",
"getterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasVersions()} to see if a value was sent in this field.\n
\n@return The versions of the package to copy. You must specify versions
or versionRevisions
. You cannot specify both.
",
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "versions",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "versions",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : true,
"listModel" : {
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getMember",
"beanStyleSetterMethodName" : "setMember",
"c2jName" : "member",
"c2jShape" : "PackageVersion",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #member(String)}.\n@param member a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.\n@deprecated Use {@link #member()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #member(String)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Member property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasMember",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "member",
"fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "member",
"getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "member",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "member",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Member",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.",
"setterMethodName" : "setMember",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "member",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "member",
"variableType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"memberLocationName" : null,
"memberType" : "String",
"map" : false,
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"simple" : true,
"simpleType" : "String",
"templateImplType" : "java.util.ArrayList",
"templateType" : "java.util.List"
},
"map" : false,
"mapModel" : null,
"marshallingType" : "LIST",
"name" : "Versions",
"sensitive" : false,
"setterDocumentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versions The versions of the package to copy. You must specify versions
or versionRevisions
. You cannot specify both.
",
"setterMethodName" : "setVersions",
"setterModel" : {
"variableDeclarationType" : "java.util.List",
"variableName" : "versions",
"variableType" : "java.util.List",
"documentation" : null,
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"simple" : false,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "java.util.List",
"variableName" : "versions",
"variableType" : "java.util.List",
"documentation" : " The versions of the package to copy.
You must specify versions
or versionRevisions
. You cannot specify both.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : true
},
"beanStyleGetterMethodName" : "getVersionRevisions",
"beanStyleSetterMethodName" : "setVersionRevisions",
"c2jName" : "versionRevisions",
"c2jShape" : "PackageVersionRevisionMap",
"defaultConsumerFluentSetterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\nThis is a convenience that creates an instance of the {@link Map.Builder} avoiding the need to create one manually via {@link Map#builder()}.\n\nWhen the {@link Consumer} completes, {@link Map.Builder#build()} is called immediately and its result is passed to {@link #versionRevisions(Map)}.\n@param versionRevisions a consumer that will call methods on {@link Map.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #versionRevisions(Map)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasVersionRevisions()} to see if a value was sent in this field.\n
\n@return A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision. You must specify versions
or versionRevisions
. You cannot specify both.
\n@deprecated Use {@link #versionRevisions()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versionRevisions A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision. You must specify versions
or versionRevisions
. You cannot specify both.
\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #versionRevisions(Map)}\n",
"documentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the VersionRevisions property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasVersionRevisions",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "versionRevisions",
"fluentSetterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versionRevisions A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision. You must specify versions
or versionRevisions
. You cannot specify both.
\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "versionRevisions",
"getterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasVersionRevisions()} to see if a value was sent in this field.\n
\n@return A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision. You must specify versions
or versionRevisions
. You cannot specify both.
",
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "versionRevisions",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "versionRevisions",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : true,
"mapModel" : {
"implType" : "java.util.HashMap",
"interfaceType" : "java.util.Map",
"keyLocationName" : "key",
"keyModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getKey",
"beanStyleSetterMethodName" : "setKey",
"c2jName" : "key",
"c2jShape" : "PackageVersion",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Key property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #key(String)}.\n@param key a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #key(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Key property for this object.\n@return The value of the Key property for this object.\n@deprecated Use {@link #key()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #key(String)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Key property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasKey",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "key",
"fluentSetterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "key",
"getterDocumentation" : "Returns the value of the Key property for this object.\n@return The value of the Key property for this object.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "key",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "key",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Key",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.",
"setterMethodName" : "setKey",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "key",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "key",
"variableType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"valueLocationName" : "value",
"valueModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getValue",
"beanStyleSetterMethodName" : "setValue",
"c2jName" : "value",
"c2jShape" : "PackageVersionRevision",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Value property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #value(String)}.\n@param value a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #value(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Value property for this object.\n@return The value of the Value property for this object.\n@deprecated Use {@link #value()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #value(String)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Value property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasValue",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "value",
"fluentSetterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "value",
"getterDocumentation" : "Returns the value of the Value property for this object.\n@return The value of the Value property for this object.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "value",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "value",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Value",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.",
"setterMethodName" : "setValue",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "value",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "value",
"variableType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"entryType" : "Map.Entry",
"templateType" : "java.util.Map"
},
"marshallingType" : "MAP",
"name" : "VersionRevisions",
"sensitive" : false,
"setterDocumentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
\n@param versionRevisions A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision. You must specify versions
or versionRevisions
. You cannot specify both.
",
"setterMethodName" : "setVersionRevisions",
"setterModel" : {
"variableDeclarationType" : "java.util.Map",
"variableName" : "versionRevisions",
"variableType" : "java.util.Map",
"documentation" : null,
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"simple" : false,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "java.util.Map",
"variableName" : "versionRevisions",
"variableType" : "java.util.Map",
"documentation" : " A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.
You must specify versions
or versionRevisions
. You cannot specify both.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getAllowOverwrite",
"beanStyleSetterMethodName" : "setAllowOverwrite",
"c2jName" : "allowOverwrite",
"c2jShape" : "BooleanOptional",
"defaultConsumerFluentSetterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #allowOverwrite(Boolean)}.\n@param allowOverwrite a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #allowOverwrite(Boolean)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\n@return Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.\n@deprecated Use {@link #allowOverwrite()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\n@param allowOverwrite Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #allowOverwrite(Boolean)}\n",
"documentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the AllowOverwrite property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasAllowOverwrite",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "allowOverwrite",
"fluentSetterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\n@param allowOverwrite Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "allowOverwrite",
"getterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\n@return Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.",
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "allowOverwrite",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "allowOverwrite",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "BOOLEAN",
"name" : "AllowOverwrite",
"sensitive" : false,
"setterDocumentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
\n@param allowOverwrite Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.",
"setterMethodName" : "setAllowOverwrite",
"setterModel" : {
"variableDeclarationType" : "Boolean",
"variableName" : "allowOverwrite",
"variableType" : "Boolean",
"documentation" : null,
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "Boolean",
"variableName" : "allowOverwrite",
"variableType" : "Boolean",
"documentation" : " Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions
field of the response with an ALREADY_EXISTS
error code.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
}, {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getIncludeFromUpstream",
"beanStyleSetterMethodName" : "setIncludeFromUpstream",
"c2jName" : "includeFromUpstream",
"c2jShape" : "BooleanOptional",
"defaultConsumerFluentSetterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #includeFromUpstream(Boolean)}.\n@param includeFromUpstream a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #includeFromUpstream(Boolean)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\n@return Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.\n@deprecated Use {@link #includeFromUpstream()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\n@param includeFromUpstream Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #includeFromUpstream(Boolean)}\n",
"documentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the IncludeFromUpstream property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasIncludeFromUpstream",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "includeFromUpstream",
"fluentSetterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\n@param includeFromUpstream Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "includeFromUpstream",
"getterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\n@return Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.",
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "includeFromUpstream",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "includeFromUpstream",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "BOOLEAN",
"name" : "IncludeFromUpstream",
"sensitive" : false,
"setterDocumentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
\n@param includeFromUpstream Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.",
"setterMethodName" : "setIncludeFromUpstream",
"setterModel" : {
"variableDeclarationType" : "Boolean",
"variableName" : "includeFromUpstream",
"variableType" : "Boolean",
"documentation" : null,
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "Boolean",
"variableName" : "includeFromUpstream",
"variableType" : "Boolean",
"documentation" : " Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
} ],
"requestSignerAware" : false,
"requestSignerClassFqcn" : null,
"required" : [ "domain", "sourceRepository", "destinationRepository", "format", "package" ],
"shapeName" : "CopyPackageVersionsRequest",
"simpleMethod" : false,
"unmarshaller" : null,
"variable" : {
"variableDeclarationType" : "CopyPackageVersionsRequest",
"variableName" : "copyPackageVersionsRequest",
"variableType" : "CopyPackageVersionsRequest",
"documentation" : null,
"simpleType" : "CopyPackageVersionsRequest",
"variableSetterType" : "CopyPackageVersionsRequest"
},
"wrapper" : false,
"xmlNamespace" : null
},
"CopyPackageVersionsResponse" : {
"c2jName" : "CopyPackageVersionsResult",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingMarshaller" : false,
"skipGeneratingModelClass" : false,
"skipGeneratingUnmarshaller" : false,
"staxTargetDepthOffset" : 0
},
"deprecated" : false,
"documentation" : "",
"endpointDiscovery" : null,
"enums" : null,
"errorCode" : null,
"event" : false,
"eventStream" : false,
"explicitEventPayloadMember" : null,
"hasHeaderMember" : false,
"hasPayloadMember" : false,
"hasRequiresLengthMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"httpStatusCode" : null,
"marshaller" : null,
"members" : [ {
"autoConstructClassIfExists" : {
"present" : true
},
"beanStyleGetterMethodName" : "getSuccessfulVersions",
"beanStyleSetterMethodName" : "setSuccessfulVersions",
"c2jName" : "successfulVersions",
"c2jShape" : "SuccessfulPackageVersionInfoMap",
"defaultConsumerFluentSetterDocumentation" : " A list of the package versions that were successfully copied to your repository.
\nThis is a convenience that creates an instance of the {@link Map.Builder} avoiding the need to create one manually via {@link Map#builder()}.\n\nWhen the {@link Consumer} completes, {@link Map.Builder#build()} is called immediately and its result is passed to {@link #successfulVersions(Map)}.\n@param successfulVersions a consumer that will call methods on {@link Map.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #successfulVersions(Map)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : " A list of the package versions that were successfully copied to your repository.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasSuccessfulVersions()} to see if a value was sent in this field.\n
\n@return A list of the package versions that were successfully copied to your repository.\n@deprecated Use {@link #successfulVersions()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : " A list of the package versions that were successfully copied to your repository.
\n@param successfulVersions A list of the package versions that were successfully copied to your repository.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #successfulVersions(Map)}\n",
"documentation" : " A list of the package versions that were successfully copied to your repository.
",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the SuccessfulVersions property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasSuccessfulVersions",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "successfulVersions",
"fluentSetterDocumentation" : " A list of the package versions that were successfully copied to your repository.
\n@param successfulVersions A list of the package versions that were successfully copied to your repository.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "successfulVersions",
"getterDocumentation" : " A list of the package versions that were successfully copied to your repository.
\n\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n
\n\nYou can use {@link #hasSuccessfulVersions()} to see if a value was sent in this field.\n
\n@return A list of the package versions that were successfully copied to your repository.",
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "successfulVersions",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "successfulVersions",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : true,
"mapModel" : {
"implType" : "java.util.HashMap",
"interfaceType" : "java.util.Map",
"keyLocationName" : "key",
"keyModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getKey",
"beanStyleSetterMethodName" : "setKey",
"c2jName" : "key",
"c2jShape" : "PackageVersion",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Key property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #key(String)}.\n@param key a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #key(String)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Key property for this object.\n@return The value of the Key property for this object.\n@deprecated Use {@link #key()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #key(String)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Key property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasKey",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "key",
"fluentSetterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "key",
"getterDocumentation" : "Returns the value of the Key property for this object.\n@return The value of the Key property for this object.",
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "key",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "key",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "STRING",
"name" : "Key",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Key property for this object.\n\n@param key The new value for the Key property for this object.",
"setterMethodName" : "setKey",
"setterModel" : {
"variableDeclarationType" : "String",
"variableName" : "key",
"variableType" : "String",
"documentation" : null,
"simpleType" : "String",
"variableSetterType" : "String"
},
"simple" : true,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "String",
"variableName" : "key",
"variableType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"valueLocationName" : "value",
"valueModel" : {
"autoConstructClassIfExists" : {
"present" : false
},
"beanStyleGetterMethodName" : "getValue",
"beanStyleSetterMethodName" : "setValue",
"c2jName" : "value",
"c2jShape" : "SuccessfulPackageVersionInfo",
"defaultConsumerFluentSetterDocumentation" : "Sets the value of the Value property for this object.\n\nThis is a convenience that creates an instance of the {@link SuccessfulPackageVersionInfo.Builder} avoiding the need to create one manually via {@link SuccessfulPackageVersionInfo#builder()}.\n\nWhen the {@link Consumer} completes, {@link SuccessfulPackageVersionInfo.Builder#build()} is called immediately and its result is passed to {@link #value(SuccessfulPackageVersionInfo)}.\n@param value a consumer that will call methods on {@link SuccessfulPackageVersionInfo.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #value(SuccessfulPackageVersionInfo)",
"deprecated" : false,
"deprecatedBeanStyleSetterMethodName" : null,
"deprecatedFluentGetterMethodName" : null,
"deprecatedFluentSetterMethodName" : null,
"deprecatedGetterDocumentation" : "Returns the value of the Value property for this object.\n@return The value of the Value property for this object.\n@deprecated Use {@link #value()}\n",
"deprecatedName" : null,
"deprecatedSetterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.\n@return Returns a reference to this object so that method calls can be chained together.\n@deprecated Use {@link #value(SuccessfulPackageVersionInfo)}\n",
"documentation" : "",
"endpointDiscoveryId" : false,
"enumType" : null,
"eventHeader" : false,
"eventPayload" : false,
"existenceCheckDocumentation" : "Returns true if the Value property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.\n",
"existenceCheckMethodName" : "hasValue",
"fluentEnumGetterMethodName" : null,
"fluentEnumSetterMethodName" : null,
"fluentGetterMethodName" : "value",
"fluentSetterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
"fluentSetterMethodName" : "value",
"getterDocumentation" : "Returns the value of the Value property for this object.\n@return The value of the Value property for this object.",
"getterModel" : {
"returnType" : "SuccessfulPackageVersionInfo",
"documentation" : null
},
"http" : {
"additionalMarshallingPath" : null,
"additionalUnmarshallingPath" : null,
"flattened" : false,
"greedy" : false,
"header" : false,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"marshallLocation" : "PAYLOAD",
"marshallLocationName" : "value",
"queryString" : false,
"requiresLength" : false,
"statusCode" : false,
"unmarshallLocationName" : "value",
"uri" : false
},
"idempotencyToken" : false,
"isBinary" : false,
"jsonValue" : false,
"list" : false,
"listModel" : null,
"map" : false,
"mapModel" : null,
"marshallingType" : "SDK_POJO",
"name" : "Value",
"sensitive" : false,
"setterDocumentation" : "Sets the value of the Value property for this object.\n\n@param value The new value for the Value property for this object.",
"setterMethodName" : "setValue",
"setterModel" : {
"variableDeclarationType" : "SuccessfulPackageVersionInfo",
"variableName" : "value",
"variableType" : "SuccessfulPackageVersionInfo",
"documentation" : null,
"simpleType" : "SuccessfulPackageVersionInfo",
"variableSetterType" : "SuccessfulPackageVersionInfo"
},
"simple" : false,
"timestampFormat" : null,
"variable" : {
"variableDeclarationType" : "SuccessfulPackageVersionInfo",
"variableName" : "value",
"variableType" : "SuccessfulPackageVersionInfo",
"documentation" : "",
"simpleType" : "SuccessfulPackageVersionInfo",
"variableSetterType" : "SuccessfulPackageVersionInfo"
},
"xmlAttribute" : false,
"xmlNameSpaceUri" : null
},
"entryType" : "Map.Entry",
"templateType" : "java.util.Map"
},
"marshallingType" : "MAP",
"name" : "SuccessfulVersions",
"sensitive" : false,
"setterDocumentation" : " A list of the package versions that were successfully copied to your repository.
\n@param successfulVersions A list of the package versions that were successfully copied to your repository.",
"setterMethodName" : "setSuccessfulVersions",
"setterModel" : {
"variableDeclarationType" : "java.util.Map",
"variableName" : "successfulVersions",
"variableType" : "java.util.Map",
"documentation" : null,
"simpleType" : "Map",
"variableSetterType" : "java.util.Map