mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-31 04:30:44 +00:00
Conver to regular Go vendor + dep tool
This commit is contained in:
+2652
File diff suppressed because it is too large
Load Diff
+71
@@ -0,0 +1,71 @@
|
||||
// THIS FILE IS AUTOMATICALLY GENERATED. 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"
|
||||
)
|
||||
+260
@@ -0,0 +1,260 @@
|
||||
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
|
||||
|
||||
package sms_test
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/aws/aws-sdk-go/aws"
|
||||
"github.com/aws/aws-sdk-go/aws/session"
|
||||
"github.com/aws/aws-sdk-go/service/sms"
|
||||
)
|
||||
|
||||
var _ time.Duration
|
||||
var _ bytes.Buffer
|
||||
|
||||
func ExampleSMS_CreateReplicationJob() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sms.New(sess)
|
||||
|
||||
params := &sms.CreateReplicationJobInput{
|
||||
Frequency: aws.Int64(1), // Required
|
||||
SeedReplicationTime: aws.Time(time.Now()), // Required
|
||||
ServerId: aws.String("ServerId"), // Required
|
||||
Description: aws.String("Description"),
|
||||
LicenseType: aws.String("LicenseType"),
|
||||
RoleName: aws.String("RoleName"),
|
||||
}
|
||||
resp, err := svc.CreateReplicationJob(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSMS_DeleteReplicationJob() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sms.New(sess)
|
||||
|
||||
params := &sms.DeleteReplicationJobInput{
|
||||
ReplicationJobId: aws.String("ReplicationJobId"), // Required
|
||||
}
|
||||
resp, err := svc.DeleteReplicationJob(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSMS_DeleteServerCatalog() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sms.New(sess)
|
||||
|
||||
var params *sms.DeleteServerCatalogInput
|
||||
resp, err := svc.DeleteServerCatalog(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSMS_DisassociateConnector() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sms.New(sess)
|
||||
|
||||
params := &sms.DisassociateConnectorInput{
|
||||
ConnectorId: aws.String("ConnectorId"), // Required
|
||||
}
|
||||
resp, err := svc.DisassociateConnector(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSMS_GetConnectors() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sms.New(sess)
|
||||
|
||||
params := &sms.GetConnectorsInput{
|
||||
MaxResults: aws.Int64(1),
|
||||
NextToken: aws.String("NextToken"),
|
||||
}
|
||||
resp, err := svc.GetConnectors(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSMS_GetReplicationJobs() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sms.New(sess)
|
||||
|
||||
params := &sms.GetReplicationJobsInput{
|
||||
MaxResults: aws.Int64(1),
|
||||
NextToken: aws.String("NextToken"),
|
||||
ReplicationJobId: aws.String("ReplicationJobId"),
|
||||
}
|
||||
resp, err := svc.GetReplicationJobs(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSMS_GetReplicationRuns() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sms.New(sess)
|
||||
|
||||
params := &sms.GetReplicationRunsInput{
|
||||
ReplicationJobId: aws.String("ReplicationJobId"), // Required
|
||||
MaxResults: aws.Int64(1),
|
||||
NextToken: aws.String("NextToken"),
|
||||
}
|
||||
resp, err := svc.GetReplicationRuns(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSMS_GetServers() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sms.New(sess)
|
||||
|
||||
params := &sms.GetServersInput{
|
||||
MaxResults: aws.Int64(1),
|
||||
NextToken: aws.String("NextToken"),
|
||||
}
|
||||
resp, err := svc.GetServers(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSMS_ImportServerCatalog() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sms.New(sess)
|
||||
|
||||
var params *sms.ImportServerCatalogInput
|
||||
resp, err := svc.ImportServerCatalog(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSMS_StartOnDemandReplicationRun() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sms.New(sess)
|
||||
|
||||
params := &sms.StartOnDemandReplicationRunInput{
|
||||
ReplicationJobId: aws.String("ReplicationJobId"), // Required
|
||||
Description: aws.String("Description"),
|
||||
}
|
||||
resp, err := svc.StartOnDemandReplicationRun(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSMS_UpdateReplicationJob() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sms.New(sess)
|
||||
|
||||
params := &sms.UpdateReplicationJobInput{
|
||||
ReplicationJobId: aws.String("ReplicationJobId"), // Required
|
||||
Description: aws.String("Description"),
|
||||
Frequency: aws.Int64(1),
|
||||
LicenseType: aws.String("LicenseType"),
|
||||
NextReplicationRunStartTime: aws.Time(time.Now()),
|
||||
RoleName: aws.String("RoleName"),
|
||||
}
|
||||
resp, err := svc.UpdateReplicationJob(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
+94
@@ -0,0 +1,94 @@
|
||||
// THIS FILE IS AUTOMATICALLY GENERATED. 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"
|
||||
)
|
||||
|
||||
// Amazon Server Migration Service automates the process of migrating servers
|
||||
// to EC2.
|
||||
// The service client's operations are safe to be used concurrently.
|
||||
// It is not safe to mutate any of the client's properties though.
|
||||
// Please also see https://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24
|
||||
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" // Service endpoint prefix API calls made to.
|
||||
EndpointsID = ServiceName // Service ID for Regions and Endpoints metadata.
|
||||
)
|
||||
|
||||
// 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,
|
||||
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
|
||||
}
|
||||
+120
@@ -0,0 +1,120 @@
|
||||
// THIS FILE IS AUTOMATICALLY GENERATED. 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 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)
|
||||
Reference in New Issue
Block a user