Skip to content

Commit

Permalink
Release v1.14.6
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Jun 13, 2018
1 parent d6a1221 commit 92c96c4
Show file tree
Hide file tree
Showing 8 changed files with 378 additions and 144 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Release v1.14.6 (2018-06-13)
===

### Service Client Updates
* `service/servicecatalog`: Updates service API
* Introduced new length limitations for few of the product fields.
* `service/ssm`: Updates service API and documentation
* Added support for new parameter, CloudWatchOutputConfig, for SendCommand API. Users can now have RunCommand output sent to CloudWatchLogs.

Release v1.14.5 (2018-06-12)
===

Expand Down
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.14.5"
const SDKVersion = "1.14.6"
33 changes: 26 additions & 7 deletions models/apis/servicecatalog/2015-12-10/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1955,7 +1955,8 @@
"enum":[
"CLOUD_FORMATION_TEMPLATE",
"MARKETPLACE"
]
],
"max":8191
},
"ProductViewAggregationType":{"type":"string"},
"ProductViewAggregationValue":{
Expand Down Expand Up @@ -2007,9 +2008,18 @@
"key":{"shape":"ProductViewFilterBy"},
"value":{"shape":"ProductViewFilterValues"}
},
"ProductViewName":{"type":"string"},
"ProductViewOwner":{"type":"string"},
"ProductViewShortDescription":{"type":"string"},
"ProductViewName":{
"type":"string",
"max":8191
},
"ProductViewOwner":{
"type":"string",
"max":8191
},
"ProductViewShortDescription":{
"type":"string",
"max":8191
},
"ProductViewSortBy":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -2619,9 +2629,18 @@
"type":"string",
"pattern":"[\\u0009\\u000a\\u000d\\u0020-\\uD7FF\\uE000-\\uFFFD]*"
},
"SupportDescription":{"type":"string"},
"SupportEmail":{"type":"string"},
"SupportUrl":{"type":"string"},
"SupportDescription":{
"type":"string",
"max":8191
},
"SupportEmail":{
"type":"string",
"max":254
},
"SupportUrl":{
"type":"string",
"max":2083
},
"Tag":{
"type":"structure",
"required":[
Expand Down
28 changes: 24 additions & 4 deletions models/apis/ssm/2014-11-06/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1950,6 +1950,20 @@
"max":64,
"min":1
},
"CloudWatchLogGroupName":{
"type":"string",
"max":512,
"min":1,
"pattern":"[\\.\\-_/#A-Za-z0-9]+"
},
"CloudWatchOutputConfig":{
"type":"structure",
"members":{
"CloudWatchLogGroupName":{"shape":"CloudWatchLogGroupName"},
"CloudWatchOutputEnabled":{"shape":"CloudWatchOutputEnabled"}
}
},
"CloudWatchOutputEnabled":{"type":"boolean"},
"Command":{
"type":"structure",
"members":{
Expand All @@ -1972,8 +1986,10 @@
"TargetCount":{"shape":"TargetCount"},
"CompletedCount":{"shape":"CompletedCount"},
"ErrorCount":{"shape":"ErrorCount"},
"DeliveryTimedOutCount":{"shape":"DeliveryTimedOutCount"},
"ServiceRole":{"shape":"ServiceRole"},
"NotificationConfig":{"shape":"NotificationConfig"}
"NotificationConfig":{"shape":"NotificationConfig"},
"CloudWatchOutputConfig":{"shape":"CloudWatchOutputConfig"}
}
},
"CommandFilter":{
Expand Down Expand Up @@ -2027,7 +2043,8 @@
"StandardErrorUrl":{"shape":"Url"},
"CommandPlugins":{"shape":"CommandPluginList"},
"ServiceRole":{"shape":"ServiceRole"},
"NotificationConfig":{"shape":"NotificationConfig"}
"NotificationConfig":{"shape":"NotificationConfig"},
"CloudWatchOutputConfig":{"shape":"CloudWatchOutputConfig"}
}
},
"CommandInvocationList":{
Expand Down Expand Up @@ -2601,6 +2618,7 @@
"members":{
}
},
"DeliveryTimedOutCount":{"type":"integer"},
"DeregisterManagedInstanceRequest":{
"type":"structure",
"required":["InstanceId"],
Expand Down Expand Up @@ -3522,7 +3540,8 @@
"StandardOutputContent":{"shape":"StandardOutputContent"},
"StandardOutputUrl":{"shape":"Url"},
"StandardErrorContent":{"shape":"StandardErrorContent"},
"StandardErrorUrl":{"shape":"Url"}
"StandardErrorUrl":{"shape":"Url"},
"CloudWatchOutputConfig":{"shape":"CloudWatchOutputConfig"}
}
},
"GetDefaultPatchBaselineRequest":{
Expand Down Expand Up @@ -6444,7 +6463,8 @@
"MaxConcurrency":{"shape":"MaxConcurrency"},
"MaxErrors":{"shape":"MaxErrors"},
"ServiceRoleArn":{"shape":"ServiceRole"},
"NotificationConfig":{"shape":"NotificationConfig"}
"NotificationConfig":{"shape":"NotificationConfig"},
"CloudWatchOutputConfig":{"shape":"CloudWatchOutputConfig"}
}
},
"SendCommandResult":{
Expand Down
93 changes: 60 additions & 33 deletions models/apis/ssm/2014-11-06/docs-2.json

Large diffs are not rendered by default.

0 comments on commit 92c96c4

Please sign in to comment.