Skip to content

Commit

Permalink
Release v1.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
xibz committed Mar 9, 2017
1 parent d9caf90 commit 0e9d407
Show file tree
Hide file tree
Showing 16 changed files with 10,200 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Release v1.7.6 (2017-03-09)
===

Service Client Updates
---
* `service/organizations`: Updates service documentation and examples
* Doc-only Update for Organizations: Add SDK Code Snippets
* `service/workdocs`: Adds new service
* The Administrative SDKs for Amazon WorkDocs provides full administrator level access to WorkDocs site resources, allowing developers to integrate their applications to manage WorkDocs users, content and permissions programmatically

Release v1.7.5 (2017-03-08)
===

Expand Down
12 changes: 12 additions & 0 deletions aws/endpoints/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ const (
SwfServiceID = "swf" // Swf.
WafServiceID = "waf" // Waf.
WafRegionalServiceID = "waf-regional" // WafRegional.
WorkdocsServiceID = "workdocs" // Workdocs.
WorkspacesServiceID = "workspaces" // Workspaces.
XrayServiceID = "xray" // Xray.
)
Expand Down Expand Up @@ -1583,6 +1584,17 @@ var awsPartition = partition{
"us-west-2": endpoint{},
},
},
"workdocs": service{

Endpoints: endpoints{
"ap-northeast-1": endpoint{},
"ap-southeast-1": endpoint{},
"ap-southeast-2": endpoint{},
"eu-west-1": endpoint{},
"us-east-1": endpoint{},
"us-west-2": endpoint{},
},
},
"workspaces": service{

Endpoints: endpoints{
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.7.5"
const SDKVersion = "1.7.6"
2 changes: 1 addition & 1 deletion models/apis/organizations/2016-11-28/docs-2.json

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions models/apis/organizations/2016-11-28/examples-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -763,24 +763,32 @@
{
"Arn": "arn:aws:organizations::111111111111:account/o-exampleorgid/111111111111",
"Id": "111111111111",
"JoinedMethod": "INVITED",
"JoinedTimestamp": "20161215T193015Z",
"Name": "Master Account",
"Status": "ACTIVE"
},
{
"Arn": "arn:aws:organizations::111111111111:account/o-exampleorgid/222222222222",
"Id": "222222222222",
"JoinedMethod": "INVITED",
"JoinedTimestamp": "20161215T210221Z",
"Name": "Developer Account",
"Status": "ACTIVE"
},
{
"Arn": "arn:aws:organizations::111111111111:account/o-exampleorgid/333333333333",
"Id": "333333333333",
"JoinedMethod": "INVITED",
"JoinedTimestamp": "20161215T210347Z",
"Name": "Test Account",
"Status": "ACTIVE"
},
{
"Arn": "arn:aws:organizations::111111111111:account/o-exampleorgid/444444444444",
"Id": "444444444444",
"JoinedMethod": "INVITED",
"JoinedTimestamp": "20161215T210332Z",
"Name": "Production Account",
"Status": "ACTIVE"
}
Expand Down
Loading

0 comments on commit 0e9d407

Please sign in to comment.