Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.10.7 #1386

Merged
merged 1 commit into from
Jul 5, 2017
Merged

v1.10.7 #1386

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Release v1.10.7 (2017-07-05)
===

### Service Client Updates
* `service/monitoring`: Updates service API and documentation
* We are excited to announce the availability of APIs and CloudFormation support for CloudWatch Dashboards. You can use the new dashboard APIs or CloudFormation templates to dynamically build and maintain dashboards to monitor your infrastructure and applications. There are four new dashboard APIs - PutDashboard, GetDashboard, DeleteDashboards, and ListDashboards APIs. PutDashboard is used to create a new dashboard or modify an existing one whereas GetDashboard is the API to get the details of a specific dashboard. ListDashboards and DeleteDashboards are used to get the names or delete multiple dashboards respectively. Getting started with dashboard APIs is similar to any other AWS APIs. The APIs can be accessed through AWS SDK or through CLI tools.
* `service/route53`: Updates service API and documentation
* Bug fix for InvalidChangeBatch exception.

### SDK Enhancements
* `service/s3/s3manager`: adding cleanup function to batch objects [#1375](https://github.com/aws/aws-sdk-go/issues/1375)
* This enhancement will add an After field that will be called after each iteration of the batch operation.

Release v1.10.6 (2017-06-30)
===

Expand Down
2 changes: 0 additions & 2 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
### SDK Features

### SDK Enhancements
* `service/s3/s3manager`: adding cleanup function to batch objects [#1375](https://github.com/aws/aws-sdk-go/issues/1375)
* This enhancement will add an After field that will be called after each iteration of the batch operation.

### SDK Bugs
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.10.6"
const SDKVersion = "1.10.7"
189 changes: 187 additions & 2 deletions models/apis/monitoring/2010-08-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,23 @@
{"shape":"ResourceNotFound"}
]
},
"DeleteDashboards":{
"name":"DeleteDashboards",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteDashboardsInput"},
"output":{
"shape":"DeleteDashboardsOutput",
"resultWrapper":"DeleteDashboardsResult"
},
"errors":[
{"shape":"InvalidParameterValueException"},
{"shape":"DashboardNotFoundError"},
{"shape":"InternalServiceFault"}
]
},
"DescribeAlarmHistory":{
"name":"DescribeAlarmHistory",
"http":{
Expand Down Expand Up @@ -80,6 +97,23 @@
},
"input":{"shape":"EnableAlarmActionsInput"}
},
"GetDashboard":{
"name":"GetDashboard",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetDashboardInput"},
"output":{
"shape":"GetDashboardOutput",
"resultWrapper":"GetDashboardResult"
},
"errors":[
{"shape":"InvalidParameterValueException"},
{"shape":"DashboardNotFoundError"},
{"shape":"InternalServiceFault"}
]
},
"GetMetricStatistics":{
"name":"GetMetricStatistics",
"http":{
Expand All @@ -98,6 +132,22 @@
{"shape":"InternalServiceFault"}
]
},
"ListDashboards":{
"name":"ListDashboards",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListDashboardsInput"},
"output":{
"shape":"ListDashboardsOutput",
"resultWrapper":"ListDashboardsResult"
},
"errors":[
{"shape":"InvalidParameterValueException"},
{"shape":"InternalServiceFault"}
]
},
"ListMetrics":{
"name":"ListMetrics",
"http":{
Expand All @@ -114,6 +164,22 @@
{"shape":"InvalidParameterValueException"}
]
},
"PutDashboard":{
"name":"PutDashboard",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"PutDashboardInput"},
"output":{
"shape":"PutDashboardOutput",
"resultWrapper":"PutDashboardResult"
},
"errors":[
{"shape":"DashboardInvalidInputError"},
{"shape":"InternalServiceFault"}
]
},
"PutMetricAlarm":{
"name":"PutMetricAlarm",
"http":{
Expand Down Expand Up @@ -208,6 +274,65 @@
"LessThanOrEqualToThreshold"
]
},
"DashboardArn":{"type":"string"},
"DashboardBody":{"type":"string"},
"DashboardEntries":{
"type":"list",
"member":{"shape":"DashboardEntry"}
},
"DashboardEntry":{
"type":"structure",
"members":{
"DashboardName":{"shape":"DashboardName"},
"DashboardArn":{"shape":"DashboardArn"},
"LastModified":{"shape":"LastModified"},
"Size":{"shape":"Size"}
}
},
"DashboardErrorMessage":{"type":"string"},
"DashboardInvalidInputError":{
"type":"structure",
"members":{
"message":{"shape":"DashboardErrorMessage"},
"dashboardValidationMessages":{"shape":"DashboardValidationMessages"}
},
"error":{
"code":"InvalidParameterInput",
"httpStatusCode":400,
"senderFault":true
},
"exception":true
},
"DashboardName":{"type":"string"},
"DashboardNamePrefix":{"type":"string"},
"DashboardNames":{
"type":"list",
"member":{"shape":"DashboardName"}
},
"DashboardNotFoundError":{
"type":"structure",
"members":{
"message":{"shape":"DashboardErrorMessage"}
},
"error":{
"code":"ResourceNotFound",
"httpStatusCode":404,
"senderFault":true
},
"exception":true
},
"DashboardValidationMessage":{
"type":"structure",
"members":{
"DataPath":{"shape":"DataPath"},
"Message":{"shape":"Message"}
}
},
"DashboardValidationMessages":{
"type":"list",
"member":{"shape":"DashboardValidationMessage"}
},
"DataPath":{"type":"string"},
"Datapoint":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -248,6 +373,17 @@
"AlarmNames":{"shape":"AlarmNames"}
}
},
"DeleteDashboardsInput":{
"type":"structure",
"members":{
"DashboardNames":{"shape":"DashboardNames"}
}
},
"DeleteDashboardsOutput":{
"type":"structure",
"members":{
}
},
"DescribeAlarmHistoryInput":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -388,6 +524,20 @@
"min":1
},
"FaultDescription":{"type":"string"},
"GetDashboardInput":{
"type":"structure",
"members":{
"DashboardName":{"shape":"DashboardName"}
}
},
"GetDashboardOutput":{
"type":"structure",
"members":{
"DashboardArn":{"shape":"DashboardArn"},
"DashboardBody":{"shape":"DashboardBody"},
"DashboardName":{"shape":"DashboardName"}
}
},
"GetMetricStatisticsInput":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -494,6 +644,7 @@
},
"exception":true
},
"LastModified":{"type":"timestamp"},
"LimitExceededFault":{
"type":"structure",
"members":{
Expand All @@ -506,6 +657,20 @@
},
"exception":true
},
"ListDashboardsInput":{
"type":"structure",
"members":{
"DashboardNamePrefix":{"shape":"DashboardNamePrefix"},
"NextToken":{"shape":"NextToken"}
}
},
"ListDashboardsOutput":{
"type":"structure",
"members":{
"DashboardEntries":{"shape":"DashboardEntries"},
"NextToken":{"shape":"NextToken"}
}
},
"ListMetricsInput":{
"type":"structure",
"members":{
Expand All @@ -531,6 +696,7 @@
"max":100,
"min":1
},
"Message":{"type":"string"},
"Metric":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -616,7 +782,8 @@
"Timestamp":{"shape":"Timestamp"},
"Value":{"shape":"DatapointValue"},
"StatisticValues":{"shape":"StatisticSet"},
"Unit":{"shape":"StandardUnit"}
"Unit":{"shape":"StandardUnit"},
"StorageResolution":{"shape":"StorageResolution"}
}
},
"MetricLabel":{"type":"string"},
Expand Down Expand Up @@ -654,7 +821,20 @@
},
"Period":{
"type":"integer",
"min":60
"min":1
},
"PutDashboardInput":{
"type":"structure",
"members":{
"DashboardName":{"shape":"DashboardName"},
"DashboardBody":{"shape":"DashboardBody"}
}
},
"PutDashboardOutput":{
"type":"structure",
"members":{
"DashboardValidationMessages":{"shape":"DashboardValidationMessages"}
}
},
"PutMetricAlarmInput":{
"type":"structure",
Expand Down Expand Up @@ -735,6 +915,7 @@
"StateReasonData":{"shape":"StateReasonData"}
}
},
"Size":{"type":"long"},
"StandardUnit":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -816,6 +997,10 @@
"max":5,
"min":1
},
"StorageResolution":{
"type":"integer",
"min":1
},
"Threshold":{"type":"double"},
"Timestamp":{"type":"timestamp"},
"TreatMissingData":{
Expand Down
Loading