123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545 |
- package ec2query_test
- import (
- "bytes"
- "encoding/json"
- "encoding/xml"
- "fmt"
- "io"
- "io/ioutil"
- "net/http"
- "net/url"
- "testing"
- "time"
- "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/awstesting"
- "github.com/aws/aws-sdk-go/awstesting/unit"
- "github.com/aws/aws-sdk-go/private/protocol"
- "github.com/aws/aws-sdk-go/private/protocol/ec2query"
- "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil"
- "github.com/aws/aws-sdk-go/private/util"
- "github.com/stretchr/testify/assert"
- )
- var _ bytes.Buffer // always import bytes
- var _ http.Request
- var _ json.Marshaler
- var _ time.Time
- var _ xmlutil.XMLNode
- var _ xml.Attr
- var _ = ioutil.Discard
- var _ = util.Trim("")
- var _ = url.Values{}
- var _ = io.EOF
- var _ = aws.String
- var _ = fmt.Println
- func init() {
- protocol.RandReader = &awstesting.ZeroReader{}
- }
- // The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService1ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService1ProtocolTest 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 InputService1ProtocolTest client from just a session.
- // svc := inputservice1protocoltest.New(mySession)
- //
- // // Create a InputService1ProtocolTest client with additional configuration
- // svc := inputservice1protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService1ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService1ProtocolTest {
- c := p.ClientConfig("inputservice1protocoltest", cfgs...)
- return newInputService1ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion, c.SigningName)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService1ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion, signingName string) *InputService1ProtocolTest {
- svc := &InputService1ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice1protocoltest",
- SigningName: signingName,
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService1ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService1ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService1TestCaseOperation1 = "OperationName"
- // InputService1TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService1TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // See InputService1TestCaseOperation1 for usage and error information.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService1TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService1TestCaseOperation1Request method.
- // req, resp := client.InputService1TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- func (c *InputService1ProtocolTest) InputService1TestCaseOperation1Request(input *InputService1TestShapeInputService1TestCaseOperation1Input) (req *request.Request, output *InputService1TestShapeInputService1TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService1TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService1TestShapeInputService1TestCaseOperation1Input{}
- }
- output = &InputService1TestShapeInputService1TestCaseOperation1Output{}
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- return
- }
- // InputService1TestCaseOperation1 API operation for .
- //
- // Returns awserr.Error for service API and SDK errors. Use runtime type assertions
- // with awserr.Error's Code and Message methods to get detailed information about
- // the error.
- //
- // See the AWS API reference guide for 's
- // API operation InputService1TestCaseOperation1 for usage and error information.
- func (c *InputService1ProtocolTest) InputService1TestCaseOperation1(input *InputService1TestShapeInputService1TestCaseOperation1Input) (*InputService1TestShapeInputService1TestCaseOperation1Output, error) {
- req, out := c.InputService1TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- type InputService1TestShapeInputService1TestCaseOperation1Input struct {
- _ struct{} `type:"structure"`
- Bar *string `type:"string"`
- Foo *string `type:"string"`
- }
- // SetBar sets the Bar field's value.
- func (s *InputService1TestShapeInputService1TestCaseOperation1Input) SetBar(v string) *InputService1TestShapeInputService1TestCaseOperation1Input {
- s.Bar = &v
- return s
- }
- // SetFoo sets the Foo field's value.
- func (s *InputService1TestShapeInputService1TestCaseOperation1Input) SetFoo(v string) *InputService1TestShapeInputService1TestCaseOperation1Input {
- s.Foo = &v
- return s
- }
- type InputService1TestShapeInputService1TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- // The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService2ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService2ProtocolTest 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 InputService2ProtocolTest client from just a session.
- // svc := inputservice2protocoltest.New(mySession)
- //
- // // Create a InputService2ProtocolTest client with additional configuration
- // svc := inputservice2protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService2ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService2ProtocolTest {
- c := p.ClientConfig("inputservice2protocoltest", cfgs...)
- return newInputService2ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion, c.SigningName)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService2ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion, signingName string) *InputService2ProtocolTest {
- svc := &InputService2ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice2protocoltest",
- SigningName: signingName,
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService2ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService2ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService2TestCaseOperation1 = "OperationName"
- // InputService2TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService2TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // See InputService2TestCaseOperation1 for usage and error information.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService2TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService2TestCaseOperation1Request method.
- // req, resp := client.InputService2TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- func (c *InputService2ProtocolTest) InputService2TestCaseOperation1Request(input *InputService2TestShapeInputService2TestCaseOperation1Input) (req *request.Request, output *InputService2TestShapeInputService2TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService2TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService2TestShapeInputService2TestCaseOperation1Input{}
- }
- output = &InputService2TestShapeInputService2TestCaseOperation1Output{}
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- return
- }
- // InputService2TestCaseOperation1 API operation for .
- //
- // Returns awserr.Error for service API and SDK errors. Use runtime type assertions
- // with awserr.Error's Code and Message methods to get detailed information about
- // the error.
- //
- // See the AWS API reference guide for 's
- // API operation InputService2TestCaseOperation1 for usage and error information.
- func (c *InputService2ProtocolTest) InputService2TestCaseOperation1(input *InputService2TestShapeInputService2TestCaseOperation1Input) (*InputService2TestShapeInputService2TestCaseOperation1Output, error) {
- req, out := c.InputService2TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- type InputService2TestShapeInputService2TestCaseOperation1Input struct {
- _ struct{} `type:"structure"`
- Bar *string `locationName:"barLocationName" type:"string"`
- Foo *string `type:"string"`
- Yuck *string `locationName:"yuckLocationName" queryName:"yuckQueryName" type:"string"`
- }
- // SetBar sets the Bar field's value.
- func (s *InputService2TestShapeInputService2TestCaseOperation1Input) SetBar(v string) *InputService2TestShapeInputService2TestCaseOperation1Input {
- s.Bar = &v
- return s
- }
- // SetFoo sets the Foo field's value.
- func (s *InputService2TestShapeInputService2TestCaseOperation1Input) SetFoo(v string) *InputService2TestShapeInputService2TestCaseOperation1Input {
- s.Foo = &v
- return s
- }
- // SetYuck sets the Yuck field's value.
- func (s *InputService2TestShapeInputService2TestCaseOperation1Input) SetYuck(v string) *InputService2TestShapeInputService2TestCaseOperation1Input {
- s.Yuck = &v
- return s
- }
- type InputService2TestShapeInputService2TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- // The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService3ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService3ProtocolTest 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 InputService3ProtocolTest client from just a session.
- // svc := inputservice3protocoltest.New(mySession)
- //
- // // Create a InputService3ProtocolTest client with additional configuration
- // svc := inputservice3protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService3ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService3ProtocolTest {
- c := p.ClientConfig("inputservice3protocoltest", cfgs...)
- return newInputService3ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion, c.SigningName)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService3ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion, signingName string) *InputService3ProtocolTest {
- svc := &InputService3ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice3protocoltest",
- SigningName: signingName,
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService3ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService3ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService3TestCaseOperation1 = "OperationName"
- // InputService3TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService3TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // See InputService3TestCaseOperation1 for usage and error information.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService3TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService3TestCaseOperation1Request method.
- // req, resp := client.InputService3TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- func (c *InputService3ProtocolTest) InputService3TestCaseOperation1Request(input *InputService3TestShapeInputService3TestCaseOperation1Input) (req *request.Request, output *InputService3TestShapeInputService3TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService3TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService3TestShapeInputService3TestCaseOperation1Input{}
- }
- output = &InputService3TestShapeInputService3TestCaseOperation1Output{}
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- return
- }
- // InputService3TestCaseOperation1 API operation for .
- //
- // Returns awserr.Error for service API and SDK errors. Use runtime type assertions
- // with awserr.Error's Code and Message methods to get detailed information about
- // the error.
- //
- // See the AWS API reference guide for 's
- // API operation InputService3TestCaseOperation1 for usage and error information.
- func (c *InputService3ProtocolTest) InputService3TestCaseOperation1(input *InputService3TestShapeInputService3TestCaseOperation1Input) (*InputService3TestShapeInputService3TestCaseOperation1Output, error) {
- req, out := c.InputService3TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- type InputService3TestShapeInputService3TestCaseOperation1Input struct {
- _ struct{} `type:"structure"`
- StructArg *InputService3TestShapeStructType `locationName:"Struct" type:"structure"`
- }
- // SetStructArg sets the StructArg field's value.
- func (s *InputService3TestShapeInputService3TestCaseOperation1Input) SetStructArg(v *InputService3TestShapeStructType) *InputService3TestShapeInputService3TestCaseOperation1Input {
- s.StructArg = v
- return s
- }
- type InputService3TestShapeInputService3TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- type InputService3TestShapeStructType struct {
- _ struct{} `type:"structure"`
- ScalarArg *string `locationName:"Scalar" type:"string"`
- }
- // SetScalarArg sets the ScalarArg field's value.
- func (s *InputService3TestShapeStructType) SetScalarArg(v string) *InputService3TestShapeStructType {
- s.ScalarArg = &v
- return s
- }
- // The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService4ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService4ProtocolTest 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 InputService4ProtocolTest client from just a session.
- // svc := inputservice4protocoltest.New(mySession)
- //
- // // Create a InputService4ProtocolTest client with additional configuration
- // svc := inputservice4protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService4ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService4ProtocolTest {
- c := p.ClientConfig("inputservice4protocoltest", cfgs...)
- return newInputService4ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion, c.SigningName)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService4ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion, signingName string) *InputService4ProtocolTest {
- svc := &InputService4ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice4protocoltest",
- SigningName: signingName,
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService4ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService4ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService4TestCaseOperation1 = "OperationName"
- // InputService4TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService4TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // See InputService4TestCaseOperation1 for usage and error information.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService4TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService4TestCaseOperation1Request method.
- // req, resp := client.InputService4TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- func (c *InputService4ProtocolTest) InputService4TestCaseOperation1Request(input *InputService4TestShapeInputService4TestCaseOperation1Input) (req *request.Request, output *InputService4TestShapeInputService4TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService4TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService4TestShapeInputService4TestCaseOperation1Input{}
- }
- output = &InputService4TestShapeInputService4TestCaseOperation1Output{}
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- return
- }
- // InputService4TestCaseOperation1 API operation for .
- //
- // Returns awserr.Error for service API and SDK errors. Use runtime type assertions
- // with awserr.Error's Code and Message methods to get detailed information about
- // the error.
- //
- // See the AWS API reference guide for 's
- // API operation InputService4TestCaseOperation1 for usage and error information.
- func (c *InputService4ProtocolTest) InputService4TestCaseOperation1(input *InputService4TestShapeInputService4TestCaseOperation1Input) (*InputService4TestShapeInputService4TestCaseOperation1Output, error) {
- req, out := c.InputService4TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- type InputService4TestShapeInputService4TestCaseOperation1Input struct {
- _ struct{} `type:"structure"`
- ListArg []*string `type:"list"`
- }
- // SetListArg sets the ListArg field's value.
- func (s *InputService4TestShapeInputService4TestCaseOperation1Input) SetListArg(v []*string) *InputService4TestShapeInputService4TestCaseOperation1Input {
- s.ListArg = v
- return s
- }
- type InputService4TestShapeInputService4TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- // The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService5ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService5ProtocolTest 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 InputService5ProtocolTest client from just a session.
- // svc := inputservice5protocoltest.New(mySession)
- //
- // // Create a InputService5ProtocolTest client with additional configuration
- // svc := inputservice5protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService5ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService5ProtocolTest {
- c := p.ClientConfig("inputservice5protocoltest", cfgs...)
- return newInputService5ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion, c.SigningName)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService5ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion, signingName string) *InputService5ProtocolTest {
- svc := &InputService5ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice5protocoltest",
- SigningName: signingName,
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService5ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService5ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService5TestCaseOperation1 = "OperationName"
- // InputService5TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService5TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // See InputService5TestCaseOperation1 for usage and error information.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService5TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService5TestCaseOperation1Request method.
- // req, resp := client.InputService5TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- func (c *InputService5ProtocolTest) InputService5TestCaseOperation1Request(input *InputService5TestShapeInputService5TestCaseOperation1Input) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService5TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService5TestShapeInputService5TestCaseOperation1Input{}
- }
- output = &InputService5TestShapeInputService5TestCaseOperation1Output{}
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- return
- }
- // InputService5TestCaseOperation1 API operation for .
- //
- // Returns awserr.Error for service API and SDK errors. Use runtime type assertions
- // with awserr.Error's Code and Message methods to get detailed information about
- // the error.
- //
- // See the AWS API reference guide for 's
- // API operation InputService5TestCaseOperation1 for usage and error information.
- func (c *InputService5ProtocolTest) InputService5TestCaseOperation1(input *InputService5TestShapeInputService5TestCaseOperation1Input) (*InputService5TestShapeInputService5TestCaseOperation1Output, error) {
- req, out := c.InputService5TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- type InputService5TestShapeInputService5TestCaseOperation1Input struct {
- _ struct{} `type:"structure"`
- ListArg []*string `locationName:"ListMemberName" locationNameList:"item" type:"list"`
- }
- // SetListArg sets the ListArg field's value.
- func (s *InputService5TestShapeInputService5TestCaseOperation1Input) SetListArg(v []*string) *InputService5TestShapeInputService5TestCaseOperation1Input {
- s.ListArg = v
- return s
- }
- type InputService5TestShapeInputService5TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- // The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService6ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService6ProtocolTest 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 InputService6ProtocolTest client from just a session.
- // svc := inputservice6protocoltest.New(mySession)
- //
- // // Create a InputService6ProtocolTest client with additional configuration
- // svc := inputservice6protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService6ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService6ProtocolTest {
- c := p.ClientConfig("inputservice6protocoltest", cfgs...)
- return newInputService6ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion, c.SigningName)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService6ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion, signingName string) *InputService6ProtocolTest {
- svc := &InputService6ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice6protocoltest",
- SigningName: signingName,
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService6ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService6ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService6TestCaseOperation1 = "OperationName"
- // InputService6TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService6TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // See InputService6TestCaseOperation1 for usage and error information.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService6TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService6TestCaseOperation1Request method.
- // req, resp := client.InputService6TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- func (c *InputService6ProtocolTest) InputService6TestCaseOperation1Request(input *InputService6TestShapeInputService6TestCaseOperation1Input) (req *request.Request, output *InputService6TestShapeInputService6TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService6TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService6TestShapeInputService6TestCaseOperation1Input{}
- }
- output = &InputService6TestShapeInputService6TestCaseOperation1Output{}
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- return
- }
- // InputService6TestCaseOperation1 API operation for .
- //
- // Returns awserr.Error for service API and SDK errors. Use runtime type assertions
- // with awserr.Error's Code and Message methods to get detailed information about
- // the error.
- //
- // See the AWS API reference guide for 's
- // API operation InputService6TestCaseOperation1 for usage and error information.
- func (c *InputService6ProtocolTest) InputService6TestCaseOperation1(input *InputService6TestShapeInputService6TestCaseOperation1Input) (*InputService6TestShapeInputService6TestCaseOperation1Output, error) {
- req, out := c.InputService6TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- type InputService6TestShapeInputService6TestCaseOperation1Input struct {
- _ struct{} `type:"structure"`
- ListArg []*string `locationName:"ListMemberName" queryName:"ListQueryName" locationNameList:"item" type:"list"`
- }
- // SetListArg sets the ListArg field's value.
- func (s *InputService6TestShapeInputService6TestCaseOperation1Input) SetListArg(v []*string) *InputService6TestShapeInputService6TestCaseOperation1Input {
- s.ListArg = v
- return s
- }
- type InputService6TestShapeInputService6TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- // The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService7ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService7ProtocolTest 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 InputService7ProtocolTest client from just a session.
- // svc := inputservice7protocoltest.New(mySession)
- //
- // // Create a InputService7ProtocolTest client with additional configuration
- // svc := inputservice7protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService7ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService7ProtocolTest {
- c := p.ClientConfig("inputservice7protocoltest", cfgs...)
- return newInputService7ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion, c.SigningName)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService7ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion, signingName string) *InputService7ProtocolTest {
- svc := &InputService7ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice7protocoltest",
- SigningName: signingName,
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService7ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService7ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService7TestCaseOperation1 = "OperationName"
- // InputService7TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService7TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // See InputService7TestCaseOperation1 for usage and error information.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService7TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService7TestCaseOperation1Request method.
- // req, resp := client.InputService7TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- func (c *InputService7ProtocolTest) InputService7TestCaseOperation1Request(input *InputService7TestShapeInputService7TestCaseOperation1Input) (req *request.Request, output *InputService7TestShapeInputService7TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService7TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService7TestShapeInputService7TestCaseOperation1Input{}
- }
- output = &InputService7TestShapeInputService7TestCaseOperation1Output{}
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- return
- }
- // InputService7TestCaseOperation1 API operation for .
- //
- // Returns awserr.Error for service API and SDK errors. Use runtime type assertions
- // with awserr.Error's Code and Message methods to get detailed information about
- // the error.
- //
- // See the AWS API reference guide for 's
- // API operation InputService7TestCaseOperation1 for usage and error information.
- func (c *InputService7ProtocolTest) InputService7TestCaseOperation1(input *InputService7TestShapeInputService7TestCaseOperation1Input) (*InputService7TestShapeInputService7TestCaseOperation1Output, error) {
- req, out := c.InputService7TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- type InputService7TestShapeInputService7TestCaseOperation1Input struct {
- _ struct{} `type:"structure"`
- // BlobArg is automatically base64 encoded/decoded by the SDK.
- BlobArg []byte `type:"blob"`
- }
- // SetBlobArg sets the BlobArg field's value.
- func (s *InputService7TestShapeInputService7TestCaseOperation1Input) SetBlobArg(v []byte) *InputService7TestShapeInputService7TestCaseOperation1Input {
- s.BlobArg = v
- return s
- }
- type InputService7TestShapeInputService7TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- // The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService8ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService8ProtocolTest 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 InputService8ProtocolTest client from just a session.
- // svc := inputservice8protocoltest.New(mySession)
- //
- // // Create a InputService8ProtocolTest client with additional configuration
- // svc := inputservice8protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService8ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService8ProtocolTest {
- c := p.ClientConfig("inputservice8protocoltest", cfgs...)
- return newInputService8ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion, c.SigningName)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService8ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion, signingName string) *InputService8ProtocolTest {
- svc := &InputService8ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice8protocoltest",
- SigningName: signingName,
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService8ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService8ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService8TestCaseOperation1 = "OperationName"
- // InputService8TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService8TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // See InputService8TestCaseOperation1 for usage and error information.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService8TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService8TestCaseOperation1Request method.
- // req, resp := client.InputService8TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- func (c *InputService8ProtocolTest) InputService8TestCaseOperation1Request(input *InputService8TestShapeInputService8TestCaseOperation1Input) (req *request.Request, output *InputService8TestShapeInputService8TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService8TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService8TestShapeInputService8TestCaseOperation1Input{}
- }
- output = &InputService8TestShapeInputService8TestCaseOperation1Output{}
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- return
- }
- // InputService8TestCaseOperation1 API operation for .
- //
- // Returns awserr.Error for service API and SDK errors. Use runtime type assertions
- // with awserr.Error's Code and Message methods to get detailed information about
- // the error.
- //
- // See the AWS API reference guide for 's
- // API operation InputService8TestCaseOperation1 for usage and error information.
- func (c *InputService8ProtocolTest) InputService8TestCaseOperation1(input *InputService8TestShapeInputService8TestCaseOperation1Input) (*InputService8TestShapeInputService8TestCaseOperation1Output, error) {
- req, out := c.InputService8TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- type InputService8TestShapeInputService8TestCaseOperation1Input struct {
- _ struct{} `type:"structure"`
- TimeArg *time.Time `type:"timestamp" timestampFormat:"iso8601"`
- }
- // SetTimeArg sets the TimeArg field's value.
- func (s *InputService8TestShapeInputService8TestCaseOperation1Input) SetTimeArg(v time.Time) *InputService8TestShapeInputService8TestCaseOperation1Input {
- s.TimeArg = &v
- return s
- }
- type InputService8TestShapeInputService8TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- // The service client's operations are safe to be used concurrently.
- // It is not safe to mutate any of the client's properties though.
- type InputService9ProtocolTest struct {
- *client.Client
- }
- // New creates a new instance of the InputService9ProtocolTest 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 InputService9ProtocolTest client from just a session.
- // svc := inputservice9protocoltest.New(mySession)
- //
- // // Create a InputService9ProtocolTest client with additional configuration
- // svc := inputservice9protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
- func NewInputService9ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService9ProtocolTest {
- c := p.ClientConfig("inputservice9protocoltest", cfgs...)
- return newInputService9ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion, c.SigningName)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService9ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion, signingName string) *InputService9ProtocolTest {
- svc := &InputService9ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice9protocoltest",
- SigningName: signingName,
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- },
- handlers,
- ),
- }
- // Handlers
- svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
- svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler)
- svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler)
- svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler)
- svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler)
- return svc
- }
- // newRequest creates a new request for a InputService9ProtocolTest operation and runs any
- // custom request initialization.
- func (c *InputService9ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request {
- req := c.NewRequest(op, params, data)
- return req
- }
- const opInputService9TestCaseOperation1 = "OperationName"
- // InputService9TestCaseOperation1Request generates a "aws/request.Request" representing the
- // client's request for the InputService9TestCaseOperation1 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // See InputService9TestCaseOperation1 for usage and error information.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService9TestCaseOperation1 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService9TestCaseOperation1Request method.
- // req, resp := client.InputService9TestCaseOperation1Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- func (c *InputService9ProtocolTest) InputService9TestCaseOperation1Request(input *InputService9TestShapeInputShape) (req *request.Request, output *InputService9TestShapeInputService9TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService9TestCaseOperation1,
- HTTPMethod: "POST",
- HTTPPath: "/path",
- }
- if input == nil {
- input = &InputService9TestShapeInputShape{}
- }
- output = &InputService9TestShapeInputService9TestCaseOperation1Output{}
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- return
- }
- // InputService9TestCaseOperation1 API operation for .
- //
- // Returns awserr.Error for service API and SDK errors. Use runtime type assertions
- // with awserr.Error's Code and Message methods to get detailed information about
- // the error.
- //
- // See the AWS API reference guide for 's
- // API operation InputService9TestCaseOperation1 for usage and error information.
- func (c *InputService9ProtocolTest) InputService9TestCaseOperation1(input *InputService9TestShapeInputShape) (*InputService9TestShapeInputService9TestCaseOperation1Output, error) {
- req, out := c.InputService9TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- const opInputService9TestCaseOperation2 = "OperationName"
- // InputService9TestCaseOperation2Request generates a "aws/request.Request" representing the
- // client's request for the InputService9TestCaseOperation2 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // See InputService9TestCaseOperation2 for usage and error information.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InputService9TestCaseOperation2 method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InputService9TestCaseOperation2Request method.
- // req, resp := client.InputService9TestCaseOperation2Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- func (c *InputService9ProtocolTest) InputService9TestCaseOperation2Request(input *InputService9TestShapeInputShape) (req *request.Request, output *InputService9TestShapeInputService9TestCaseOperation2Output) {
- op := &request.Operation{
- Name: opInputService9TestCaseOperation2,
- HTTPMethod: "POST",
- HTTPPath: "/path",
- }
- if input == nil {
- input = &InputService9TestShapeInputShape{}
- }
- output = &InputService9TestShapeInputService9TestCaseOperation2Output{}
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- return
- }
- // InputService9TestCaseOperation2 API operation for .
- //
- // Returns awserr.Error for service API and SDK errors. Use runtime type assertions
- // with awserr.Error's Code and Message methods to get detailed information about
- // the error.
- //
- // See the AWS API reference guide for 's
- // API operation InputService9TestCaseOperation2 for usage and error information.
- func (c *InputService9ProtocolTest) InputService9TestCaseOperation2(input *InputService9TestShapeInputShape) (*InputService9TestShapeInputService9TestCaseOperation2Output, error) {
- req, out := c.InputService9TestCaseOperation2Request(input)
- err := req.Send()
- return out, err
- }
- type InputService9TestShapeInputService9TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- type InputService9TestShapeInputService9TestCaseOperation2Output struct {
- _ struct{} `type:"structure"`
- }
- type InputService9TestShapeInputShape struct {
- _ struct{} `type:"structure"`
- Token *string `type:"string" idempotencyToken:"true"`
- }
- // SetToken sets the Token field's value.
- func (s *InputService9TestShapeInputShape) SetToken(v string) *InputService9TestShapeInputShape {
- s.Token = &v
- return s
- }
- //
- // Tests begin here
- //
- func TestInputService1ProtocolTestScalarMembersCase1(t *testing.T) {
- svc := NewInputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService1TestShapeInputService1TestCaseOperation1Input{
- Bar: aws.String("val2"),
- Foo: aws.String("val1"),
- }
- req, _ := svc.InputService1TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Action=OperationName&Bar=val2&Foo=val1&Version=2014-01-01`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- }
- func TestInputService2ProtocolTestStructureWithLocationNameAndQueryNameAppliedToMembersCase1(t *testing.T) {
- svc := NewInputService2ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService2TestShapeInputService2TestCaseOperation1Input{
- Bar: aws.String("val2"),
- Foo: aws.String("val1"),
- Yuck: aws.String("val3"),
- }
- req, _ := svc.InputService2TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Action=OperationName&BarLocationName=val2&Foo=val1&Version=2014-01-01&yuckQueryName=val3`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- }
- func TestInputService3ProtocolTestNestedStructureMembersCase1(t *testing.T) {
- svc := NewInputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService3TestShapeInputService3TestCaseOperation1Input{
- StructArg: &InputService3TestShapeStructType{
- ScalarArg: aws.String("foo"),
- },
- }
- req, _ := svc.InputService3TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Action=OperationName&Struct.Scalar=foo&Version=2014-01-01`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- }
- func TestInputService4ProtocolTestListTypesCase1(t *testing.T) {
- svc := NewInputService4ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService4TestShapeInputService4TestCaseOperation1Input{
- ListArg: []*string{
- aws.String("foo"),
- aws.String("bar"),
- aws.String("baz"),
- },
- }
- req, _ := svc.InputService4TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Action=OperationName&ListArg.1=foo&ListArg.2=bar&ListArg.3=baz&Version=2014-01-01`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- }
- func TestInputService5ProtocolTestListWithLocationNameAppliedToMemberCase1(t *testing.T) {
- svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService5TestShapeInputService5TestCaseOperation1Input{
- ListArg: []*string{
- aws.String("a"),
- aws.String("b"),
- aws.String("c"),
- },
- }
- req, _ := svc.InputService5TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Action=OperationName&ListMemberName.1=a&ListMemberName.2=b&ListMemberName.3=c&Version=2014-01-01`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- }
- func TestInputService6ProtocolTestListWithLocationNameAndQueryNameCase1(t *testing.T) {
- svc := NewInputService6ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService6TestShapeInputService6TestCaseOperation1Input{
- ListArg: []*string{
- aws.String("a"),
- aws.String("b"),
- aws.String("c"),
- },
- }
- req, _ := svc.InputService6TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Action=OperationName&ListQueryName.1=a&ListQueryName.2=b&ListQueryName.3=c&Version=2014-01-01`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- }
- func TestInputService7ProtocolTestBase64EncodedBlobsCase1(t *testing.T) {
- svc := NewInputService7ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService7TestShapeInputService7TestCaseOperation1Input{
- BlobArg: []byte("foo"),
- }
- req, _ := svc.InputService7TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Action=OperationName&BlobArg=Zm9v&Version=2014-01-01`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- }
- func TestInputService8ProtocolTestTimestampValuesCase1(t *testing.T) {
- svc := NewInputService8ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService8TestShapeInputService8TestCaseOperation1Input{
- TimeArg: aws.Time(time.Unix(1422172800, 0)),
- }
- req, _ := svc.InputService8TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Action=OperationName&TimeArg=2015-01-25T08%3A00%3A00Z&Version=2014-01-01`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- }
- func TestInputService9ProtocolTestIdempotencyTokenAutoFillCase1(t *testing.T) {
- svc := NewInputService9ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService9TestShapeInputShape{
- Token: aws.String("abc123"),
- }
- req, _ := svc.InputService9TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Token=abc123`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/path", r.URL.String())
- // assert headers
- }
- func TestInputService9ProtocolTestIdempotencyTokenAutoFillCase2(t *testing.T) {
- svc := NewInputService9ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService9TestShapeInputShape{}
- req, _ := svc.InputService9TestCaseOperation2Request(input)
- r := req.HTTPRequest
- // build request
- ec2query.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertQuery(t, `Token=00000000-0000-4000-8000-000000000000`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/path", r.URL.String())
- // assert headers
- }
|