Skip to content

Commit

Permalink
AWS SDK for Java 1.11.240
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS committed Nov 30, 2017
1 parent a1c4f6d commit a873140
Show file tree
Hide file tree
Showing 703 changed files with 161,779 additions and 14,880 deletions.
27 changes: 26 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@
# __1.11.239__ __2017-11-30__
# __1.11.240__ __2017-11-30__
## __AWS Cloud9__
- ### Features
- Adds support for creating and managing AWS Cloud9 development environments. AWS Cloud9 is a cloud-based integrated development environment (IDE) that you use to write, run, and debug code.

## __AWS Lambda__
- ### Features
- AWS Lambda now supports the ability to set the concurrency limits for individual functions, and increasing memory to 3008 GB.

## __AWSServerlessApplicationRepository__
- ### Features
- First release of the AWS Serverless Application Repository SDK

## __Alexa For Business__
- ### Features
- Alexa for Business is now generally available for production use. Alexa for Business makes it easy for you to use Alexa in your organization. The Alexa for Business SDK gives you APIs to manage Alexa devices, enroll users, and assign skills at scale. For more information about Alexa for Business, go to https://aws.amazon.com/alexaforbusiness

## __Amazon API Gateway__
- ### Features
- Added support Private Integration and VPC Link features in API Gateway. This allows to create an API with the API Gateway private integration, thus providing clients access to HTTP/HTTPS resources in an Amazon VPC from outside of the VPC through a VpcLink resource.

## __Amazon EC2__
- ### Features
- Adds the following updates: 1. Spread Placement ensures that instances are placed on distinct hardware in order to reduce correlated failures. 2. Inter-region VPC Peering allows customers to peer VPCs across different AWS regions without requiring additional gateways, VPN connections or physical hardware

# __1.11.239__ __2017-11-29__
## __AWS Resource Groups__
- ### Features
- AWS Resource Groups lets you search and group AWS resources from multiple services based on their tags.
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.239</version>
<version>1.11.240</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.240-SNAPSHOT</version>
<version>1.11.240</version>
</parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-acm</artifactId>
Expand Down
10 changes: 10 additions & 0 deletions aws-java-sdk-alexaforbusiness/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
source.. = src/main/java,\
src/main/resources
output.. = bin/

bin.includes = LICENSE.txt,\
NOTICE.txt,\
META-INF/,\
.

jre.compilation.profile = JavaSE-1.6
97 changes: 97 additions & 0 deletions aws-java-sdk-alexaforbusiness/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-pom</artifactId>
<version>1.11.240</version>
</parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-alexaforbusiness</artifactId>
<name>AWS Java SDK for Alexa For Business</name>
<description>The AWS Java SDK for Alexa For Business module holds the client classes that are used for communicating with Alexa For Business Service</description>
<url>https://aws.amazon.com/sdkforjava</url>

<!-- The dependencies section in pom.xml is auto generated. No manual changes are allowed -->
<dependencies>
<dependency>
<artifactId>aws-java-sdk-core</artifactId>
<groupId>com.amazonaws</groupId>
<optional>false</optional>
<version>${awsjavasdk.version}</version>
</dependency>
<dependency>
<artifactId>aws-java-sdk-test-utils</artifactId>
<groupId>com.amazonaws</groupId>
<optional>false</optional>
<scope>test</scope>
<version>${awsjavasdk.version}</version>
</dependency>
<dependency>
<artifactId>jmespath-java</artifactId>
<groupId>com.amazonaws</groupId>
<optional>false</optional>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>

