Skip to content

Commit

Permalink
Merge pull request aws#1497 from aws/release
Browse files Browse the repository at this point in the history
Release v1.10.35
  • Loading branch information
awstools authored Aug 30, 2017
2 parents d0fb36b + cb88a2c commit 35cdb96
Show file tree
Hide file tree
Showing 9 changed files with 352 additions and 75 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.10.35 (2017-08-30)
===

### Service Client Updates
* `service/application-autoscaling`: Updates service API and documentation
* `service/organizations`: Updates service API and documentation
* The exception ConstraintViolationException now contains a new reason subcode MASTERACCOUNT_MISSING_CONTACT_INFO to make it easier to understand why attempting to remove an account from an Organization can fail. We also improved several other of the text descriptions and examples.

Release v1.10.34 (2017-08-29)
===

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.10.34"
const SDKVersion = "1.10.35"
4 changes: 3 additions & 1 deletion models/apis/application-autoscaling/2016-02-06/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@
"NextToken":{"shape":"XmlString"}
}
},
"DisableScaleIn":{"type":"boolean"},
"ErrorMessage":{"type":"string"},
"FailedResourceAccessException":{
"type":"structure",
Expand Down Expand Up @@ -582,7 +583,8 @@
"PredefinedMetricSpecification":{"shape":"PredefinedMetricSpecification"},
"CustomizedMetricSpecification":{"shape":"CustomizedMetricSpecification"},
"ScaleOutCooldown":{"shape":"Cooldown"},
"ScaleInCooldown":{"shape":"Cooldown"}
"ScaleInCooldown":{"shape":"Cooldown"},
"DisableScaleIn":{"shape":"DisableScaleIn"}
}
},
"TimestampType":{"type":"timestamp"},
Expand Down
6 changes: 6 additions & 0 deletions models/apis/application-autoscaling/2016-02-06/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,12 @@
"refs": {
}
},
"DisableScaleIn": {
"base": null,
"refs": {
"TargetTrackingScalingPolicyConfiguration$DisableScaleIn": null
}
},
"ErrorMessage": {
"base": null,
"refs": {
Expand Down
3 changes: 2 additions & 1 deletion models/apis/organizations/2016-11-28/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,8 @@
"MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED",
"MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED",
"ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED",
"MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE"
"MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE",
"MASTER_ACCOUNT_MISSING_CONTACT_INFO"
]
},
"CreateAccountFailureReason":{
Expand Down
14 changes: 7 additions & 7 deletions models/apis/organizations/2016-11-28/docs-2.json

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions service/applicationautoscaling/api.go

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

353 changes: 292 additions & 61 deletions service/organizations/api.go

Large diffs are not rendered by default.

29 changes: 25 additions & 4 deletions service/organizations/errors.go

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

0 comments on commit 35cdb96

Please sign in to comment.