Skip to content

Commit

Permalink
Merge branch 'release-1.10.84'
Browse files Browse the repository at this point in the history
* release-1.10.84:
  Bumping version to 1.10.84
  Update to latest models
  • Loading branch information
awstools committed Aug 23, 2018
2 parents 7ff8e55 + e539379 commit 4a75731
Show file tree
Hide file tree
Showing 10 changed files with 1,145 additions and 36 deletions.
27 changes: 27 additions & 0 deletions .changes/1.10.84.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"category": "``iot``",
"description": "Update iot client to latest version",
"type": "api-change"
},
{
"category": "``rekognition``",
"description": "Update rekognition client to latest version",
"type": "api-change"
},
{
"category": "``lex-models``",
"description": "Update lex-models client to latest version",
"type": "api-change"
},
{
"category": "``iotanalytics``",
"description": "Update iotanalytics client to latest version",
"type": "api-change"
},
{
"category": "``medialive``",
"description": "Update medialive client to latest version",
"type": "api-change"
}
]
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
CHANGELOG
=========

1.10.84
=======

* api-change:``iot``: Update iot client to latest version
* api-change:``rekognition``: Update rekognition client to latest version
* api-change:``lex-models``: Update lex-models client to latest version
* api-change:``iotanalytics``: Update iotanalytics client to latest version
* api-change:``medialive``: Update medialive client to latest version


1.10.83
=======

Expand Down
2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import re
import logging

__version__ = '1.10.83'
__version__ = '1.10.84'


class NullHandler(logging.Handler):
Expand Down
64 changes: 62 additions & 2 deletions botocore/data/iot/2015-05-28/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -5157,7 +5157,7 @@
"members":{
"endpointType":{
"shape":"EndpointType",
"documentation":"<p>The endpoint type.</p>",
"documentation":"<p>The endpoint type (such as <code>iot:Data</code>, <code>iot:CredentialProvider</code> and <code>iot:Jobs</code>). </p>",
"location":"querystring",
"locationName":"endpointType"
}
Expand Down Expand Up @@ -6032,6 +6032,10 @@
"thingIndexingConfiguration":{
"shape":"ThingIndexingConfiguration",
"documentation":"<p>Thing indexing configuration.</p>"
},
"thingGroupIndexingConfiguration":{
"shape":"ThingGroupIndexingConfiguration",
"documentation":"<p>The index configuration.</p>"
}
}
},
Expand Down Expand Up @@ -8815,7 +8819,6 @@
},
"QueryString":{
"type":"string",
"max":1000,
"min":1
},
"QueryVersion":{"type":"string"},
Expand Down Expand Up @@ -9427,6 +9430,10 @@
"things":{
"shape":"ThingDocumentList",
"documentation":"<p>The things that match the search query.</p>"
},
"thingGroups":{
"shape":"ThingGroupDocumentList",
"documentation":"<p>The thing groups that match the search query.</p>"
}
}
},
Expand Down Expand Up @@ -10127,12 +10134,60 @@
"max":2028,
"pattern":"[\\p{Graph}\\x20]*"
},
"ThingGroupDocument":{
"type":"structure",
"members":{
"thingGroupName":{
"shape":"ThingGroupName",
"documentation":"<p>The thing group name.</p>"
},
"thingGroupId":{
"shape":"ThingGroupId",
"documentation":"<p>The thing group ID.</p>"
},
"thingGroupDescription":{
"shape":"ThingGroupDescription",
"documentation":"<p>The thing group description.</p>"
},
"attributes":{
"shape":"Attributes",
"documentation":"<p>The thing group attributes.</p>"
},
"parentGroupNames":{
"shape":"ThingGroupNameList",
"documentation":"<p>Parent group names.</p>"
}
},
"documentation":"<p>The thing group search index document.</p>"
},
"ThingGroupDocumentList":{
"type":"list",
"member":{"shape":"ThingGroupDocument"}
},
"ThingGroupId":{
"type":"string",
"max":128,
"min":1,
"pattern":"[a-zA-Z0-9\\-]+"
},
"ThingGroupIndexingConfiguration":{
"type":"structure",
"required":["thingGroupIndexingMode"],
"members":{
"thingGroupIndexingMode":{
"shape":"ThingGroupIndexingMode",
"documentation":"<p>Thing group indexing mode.</p>"
}
},
"documentation":"<p>Thing group indexing configuration.</p>"
},
"ThingGroupIndexingMode":{
"type":"string",
"enum":[
"OFF",
"ON"
]
},
"ThingGroupList":{
"type":"list",
"member":{"shape":"ThingGroupName"}
Expand Down Expand Up @@ -10186,6 +10241,7 @@
"ThingId":{"type":"string"},
"ThingIndexingConfiguration":{
"type":"structure",
"required":["thingIndexingMode"],
"members":{
"thingIndexingMode":{
"shape":"ThingIndexingMode",
Expand Down Expand Up @@ -10660,6 +10716,10 @@
"thingIndexingConfiguration":{
"shape":"ThingIndexingConfiguration",
"documentation":"<p>Thing indexing configuration.</p>"
},
"thingGroupIndexingConfiguration":{
"shape":"ThingGroupIndexingConfiguration",
"documentation":"<p>Thing group indexing configuration.</p>"
}
}
},
Expand Down

0 comments on commit 4a75731

Please sign in to comment.