Skip to content

Commit

Permalink
Release v1.15.45
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Sep 28, 2018
1 parent 2c6fb07 commit a8ff9e4
Show file tree
Hide file tree
Showing 8 changed files with 131 additions and 6 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.15.45 (2018-09-28)
===

### Service Client Updates
* `service/codestar`: Updates service API and documentation
* This release enables tagging CodeStar Projects at creation. The CreateProject API now includes optional tags parameter.
* `service/ec2`: Updates service API
* You can now use EC2 High Memory instances with 6 TiB memory (u-6tb1.metal), 9 TiB memory (u-9tb1.metal), and 12 TiB memory (u-12tb1.metal), which are ideal for running large in-memory databases, including production deployments of SAP HANA. These instances offer 448 logical processors, where each logical processor is a hyperthread on 224 cores. These instance deliver high networking throughput and lower latency with up to 25 Gbps of aggregate network bandwidth using Elastic Network Adapter (ENA)-based Enhanced Networking. These instances are EBS-Optimized by default, and support encrypted and unencrypted EBS volumes. This instance is only available in host-tenancy. You will need an EC2 Dedicated Host for this instance type to launch an instance.

Release v1.15.44 (2018-09-27)
===

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.15.44"
const SDKVersion = "1.15.45"
29 changes: 25 additions & 4 deletions models/apis/codestar/2017-04-19/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"protocol":"json",
"serviceAbbreviation":"CodeStar",
"serviceFullName":"AWS CodeStar",
"serviceId":"CodeStar",
"signatureVersion":"v4",
"targetPrefix":"CodeStar_20170419",
"uid":"codestar-2017-04-19"
Expand Down Expand Up @@ -321,7 +322,8 @@
"name":{"shape":"ProjectName"},
"id":{"shape":"ProjectId"},
"description":{"shape":"ProjectDescription"},
"clientRequestToken":{"shape":"ClientRequestToken"}
"clientRequestToken":{"shape":"ClientRequestToken"},
"tags":{"shape":"Tags"}
}
},
"CreateProjectResult":{
Expand Down Expand Up @@ -412,7 +414,8 @@
"clientRequestToken":{"shape":"ClientRequestToken"},
"createdTimeStamp":{"shape":"CreatedTimestamp"},
"stackId":{"shape":"StackId"},
"projectTemplateId":{"shape":"ProjectTemplateId"}
"projectTemplateId":{"shape":"ProjectTemplateId"},
"status":{"shape":"ProjectStatus"}
}
},
"DescribeUserProfileRequest":{
Expand Down Expand Up @@ -632,6 +635,14 @@
},
"exception":true
},
"ProjectStatus":{
"type":"structure",
"required":["state"],
"members":{
"state":{"shape":"State"},
"reason":{"shape":"Reason"}
}
},
"ProjectSummary":{
"type":"structure",
"members":{
Expand All @@ -642,12 +653,17 @@
"ProjectTemplateId":{
"type":"string",
"min":1,
"pattern":"^arn:aws[^:\\s]{0,5}:codestar:[^:\\s]+::project-template\\/[a-z0-9-]+$"
"pattern":"^arn:aws[^:\\s]{0,5}:codestar:[^:\\s]+::project-template(\\/(github|codecommit))?\\/[a-z0-9-]+$"
},
"ProjectsList":{
"type":"list",
"member":{"shape":"ProjectSummary"}
},
"Reason":{
"type":"string",
"max":1024,
"pattern":"^$|^\\S(.*\\S)?$"
},
"RemoteAccessAllowed":{"type":"boolean"},
"Resource":{
"type":"structure",
Expand Down Expand Up @@ -678,6 +694,10 @@
"type":"string",
"pattern":"^arn:aws[^:\\s]*:cloudformation:[^:\\s]+:[0-9]{12}:stack\\/[^:\\s]+\\/[^:\\s]+$"
},
"State":{
"type":"string",
"pattern":"^(CreateInProgress|CreateComplete|CreateFailed|DeleteComplete|DeleteFailed|DeleteInProgress|UpdateComplete|UpdateInProgress|UpdateFailed|Unknown)$"
},
"TagKey":{
"type":"string",
"max":128,
Expand Down Expand Up @@ -841,7 +861,8 @@
"type":"string",
"max":64,
"min":1,
"pattern":"^\\S(.*\\S)?$"
"pattern":"^\\S(.*\\S)?$",
"sensitive":true
},
"UserProfileNotFoundException":{
"type":"structure",
Expand Down
19 changes: 19 additions & 0 deletions models/apis/codestar/2017-04-19/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,12 @@
"refs": {
}
},
"ProjectStatus": {
"base": "<p>An indication of whether a project creation or deletion is failed or successful.</p>",
"refs": {
"DescribeProjectResult$status": "<p>The project creation or deletion status.</p>"
}
},
"ProjectSummary": {
"base": "<p>Information about the metadata for a project.</p>",
"refs": {
Expand All @@ -326,6 +332,12 @@
"ListProjectsResult$projects": "<p>A list of projects.</p>"
}
},
"Reason": {
"base": null,
"refs": {
"ProjectStatus$reason": "<p>In the case of a project creation or deletion failure, a reason for the failure.</p>"
}
},
"RemoteAccessAllowed": {
"base": null,
"refs": {
Expand Down Expand Up @@ -380,6 +392,12 @@
"DescribeProjectResult$stackId": "<p>The ID of the primary stack in AWS CloudFormation used to generate resources for the project.</p>"
}
},
"State": {
"base": null,
"refs": {
"ProjectStatus$state": "<p>The phase of completion for a project creation or deletion.</p>"
}
},
"TagKey": {
"base": null,
"refs": {
Expand Down Expand Up @@ -412,6 +430,7 @@
"Tags": {
"base": null,
"refs": {
"CreateProjectRequest$tags": "<p>The tags created for the project.</p>",
"ListTagsForProjectResult$tags": "<p>The tags for the project.</p>",
"TagProjectRequest$tags": "<p>The tags you want to add to the project.</p>",
"TagProjectResult$tags": "<p>The tags for the project.</p>"
Expand Down
11 changes: 11 additions & 0 deletions models/apis/codestar/2017-04-19/smoke.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": 1,
"defaultRegion": "us-west-2",
"testCases": [
{
"operationName": "ListProjects",
"input": {},
"errorExpectedFromService": false
}
]
}
5 changes: 4 additions & 1 deletion models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -11815,7 +11815,10 @@
"z1d.2xlarge",
"z1d.3xlarge",
"z1d.6xlarge",
"z1d.12xlarge"
"z1d.12xlarge",
"u-6tb1.metal",
"u-9tb1.metal",
"u-12tb1.metal"
]
},
"InstanceTypeList":{
Expand Down
53 changes: 53 additions & 0 deletions service/codestar/api.go

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

9 changes: 9 additions & 0 deletions service/ec2/api.go

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

0 comments on commit a8ff9e4

Please sign in to comment.