Skip to content

Commit

Permalink
Release v1.17.4
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Feb 22, 2019
1 parent f1c6def commit e8b22c9
Showing 20 changed files with 9,695 additions and 5,764 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Release v1.17.4 (2019-02-22)
===

### Service Client Updates
* `service/athena`: Updates service API and documentation
* This release adds tagging support for Workgroups to Amazon Athena. Use these APIs to add, remove, or list tags on Workgroups, and leverage the tags for various authorization and billing scenarios.
* `service/cloud9`: Updates service API and documentation
* Adding EnvironmentLifecycle to the Environment data type.
* `service/glue`: Updates service API, documentation, and paginators
* AWS Glue adds support for assigning AWS resource tags to jobs, triggers, development endpoints, and crawlers. Each tag consists of a key and an optional value, both of which you define. With this capacity, customers can use tags in AWS Glue to easily organize and identify your resources, create cost allocation reports, and control access to resources.
* `service/states`: Updates service API and documentation
* This release adds support for tag-on-create. You can now add tags when you create AWS Step Functions activity and state machine resources. For more information about tagging, see AWS Tagging Strategies.

Release v1.17.3 (2019-02-21)
===

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
@@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.17.3"
const SDKVersion = "1.17.4"
136 changes: 135 additions & 1 deletion models/apis/athena/2017-05-18/api-2.json
Original file line number Diff line number Diff line change
@@ -171,6 +171,20 @@
{"shape":"InvalidRequestException"}
]
},
"ListTagsForResource":{
"name":"ListTagsForResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListTagsForResourceInput"},
"output":{"shape":"ListTagsForResourceOutput"},
"errors":[
{"shape":"InternalServerException"},
{"shape":"InvalidRequestException"},
{"shape":"ResourceNotFoundException"}
]
},
"ListWorkGroups":{
"name":"ListWorkGroups",
"http":{
@@ -213,6 +227,34 @@
],
"idempotent":true
},
"TagResource":{
"name":"TagResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"TagResourceInput"},
"output":{"shape":"TagResourceOutput"},
"errors":[
{"shape":"InternalServerException"},
{"shape":"InvalidRequestException"},
{"shape":"ResourceNotFoundException"}
]
},
"UntagResource":{
"name":"UntagResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UntagResourceInput"},
"output":{"shape":"UntagResourceOutput"},
"errors":[
{"shape":"InternalServerException"},
{"shape":"InvalidRequestException"},
{"shape":"ResourceNotFoundException"}
]
},
"UpdateWorkGroup":{
"name":"UpdateWorkGroup",
"http":{
@@ -228,6 +270,11 @@
}
},
"shapes":{
"AmazonResourceName":{
"type":"string",
"max":1011,
"min":1
},
"BatchGetNamedQueryInput":{
"type":"structure",
"required":["NamedQueryIds"],
@@ -324,7 +371,8 @@
"members":{
"Name":{"shape":"WorkGroupName"},
"Configuration":{"shape":"WorkGroupConfiguration"},
"Description":{"shape":"WorkGroupDescriptionString"}
"Description":{"shape":"WorkGroupDescriptionString"},
"Tags":{"shape":"TagList"}
}
},
"CreateWorkGroupOutput":{
@@ -507,6 +555,22 @@
"NextToken":{"shape":"Token"}
}
},
"ListTagsForResourceInput":{
"type":"structure",
"required":["ResourceARN"],
"members":{
"ResourceARN":{"shape":"AmazonResourceName"},
"NextToken":{"shape":"Token"},
"MaxResults":{"shape":"MaxTagsCount"}
}
},
"ListTagsForResourceOutput":{
"type":"structure",
"members":{
"Tags":{"shape":"TagList"},
"NextToken":{"shape":"Token"}
}
},
"ListWorkGroupsInput":{
"type":"structure",
"members":{
@@ -540,6 +604,11 @@
"max":1000,
"min":0
},
"MaxTagsCount":{
"type":"integer",
"box":true,
"min":75
},
"MaxWorkGroupsCount":{
"type":"integer",
"box":true,
@@ -639,6 +708,14 @@
"max":262144,
"min":1
},
"ResourceNotFoundException":{
"type":"structure",
"members":{
"Message":{"shape":"ErrorMessage"},
"ResourceName":{"shape":"AmazonResourceName"}
},
"exception":true
},
"ResultConfiguration":{
"type":"structure",
"members":{
@@ -722,6 +799,47 @@
}
},
"String":{"type":"string"},
"Tag":{
"type":"structure",
"members":{
"Key":{"shape":"TagKey"},
"Value":{"shape":"TagValue"}
}
},
"TagKey":{
"type":"string",
"max":128,
"min":1
},
"TagKeyList":{
"type":"list",
"member":{"shape":"TagKey"}
},
"TagList":{
"type":"list",
"member":{"shape":"Tag"}
},
"TagResourceInput":{
"type":"structure",
"required":[
"ResourceARN",
"Tags"
],
"members":{
"ResourceARN":{"shape":"AmazonResourceName"},
"Tags":{"shape":"TagList"}
}
},
"TagResourceOutput":{
"type":"structure",
"members":{
}
},
"TagValue":{
"type":"string",
"max":256,
"min":0
},
"ThrottleReason":{
"type":"string",
"enum":["CONCURRENT_QUERY_LIMIT_EXCEEDED"]
@@ -763,6 +881,22 @@
"type":"list",
"member":{"shape":"UnprocessedQueryExecutionId"}
},
"UntagResourceInput":{
"type":"structure",
"required":[
"ResourceARN",
"TagKeys"
],
"members":{
"ResourceARN":{"shape":"AmazonResourceName"},
"TagKeys":{"shape":"TagKeyList"}
}
},
"UntagResourceOutput":{
"type":"structure",
"members":{
}
},
"UpdateWorkGroupInput":{
"type":"structure",
"required":["WorkGroup"],
91 changes: 90 additions & 1 deletion models/apis/athena/2017-05-18/docs-2.json
Original file line number Diff line number Diff line change
@@ -11,15 +11,27 @@
"GetNamedQuery": "<p>Returns information about a single query. Requires that you have access to the workgroup in which the query was saved.</p>",
"GetQueryExecution": "<p>Returns information about a single execution of a query if you have access to the workgroup in which the query ran. Each time a query executes, information about the query execution is saved with a unique ID.</p>",
"GetQueryResults": "<p>Returns the results of a single query execution specified by <code>QueryExecutionId</code> if you have access to the workgroup in which the query ran. This request does not execute the query but returns results. Use <a>StartQueryExecution</a> to run a query.</p>",
"GetWorkGroup": "<p>Returns information about the workgroup with the speficied name.</p>",
"GetWorkGroup": "<p>Returns information about the workgroup with the specified name.</p>",
"ListNamedQueries": "<p>Provides a list of available query IDs only for queries saved in the specified workgroup. Requires that you have access to the workgroup.</p> <p>For code samples using the AWS SDK for Java, see <a href=\"http://docs.aws.amazon.com/athena/latest/ug/code-samples.html\">Examples and Code Samples</a> in the <i>Amazon Athena User Guide</i>.</p>",
"ListQueryExecutions": "<p>Provides a list of available query execution IDs for the queries in the specified workgroup. Requires you to have access to the workgroup in which the queries ran.</p> <p>For code samples using the AWS SDK for Java, see <a href=\"http://docs.aws.amazon.com/athena/latest/ug/code-samples.html\">Examples and Code Samples</a> in the <i>Amazon Athena User Guide</i>.</p>",
"ListTagsForResource": "<p>Lists the tags associated with this workgroup.</p>",
"ListWorkGroups": "<p>Lists available workgroups for the account.</p>",
"StartQueryExecution": "<p>Runs the SQL query statements contained in the <code>Query</code>. Requires you to have access to the workgroup in which the query ran.</p> <p>For code samples using the AWS SDK for Java, see <a href=\"http://docs.aws.amazon.com/athena/latest/ug/code-samples.html\">Examples and Code Samples</a> in the <i>Amazon Athena User Guide</i>.</p>",
"StopQueryExecution": "<p>Stops a query execution. Requires you to have access to the workgroup in which the query ran.</p> <p>For code samples using the AWS SDK for Java, see <a href=\"http://docs.aws.amazon.com/athena/latest/ug/code-samples.html\">Examples and Code Samples</a> in the <i>Amazon Athena User Guide</i>.</p>",
"TagResource": "<p>Adds one or more tags to the resource, such as a workgroup. A tag is a label that you assign to an AWS Athena resource (a workgroup). Each tag consists of a key and an optional value, both of which you define. Tags enable you to categorize resources (workgroups) in Athena, for example, by purpose, owner, or environment. Use a consistent set of tag keys to make it easier to search and filter workgroups in your account. For best practices, see <a href=\"https://aws.amazon.com/answers/account-management/aws-tagging-strategies/\">AWS Tagging Strategies</a>. The key length is from 1 (minimum) to 128 (maximum) Unicode characters in UTF-8. The tag value length is from 0 (minimum) to 256 (maximum) Unicode characters in UTF-8. You can use letters and numbers representable in UTF-8, and the following characters: + - = . _ : / @. Tag keys and values are case-sensitive. Tag keys must be unique per resource. If you specify more than one, separate them by commas.</p>",
"UntagResource": "<p>Removes one or more tags from the workgroup resource. Takes as an input a list of TagKey Strings separated by commas, and removes their tags at the same time.</p>",
"UpdateWorkGroup": "<p>Updates the workgroup with the specified name. The workgroup's name cannot be changed.</p>"
},
"shapes": {
"AmazonResourceName": {
"base": null,
"refs": {
"ListTagsForResourceInput$ResourceARN": "<p>Lists the tags for the workgroup resource with the specified ARN.</p>",
"ResourceNotFoundException$ResourceName": null,
"TagResourceInput$ResourceARN": "<p>Requests that one or more tags are added to the resource (such as a workgroup) for the specified ARN.</p>",
"UntagResourceInput$ResourceARN": "<p>Removes one or more tags from the workgroup resource for the specified ARN.</p>"
}
},
"BatchGetNamedQueryInput": {
"base": null,
"refs": {
@@ -180,6 +192,7 @@
"refs": {
"InternalServerException$Message": null,
"InvalidRequestException$Message": null,
"ResourceNotFoundException$Message": null,
"TooManyRequestsException$Message": null,
"UnprocessedNamedQueryId$ErrorMessage": "<p>The error message returned when the processing request for the named query failed, if applicable.</p>",
"UnprocessedQueryExecutionId$ErrorMessage": "<p>The error message returned when the query execution failed to process, if applicable.</p>"
@@ -269,6 +282,16 @@
"refs": {
}
},
"ListTagsForResourceInput": {
"base": null,
"refs": {
}
},
"ListTagsForResourceOutput": {
"base": null,
"refs": {
}
},
"ListWorkGroupsInput": {
"base": null,
"refs": {
@@ -305,6 +328,12 @@
"GetQueryResultsInput$MaxResults": "<p>The maximum number of results (rows) to return in this request.</p>"
}
},
"MaxTagsCount": {
"base": null,
"refs": {
"ListTagsForResourceInput$MaxResults": "<p>The maximum number of results to be returned per request that lists the tags for the workgroup resource.</p>"
}
},
"MaxWorkGroupsCount": {
"base": null,
"refs": {
@@ -415,6 +444,11 @@
"StartQueryExecutionInput$QueryString": "<p>The SQL query statements to be executed.</p>"
}
},
"ResourceNotFoundException": {
"base": "<p>A resource, such as a workgroup, was not found.</p>",
"refs": {
}
},
"ResultConfiguration": {
"base": "<p>The location in Amazon S3 where query results are stored and the encryption option, if any, used for query results. These are known as \"client-side settings\". If workgroup settings override client-side settings, then the query uses the location for the query results and the encryption configuration that are specified for the workgroup.</p>",
"refs": {
@@ -494,6 +528,49 @@
"ResultConfigurationUpdates$OutputLocation": "<p>The location in Amazon S3 where your query results are stored, such as <code>s3://path/to/query/bucket/</code>. For more information, see <a href=\"https://docs.aws.amazon.com/athena/latest/ug/querying.html\">Queries and Query Result Files.</a> If workgroup settings override client-side settings, then the query uses the location for the query results and the encryption configuration that are specified for the workgroup. The \"workgroup settings override\" is specified in EnforceWorkGroupConfiguration (true/false) in the WorkGroupConfiguration. See <a>WorkGroupConfiguration$EnforceWorkGroupConfiguration</a>.</p>"
}
},
"Tag": {
"base": "<p>A tag that you can add to a resource. A tag is a label that you assign to an AWS Athena resource (a workgroup). Each tag consists of a key and an optional value, both of which you define. Tags enable you to categorize workgroups in Athena, for example, by purpose, owner, or environment. Use a consistent set of tag keys to make it easier to search and filter workgroups in your account. The maximum tag key length is 128 Unicode characters in UTF-8. The maximum tag value length is 256 Unicode characters in UTF-8. You can use letters and numbers representable in UTF-8, and the following characters: + - = . _ : / @. Tag keys and values are case-sensitive. Tag keys must be unique per resource. </p>",
"refs": {
"TagList$member": null
}
},
"TagKey": {
"base": null,
"refs": {
"Tag$Key": "<p>A tag key. The tag key length is from 1 to 128 Unicode characters in UTF-8. You can use letters and numbers representable in UTF-8, and the following characters: + - = . _ : / @. Tag keys are case-sensitive and must be unique per resource. </p>",
"TagKeyList$member": null
}
},
"TagKeyList": {
"base": null,
"refs": {
"UntagResourceInput$TagKeys": "<p>Removes the tags associated with one or more tag keys from the workgroup resource.</p>"
}
},
"TagList": {
"base": null,
"refs": {
"CreateWorkGroupInput$Tags": "<p>One or more tags, separated by commas, that you want to attach to the workgroup as you create it.</p>",
"ListTagsForResourceOutput$Tags": "<p>The list of tags associated with this workgroup.</p>",
"TagResourceInput$Tags": "<p>One or more tags, separated by commas, to be added to the resource, such as a workgroup.</p>"
}
},
"TagResourceInput": {
"base": null,
"refs": {
}
},
"TagResourceOutput": {
"base": null,
"refs": {
}
},
"TagValue": {
"base": null,
"refs": {
"Tag$Value": "<p>A tag value. The tag value length is from 0 to 256 Unicode characters in UTF-8. You can use letters and numbers representable in UTF-8, and the following characters: + - = . _ : / @. Tag values are case-sensitive. </p>"
}
},
"ThrottleReason": {
"base": "<p>The reason for the query throttling, for example, when it exceeds the concurrent query limit.</p>",
"refs": {
@@ -509,6 +586,8 @@
"ListNamedQueriesOutput$NextToken": "<p>A token to be used by the next request if this request is truncated.</p>",
"ListQueryExecutionsInput$NextToken": "<p>The token that specifies where to start pagination if a previous request was truncated.</p>",
"ListQueryExecutionsOutput$NextToken": "<p>A token to be used by the next request if this request is truncated.</p>",
"ListTagsForResourceInput$NextToken": "<p>The token for the next set of results, or null if there are no additional results for this request, where the request lists the tags for the workgroup resource with the specified ARN.</p>",
"ListTagsForResourceOutput$NextToken": "<p>A token to be used by the next request if this request is truncated.</p>",
"ListWorkGroupsInput$NextToken": "<p>A token to be used by the next request if this request is truncated.</p>",
"ListWorkGroupsOutput$NextToken": "<p>A token to be used by the next request if this request is truncated.</p>"
}
@@ -542,6 +621,16 @@
"BatchGetQueryExecutionOutput$UnprocessedQueryExecutionIds": "<p>Information about the query executions that failed to run.</p>"
}
},
"UntagResourceInput": {
"base": null,
"refs": {
}
},
"UntagResourceOutput": {
"base": null,
"refs": {
}
},
"UpdateWorkGroupInput": {
"base": null,
"refs": {
Loading

0 comments on commit e8b22c9

Please sign in to comment.