Add all dependency of go-getter

This commit is contained in:
Jingfang Liu
2018-08-15 11:34:38 -07:00
parent c9a8bc1121
commit ec95e5f97e
2894 changed files with 1945864 additions and 0 deletions

2628
vendor/github.com/aws/aws-sdk-go/service/sms/api.go generated vendored Normal file

File diff suppressed because it is too large Load Diff

29
vendor/github.com/aws/aws-sdk-go/service/sms/doc.go generated vendored Normal file
View File

@@ -0,0 +1,29 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
// Package sms provides the client and types for making API
// requests to AWS Server Migration Service.
//
// Amazon Server Migration Service automates the process of migrating servers
// to EC2.
//
// See https://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24 for more information on this service.
//
// See sms package documentation for more information.
// https://docs.aws.amazon.com/sdk-for-go/api/service/sms/
//
// Using the Client
//
// To contact AWS Server Migration Service 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 Server Migration Service client SMS for more
// information on creating client for this service.
// https://docs.aws.amazon.com/sdk-for-go/api/service/sms/#New
package sms

71
vendor/github.com/aws/aws-sdk-go/service/sms/errors.go generated vendored Normal file
View File

@@ -0,0 +1,71 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package sms
const (
// ErrCodeInternalError for service response error code
// "InternalError".
//
// An internal error has occured.
ErrCodeInternalError = "InternalError"
// ErrCodeInvalidParameterException for service response error code
// "InvalidParameterException".
//
// A parameter specified in the request is not valid, is unsupported, or cannot
// be used.
ErrCodeInvalidParameterException = "InvalidParameterException"
// ErrCodeMissingRequiredParameterException for service response error code
// "MissingRequiredParameterException".
//
// The request is missing a required parameter. Ensure that you have supplied
// all the required parameters for the request.
ErrCodeMissingRequiredParameterException = "MissingRequiredParameterException"
// ErrCodeNoConnectorsAvailableException for service response error code
// "NoConnectorsAvailableException".
//
// No connectors are available to handle this request. Please associate connector(s)
// and verify any existing connectors are healthy and can respond to requests.
ErrCodeNoConnectorsAvailableException = "NoConnectorsAvailableException"
// ErrCodeOperationNotPermittedException for service response error code
// "OperationNotPermittedException".
//
// The specified operation is not allowed. This error can occur for a number
// of reasons; for example, you might be trying to start a Replication Run before
// seed Replication Run.
ErrCodeOperationNotPermittedException = "OperationNotPermittedException"
// ErrCodeReplicationJobAlreadyExistsException for service response error code
// "ReplicationJobAlreadyExistsException".
//
// An active Replication Job already exists for the specified server.
ErrCodeReplicationJobAlreadyExistsException = "ReplicationJobAlreadyExistsException"
// ErrCodeReplicationJobNotFoundException for service response error code
// "ReplicationJobNotFoundException".
//
// The specified Replication Job cannot be found.
ErrCodeReplicationJobNotFoundException = "ReplicationJobNotFoundException"
// ErrCodeReplicationRunLimitExceededException for service response error code
// "ReplicationRunLimitExceededException".
//
// This user has exceeded the maximum allowed Replication Run limit.
ErrCodeReplicationRunLimitExceededException = "ReplicationRunLimitExceededException"
// ErrCodeServerCannotBeReplicatedException for service response error code
// "ServerCannotBeReplicatedException".
//
// The provided server cannot be replicated.
ErrCodeServerCannotBeReplicatedException = "ServerCannotBeReplicatedException"
// ErrCodeUnauthorizedOperationException for service response error code
// "UnauthorizedOperationException".
//
// This user does not have permissions to perform this operation.
ErrCodeUnauthorizedOperationException = "UnauthorizedOperationException"
)

View File

