Skip to content

Commit 010e53c

Browse files
author
AWS
committed
AWS SDK for Java 1.11.592
1 parent 9536f2c commit 010e53c

File tree

246 files changed

+1718
-452
lines changed

Some content is hidden

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

246 files changed

+1718
-452
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# __1.11.592__ __2019-07-12__
2+
## __AWS Identity and Access Management__
3+
- ### Features
4+
- Removed exception that was indicated but never thrown for IAM GetAccessKeyLastUsed API
5+
6+
## __AWS RoboMaker__
7+
- ### Features
8+
- Added Melodic as a supported Robot Software Suite Version
9+
10+
## __Amazon Elasticsearch Service__
11+
- ### Features
12+
- Amazon Elasticsearch Service now supports M5, C5, and R5 instance types.
13+
14+
## __AmazonApiGatewayV2__
15+
- ### Features
16+
- Bug fix (Add tags field to Update Stage , Api and DomainName Responses )
17+
118
# __1.11.591__ __2019-07-11__
219
## __Amazon CloudWatch Events__
320
- ### Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies.
4545
<dependency>
4646
<groupId>com.amazonaws</groupId>
4747
<artifactId>aws-java-sdk-bom</artifactId>
48-
<version>1.11.591</version>
48+
<version>1.11.592</version>
4949
<type>pom</type>
5050
<scope>import</scope>
5151
</dependency>

aws-java-sdk-acm/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.592-SNAPSHOT</version>
8+
<version>1.11.592</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-acm</artifactId>

aws-java-sdk-acmpca/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.592-SNAPSHOT</version>
8+
<version>1.11.592</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-acmpca</artifactId>

aws-java-sdk-alexaforbusiness/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.592-SNAPSHOT</version>
8+
<version>1.11.592</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-alexaforbusiness</artifactId>

aws-java-sdk-amplify/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.592-SNAPSHOT</version>
8+
<version>1.11.592</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-amplify</artifactId>

aws-java-sdk-api-gateway/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.592-SNAPSHOT</version>
8+
<version>1.11.592</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-api-gateway</artifactId>

aws-java-sdk-apigatewaymanagementapi/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.592-SNAPSHOT</version>
8+
<version>1.11.592</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-apigatewaymanagementapi</artifactId>

aws-java-sdk-apigatewayv2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.592-SNAPSHOT</version>
8+
<version>1.11.592</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-apigatewayv2</artifactId>

aws-java-sdk-apigatewayv2/src/main/java/com/amazonaws/services/apigatewayv2/model/UpdateApiResult.java

Lines changed: 82 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,13 @@ public class UpdateApiResult extends com.amazonaws.AmazonWebServiceResult<com.am
8787
* </p>
8888
*/
8989
private java.util.List<String> warnings;
90+
/**
91+
* <p>
92+
* The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters
93+
* and must not start with aws:. The tag value can be up to 256 characters..
94+
* </p>
95+
*/
96+
private java.util.Map<String, String> tags;
9097

9198
/**
9299
* <p>
@@ -607,6 +614,73 @@ public UpdateApiResult withWarnings(java.util.Collection<String> warnings) {
607614
return this;
608615
}
609616

617+
/**
618+
* <p>
619+
* The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters
620+
* and must not start with aws:. The tag value can be up to 256 characters..
621+
* </p>
622+
*
623+
* @return The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128
624+
* characters and must not start with aws:. The tag value can be up to 256 characters..
625+
*/
626+
627+
public java.util.Map<String, String> getTags() {
628+
return tags;
629+
}
630+
631+
/**
632+
* <p>
633+
* The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters
634+
* and must not start with aws:. The tag value can be up to 256 characters..
635+
* </p>
636+
*
637+
* @param tags
638+
* The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128
639+
* characters and must not start with aws:. The tag value can be up to 256 characters..
640+
*/
641+
642+
public void setTags(java.util.Map<String, String> tags) {
643+
this.tags = tags;
644+
}
645+
646+
/**
647+
* <p>
648+
* The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters
649+
* and must not start with aws:. The tag value can be up to 256 characters..
650+
* </p>
651+
*
652+
* @param tags
653+
* The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128
654+
* characters and must not start with aws:. The tag value can be up to 256 characters..
655+
* @return Returns a reference to this object so that method calls can be chained together.
656+
*/
657+
658+
public UpdateApiResult withTags(java.util.Map<String, String> tags) {
659+
setTags(tags);
660+
return this;
661+
}
662+
663+
public UpdateApiResult addTagsEntry(String key, String value) {
664+
if (null == this.tags) {
665+
this.tags = new java.util.HashMap<String, String>();
666+
}
667+
if (this.tags.containsKey(key))
668+
throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided.");
669+
this.tags.put(key, value);
670+
return this;
671+
}
672+
673+
/**
674+
* Removes all the entries added into Tags.
675+
*
676+
* @return Returns a reference to this object so that method calls can be chained together.
677+
*/
678+
679+
public UpdateApiResult clearTagsEntries() {
680+
this.tags = null;
681+
return this;
682+
}
683+
610684
/**
611685
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
612686
* redacted from this string using a placeholder value.
@@ -640,7 +714,9 @@ public String toString() {
640714
if (getVersion() != null)
641715
sb.append("Version: ").append(getVersion()).append(",");
642716
if (getWarnings() != null)
643-
sb.append("Warnings: ").append(getWarnings());
717+
sb.append("Warnings: ").append(getWarnings()).append(",");
718+
if (getTags() != null)
719+
sb.append("Tags: ").append(getTags());
644720
sb.append("}");
645721
return sb.toString();
646722
}
@@ -699,6 +775,10 @@ public boolean equals(Object obj) {
699775
return false;
700776
if (other.getWarnings() != null && other.getWarnings().equals(this.getWarnings()) == false)
701777
return false;
778+
if (other.getTags() == null ^ this.getTags() == null)
779+
return false;
780+
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false)
781+
return false;
702782
return true;
703783
}
704784

@@ -718,6 +798,7 @@ public int hashCode() {
718798
hashCode = prime * hashCode + ((getRouteSelectionExpression() == null) ? 0 : getRouteSelectionExpression().hashCode());
719799
hashCode = prime * hashCode + ((getVersion() == null) ? 0 : getVersion().hashCode());
720800
hashCode = prime * hashCode + ((getWarnings() == null) ? 0 : getWarnings().hashCode());
801+
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
721802
return hashCode;
722803
}
723804

0 commit comments

Comments
 (0)