Update Go AWS SDK to the latest version

This commit is contained in:
Andrey Smirnov
2019-07-13 00:03:55 +03:00
committed by Andrey Smirnov
parent d08be990ef
commit 94a72b23ff
2183 changed files with 885887 additions and 228114 deletions
File diff suppressed because it is too large Load Diff
+37
View File
@@ -0,0 +1,37 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
// Package transfer provides the client and types for making API
// requests to AWS Transfer for SFTP.
//
// AWS Transfer for SFTP is a fully managed service that enables the transfer
// of files directly into and out of Amazon S3 using the Secure File Transfer
// Protocol (SFTP)—also known as Secure Shell (SSH) File Transfer Protocol.
// AWS helps you seamlessly migrate your file transfer workflows to AWS Transfer
// for SFTP—by integrating with existing authentication systems, and providing
// DNS routing with Amazon Route 53—so nothing changes for your customers
// and partners, or their applications. With your data in S3, you can use it
// with AWS services for processing, analytics, machine learning, and archiving.
// Getting started with AWS Transfer for SFTP (AWS SFTP) is easy; there is no
// infrastructure to buy and setup.
//
// See https://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05 for more information on this service.
//
// See transfer package documentation for more information.
// https://docs.aws.amazon.com/sdk-for-go/api/service/transfer/
//
// Using the Client
//
// To contact AWS Transfer for SFTP with the SDK use the New function to create
// a new service client. With that client you can make API requests to the service.
// These clients are safe to use concurrently.
//
// See the SDK's documentation for more information on how to use the SDK.
// https://docs.aws.amazon.com/sdk-for-go/api/
//
// See aws.Config documentation for more information on configuring SDK clients.
// https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config
//
// See the AWS Transfer for SFTP client Transfer for more
// information on creating client for this service.
// https://docs.aws.amazon.com/sdk-for-go/api/service/transfer/#New
package transfer
+44
View File
@@ -0,0 +1,44 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package transfer
const (
// ErrCodeInternalServiceError for service response error code
// "InternalServiceError".
//
// This exception is thrown when an error occurs in the AWS Transfer for SFTP
// service.
ErrCodeInternalServiceError = "InternalServiceError"
// ErrCodeInvalidNextTokenException for service response error code
// "InvalidNextTokenException".
//
// The NextToken parameter that was passed is invalid.
ErrCodeInvalidNextTokenException = "InvalidNextTokenException"
// ErrCodeInvalidRequestException for service response error code
// "InvalidRequestException".
//
// This exception is thrown when the client submits a malformed request.
ErrCodeInvalidRequestException = "InvalidRequestException"
// ErrCodeResourceExistsException for service response error code
// "ResourceExistsException".
//
// The requested resource does not exist.
ErrCodeResourceExistsException = "ResourceExistsException"
// ErrCodeResourceNotFoundException for service response error code
// "ResourceNotFoundException".
//
// This exception is thrown when a resource is not found by the AWS Transfer
// for SFTP service.
ErrCodeResourceNotFoundException = "ResourceNotFoundException"
// ErrCodeServiceUnavailableException for service response error code
// "ServiceUnavailableException".
//
// The request has failed because the AWS Transfer for SFTP service is not available.
ErrCodeServiceUnavailableException = "ServiceUnavailableException"
)
+100
View File
@@ -0,0 +1,100 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package transfer
import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/client"
"github.com/aws/aws-sdk-go/aws/client/metadata"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/aws/signer/v4"
"github.com/aws/aws-sdk-go/private/protocol/jsonrpc"
)
// Transfer provides the API operation methods for making requests to
// AWS Transfer for SFTP. See this package's package overview docs
// for details on the service.
//
// Transfer methods are safe to use concurrently. It is not safe to
// modify mutate any of the struct's properties though.
type Transfer struct {
*client.Client
}
// Used for custom client initialization logic
var initClient func(*client.Client)
// Used for custom request initialization logic
var initRequest func(*request.Request)
// Service information constants
const (
ServiceName = "Transfer" // Name of service.
EndpointsID = "transfer" // ID to lookup a service endpoint with.
ServiceID = "Transfer" // ServiceID is a unique identifer of a specific service.
)
// New creates a new instance of the Transfer client with a session.
// If additional configuration is needed for the client instance use the optional
// aws.Config parameter to add your extra config.
//
// Example:
// // Create a Transfer client from just a session.
// svc := transfer.New(mySession)
//
// // Create a Transfer client with additional configuration
// svc := transfer.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
func New(p client.ConfigProvider, cfgs ...*aws.Config) *Transfer {
c := p.ClientConfig(EndpointsID, cfgs...)
if c.SigningNameDerived || len(c.SigningName) == 0 {
c.SigningName = "transfer"
}
return newClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion, c.SigningName)
}
// newClient creates, initializes and returns a new service client instance.
func newClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion, signingName string) *Transfer {
svc := &Transfer{
Client: client.New(
cfg,
metadata.ClientInfo{
ServiceName: ServiceName,
ServiceID: ServiceID,
SigningName: signingName,
SigningRegion: signingRegion,
Endpoint: endpoint,
APIVersion: "2018-11-05",
JSONVersion: "1.1",
TargetPrefix: "TransferService",
},
handlers,
),
}
// Handlers
svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler)
svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler)
svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler)
svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler)
// Run custom client initialization if present
if initClient != nil {
initClient(svc.Client)
}
return svc
}
// newRequest creates a new request for a Transfer operation and runs any
// custom request initialization.
func (c *Transfer) newRequest(op *request.Operation, params, data interface{}) *request.Request {
req := c.NewRequest(op, params, data)
// Run custom request initialization if present
if initRequest != nil {
initRequest(req)
}
return req
}
@@ -0,0 +1,145 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
// Package transferiface provides an interface to enable mocking the AWS Transfer for SFTP service client
// for testing your code.
//
// It is important to note that this interface will have breaking changes
// when the service model is updated and adds new API operations, paginators,
// and waiters.
package transferiface
import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/service/transfer"
)
// TransferAPI provides an interface to enable mocking the
// transfer.Transfer service client's API operation,
// paginators, and waiters. This make unit testing your code that calls out
// to the SDK's service client's calls easier.
//
// The best way to use this interface is so the SDK's service client's calls
// can be stubbed out for unit testing your code with the SDK without needing
// to inject custom request handlers into the SDK's request pipeline.
//
// // myFunc uses an SDK service client to make a request to
// // AWS Transfer for SFTP.
// func myFunc(svc transferiface.TransferAPI) bool {
// // Make svc.CreateServer request
// }
//
// func main() {
// sess := session.New()
// svc := transfer.New(sess)
//
// myFunc(svc)
// }
//
// In your _test.go file:
//
// // Define a mock struct to be used in your unit tests of myFunc.
// type mockTransferClient struct {
// transferiface.TransferAPI
// }
// func (m *mockTransferClient) CreateServer(input *transfer.CreateServerInput) (*transfer.CreateServerOutput, error) {
// // mock response/functionality
// }
//
// func TestMyFunc(t *testing.T) {
// // Setup Test
// mockSvc := &mockTransferClient{}
//
// myfunc(mockSvc)
//
// // Verify myFunc's functionality
// }
//
// It is important to note that this interface will have breaking changes
// when the service model is updated and adds new API operations, paginators,
// and waiters. Its suggested to use the pattern above for testing, or using
// tooling to generate mocks to satisfy the interfaces.
type TransferAPI interface {
CreateServer(*transfer.CreateServerInput) (*transfer.CreateServerOutput, error)
CreateServerWithContext(aws.Context, *transfer.CreateServerInput, ...request.Option) (*transfer.CreateServerOutput, error)
CreateServerRequest(*transfer.CreateServerInput) (*request.Request, *transfer.CreateServerOutput)
CreateUser(*transfer.CreateUserInput) (*transfer.CreateUserOutput, error)
CreateUserWithContext(aws.Context, *transfer.CreateUserInput, ...request.Option) (*transfer.CreateUserOutput, error)
CreateUserRequest(*transfer.CreateUserInput) (*request.Request, *transfer.CreateUserOutput)
DeleteServer(*transfer.DeleteServerInput) (*transfer.DeleteServerOutput, error)
DeleteServerWithContext(aws.Context, *transfer.DeleteServerInput, ...request.Option) (*transfer.DeleteServerOutput, error)
DeleteServerRequest(*transfer.DeleteServerInput) (*request.Request, *transfer.DeleteServerOutput)
DeleteSshPublicKey(*transfer.DeleteSshPublicKeyInput) (*transfer.DeleteSshPublicKeyOutput, error)
DeleteSshPublicKeyWithContext(aws.Context, *transfer.DeleteSshPublicKeyInput, ...request.Option) (*transfer.DeleteSshPublicKeyOutput, error)
DeleteSshPublicKeyRequest(*transfer.DeleteSshPublicKeyInput) (*request.Request, *transfer.DeleteSshPublicKeyOutput)
DeleteUser(*transfer.DeleteUserInput) (*transfer.DeleteUserOutput, error)
DeleteUserWithContext(aws.Context, *transfer.DeleteUserInput, ...request.Option) (*transfer.DeleteUserOutput, error)
DeleteUserRequest(*transfer.DeleteUserInput) (*request.Request, *transfer.DeleteUserOutput)
DescribeServer(*transfer.DescribeServerInput) (*transfer.DescribeServerOutput, error)
DescribeServerWithContext(aws.Context, *transfer.DescribeServerInput, ...request.Option) (*transfer.DescribeServerOutput, error)
DescribeServerRequest(*transfer.DescribeServerInput) (*request.Request, *transfer.DescribeServerOutput)
DescribeUser(*transfer.DescribeUserInput) (*transfer.DescribeUserOutput, error)
DescribeUserWithContext(aws.Context, *transfer.DescribeUserInput, ...request.Option) (*transfer.DescribeUserOutput, error)
DescribeUserRequest(*transfer.DescribeUserInput) (*request.Request, *transfer.DescribeUserOutput)
ImportSshPublicKey(*transfer.ImportSshPublicKeyInput) (*transfer.ImportSshPublicKeyOutput, error)
ImportSshPublicKeyWithContext(aws.Context, *transfer.ImportSshPublicKeyInput, ...request.Option) (*transfer.ImportSshPublicKeyOutput, error)
ImportSshPublicKeyRequest(*transfer.ImportSshPublicKeyInput) (*request.Request, *transfer.ImportSshPublicKeyOutput)
ListServers(*transfer.ListServersInput) (*transfer.ListServersOutput, error)
ListServersWithContext(aws.Context, *transfer.ListServersInput, ...request.Option) (*transfer.ListServersOutput, error)
ListServersRequest(*transfer.ListServersInput) (*request.Request, *transfer.ListServersOutput)
ListServersPages(*transfer.ListServersInput, func(*transfer.ListServersOutput, bool) bool) error
ListServersPagesWithContext(aws.Context, *transfer.ListServersInput, func(*transfer.ListServersOutput, bool) bool, ...request.Option) error
ListTagsForResource(*transfer.ListTagsForResourceInput) (*transfer.ListTagsForResourceOutput, error)
ListTagsForResourceWithContext(aws.Context, *transfer.ListTagsForResourceInput, ...request.Option) (*transfer.ListTagsForResourceOutput, error)
ListTagsForResourceRequest(*transfer.ListTagsForResourceInput) (*request.Request, *transfer.ListTagsForResourceOutput)
ListTagsForResourcePages(*transfer.ListTagsForResourceInput, func(*transfer.ListTagsForResourceOutput, bool) bool) error
ListTagsForResourcePagesWithContext(aws.Context, *transfer.ListTagsForResourceInput, func(*transfer.ListTagsForResourceOutput, bool) bool, ...request.Option) error
ListUsers(*transfer.ListUsersInput) (*transfer.ListUsersOutput, error)
ListUsersWithContext(aws.Context, *transfer.ListUsersInput, ...request.Option) (*transfer.ListUsersOutput, error)
ListUsersRequest(*transfer.ListUsersInput) (*request.Request, *transfer.ListUsersOutput)
ListUsersPages(*transfer.ListUsersInput, func(*transfer.ListUsersOutput, bool) bool) error
ListUsersPagesWithContext(aws.Context, *transfer.ListUsersInput, func(*transfer.ListUsersOutput, bool) bool, ...request.Option) error
StartServer(*transfer.StartServerInput) (*transfer.StartServerOutput, error)
StartServerWithContext(aws.Context, *transfer.StartServerInput, ...request.Option) (*transfer.StartServerOutput, error)
StartServerRequest(*transfer.StartServerInput) (*request.Request, *transfer.StartServerOutput)
StopServer(*transfer.StopServerInput) (*transfer.StopServerOutput, error)
StopServerWithContext(aws.Context, *transfer.StopServerInput, ...request.Option) (*transfer.StopServerOutput, error)
StopServerRequest(*transfer.StopServerInput) (*request.Request, *transfer.StopServerOutput)
TagResource(*transfer.TagResourceInput) (*transfer.TagResourceOutput, error)
TagResourceWithContext(aws.Context, *transfer.TagResourceInput, ...request.Option) (*transfer.TagResourceOutput, error)
TagResourceRequest(*transfer.TagResourceInput) (*request.Request, *transfer.TagResourceOutput)
TestIdentityProvider(*transfer.TestIdentityProviderInput) (*transfer.TestIdentityProviderOutput, error)
TestIdentityProviderWithContext(aws.Context, *transfer.TestIdentityProviderInput, ...request.Option) (*transfer.TestIdentityProviderOutput, error)
TestIdentityProviderRequest(*transfer.TestIdentityProviderInput) (*request.Request, *transfer.TestIdentityProviderOutput)
UntagResource(*transfer.UntagResourceInput) (*transfer.UntagResourceOutput, error)
UntagResourceWithContext(aws.Context, *transfer.UntagResourceInput, ...request.Option) (*transfer.UntagResourceOutput, error)
UntagResourceRequest(*transfer.UntagResourceInput) (*request.Request, *transfer.UntagResourceOutput)
UpdateServer(*transfer.UpdateServerInput) (*transfer.UpdateServerOutput, error)
UpdateServerWithContext(aws.Context, *transfer.UpdateServerInput, ...request.Option) (*transfer.UpdateServerOutput, error)
UpdateServerRequest(*transfer.UpdateServerInput) (*request.Request, *transfer.UpdateServerOutput)
UpdateUser(*transfer.UpdateUserInput) (*transfer.UpdateUserOutput, error)
UpdateUserWithContext(aws.Context, *transfer.UpdateUserInput, ...request.Option) (*transfer.UpdateUserOutput, error)
UpdateUserRequest(*transfer.UpdateUserInput) (*request.Request, *transfer.UpdateUserOutput)
}
var _ TransferAPI = (*transfer.Transfer)(nil)