-
Notifications
You must be signed in to change notification settings - Fork 858
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #452 from aws/staging/97244113-58b1-42aa-b196-2bd6…
…24d8d0b4 Pull request: release <- staging/97244113-58b1-42aa-b196-2bd624d8d0b4
- Loading branch information
Showing
253 changed files
with
1,522 additions
and
426 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"date": "2019-03-19", | ||
"version": "2.5.12", | ||
"entries": [ | ||
{ | ||
"category": "Amazon S3", | ||
"type": "feature", | ||
"description": "Add support for getUrl operation. The API can be used to generate a URL that represents an object in Amazon S3. The url can only be used to download the object content if the object has public read permissions. Original issue: https://github.com/aws/aws-sdk-java-v2/issues/860" | ||
}, | ||
{ | ||
"category": "Amazon Elastic Container Service for Kubernetes", | ||
"type": "feature", | ||
"description": "Added support to control private/public access to the Kubernetes API-server endpoint" | ||
}, | ||
{ | ||
"category": "AWS SDK for Java v2", | ||
"type": "feature", | ||
"description": "Adds the Java vendor the user agent as well as using the updated user agent for all HTTP calls" | ||
}, | ||
{ | ||
"category": "Amazon S3", | ||
"type": "bugfix", | ||
"description": "Only set content type of S3 `CreateMultipartUploadRequest` if `Content-Type` header is not present and honor the overridden content type." | ||
}, | ||
{ | ||
"category": "AWS Config", | ||
"type": "feature", | ||
"description": "AWS Config adds a new API called SelectResourceConfig to run advanced queries based on resource configuration properties." | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
.../main/java/software/amazon/awssdk/codegen/model/config/customization/UtilitiesMethod.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* Copyright 2010-2019 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 software.amazon.awssdk.codegen.model.config.customization; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
/** | ||
* Config required to generate the utilities method that returns an instance of | ||
* hand-written Utilities class | ||
*/ | ||
public class UtilitiesMethod { | ||
|
||
public static final String METHOD_NAME = "utilities"; | ||
|
||
/** Fqcn of the return type of the operation */ | ||
private String returnType; | ||
|
||
/** | ||
* The utilities method will call a protected create() method in the hand-written Utilities class. | ||
* These the ordered list of parameters that needs to be passed to the create method. | ||
*/ | ||
private List<String> createMethodParams = new ArrayList<>(); | ||
|
||
public String getReturnType() { | ||
return returnType; | ||
} | ||
|
||
public void setReturnType(String returnType) { | ||
this.returnType = returnType; | ||
} | ||
|
||
public List<String> getCreateMethodParams() { | ||
return createMethodParams; | ||
} | ||
|
||
public void setCreateMethodParams(List<String> createMethodParams) { | ||
this.createMethodParams = createMethodParams; | ||
} | ||
} |
Oops, something went wrong.