Skip to content

Commit

Permalink
Release v1.38.68 (2021-06-25) (#3979)
Browse files Browse the repository at this point in the history
Release v1.38.68 (2021-06-25)
===

### Service Client Updates
* `service/amplifybackend`: Updates service API and documentation
* `service/proton`: Updates service waiters
* `service/snowball`: Updates service API and documentation
  * AWS Snow Family customers can remotely monitor and operate their connected AWS Snowcone devices. AWS Snowball Edge Storage Optimized customers can now import and export their data using NFS.
  • Loading branch information
aws-sdk-go-automation committed Jun 25, 2021
1 parent 8d54923 commit 22bd80b
Show file tree
Hide file tree
Showing 16 changed files with 1,663 additions and 239 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.38.68 (2021-06-25)
===

### Service Client Updates
* `service/amplifybackend`: Updates service API and documentation
* `service/proton`: Updates service waiters
* `service/snowball`: Updates service API and documentation
* AWS Snow Family customers can remotely monitor and operate their connected AWS Snowcone devices. AWS Snowball Edge Storage Optimized customers can now import and export their data using NFS.

Release v1.38.67 (2021-06-24)
===

Expand Down
2 changes: 2 additions & 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.38.67"
const SDKVersion = "1.38.68"
106 changes: 106 additions & 0 deletions models/apis/amplifybackend/2020-08-11/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,29 @@
"shape" : "BadRequestException"
} ]
},
"ImportBackendAuth" : {
"name" : "ImportBackendAuth",
"http" : {
"method" : "POST",
"requestUri" : "/backend/{appId}/auth/{backendEnvironmentName}/import",
"responseCode" : 200
},
"input" : {
"shape" : "ImportBackendAuthRequest"
},
"output" : {
"shape" : "ImportBackendAuthResponse"
},
"errors" : [ {
"shape" : "NotFoundException"
}, {
"shape" : "GatewayTimeoutException"
}, {
"shape" : "TooManyRequestsException"
}, {
"shape" : "BadRequestException"
} ]
},
"ListBackendJobs" : {
"name" : "ListBackendJobs",
"http" : {
Expand Down Expand Up @@ -2168,6 +2191,89 @@
}
}
},
"ImportBackendAuthReqObj" : {
"type" : "structure",
"members" : {
"IdentityPoolId" : {
"shape" : "__string",
"locationName" : "identityPoolId"
},
"NativeClientId" : {
"shape" : "__string",
"locationName" : "nativeClientId"
},
"UserPoolId" : {
"shape" : "__string",
"locationName" : "userPoolId"
},
"WebClientId" : {
"shape" : "__string",
"locationName" : "webClientId"
}
},
"required" : [ "UserPoolId", "NativeClientId", "WebClientId" ]
},
"ImportBackendAuthRequest" : {
"type" : "structure",
"members" : {
"AppId" : {
"shape" : "__string",
"location" : "uri",
"locationName" : "appId"
},
"BackendEnvironmentName" : {
"shape" : "__string",
"location" : "uri",
"locationName" : "backendEnvironmentName"
},
"IdentityPoolId" : {
"shape" : "__string",
"locationName" : "identityPoolId"
},
"NativeClientId" : {
"shape" : "__string",
"locationName" : "nativeClientId"
},
"UserPoolId" : {
"shape" : "__string",
"locationName" : "userPoolId"
},
"WebClientId" : {
"shape" : "__string",
"locationName" : "webClientId"
}
},
"required" : [ "AppId", "BackendEnvironmentName", "UserPoolId", "NativeClientId", "WebClientId" ]
},
"ImportBackendAuthResponse" : {
"type" : "structure",
"members" : {
"AppId" : {
"shape" : "__string",
"locationName" : "appId"
},
"BackendEnvironmentName" : {
"shape" : "__string",
"locationName" : "backendEnvironmentName"
},
"Error" : {
"shape" : "__string",
"locationName" : "error"
},
"JobId" : {
"shape" : "__string",
"locationName" : "jobId"
},
"Operation" : {
"shape" : "__string",
"locationName" : "operation"
},
"Status" : {
"shape" : "__string",
"locationName" : "status"
}
}
},
"InternalServiceException" : {
"type" : "structure",
"members" : {
Expand Down
Loading

0 comments on commit 22bd80b

Please sign in to comment.