Skip to content

Commit 42b7eea

Browse files
author
awstools
committedMar 31, 2017
Updates SDK to v2.36.0
1 parent c5c0a61 commit 42b7eea

10 files changed

+7524
-7485
lines changed
 

‎.changes/2.36.0.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "CloudDirectory",
5+
"description": "ListObjectAttributes now supports filtering by facet."
6+
}
7+
]

‎CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.35.0-->
2+
<!--LATEST=2.36.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.36.0
6+
* feature: CloudDirectory: ListObjectAttributes now supports filtering by facet.
7+
58
## 2.35.0
69
* feature: CloudFormation: Adding paginators for ListExports and ListImports
710
* feature: CloudFront: Amazon CloudFront now supports user configurable HTTP Read and Keep-Alive Idle Timeouts for your Custom Origin Servers
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"version": "1.0",
3+
"examples": {
4+
}
5+
}

‎apis/clouddirectory-2016-05-10.min.json

+6
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,9 @@
203203
"NextToken": {},
204204
"MaxResults": {
205205
"type": "integer"
206+
},
207+
"FacetFilter": {
208+
"shape": "S3"
206209
}
207210
}
208211
},
@@ -1287,6 +1290,9 @@
12871290
"ConsistencyLevel": {
12881291
"location": "header",
12891292
"locationName": "x-amz-consistency-level"
1293+
},
1294+
"FacetFilter": {
1295+
"shape": "S3"
12901296
}
12911297
}
12921298
},

‎apis/clouddirectory-2016-05-10.normal.json

+12-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@
7373
{"shape":"ResourceNotFoundException"},
7474
{"shape":"LinkNameAlreadyInUseException"},
7575
{"shape":"InvalidAttachmentException"},
76-
{"shape":"ValidationException"}
76+
{"shape":"ValidationException"},
77+
{"shape":"FacetValidationException"}
7778
],
7879
"documentation":"<p>Attaches an existing object to another object. An object can be accessed in two ways:</p> <ol> <li> <p>Using the path</p> </li> <li> <p>Using <code>ObjectIdentifier</code> </p> </li> </ol>"
7980
},
@@ -721,7 +722,8 @@
721722
{"shape":"DirectoryNotEnabledException"},
722723
{"shape":"InvalidArnException"},
723724
{"shape":"ResourceNotFoundException"},
724-
{"shape":"InvalidNextTokenException"}
725+
{"shape":"InvalidNextTokenException"},
726+
{"shape":"FacetValidationException"}
725727
],
726728
"documentation":"<p>Lists all attributes associated with an object. </p>"
727729
},
@@ -1482,6 +1484,10 @@
14821484
"MaxResults":{
14831485
"shape":"NumberResults",
14841486
"documentation":"<p>Maximum number of items to be retrieved in a single call. This is an approximate number.</p>"
1487+
},
1488+
"FacetFilter":{
1489+
"shape":"SchemaFacet",
1490+
"documentation":"<p>Used to filter the list of object attributes associated with a certain facet.</p>"
14851491
}
14861492
},
14871493
"documentation":"<p>Represents the output of a <code>ListObjectAttributes</code> operation.</p>"
@@ -3014,6 +3020,10 @@
30143020
"documentation":"<p>Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.</p>",
30153021
"location":"header",
30163022
"locationName":"x-amz-consistency-level"
3023+
},
3024+
"FacetFilter":{
3025+
"shape":"SchemaFacet",
3026+
"documentation":"<p>Used to filter the list of object attributes associated with a certain facet.</p>"
30173027
}
30183028
}
30193029
},

‎clients/clouddirectory.d.ts

+8
Original file line numberDiff line numberDiff line change
@@ -639,6 +639,10 @@ declare namespace CloudDirectory {
639639
* Maximum number of items to be retrieved in a single call. This is an approximate number.
640640
*/
641641
MaxResults?: NumberResults;
642+
/**
643+
* Used to filter the list of object attributes associated with a certain facet.
644+
*/
645+
FacetFilter?: SchemaFacet;
642646
}
643647
export interface BatchListObjectAttributesResponse {
644648
/**
@@ -1480,6 +1484,10 @@ declare namespace CloudDirectory {
14801484
* Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.
14811485
*/
14821486
ConsistencyLevel?: ConsistencyLevel;
1487+
/**
1488+
* Used to filter the list of object attributes associated with a certain facet.
1489+
*/
1490+
FacetFilter?: SchemaFacet;
14831491
}
14841492
export interface ListObjectAttributesResponse {
14851493
/**

‎dist/aws-sdk.js

+7,471-7,471
Large diffs are not rendered by default.

‎dist/aws-sdk.min.js

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/core.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ AWS.util.update(AWS, {
1717
/**
1818
* @constant
1919
*/
20-
VERSION: '2.35.0',
20+
VERSION: '2.36.0',
2121

2222
/**
2323
* @api private

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "aws-sdk",
33
"description": "AWS SDK for JavaScript",
4-
"version": "2.35.0",
4+
"version": "2.36.0",
55
"author": {
66
"name": "Amazon Web Services",
77
"email": "",

0 commit comments

Comments
 (0)
Please sign in to comment.