Skip to content

Commit

Permalink
Merge branch 'release-1.11.8'
Browse files Browse the repository at this point in the history
* release-1.11.8:
  Bumping version to 1.11.8
  Update to latest models
  • Loading branch information
awstools committed Sep 5, 2018
2 parents beb90cb + deb0a74 commit 5a57ccf
Show file tree
Hide file tree
Showing 9 changed files with 282 additions and 83 deletions.
27 changes: 27 additions & 0 deletions .changes/1.11.8.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"category": "``rds``",
"description": "Update rds client to latest version",
"type": "api-change"
},
{
"category": "``s3``",
"description": "Update s3 client to latest version",
"type": "api-change"
},
{
"category": "``appstream``",
"description": "Update appstream client to latest version",
"type": "api-change"
},
{
"category": "``dynamodb``",
"description": "Update dynamodb client to latest version",
"type": "api-change"
},
{
"category": "``elb``",
"description": "Update elb 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.11.8
======

* api-change:``rds``: Update rds client to latest version
* api-change:``s3``: Update s3 client to latest version
* api-change:``appstream``: Update appstream client to latest version
* api-change:``dynamodb``: Update dynamodb client to latest version
* api-change:``elb``: Update elb client to latest version


1.11.7
======

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.11.7'
__version__ = '1.11.8'


class NullHandler(logging.Handler):
Expand Down
55 changes: 52 additions & 3 deletions botocore/data/appstream/2016-12-01/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@
"errors":[
{"shape":"ResourceNotFoundException"}
],
"documentation":"<p>Retrieves a list that describes the permissions for a private image that you own. </p>"
"documentation":"<p>Retrieves a list that describes the permissions for shared AWS account IDs on a private image that you own. </p>"
},
"DescribeImages":{
"name":"DescribeImages",
Expand All @@ -310,7 +310,7 @@
{"shape":"InvalidParameterCombinationException"},
{"shape":"ResourceNotFoundException"}
],
"documentation":"<p>Retrieves a list that describes one or more specified images, if the image names are provided. Otherwise, all images in the account are described.</p>"
"documentation":"<p>Retrieves a list that describes one or more specified images, if the image names or image ARNs are provided. Otherwise, all images in the account are described.</p>"
},
"DescribeSessions":{
"name":"DescribeSessions",
Expand Down Expand Up @@ -616,6 +616,39 @@
},
"documentation":"<p>Describes an application in the application catalog.</p>"
},
"ApplicationSettings":{
"type":"structure",
"required":["Enabled"],
"members":{
"Enabled":{
"shape":"Boolean",
"documentation":"<p>Enables or disables persistent application settings for users during their streaming sessions. </p>"
},
"SettingsGroup":{
"shape":"SettingsGroup",
"documentation":"<p>The path prefix for the S3 bucket where users’ persistent application settings are stored. You can allow the same persistent application settings to be used across multiple stacks by specifying the same settings group for each stack. </p>"
}
},
"documentation":"<p>The persistent application settings for users of a stack.</p>"
},
"ApplicationSettingsResponse":{
"type":"structure",
"members":{
"Enabled":{
"shape":"Boolean",
"documentation":"<p>Specifies whether persistent application settings are enabled for users during their streaming sessions.</p>"
},
"SettingsGroup":{
"shape":"SettingsGroup",
"documentation":"<p>The path prefix for the S3 bucket where users’ persistent application settings are stored.</p>"
},
"S3BucketName":{
"shape":"String",
"documentation":"<p>The S3 bucket where users’ persistent application settings are stored. When persistent application settings are enabled for the first time for an account in an AWS Region, an S3 bucket is created. The bucket is unique to the AWS account and the Region. </p>"
}
},
"documentation":"<p>Describes the persistent application settings for users of a stack.</p>"
},
"Applications":{
"type":"list",
"member":{"shape":"Application"}
Expand Down Expand Up @@ -970,6 +1003,10 @@
"UserSettings":{
"shape":"UserSettingList",
"documentation":"<p>The actions that are enabled or disabled for users during their streaming sessions. By default, these actions are enabled. </p>"
},
"ApplicationSettings":{
"shape":"ApplicationSettings",
"documentation":"<p>The persistent application settings for users of a stack. When these settings are enabled, changes that users make to applications and Windows settings are automatically saved after each session and applied to the next session.</p>"
}
}
},
Expand Down Expand Up @@ -1270,7 +1307,7 @@
"members":{
"Names":{
"shape":"StringList",
"documentation":"<p>The names of the images to describe.</p>"
"documentation":"<p>The names of the public or private images to describe.</p>"
},
"Arns":{
"shape":"ArnList",
Expand Down Expand Up @@ -2190,6 +2227,10 @@
"EXPIRED"
]
},
"SettingsGroup":{
"type":"string",
"max":100
},
"SharedImagePermissions":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -2255,6 +2296,10 @@
"UserSettings":{
"shape":"UserSettingList",
"documentation":"<p>The actions that are enabled or disabled for users during their streaming sessions. By default these actions are enabled.</p>"
},
"ApplicationSettings":{
"shape":"ApplicationSettingsResponse",
"documentation":"<p>The persistent application settings for users of the stack.</p>"
}
},
"documentation":"<p>Describes a stack.</p>"
Expand Down Expand Up @@ -2666,6 +2711,10 @@
"UserSettings":{
"shape":"UserSettingList",
"documentation":"<p>The actions that are enabled or disabled for users during their streaming sessions. By default, these actions are enabled.</p>"
},
"ApplicationSettings":{
"shape":"ApplicationSettings",
"documentation":"<p>The persistent application settings for users of a stack. When these settings are enabled, changes that users make to applications and Windows settings are automatically saved after each session and applied to the next session.</p>"
}
}
},
Expand Down

0 comments on commit 5a57ccf

Please sign in to comment.