<!-- This profile uses the JAPICMP plugin to generate a report of changes between the release version and the latest version -->
<!-- For more information on the plugin, see https://github.com/siom79/japicmp -->
<profiles>
<profile>
<id>versiondiff</id>
<build>
<plugins>
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.5.0</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>cmp</goal>
</goals>
</execution>
</executions>
<configuration>
<oldVersion>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-alexaforbusiness</artifactId>
<version>RELEASE</version>
</dependency>
</oldVersion>
<newVersion>
<file>
<path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
</file>
</newVersion>
<parameter>
<onlyModified>true</onlyModified>
<accessModifier>public</accessModifier>
<breakBuildOnModifications>false</breakBuildOnModifications>
<breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications>
<onlyBinaryIncompatible>false</onlyBinaryIncompatible>
</parameter>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,220 @@
/*
* Copyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.alexaforbusiness;

import javax.annotation.Generated;

import com.amazonaws.services.alexaforbusiness.model.*;
import com.amazonaws.*;

/**
* Abstract implementation of {@code AmazonAlexaForBusiness}. Convenient method forms pass through to the corresponding
* overload that takes a request object, which throws an {@code UnsupportedOperationException}.
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class AbstractAmazonAlexaForBusiness implements AmazonAlexaForBusiness {

protected AbstractAmazonAlexaForBusiness() {
}

@Override
public AssociateDeviceWithRoomResult associateDeviceWithRoom(AssociateDeviceWithRoomRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public AssociateSkillGroupWithRoomResult associateSkillGroupWithRoom(AssociateSkillGroupWithRoomRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public CreateProfileResult createProfile(CreateProfileRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public CreateRoomResult createRoom(CreateRoomRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public CreateSkillGroupResult createSkillGroup(CreateSkillGroupRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public CreateUserResult createUser(CreateUserRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public DeleteProfileResult deleteProfile(DeleteProfileRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public DeleteRoomResult deleteRoom(DeleteRoomRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public DeleteRoomSkillParameterResult deleteRoomSkillParameter(DeleteRoomSkillParameterRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public DeleteSkillGroupResult deleteSkillGroup(DeleteSkillGroupRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public DeleteUserResult deleteUser(DeleteUserRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public DisassociateDeviceFromRoomResult disassociateDeviceFromRoom(DisassociateDeviceFromRoomRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public DisassociateSkillGroupFromRoomResult disassociateSkillGroupFromRoom(DisassociateSkillGroupFromRoomRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public GetDeviceResult getDevice(GetDeviceRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public GetProfileResult getProfile(GetProfileRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public GetRoomResult getRoom(GetRoomRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public GetRoomSkillParameterResult getRoomSkillParameter(GetRoomSkillParameterRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public GetSkillGroupResult getSkillGroup(GetSkillGroupRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public ListSkillsResult listSkills(ListSkillsRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public ListTagsResult listTags(ListTagsRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public PutRoomSkillParameterResult putRoomSkillParameter(PutRoomSkillParameterRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public ResolveRoomResult resolveRoom(ResolveRoomRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public RevokeInvitationResult revokeInvitation(RevokeInvitationRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public SearchDevicesResult searchDevices(SearchDevicesRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public SearchProfilesResult searchProfiles(SearchProfilesRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public SearchRoomsResult searchRooms(SearchRoomsRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public SearchSkillGroupsResult searchSkillGroups(SearchSkillGroupsRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public SearchUsersResult searchUsers(SearchUsersRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public SendInvitationResult sendInvitation(SendInvitationRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public StartDeviceSyncResult startDeviceSync(StartDeviceSyncRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public TagResourceResult tagResource(TagResourceRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public UntagResourceResult untagResource(UntagResourceRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public UpdateDeviceResult updateDevice(UpdateDeviceRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public UpdateProfileResult updateProfile(UpdateProfileRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public UpdateRoomResult updateRoom(UpdateRoomRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public UpdateSkillGroupResult updateSkillGroup(UpdateSkillGroupRequest request) {
throw new java.lang.UnsupportedOperationException();
}

@Override
public void shutdown() {
throw new java.lang.UnsupportedOperationException();
}

@Override
public com.amazonaws.ResponseMetadata getCachedResponseMetadata(com.amazonaws.AmazonWebServiceRequest request) {
throw new java.lang.UnsupportedOperationException();
}

}
Loading

0 comments on commit a873140

Please sign in to comment.