Skip to content

Commit

Permalink
Release v1.19.33
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed May 17, 2019
1 parent 9da5636 commit 0db84dc
Show file tree
Hide file tree
Showing 9 changed files with 990 additions and 89 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Release v1.19.33 (2019-05-17)
===

### Service Client Updates
* `service/appstream`: Updates service API and documentation
* Includes APIs for managing subscriptions to AppStream 2.0 usage reports and configuring idle disconnect timeouts on AppStream 2.0 fleets.
* `aws/endpoints`: Updated Regions and Endpoints metadata.

Release v1.19.32 (2019-05-16)
===

Expand Down
7 changes: 7 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

// SDKVersion is the version of this SDK
const SDKVersion = "1.19.32"
const SDKVersion = "1.19.33"
124 changes: 120 additions & 4 deletions models/apis/appstream/2016-12-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,18 @@
{"shape":"InvalidParameterCombinationException"}
]
},
"CreateUsageReportSubscription":{
"name":"CreateUsageReportSubscription",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"CreateUsageReportSubscriptionRequest"},
"output":{"shape":"CreateUsageReportSubscriptionResult"},
"errors":[
{"shape":"InvalidAccountStatusException"}
]
},
"CreateUser":{
"name":"CreateUser",
"http":{
Expand Down Expand Up @@ -269,6 +281,19 @@
{"shape":"ConcurrentModificationException"}
]
},
"DeleteUsageReportSubscription":{
"name":"DeleteUsageReportSubscription",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteUsageReportSubscriptionRequest"},
"output":{"shape":"DeleteUsageReportSubscriptionResult"},
"errors":[
{"shape":"InvalidAccountStatusException"},
{"shape":"ResourceNotFoundException"}
]
},
"DeleteUser":{
"name":"DeleteUser",
"http":{
Expand Down Expand Up @@ -366,6 +391,19 @@
{"shape":"ResourceNotFoundException"}
]
},
"DescribeUsageReportSubscriptions":{
"name":"DescribeUsageReportSubscriptions",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeUsageReportSubscriptionsRequest"},
"output":{"shape":"DescribeUsageReportSubscriptionsResult"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"InvalidAccountStatusException"}
]
},
"DescribeUserStackAssociations":{
"name":"DescribeUserStackAssociations",
"http":{
Expand Down Expand Up @@ -619,7 +657,8 @@
{"shape":"LimitExceededException"},
{"shape":"InvalidAccountStatusException"},
{"shape":"IncompatibleImageException"},
{"shape":"OperationNotPermittedException"}
{"shape":"OperationNotPermittedException"},
{"shape":"ConcurrentModificationException"}
]
}
},
Expand Down Expand Up @@ -836,7 +875,8 @@
"DisplayName":{"shape":"DisplayName"},
"EnableDefaultInternetAccess":{"shape":"BooleanObject"},
"DomainJoinInfo":{"shape":"DomainJoinInfo"},
"Tags":{"shape":"Tags"}
"Tags":{"shape":"Tags"},
"IdleDisconnectTimeoutInSeconds":{"shape":"Integer"}
}
},
"CreateFleetResult":{
Expand Down Expand Up @@ -930,6 +970,18 @@
"Expires":{"shape":"Timestamp"}
}
},
"CreateUsageReportSubscriptionRequest":{
"type":"structure",
"members":{
}
},
"CreateUsageReportSubscriptionResult":{
"type":"structure",
"members":{
"S3BucketName":{"shape":"String"},
"Schedule":{"shape":"UsageReportSchedule"}
}
},
"CreateUserRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -1027,6 +1079,16 @@
"members":{
}
},
"DeleteUsageReportSubscriptionRequest":{
"type":"structure",
"members":{
}
},
"DeleteUsageReportSubscriptionResult":{
"type":"structure",
"members":{
}
},
"DeleteUserRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -1164,6 +1226,20 @@
"NextToken":{"shape":"String"}
}
},
"DescribeUsageReportSubscriptionsRequest":{
"type":"structure",
"members":{
"MaxResults":{"shape":"Integer"},
"NextToken":{"shape":"String"}
}
},
"DescribeUsageReportSubscriptionsResult":{
"type":"structure",
"members":{
"UsageReportSubscriptions":{"shape":"UsageReportSubscriptionList"},
"NextToken":{"shape":"String"}
}
},
"DescribeUserStackAssociationsRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1331,7 +1407,8 @@
"CreatedTime":{"shape":"Timestamp"},
"FleetErrors":{"shape":"FleetErrors"},
"EnableDefaultInternetAccess":{"shape":"BooleanObject"},
"DomainJoinInfo":{"shape":"DomainJoinInfo"}
"DomainJoinInfo":{"shape":"DomainJoinInfo"},
"IdleDisconnectTimeoutInSeconds":{"shape":"Integer"}
}
},
"FleetAttribute":{
Expand Down Expand Up @@ -1547,6 +1624,17 @@
},
"exception":true
},
"LastReportGenerationExecutionError":{
"type":"structure",
"members":{
"ErrorCode":{"shape":"UsageReportExecutionErrorCode"},
"ErrorMessage":{"shape":"String"}
}
},
"LastReportGenerationExecutionErrors":{
"type":"list",
"member":{"shape":"LastReportGenerationExecutionError"}
},
"LimitExceededException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2020,6 +2108,7 @@
"DisplayName":{"shape":"DisplayName"},
"EnableDefaultInternetAccess":{"shape":"BooleanObject"},
"DomainJoinInfo":{"shape":"DomainJoinInfo"},
"IdleDisconnectTimeoutInSeconds":{"shape":"Integer"},
"AttributesToDelete":{"shape":"FleetAttributes"}
}
},
Expand Down Expand Up @@ -2072,6 +2161,31 @@
"Stack":{"shape":"Stack"}
}
},
"UsageReportExecutionErrorCode":{
"type":"string",
"enum":[
"RESOURCE_NOT_FOUND",
"ACCESS_DENIED",
"INTERNAL_SERVICE_ERROR"
]
},
"UsageReportSchedule":{
"type":"string",
"enum":["DAILY"]
},
"UsageReportSubscription":{
"type":"structure",
"members":{
"S3BucketName":{"shape":"String"},
"Schedule":{"shape":"UsageReportSchedule"},
"LastGeneratedReportDate":{"shape":"Timestamp"},
"SubscriptionErrors":{"shape":"LastReportGenerationExecutionErrors"}
}
},
"UsageReportSubscriptionList":{
"type":"list",
"member":{"shape":"UsageReportSubscription"}
},
"User":{
"type":"structure",
"required":["AuthenticationType"],
Expand Down Expand Up @@ -2153,7 +2267,9 @@
},
"UserStackAssociationList":{
"type":"list",
"member":{"shape":"UserStackAssociation"}
"member":{"shape":"UserStackAssociation"},
"max":25,
"min":1
},
"Username":{
"type":"string",
Expand Down
Loading

0 comments on commit 0db84dc

Please sign in to comment.