@@ -0,0 +1,97 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package sms
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"
)
// SMS provides the API operation methods for making requests to
// AWS Server Migration Service. See this package's package overview docs
// for details on the service.
//
// SMS methods are safe to use concurrently. It is not safe to
// modify mutate any of the struct's properties though.
type SMS 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 = "sms" // Name of service.
EndpointsID = ServiceName // ID to lookup a service endpoint with.
ServiceID = "SMS" // ServiceID is a unique identifer of a specific service.
)
// New creates a new instance of the SMS 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 SMS client from just a session.
// svc := sms.New(mySession)
//
// // Create a SMS client with additional configuration
// svc := sms.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
func New(p client.ConfigProvider, cfgs ...*aws.Config) *SMS {
c := p.ClientConfig(EndpointsID, cfgs...)
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) *SMS {
svc := &SMS{
Client: client.New(
cfg,
metadata.ClientInfo{
ServiceName: ServiceName,
ServiceID: ServiceID,
SigningName: signingName,
SigningRegion: signingRegion,
Endpoint: endpoint,
APIVersion: "2016-10-24",
JSONVersion: "1.1",
TargetPrefix: "AWSServerMigrationService_V2016_10_24",
},
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 SMS operation and runs any
// custom request initialization.
func (c *SMS) 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
}

View File

@@ -0,0 +1,120 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
// Package smsiface provides an interface to enable mocking the AWS Server Migration Service 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 smsiface
import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/service/sms"
)
// SMSAPI provides an interface to enable mocking the
// sms.SMS 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 Server Migration Service.
// func myFunc(svc smsiface.SMSAPI) bool {
// // Make svc.CreateReplicationJob request
// }
//
// func main() {
// sess := session.New()
// svc := sms.New(sess)
//
// myFunc(svc)
// }
//
// In your _test.go file:
//
// // Define a mock struct to be used in your unit tests of myFunc.
// type mockSMSClient struct {
// smsiface.SMSAPI
// }
// func (m *mockSMSClient) CreateReplicationJob(input *sms.CreateReplicationJobInput) (*sms.CreateReplicationJobOutput, error) {
// // mock response/functionality
// }
//
// func TestMyFunc(t *testing.T) {
// // Setup Test
// mockSvc := &mockSMSClient{}
//
// 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 SMSAPI interface {
CreateReplicationJob(*sms.CreateReplicationJobInput) (*sms.CreateReplicationJobOutput, error)
CreateReplicationJobWithContext(aws.Context, *sms.CreateReplicationJobInput, ...request.Option) (*sms.CreateReplicationJobOutput, error)
CreateReplicationJobRequest(*sms.CreateReplicationJobInput) (*request.Request, *sms.CreateReplicationJobOutput)
DeleteReplicationJob(*sms.DeleteReplicationJobInput) (*sms.DeleteReplicationJobOutput, error)
DeleteReplicationJobWithContext(aws.Context, *sms.DeleteReplicationJobInput, ...request.Option) (*sms.DeleteReplicationJobOutput, error)
DeleteReplicationJobRequest(*sms.DeleteReplicationJobInput) (*request.Request, *sms.DeleteReplicationJobOutput)
DeleteServerCatalog(*sms.DeleteServerCatalogInput) (*sms.DeleteServerCatalogOutput, error)
DeleteServerCatalogWithContext(aws.Context, *sms.DeleteServerCatalogInput, ...request.Option) (*sms.DeleteServerCatalogOutput, error)
DeleteServerCatalogRequest(*sms.DeleteServerCatalogInput) (*request.Request, *sms.DeleteServerCatalogOutput)
DisassociateConnector(*sms.DisassociateConnectorInput) (*sms.DisassociateConnectorOutput, error)
DisassociateConnectorWithContext(aws.Context, *sms.DisassociateConnectorInput, ...request.Option) (*sms.DisassociateConnectorOutput, error)
DisassociateConnectorRequest(*sms.DisassociateConnectorInput) (*request.Request, *sms.DisassociateConnectorOutput)
GetConnectors(*sms.GetConnectorsInput) (*sms.GetConnectorsOutput, error)
GetConnectorsWithContext(aws.Context, *sms.GetConnectorsInput, ...request.Option) (*sms.GetConnectorsOutput, error)
GetConnectorsRequest(*sms.GetConnectorsInput) (*request.Request, *sms.GetConnectorsOutput)
GetConnectorsPages(*sms.GetConnectorsInput, func(*sms.GetConnectorsOutput, bool) bool) error
GetConnectorsPagesWithContext(aws.Context, *sms.GetConnectorsInput, func(*sms.GetConnectorsOutput, bool) bool, ...request.Option) error
GetReplicationJobs(*sms.GetReplicationJobsInput) (*sms.GetReplicationJobsOutput, error)
GetReplicationJobsWithContext(aws.Context, *sms.GetReplicationJobsInput, ...request.Option) (*sms.GetReplicationJobsOutput, error)
GetReplicationJobsRequest(*sms.GetReplicationJobsInput) (*request.Request, *sms.GetReplicationJobsOutput)
GetReplicationJobsPages(*sms.GetReplicationJobsInput, func(*sms.GetReplicationJobsOutput, bool) bool) error
GetReplicationJobsPagesWithContext(aws.Context, *sms.GetReplicationJobsInput, func(*sms.GetReplicationJobsOutput, bool) bool, ...request.Option) error
GetReplicationRuns(*sms.GetReplicationRunsInput) (*sms.GetReplicationRunsOutput, error)
GetReplicationRunsWithContext(aws.Context, *sms.GetReplicationRunsInput, ...request.Option) (*sms.GetReplicationRunsOutput, error)
GetReplicationRunsRequest(*sms.GetReplicationRunsInput) (*request.Request, *sms.GetReplicationRunsOutput)
GetReplicationRunsPages(*sms.GetReplicationRunsInput, func(*sms.GetReplicationRunsOutput, bool) bool) error
GetReplicationRunsPagesWithContext(aws.Context, *sms.GetReplicationRunsInput, func(*sms.GetReplicationRunsOutput, bool) bool, ...request.Option) error
GetServers(*sms.GetServersInput) (*sms.GetServersOutput, error)
GetServersWithContext(aws.Context, *sms.GetServersInput, ...request.Option) (*sms.GetServersOutput, error)
GetServersRequest(*sms.GetServersInput) (*request.Request, *sms.GetServersOutput)
GetServersPages(*sms.GetServersInput, func(*sms.GetServersOutput, bool) bool) error
GetServersPagesWithContext(aws.Context, *sms.GetServersInput, func(*sms.GetServersOutput, bool) bool, ...request.Option) error
ImportServerCatalog(*sms.ImportServerCatalogInput) (*sms.ImportServerCatalogOutput, error)
ImportServerCatalogWithContext(aws.Context, *sms.ImportServerCatalogInput, ...request.Option) (*sms.ImportServerCatalogOutput, error)
ImportServerCatalogRequest(*sms.ImportServerCatalogInput) (*request.Request, *sms.ImportServerCatalogOutput)
StartOnDemandReplicationRun(*sms.StartOnDemandReplicationRunInput) (*sms.StartOnDemandReplicationRunOutput, error)
StartOnDemandReplicationRunWithContext(aws.Context, *sms.StartOnDemandReplicationRunInput, ...request.Option) (*sms.StartOnDemandReplicationRunOutput, error)
StartOnDemandReplicationRunRequest(*sms.StartOnDemandReplicationRunInput) (*request.Request, *sms.StartOnDemandReplicationRunOutput)
UpdateReplicationJob(*sms.UpdateReplicationJobInput) (*sms.UpdateReplicationJobOutput, error)
UpdateReplicationJobWithContext(aws.Context, *sms.UpdateReplicationJobInput, ...request.Option) (*sms.UpdateReplicationJobOutput, error)
UpdateReplicationJobRequest(*sms.UpdateReplicationJobInput) (*request.Request, *sms.UpdateReplicationJobOutput)
}
var _ SMSAPI = (*sms.SMS)(nil)