Skip to content

Commit

Permalink
AWS SDK for Java 1.11.119
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS committed Apr 11, 2017
1 parent 2080d61 commit 2acd102
Show file tree
Hide file tree
Showing 346 changed files with 26,930 additions and 4,987 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
# __1.11.119__ __2017-04-11__
## __AWS Batch__
- ### Features
- API Update for AWS Batch: Customer provided AMI for MANAGED Compute Environment

## __AWS OpsWorks__
- ### Features
- Cloudwatch Logs agent configuration can now be attached to OpsWorks Layers using CreateLayer and UpdateLayer. OpsWorks will then automatically install and manage the CloudWatch Logs agent on the instances part of the OpsWorks Layer.

## __Amazon API Gateway__
- ### Features
- API Gateway request validators

## __Amazon GameLift__
- ### Features
- Allows developers to utilize an improved workflow when calling our Queues API and introduces a new feature that allows developers to specify a maximum allowable latency per Queue.

## __Amazon S3__
- ### Bugfixes
- Fix a race condition that can occur with multiple calls to `CopyMonitor#setFuture` and `UploadMonitor#setFuture` that can cause an infinite loop in `AbstractTransfer#waitForCompletion`.

This fixes [#1102](https://github.com/aws/aws-sdk-java/issues/1102)

# __1.11.118__ __2017-04-07__
## __Amazon Redshift__
- ### Features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dependencies.
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-bom</artifactId>
<version>1.11.118</version>
<version>1.11.119</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion aws-java-sdk-acm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-pom</artifactId>
<version>1.11.119-SNAPSHOT</version>
<version>1.11.119</version>
</parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-acm</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public ImportCertificateRequest withCertificateArn(String certificateArn) {
* </li>
* </ul>
* <p>
* AWS SDK for Java performs a Base64 encoding on this field before sending this request to AWS service by default.
* The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service.
* Users of the SDK should not perform Base64 encoding on this field.
* </p>
* <p>
Expand Down Expand Up @@ -263,6 +263,16 @@ public java.nio.ByteBuffer getCertificate() {
* </p>
* </li>
* </ul>
* <p>
* The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service.
* Users of the SDK should not perform Base64 encoding on this field.
* </p>
* <p>
* Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will
* be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or
* ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future
* major version of the SDK.
* </p>
*
* @param certificate
* The certificate to import. It must meet the following requirements:</p>
Expand Down Expand Up @@ -309,7 +319,7 @@ public ImportCertificateRequest withCertificate(java.nio.ByteBuffer certificate)
* </li>
* </ul>
* <p>
* AWS SDK for Java performs a Base64 encoding on this field before sending this request to AWS service by default.
* The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service.
* Users of the SDK should not perform Base64 encoding on this field.
* </p>
* <p>
Expand Down Expand Up @@ -398,6 +408,16 @@ public java.nio.ByteBuffer getPrivateKey() {
* </p>
* </li>
* </ul>
* <p>
* The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service.
* Users of the SDK should not perform Base64 encoding on this field.
* </p>
* <p>
* Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will
* be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or
* ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future
* major version of the SDK.
* </p>
*
* @param privateKey
* The private key that matches the public key in the certificate. It must meet the following
Expand Down Expand Up @@ -426,7 +446,7 @@ public ImportCertificateRequest withPrivateKey(java.nio.ByteBuffer privateKey) {
* The certificate chain. It must be PEM-encoded.
* </p>
* <p>
* AWS SDK for Java performs a Base64 encoding on this field before sending this request to AWS service by default.
* The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service.
* Users of the SDK should not perform Base64 encoding on this field.
* </p>
* <p>
Expand Down Expand Up @@ -467,6 +487,16 @@ public java.nio.ByteBuffer getCertificateChain() {
* <p>
* The certificate chain. It must be PEM-encoded.
* </p>
* <p>
* The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service.
* Users of the SDK should not perform Base64 encoding on this field.
* </p>
* <p>
* Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will
* be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or
* ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future
* major version of the SDK.
* </p>
*
* @param certificateChain
* The certificate chain. It must be PEM-encoded.
Expand Down
2 changes: 1 addition & 1 deletion aws-java-sdk-api-gateway/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-pom</artifactId>
<version>1.11.119-SNAPSHOT</version>
<version>1.11.119</version>
</parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-api-gateway</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@ public CreateModelResult createModel(CreateModelRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public CreateRequestValidatorResult createRequestValidator(CreateRequestValidatorRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public CreateResourceResult createResource(CreateResourceRequest request) {
throw new java.lang.UnsupportedOperationException();
Expand Down Expand Up @@ -167,6 +172,11 @@ public DeleteModelResult deleteModel(DeleteModelRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public DeleteRequestValidatorResult deleteRequestValidator(DeleteRequestValidatorRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public DeleteResourceResult deleteResource(DeleteResourceRequest request) {
throw new java.lang.UnsupportedOperationException();
Expand Down Expand Up @@ -332,6 +342,16 @@ public GetModelsResult getModels(GetModelsRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public GetRequestValidatorResult getRequestValidator(GetRequestValidatorRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public GetRequestValidatorsResult getRequestValidators(GetRequestValidatorsRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public GetResourceResult getResource(GetResourceRequest request) {
throw new java.lang.UnsupportedOperationException();
Expand Down Expand Up @@ -522,6 +542,11 @@ public UpdateModelResult updateModel(UpdateModelRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public UpdateRequestValidatorResult updateRequestValidator(UpdateRequestValidatorRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public UpdateResourceResult updateResource(UpdateResourceRequest request) {
throw new java.lang.UnsupportedOperationException();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,19 @@ public java.util.concurrent.Future<CreateModelResult> createModelAsync(CreateMod
throw new java.lang.UnsupportedOperationException();
}

@Override
public java.util.concurrent.Future<CreateRequestValidatorResult> createRequestValidatorAsync(CreateRequestValidatorRequest request) {

return createRequestValidatorAsync(request, null);
}

@Override
public java.util.concurrent.Future<CreateRequestValidatorResult> createRequestValidatorAsync(CreateRequestValidatorRequest request,
com.amazonaws.handlers.AsyncHandler<CreateRequestValidatorRequest, CreateRequestValidatorResult> asyncHandler) {

throw new java.lang.UnsupportedOperationException();
}

@Override
public java.util.concurrent.Future<CreateResourceResult> createResourceAsync(CreateResourceRequest request) {

Expand Down Expand Up @@ -365,6 +378,19 @@ public java.util.concurrent.Future<DeleteModelResult> deleteModelAsync(DeleteMod
throw new java.lang.UnsupportedOperationException();
}

@Override
public java.util.concurrent.Future<DeleteRequestValidatorResult> deleteRequestValidatorAsync(DeleteRequestValidatorRequest request) {

return deleteRequestValidatorAsync(request, null);
}

@Override
public java.util.concurrent.Future<DeleteRequestValidatorResult> deleteRequestValidatorAsync(DeleteRequestValidatorRequest request,
com.amazonaws.handlers.AsyncHandler<DeleteRequestValidatorRequest, DeleteRequestValidatorResult> asyncHandler) {

throw new java.lang.UnsupportedOperationException();
}

@Override
public java.util.concurrent.Future<DeleteResourceResult> deleteResourceAsync(DeleteResourceRequest request) {

Expand Down Expand Up @@ -794,6 +820,32 @@ public java.util.concurrent.Future<GetModelsResult> getModelsAsync(GetModelsRequ
throw new java.lang.UnsupportedOperationException();
}

@Override
public java.util.concurrent.Future<GetRequestValidatorResult> getRequestValidatorAsync(GetRequestValidatorRequest request) {

return getRequestValidatorAsync(request, null);
}

@Override
public java.util.concurrent.Future<GetRequestValidatorResult> getRequestValidatorAsync(GetRequestValidatorRequest request,
com.amazonaws.handlers.AsyncHandler<GetRequestValidatorRequest, GetRequestValidatorResult> asyncHandler) {

throw new java.lang.UnsupportedOperationException();
}

@Override
public java.util.concurrent.Future<GetRequestValidatorsResult> getRequestValidatorsAsync(GetRequestValidatorsRequest request) {

return getRequestValidatorsAsync(request, null);
}

@Override
public java.util.concurrent.Future<GetRequestValidatorsResult> getRequestValidatorsAsync(GetRequestValidatorsRequest request,
com.amazonaws.handlers.AsyncHandler<GetRequestValidatorsRequest, GetRequestValidatorsResult> asyncHandler) {

throw new java.lang.UnsupportedOperationException();
}

@Override
public java.util.concurrent.Future<GetResourceResult> getResourceAsync(GetResourceRequest request) {

Expand Down Expand Up @@ -1288,6 +1340,19 @@ public java.util.concurrent.Future<UpdateModelResult> updateModelAsync(UpdateMod
throw new java.lang.UnsupportedOperationException();
}

@Override
public java.util.concurrent.Future<UpdateRequestValidatorResult> updateRequestValidatorAsync(UpdateRequestValidatorRequest request) {

return updateRequestValidatorAsync(request, null);
}

@Override
public java.util.concurrent.Future<UpdateRequestValidatorResult> updateRequestValidatorAsync(UpdateRequestValidatorRequest request,
com.amazonaws.handlers.AsyncHandler<UpdateRequestValidatorRequest, UpdateRequestValidatorResult> asyncHandler) {

throw new java.lang.UnsupportedOperationException();
}

@Override
public java.util.concurrent.Future<UpdateResourceResult> updateResourceAsync(UpdateResourceRequest request) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,23 @@ public interface AmazonApiGateway {
*/
CreateModelResult createModel(CreateModelRequest createModelRequest);

/**
* <p>
* Creates a <a>ReqeustValidator</a> of a given <a>RestApi</a>.
* </p>
*
* @param createRequestValidatorRequest
* Creates a <a>RequestValidator</a> of a given <a>RestApi</a>.
* @return Result of the CreateRequestValidator operation returned by the service.
* @throws BadRequestException
* @throws UnauthorizedException
* @throws NotFoundException
* @throws LimitExceededException
* @throws TooManyRequestsException
* @sample AmazonApiGateway.CreateRequestValidator
*/
CreateRequestValidatorResult createRequestValidator(CreateRequestValidatorRequest createRequestValidatorRequest);

/**
* <p>
* Creates a <a>Resource</a> resource.
Expand Down Expand Up @@ -527,6 +544,23 @@ public interface AmazonApiGateway {
*/
DeleteModelResult deleteModel(DeleteModelRequest deleteModelRequest);

/**
* <p>
* Deletes a <a>RequestValidator</a> of a given <a>RestApi</a>.
* </p>
*
* @param deleteRequestValidatorRequest
* Deletes a specified <a>RequestValidator</a> of a given <a>RestApi</a>.
* @return Result of the DeleteRequestValidator operation returned by the service.
* @throws UnauthorizedException
* @throws NotFoundException
* @throws TooManyRequestsException
* @throws BadRequestException
* @throws ConflictException
* @sample AmazonApiGateway.DeleteRequestValidator
*/
DeleteRequestValidatorResult deleteRequestValidator(DeleteRequestValidatorRequest deleteRequestValidatorRequest);

/**
* <p>
* Deletes a <a>Resource</a> resource.
Expand Down Expand Up @@ -1030,6 +1064,37 @@ public interface AmazonApiGateway {
*/
GetModelsResult getModels(GetModelsRequest getModelsRequest);

/**
* <p>
* Gets a <a>RequestValidator</a> of a given <a>RestApi</a>.
* </p>
*
* @param getRequestValidatorRequest
* Gets a <a>RequestValidator</a> of a given <a>RestApi</a>.
* @return Result of the GetRequestValidator operation returned by the service.
* @throws UnauthorizedException
* @throws NotFoundException
* @throws TooManyRequestsException
* @sample AmazonApiGateway.GetRequestValidator
*/
GetRequestValidatorResult getRequestValidator(GetRequestValidatorRequest getRequestValidatorRequest);

/**
* <p>
* Gets the <a>RequestValidators</a> collection of a given <a>RestApi</a>.
* </p>
*
* @param getRequestValidatorsRequest
* Gets the <a>RequestValidators</a> collection of a given <a>RestApi</a>.
* @return Result of the GetRequestValidators operation returned by the service.
* @throws BadRequestException
* @throws UnauthorizedException
* @throws NotFoundException
* @throws TooManyRequestsException
* @sample AmazonApiGateway.GetRequestValidators
*/
GetRequestValidatorsResult getRequestValidators(GetRequestValidatorsRequest getRequestValidatorsRequest);

/**
* <p>
* Lists information about a resource.
Expand Down Expand Up @@ -1646,6 +1711,22 @@ public interface AmazonApiGateway {
*/
UpdateModelResult updateModel(UpdateModelRequest updateModelRequest);

/**
* <p>
* Updates a <a>RequestValidator</a> of a given <a>RestApi</a>.
* </p>
*
* @param updateRequestValidatorRequest
* Updates a <a>RequestValidator</a> of a given <a>RestApi</a>.
* @return Result of the UpdateRequestValidator operation returned by the service.
* @throws UnauthorizedException
* @throws NotFoundException
* @throws BadRequestException
* @throws TooManyRequestsException
* @sample AmazonApiGateway.UpdateRequestValidator
*/
UpdateRequestValidatorResult updateRequestValidator(UpdateRequestValidatorRequest updateRequestValidatorRequest);

/**
* <p>
* Changes information about a <a>Resource</a> resource.
Expand Down
Loading

0 comments on commit 2acd102

Please sign in to comment.