Skip to content

Commit

Permalink
Release v1.12.54
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Dec 29, 2017
1 parent 793c7ba commit 5db34a6
Show file tree
Hide file tree
Showing 8 changed files with 513 additions and 351 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.12.54 (2017-12-29)
===

### Service Client Updates
* `aws/endpoints`: Updated Regions and Endpoints metadata.
* `service/workspaces`: Updates service API and documentation
* Modify WorkSpaces have been updated with flexible storage and switching of hardware bundles feature. The following configurations have been added to ModifyWorkSpacesProperties: storage and compute. This update provides the capability to configure the storage of a WorkSpace. It also adds the capability of switching hardware bundle of a WorkSpace by specifying an eligible compute (Value, Standard, Performance, Power).

Release v1.12.53 (2017-12-22)
===

Expand Down
1 change: 1 addition & 0 deletions aws/endpoints/defaults.go

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

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.12.53"
const SDKVersion = "1.12.54"
48 changes: 45 additions & 3 deletions models/apis/workspaces/2015-04-08/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,9 @@
"enum":[
"VALUE",
"STANDARD",
"PERFORMANCE"
"PERFORMANCE",
"POWER",
"GRAPHICS"
]
},
"ComputeType":{
Expand Down Expand Up @@ -441,6 +443,32 @@
"max":25,
"min":1
},
"ModificationResourceEnum":{
"type":"string",
"enum":[
"ROOT_VOLUME",
"USER_VOLUME",
"COMPUTE_TYPE"
]
},
"ModificationState":{
"type":"structure",
"members":{
"Resource":{"shape":"ModificationResourceEnum"},
"State":{"shape":"ModificationStateEnum"}
}
},
"ModificationStateEnum":{
"type":"string",
"enum":[
"UPDATE_INITIATED",
"UPDATE_IN_PROGRESS"
]
},
"ModificationStateList":{
"type":"list",
"member":{"shape":"ModificationState"}
},
"ModifyWorkspacePropertiesRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -553,6 +581,13 @@
},
"exception":true
},
"RootStorage":{
"type":"structure",
"members":{
"Capacity":{"shape":"NonEmptyString"}
}
},
"RootVolumeSizeGib":{"type":"integer"},
"RunningMode":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -693,6 +728,7 @@
"Capacity":{"shape":"NonEmptyString"}
}
},
"UserVolumeSizeGib":{"type":"integer"},
"VolumeEncryptionKey":{"type":"string"},
"Workspace":{
"type":"structure",
Expand All @@ -710,7 +746,8 @@
"VolumeEncryptionKey":{"shape":"VolumeEncryptionKey"},
"UserVolumeEncryptionEnabled":{"shape":"BooleanObject"},
"RootVolumeEncryptionEnabled":{"shape":"BooleanObject"},
"WorkspaceProperties":{"shape":"WorkspaceProperties"}
"WorkspaceProperties":{"shape":"WorkspaceProperties"},
"ModificationStates":{"shape":"ModificationStateList"}
}
},
"WorkspaceBundle":{
Expand All @@ -720,6 +757,7 @@
"Name":{"shape":"NonEmptyString"},
"Owner":{"shape":"BundleOwner"},
"Description":{"shape":"Description"},
"RootStorage":{"shape":"RootStorage"},
"UserStorage":{"shape":"UserStorage"},
"ComputeType":{"shape":"ComputeType"}
}
Expand Down Expand Up @@ -790,7 +828,10 @@
"type":"structure",
"members":{
"RunningMode":{"shape":"RunningMode"},
"RunningModeAutoStopTimeoutInMinutes":{"shape":"RunningModeAutoStopTimeoutInMinutes"}
"RunningModeAutoStopTimeoutInMinutes":{"shape":"RunningModeAutoStopTimeoutInMinutes"},
"RootVolumeSizeGib":{"shape":"RootVolumeSizeGib"},
"UserVolumeSizeGib":{"shape":"UserVolumeSizeGib"},
"ComputeTypeName":{"shape":"Compute"}
}
},
"WorkspaceRequest":{
Expand Down Expand Up @@ -831,6 +872,7 @@
"TERMINATING",
"TERMINATED",
"SUSPENDED",
"UPDATING",
"STOPPING",
"STOPPED",
"ERROR"
Expand Down
300 changes: 172 additions & 128 deletions models/apis/workspaces/2015-04-08/docs-2.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions models/endpoints/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -1403,6 +1403,7 @@
"eu-central-1" : { },
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
"sa-east-1" : { },
"us-east-1" : { },
"us-east-2" : { },
Expand Down

0 comments on commit 5db34a6

Please sign in to comment.