Skip to content

Commit

Permalink
Release v1.4.17
Browse files Browse the repository at this point in the history
Service Model Updates
---
* `service/acm`: Update service API, and documentation.
  * This change allows users to import third-party SSL/TLS certificates into ACM.
* `service/elasticbeanstalk`: Update service API, documentation, and pagination.
  * Elastic Beanstalk DescribeApplicationVersions API is being updated to support pagination.
* `service/gamelift`: Update service API, and documentation.
  * New APIs to protect game developer resource (builds, alias, fleets, instances, game sessions and player sessions) against abuse.

SDK Features
---
* `service/s3`: Add support for accelerate with dualstack (aws#887)
  • Loading branch information
jasdel committed Oct 13, 2016
1 parent 7cfb296 commit 60adadd
Show file tree
Hide file tree
Showing 20 changed files with 2,377 additions and 1,671 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
Release v1.4.17
===

Service Model Updates
---
* `service/acm`: Update service API, and documentation.
* This change allows users to import third-party SSL/TLS certificates into ACM.
* `service/elasticbeanstalk`: Update service API, documentation, and pagination.
* Elastic Beanstalk DescribeApplicationVersions API is being updated to support pagination.
* `service/gamelift`: Update service API, and documentation.
* New APIs to protect game developer resource (builds, alias, fleets, instances, game sessions and player sessions) against abuse.

SDK Features
---
* `service/s3`: Add support for accelerate with dualstack [#887](https://github.com/aws/aws-sdk-go/issues/887)

Release v1.4.16
===

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.4.16"
const SDKVersion = "1.4.17"
62 changes: 60 additions & 2 deletions models/apis/acm/2015-12-08/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,19 @@
{"shape":"InvalidArnException"}
]
},
"ImportCertificate":{
"name":"ImportCertificate",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ImportCertificateRequest"},
"output":{"shape":"ImportCertificateResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"LimitExceededException"}
]
},
"ListCertificates":{
"name":"ListCertificates",
"http":{
Expand Down Expand Up @@ -148,16 +161,26 @@
},
"CertificateBody":{
"type":"string",
"max":524288,
"max":32768,
"min":1,
"pattern":"-{5}BEGIN CERTIFICATE-{5}\\u000D?\\u000A([A-Za-z0-9/+]{64}\\u000D?\\u000A)*[A-Za-z0-9/+]{1,64}={0,2}\\u000D?\\u000A-{5}END CERTIFICATE-{5}(\\u000D?\\u000A)?"
},
"CertificateBodyBlob":{
"type":"blob",
"max":32768,
"min":1
},
"CertificateChain":{
"type":"string",
"max":2097152,
"min":1,
"pattern":"(-{5}BEGIN CERTIFICATE-{5}\\u000D?\\u000A([A-Za-z0-9/+]{64}\\u000D?\\u000A)*[A-Za-z0-9/+]{1,64}={0,2}\\u000D?\\u000A-{5}END CERTIFICATE-{5}\\u000D?\\u000A)*-{5}BEGIN CERTIFICATE-{5}\\u000D?\\u000A([A-Za-z0-9/+]{64}\\u000D?\\u000A)*[A-Za-z0-9/+]{1,64}={0,2}\\u000D?\\u000A-{5}END CERTIFICATE-{5}(\\u000D?\\u000A)?"
},
"CertificateChainBlob":{
"type":"blob",
"max":2097152,
"min":1
},
"CertificateDetail":{
"type":"structure",
"members":{
Expand All @@ -170,6 +193,7 @@
"Issuer":{"shape":"String"},
"CreatedAt":{"shape":"TStamp"},
"IssuedAt":{"shape":"TStamp"},
"ImportedAt":{"shape":"TStamp"},
"Status":{"shape":"CertificateStatus"},
"RevokedAt":{"shape":"TStamp"},
"RevocationReason":{"shape":"RevocationReason"},
Expand All @@ -178,7 +202,8 @@
"KeyAlgorithm":{"shape":"KeyAlgorithm"},
"SignatureAlgorithm":{"shape":"String"},
"InUseBy":{"shape":"InUseList"},
"FailureReason":{"shape":"FailureReason"}
"FailureReason":{"shape":"FailureReason"},
"Type":{"shape":"CertificateType"}
}
},
"CertificateStatus":{
Expand Down Expand Up @@ -208,6 +233,13 @@
"type":"list",
"member":{"shape":"CertificateSummary"}
},
"CertificateType":{
"type":"string",
"enum":[
"IMPORTED",
"AMAZON_ISSUED"
]
},
"DeleteCertificateRequest":{
"type":"structure",
"required":["CertificateArn"],
Expand Down Expand Up @@ -302,6 +334,25 @@
"min":1,
"pattern":"\\w+"
},
"ImportCertificateRequest":{
"type":"structure",
"required":[
"Certificate",
"PrivateKey"
],
"members":{
"CertificateArn":{"shape":"Arn"},
"Certificate":{"shape":"CertificateBodyBlob"},
"PrivateKey":{"shape":"PrivateKeyBlob"},
"CertificateChain":{"shape":"CertificateChainBlob"}
}
},
"ImportCertificateResponse":{
"type":"structure",
"members":{
"CertificateArn":{"shape":"Arn"}
}
},
"InUseList":{
"type":"list",
"member":{"shape":"String"}
Expand Down Expand Up @@ -338,6 +389,7 @@
"type":"string",
"enum":[
"RSA_2048",
"RSA_1024",
"EC_prime256v1"
]
},
Expand Down Expand Up @@ -387,6 +439,12 @@
"min":1,
"pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]*"
},
"PrivateKeyBlob":{
"type":"blob",
"max":524288,
"min":1,
"sensitive":true
},
"RemoveTagsFromCertificateRequest":{
"type":"structure",
"required":[
Expand Down
66 changes: 52 additions & 14 deletions models/apis/acm/2015-12-08/docs-2.json

Large diffs are not rendered by default.

36 changes: 34 additions & 2 deletions models/apis/elasticbeanstalk/2010-12-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,7 @@
"ApplicationName":{"shape":"ApplicationName"},
"Description":{"shape":"Description"},
"VersionLabel":{"shape":"VersionLabel"},
"SourceBuildInformation":{"shape":"SourceBuildInformation"},
"SourceBundle":{"shape":"S3Location"},
"DateCreated":{"shape":"CreationDate"},
"DateUpdated":{"shape":"UpdateDate"},
Expand All @@ -596,7 +597,8 @@
"ApplicationVersionDescriptionsMessage":{
"type":"structure",
"members":{
"ApplicationVersions":{"shape":"ApplicationVersionDescriptionList"}
"ApplicationVersions":{"shape":"ApplicationVersionDescriptionList"},
"NextToken":{"shape":"Token"}
}
},
"ApplicationVersionProccess":{"type":"boolean"},
Expand Down Expand Up @@ -811,6 +813,7 @@
"ApplicationName":{"shape":"ApplicationName"},
"VersionLabel":{"shape":"VersionLabel"},
"Description":{"shape":"Description"},
"SourceBuildInformation":{"shape":"SourceBuildInformation"},
"SourceBundle":{"shape":"S3Location"},
"AutoCreateApplication":{"shape":"AutoCreateApplication"},
"Process":{"shape":"ApplicationVersionProccess"}
Expand Down Expand Up @@ -924,7 +927,9 @@
"type":"structure",
"members":{
"ApplicationName":{"shape":"ApplicationName"},
"VersionLabels":{"shape":"VersionLabelsList"}
"VersionLabels":{"shape":"VersionLabelsList"},
"MaxRecords":{"shape":"MaxRecords"},
"NextToken":{"shape":"Token"}
}
},
"DescribeApplicationsMessage":{
Expand Down Expand Up @@ -1651,6 +1656,19 @@
"type":"string",
"max":100
},
"SourceBuildInformation":{
"type":"structure",
"required":[
"SourceType",
"SourceRepository",
"SourceLocation"
],
"members":{
"SourceType":{"shape":"SourceType"},
"SourceRepository":{"shape":"SourceRepository"},
"SourceLocation":{"shape":"SourceLocation"}
}
},
"SourceBundleDeletionException":{
"type":"structure",
"members":{
Expand All @@ -1669,6 +1687,20 @@
"TemplateName":{"shape":"ConfigurationTemplateName"}
}
},
"SourceLocation":{
"type":"string",
"max":255,
"min":3,
"pattern":".+/.+"
},
"SourceRepository":{
"type":"string",
"enum":["CodeCommit"]
},
"SourceType":{
"type":"string",
"enum":["Git"]
},
"StatusCodes":{
"type":"structure",
"members":{
Expand Down

0 comments on commit 60adadd

Please sign in to comment.