Skip to content

Commit

Permalink
Updates SDK to v2.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Nov 21, 2016
1 parent e5b340b commit f227a5f
Show file tree
Hide file tree
Showing 16 changed files with 524 additions and 80 deletions.
12 changes: 12 additions & 0 deletions .changes/2.7.6.json
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "CloudTrail",
"description": "This release of AWS CloudTrail supports configuring your trail with event selectors. Use event selectors to specify the type of events that you want your trails to log. You can configure event selectors to log read-only, write-only, or all events. CloudTrail supports logging Amazon S3 object level APIs such as GetObject, DeleteObject, and PutObject. You can configure event selectors for your trail to log object level operations."
},
{
"type": "feature",
"category": "ECS",
"description": "ECS will include a new field named `version` in API responses relating to tasks and container instances. Version is a number that increments every time a change has been made to the associated resource. Users replicating their ECS resource state can use the version field reported by the ECS APIs to determine if their local state is fresh."
}
]
6 changes: 5 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,11 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.7.5-->
<!--LATEST=2.7.6-->
<!--ENTRYINSERT-->

## 2.7.6
* feature: CloudTrail: This release of AWS CloudTrail supports configuring your trail with event selectors. Use event selectors to specify the type of events that you want your trails to log. You can configure event selectors to log read-only, write-only, or all events. CloudTrail supports logging Amazon S3 object level APIs such as GetObject, DeleteObject, and PutObject. You can configure event selectors for your trail to log object level operations.
* feature: ECS: ECS will include a new field named `version` in API responses relating to tasks and container instances. Version is a number that increments every time a change has been made to the associated resource. Users replicating their ECS resource state can use the version field reported by the ECS APIs to determine if their local state is fresh.

## 2.7.5
* bugfix: TypeScript: Stubs DOM interfaces and removes type reference to node.
* feature: ElasticTranscoder: Support for multiple media input files that can be stitched together.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -24,7 +24,7 @@ to work with the new major version.
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.7.5.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.7.6.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
70 changes: 69 additions & 1 deletion apis/cloudtrail-2013-11-01.min.json
Expand Up @@ -140,14 +140,35 @@
},
"CloudWatchLogsLogGroupArn": {},
"CloudWatchLogsRoleArn": {},
"KmsKeyId": {}
"KmsKeyId": {},
"HasCustomEventSelectors": {
"type": "boolean"
}
}
}
}
}
},
"idempotent": true
},
"GetEventSelectors": {
"input": {
"type": "structure",
"members": {
"TrailName": {}
}
},
"output": {
"type": "structure",
"members": {
"TrailARN": {},
"EventSelectors": {
"shape": "Si"
}
}
},
"idempotent": true
},
"GetTrailStatus": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -312,6 +333,7 @@
"EventTime": {
"type": "timestamp"
},
"EventSource": {},
"Username": {},
"Resources": {
"type": "list",
Expand All @@ -332,6 +354,27 @@
},
"idempotent": true
},
"PutEventSelectors": {
"input": {
"type": "structure",
"members": {
"TrailName": {},
"EventSelectors": {
"shape": "Si"
}
}
},
"output": {
"type": "structure",
"members": {
"TrailARN": {},
"EventSelectors": {
"shape": "Si"
}
}
},
"idempotent": true
},
"RemoveTags": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -449,6 +492,31 @@
"Value": {}
}
}
},
"Si": {
"type": "list",
"member": {
"type": "structure",
"members": {
"ReadWriteType": {},
"IncludeManagementEvents": {
"type": "boolean"
},
"DataResources": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Type": {},
"Values": {
"type": "list",
"member": {}
}
}
}
}
}
}
}
}
}

0 comments on commit f227a5f

Please sign in to comment.