Skip to content

Commit b1aedf9

Browse files
author
AWS
committed
AWS SDK for Android 2.2.21
1 parent 9bffd33 commit b1aedf9

File tree

1,275 files changed

+143033
-99891
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,275 files changed

+143033
-99891
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Change Log - AWS SDK for Android
22

3+
## [Release 2.2.21](https://github.com/aws/aws-sdk-android/releases/tag/release_v2.2.21) (07/21/2016)
4+
5+
### Improvements
6+
- **Amazon Web Services**: General service updates and documentation improvements.
7+
- **AWS Core Runtime Library**: Allow custom `TrustManager` on `ClientConfiguration`. [#165](https://github.com/aws/aws-sdk-android/pull/165)
8+
- **AWS IoT**: Updated Eclipse Paho MQTT client to v1.1.0. [#145](https://github.com/aws/aws-sdk-android/issues/145)
9+
10+
### Bug Fixes
11+
- **Amazon Mobile Analytics**: Fixed crash while creating the base directory. [#126](https://github.com/aws/aws-sdk-android/issues/126)
12+
- **Amazon Cognito**: Fixed a token refresh bug in Your User Pools.
13+
14+
315
## [Release 2.2.20](https://github.com/aws/aws-sdk-android/releases/tag/release_v2.2.20) (06/27/2016)
416

517
### New Features

aws-android-sdk-apigateway-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<parent>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-android-sdk-pom</artifactId>
15-
<version>2.2.20</version>
15+
<version>2.2.21</version>
1616
</parent>
1717

1818
<dependencies>
1919
<dependency>
2020
<groupId>com.amazonaws</groupId>
2121
<artifactId>aws-android-sdk-core</artifactId>
2222
<optional>false</optional>
23-
<version>2.2.20</version>
23+
<version>2.2.21</version>
2424
</dependency>
2525
</dependencies>
2626

aws-android-sdk-autoscaling/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<parent>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-android-sdk-pom</artifactId>
15-
<version>2.2.20</version>
15+
<version>2.2.21</version>
1616
</parent>
1717

1818
<dependencies>
1919
<dependency>
2020
<groupId>com.amazonaws</groupId>
2121
<artifactId>aws-android-sdk-core</artifactId>
2222
<optional>false</optional>
23-
<version>2.2.20</version>
23+
<version>2.2.21</version>
2424
</dependency>
2525
</dependencies>
2626

aws-android-sdk-autoscaling/src/main/java/com/amazonaws/auth/policy/actions/AutoScalingActions.java

Lines changed: 50 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
/*
22
* Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.
66
* A copy of the License is located at
7-
*
7+
*
88
* http://aws.amazon.com/apache2.0
9-
*
9+
*
1010
* or in the "license" file accompanying this file. This file is distributed
1111
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
1212
* express or implied. See the License for the specific language governing
1313
* permissions and limitations under the License.
1414
*/
15+
1516
package com.amazonaws.auth.policy.actions;
1617

1718
import com.amazonaws.auth.policy.Action;
@@ -23,15 +24,21 @@ public enum AutoScalingActions implements Action {
2324
/** Represents any action executed on Amazon Auto Scaling. */
2425
AllAutoScalingActions("autoscaling:*"),
2526

27+
/** Action for the AttachInstances operation. */
28+
AttachInstances("autoscaling:AttachInstances"),
29+
30+
/** Action for the AttachLoadBalancers operation. */
31+
AttachLoadBalancers("autoscaling:AttachLoadBalancers"),
32+
33+
/** Action for the CompleteLifecycleAction operation. */
34+
CompleteLifecycleAction("autoscaling:CompleteLifecycleAction"),
35+
2636
/** Action for the CreateAutoScalingGroup operation. */
2737
CreateAutoScalingGroup("autoscaling:CreateAutoScalingGroup"),
2838

2939
/** Action for the CreateLaunchConfiguration operation. */
3040
CreateLaunchConfiguration("autoscaling:CreateLaunchConfiguration"),
3141

32-
/** Action for the CreateOrUpdateScalingTrigger operation. */
33-
CreateOrUpdateScalingTrigger("autoscaling:CreateOrUpdateScalingTrigger"),
34-
3542
/** Action for the CreateOrUpdateTags operation. */
3643
CreateOrUpdateTags("autoscaling:CreateOrUpdateTags"),
3744

@@ -41,6 +48,9 @@ public enum AutoScalingActions implements Action {
4148
/** Action for the DeleteLaunchConfiguration operation. */
4249
DeleteLaunchConfiguration("autoscaling:DeleteLaunchConfiguration"),
4350

51+
/** Action for the DeleteLifecycleHook operation. */
52+
DeleteLifecycleHook("autoscaling:DeleteLifecycleHook"),
53+
4454
/** Action for the DeleteNotificationConfiguration operation. */
4555
DeleteNotificationConfiguration("autoscaling:DeleteNotificationConfiguration"),
4656

@@ -53,8 +63,8 @@ public enum AutoScalingActions implements Action {
5363
/** Action for the DeleteTags operation. */
5464
DeleteTags("autoscaling:DeleteTags"),
5565

56-
/** Action for the DeleteTrigger operation. */
57-
DeleteTrigger("autoscaling:DeleteTrigger"),
66+
/** Action for the DescribeAccountLimits operation. */
67+
DescribeAccountLimits("autoscaling:DescribeAccountLimits"),
5868

5969
/** Action for the DescribeAdjustmentTypes operation. */
6070
DescribeAdjustmentTypes("autoscaling:DescribeAdjustmentTypes"),
@@ -71,6 +81,15 @@ public enum AutoScalingActions implements Action {
7181
/** Action for the DescribeLaunchConfigurations operation. */
7282
DescribeLaunchConfigurations("autoscaling:DescribeLaunchConfigurations"),
7383

84+
/** Action for the DescribeLifecycleHookTypes operation. */
85+
DescribeLifecycleHookTypes("autoscaling:DescribeLifecycleHookTypes"),
86+
87+
/** Action for the DescribeLifecycleHooks operation. */
88+
DescribeLifecycleHooks("autoscaling:DescribeLifecycleHooks"),
89+
90+
/** Action for the DescribeLoadBalancers operation. */
91+
DescribeLoadBalancers("autoscaling:DescribeLoadBalancers"),
92+
7493
/** Action for the DescribeMetricCollectionTypes operation. */
7594
DescribeMetricCollectionTypes("autoscaling:DescribeMetricCollectionTypes"),
7695

@@ -92,18 +111,33 @@ public enum AutoScalingActions implements Action {
92111
/** Action for the DescribeTags operation. */
93112
DescribeTags("autoscaling:DescribeTags"),
94113

95-
/** Action for the DescribeTriggers operation. */
96-
DescribeTriggers("autoscaling:DescribeTriggers"),
114+
/** Action for the DescribeTerminationPolicyTypes operation. */
115+
DescribeTerminationPolicyTypes("autoscaling:DescribeTerminationPolicyTypes"),
116+
117+
/** Action for the DetachInstances operation. */
118+
DetachInstances("autoscaling:DetachInstances"),
119+
120+
/** Action for the DetachLoadBalancers operation. */
121+
DetachLoadBalancers("autoscaling:DetachLoadBalancers"),
97122

98123
/** Action for the DisableMetricsCollection operation. */
99124
DisableMetricsCollection("autoscaling:DisableMetricsCollection"),
100125

101126
/** Action for the EnableMetricsCollection operation. */
102127
EnableMetricsCollection("autoscaling:EnableMetricsCollection"),
103128

129+
/** Action for the EnterStandby operation. */
130+
EnterStandby("autoscaling:EnterStandby"),
131+
104132
/** Action for the ExecutePolicy operation. */
105133
ExecutePolicy("autoscaling:ExecutePolicy"),
106134

135+
/** Action for the ExitStandby operation. */
136+
ExitStandby("autoscaling:ExitStandby"),
137+
138+
/** Action for the PutLifecycleHook operation. */
139+
PutLifecycleHook("autoscaling:PutLifecycleHook"),
140+
107141
/** Action for the PutNotificationConfiguration operation. */
108142
PutNotificationConfiguration("autoscaling:PutNotificationConfiguration"),
109143

@@ -113,6 +147,9 @@ public enum AutoScalingActions implements Action {
113147
/** Action for the PutScheduledUpdateGroupAction operation. */
114148
PutScheduledUpdateGroupAction("autoscaling:PutScheduledUpdateGroupAction"),
115149

150+
/** Action for the RecordLifecycleActionHeartbeat operation. */
151+
RecordLifecycleActionHeartbeat("autoscaling:RecordLifecycleActionHeartbeat"),
152+
116153
/** Action for the ResumeProcesses operation. */
117154
ResumeProcesses("autoscaling:ResumeProcesses"),
118155

@@ -122,6 +159,9 @@ public enum AutoScalingActions implements Action {
122159
/** Action for the SetInstanceHealth operation. */
123160
SetInstanceHealth("autoscaling:SetInstanceHealth"),
124161

162+
/** Action for the SetInstanceProtection operation. */
163+
SetInstanceProtection("autoscaling:SetInstanceProtection"),
164+
125165
/** Action for the SuspendProcesses operation. */
126166
SuspendProcesses("autoscaling:SuspendProcesses"),
127167

0 commit comments

Comments
 (0)