| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637 |
- package jsonrpc_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/jsonrpc"
- "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)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService1ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService1ProtocolTest {
- svc := &InputService1ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice1protocoltest",
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "",
- JSONVersion: "1.1",
- TargetPrefix: "com.amazonaws.foo",
- },
- 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)
- 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.
- //
- // 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,
- HTTPMethod: "POST",
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService1TestShapeInputService1TestCaseOperation1Input{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService1TestShapeInputService1TestCaseOperation1Output{}
- req.Data = output
- return
- }
- 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"`
- Name *string `type:"string"`
- }
- 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)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService2ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService2ProtocolTest {
- svc := &InputService2ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice2protocoltest",
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "",
- JSONVersion: "1.1",
- TargetPrefix: "com.amazonaws.foo",
- },
- 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)
- 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.
- //
- // 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{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService2TestShapeInputService2TestCaseOperation1Output{}
- req.Data = output
- return
- }
- 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"`
- TimeArg *time.Time `type:"timestamp" timestampFormat:"unix"`
- }
- 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)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService3ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService3ProtocolTest {
- svc := &InputService3ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice3protocoltest",
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "",
- JSONVersion: "1.1",
- TargetPrefix: "com.amazonaws.foo",
- },
- 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)
- 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.
- //
- // 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 *InputService3TestShapeInputShape) (req *request.Request, output *InputService3TestShapeInputService3TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService3TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService3TestShapeInputShape{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService3TestShapeInputService3TestCaseOperation1Output{}
- req.Data = output
- return
- }
- func (c *InputService3ProtocolTest) InputService3TestCaseOperation1(input *InputService3TestShapeInputShape) (*InputService3TestShapeInputService3TestCaseOperation1Output, error) {
- req, out := c.InputService3TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- const opInputService3TestCaseOperation2 = "OperationName"
- // InputService3TestCaseOperation2Request generates a "aws/request.Request" representing the
- // client's request for the InputService3TestCaseOperation2 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // 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 InputService3TestCaseOperation2 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 InputService3TestCaseOperation2Request method.
- // req, resp := client.InputService3TestCaseOperation2Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService3ProtocolTest) InputService3TestCaseOperation2Request(input *InputService3TestShapeInputShape) (req *request.Request, output *InputService3TestShapeInputService3TestCaseOperation2Output) {
- op := &request.Operation{
- Name: opInputService3TestCaseOperation2,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService3TestShapeInputShape{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService3TestShapeInputService3TestCaseOperation2Output{}
- req.Data = output
- return
- }
- func (c *InputService3ProtocolTest) InputService3TestCaseOperation2(input *InputService3TestShapeInputShape) (*InputService3TestShapeInputService3TestCaseOperation2Output, error) {
- req, out := c.InputService3TestCaseOperation2Request(input)
- err := req.Send()
- return out, err
- }
- type InputService3TestShapeInputService3TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- type InputService3TestShapeInputService3TestCaseOperation2Output struct {
- _ struct{} `type:"structure"`
- }
- type InputService3TestShapeInputShape struct {
- _ struct{} `type:"structure"`
- // BlobArg is automatically base64 encoded/decoded by the SDK.
- BlobArg []byte `type:"blob"`
- BlobMap map[string][]byte `type:"map"`
- }
- //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)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService4ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService4ProtocolTest {
- svc := &InputService4ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice4protocoltest",
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "",
- JSONVersion: "1.1",
- TargetPrefix: "com.amazonaws.foo",
- },
- 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)
- 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.
- //
- // 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,
- HTTPMethod: "POST",
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService4TestShapeInputService4TestCaseOperation1Input{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService4TestShapeInputService4TestCaseOperation1Output{}
- req.Data = output
- return
- }
- 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"`
- ListParam [][]byte `type:"list"`
- }
- 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)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService5ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService5ProtocolTest {
- svc := &InputService5ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice5protocoltest",
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "",
- JSONVersion: "1.1",
- TargetPrefix: "com.amazonaws.foo",
- },
- 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)
- 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.
- //
- // 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 *InputService5TestShapeInputShape) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService5TestCaseOperation1,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService5TestShapeInputShape{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService5TestShapeInputService5TestCaseOperation1Output{}
- req.Data = output
- return
- }
- func (c *InputService5ProtocolTest) InputService5TestCaseOperation1(input *InputService5TestShapeInputShape) (*InputService5TestShapeInputService5TestCaseOperation1Output, error) {
- req, out := c.InputService5TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- const opInputService5TestCaseOperation2 = "OperationName"
- // InputService5TestCaseOperation2Request generates a "aws/request.Request" representing the
- // client's request for the InputService5TestCaseOperation2 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // 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 InputService5TestCaseOperation2 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 InputService5TestCaseOperation2Request method.
- // req, resp := client.InputService5TestCaseOperation2Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService5ProtocolTest) InputService5TestCaseOperation2Request(input *InputService5TestShapeInputShape) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation2Output) {
- op := &request.Operation{
- Name: opInputService5TestCaseOperation2,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService5TestShapeInputShape{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService5TestShapeInputService5TestCaseOperation2Output{}
- req.Data = output
- return
- }
- func (c *InputService5ProtocolTest) InputService5TestCaseOperation2(input *InputService5TestShapeInputShape) (*InputService5TestShapeInputService5TestCaseOperation2Output, error) {
- req, out := c.InputService5TestCaseOperation2Request(input)
- err := req.Send()
- return out, err
- }
- const opInputService5TestCaseOperation3 = "OperationName"
- // InputService5TestCaseOperation3Request generates a "aws/request.Request" representing the
- // client's request for the InputService5TestCaseOperation3 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // 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 InputService5TestCaseOperation3 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 InputService5TestCaseOperation3Request method.
- // req, resp := client.InputService5TestCaseOperation3Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService5ProtocolTest) InputService5TestCaseOperation3Request(input *InputService5TestShapeInputShape) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation3Output) {
- op := &request.Operation{
- Name: opInputService5TestCaseOperation3,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService5TestShapeInputShape{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService5TestShapeInputService5TestCaseOperation3Output{}
- req.Data = output
- return
- }
- func (c *InputService5ProtocolTest) InputService5TestCaseOperation3(input *InputService5TestShapeInputShape) (*InputService5TestShapeInputService5TestCaseOperation3Output, error) {
- req, out := c.InputService5TestCaseOperation3Request(input)
- err := req.Send()
- return out, err
- }
- const opInputService5TestCaseOperation4 = "OperationName"
- // InputService5TestCaseOperation4Request generates a "aws/request.Request" representing the
- // client's request for the InputService5TestCaseOperation4 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // 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 InputService5TestCaseOperation4 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 InputService5TestCaseOperation4Request method.
- // req, resp := client.InputService5TestCaseOperation4Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService5ProtocolTest) InputService5TestCaseOperation4Request(input *InputService5TestShapeInputShape) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation4Output) {
- op := &request.Operation{
- Name: opInputService5TestCaseOperation4,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService5TestShapeInputShape{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService5TestShapeInputService5TestCaseOperation4Output{}
- req.Data = output
- return
- }
- func (c *InputService5ProtocolTest) InputService5TestCaseOperation4(input *InputService5TestShapeInputShape) (*InputService5TestShapeInputService5TestCaseOperation4Output, error) {
- req, out := c.InputService5TestCaseOperation4Request(input)
- err := req.Send()
- return out, err
- }
- const opInputService5TestCaseOperation5 = "OperationName"
- // InputService5TestCaseOperation5Request generates a "aws/request.Request" representing the
- // client's request for the InputService5TestCaseOperation5 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // 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 InputService5TestCaseOperation5 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 InputService5TestCaseOperation5Request method.
- // req, resp := client.InputService5TestCaseOperation5Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService5ProtocolTest) InputService5TestCaseOperation5Request(input *InputService5TestShapeInputShape) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation5Output) {
- op := &request.Operation{
- Name: opInputService5TestCaseOperation5,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService5TestShapeInputShape{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService5TestShapeInputService5TestCaseOperation5Output{}
- req.Data = output
- return
- }
- func (c *InputService5ProtocolTest) InputService5TestCaseOperation5(input *InputService5TestShapeInputShape) (*InputService5TestShapeInputService5TestCaseOperation5Output, error) {
- req, out := c.InputService5TestCaseOperation5Request(input)
- err := req.Send()
- return out, err
- }
- const opInputService5TestCaseOperation6 = "OperationName"
- // InputService5TestCaseOperation6Request generates a "aws/request.Request" representing the
- // client's request for the InputService5TestCaseOperation6 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // 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 InputService5TestCaseOperation6 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 InputService5TestCaseOperation6Request method.
- // req, resp := client.InputService5TestCaseOperation6Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService5ProtocolTest) InputService5TestCaseOperation6Request(input *InputService5TestShapeInputShape) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation6Output) {
- op := &request.Operation{
- Name: opInputService5TestCaseOperation6,
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService5TestShapeInputShape{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService5TestShapeInputService5TestCaseOperation6Output{}
- req.Data = output
- return
- }
- func (c *InputService5ProtocolTest) InputService5TestCaseOperation6(input *InputService5TestShapeInputShape) (*InputService5TestShapeInputService5TestCaseOperation6Output, error) {
- req, out := c.InputService5TestCaseOperation6Request(input)
- err := req.Send()
- return out, err
- }
- type InputService5TestShapeInputService5TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- type InputService5TestShapeInputService5TestCaseOperation2Output struct {
- _ struct{} `type:"structure"`
- }
- type InputService5TestShapeInputService5TestCaseOperation3Output struct {
- _ struct{} `type:"structure"`
- }
- type InputService5TestShapeInputService5TestCaseOperation4Output struct {
- _ struct{} `type:"structure"`
- }
- type InputService5TestShapeInputService5TestCaseOperation5Output struct {
- _ struct{} `type:"structure"`
- }
- type InputService5TestShapeInputService5TestCaseOperation6Output struct {
- _ struct{} `type:"structure"`
- }
- type InputService5TestShapeInputShape struct {
- _ struct{} `type:"structure"`
- RecursiveStruct *InputService5TestShapeRecursiveStructType `type:"structure"`
- }
- type InputService5TestShapeRecursiveStructType struct {
- _ struct{} `type:"structure"`
- NoRecurse *string `type:"string"`
- RecursiveList []*InputService5TestShapeRecursiveStructType `type:"list"`
- RecursiveMap map[string]*InputService5TestShapeRecursiveStructType `type:"map"`
- RecursiveStruct *InputService5TestShapeRecursiveStructType `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)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService6ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService6ProtocolTest {
- svc := &InputService6ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice6protocoltest",
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "",
- JSONVersion: "1.1",
- TargetPrefix: "com.amazonaws.foo",
- },
- 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)
- 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.
- //
- // 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,
- HTTPMethod: "POST",
- HTTPPath: "/",
- }
- if input == nil {
- input = &InputService6TestShapeInputService6TestCaseOperation1Input{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService6TestShapeInputService6TestCaseOperation1Output{}
- req.Data = output
- return
- }
- 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"`
- Map map[string]*string `type:"map"`
- }
- 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)
- }
- // newClient creates, initializes and returns a new service client instance.
- func newInputService7ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService7ProtocolTest {
- svc := &InputService7ProtocolTest{
- Client: client.New(
- cfg,
- metadata.ClientInfo{
- ServiceName: "inputservice7protocoltest",
- SigningRegion: signingRegion,
- Endpoint: endpoint,
- APIVersion: "2014-01-01",
- JSONVersion: "",
- TargetPrefix: "",
- },
- 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)
- 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.
- //
- // 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 *InputService7TestShapeInputShape) (req *request.Request, output *InputService7TestShapeInputService7TestCaseOperation1Output) {
- op := &request.Operation{
- Name: opInputService7TestCaseOperation1,
- HTTPMethod: "POST",
- HTTPPath: "/path",
- }
- if input == nil {
- input = &InputService7TestShapeInputShape{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService7TestShapeInputService7TestCaseOperation1Output{}
- req.Data = output
- return
- }
- func (c *InputService7ProtocolTest) InputService7TestCaseOperation1(input *InputService7TestShapeInputShape) (*InputService7TestShapeInputService7TestCaseOperation1Output, error) {
- req, out := c.InputService7TestCaseOperation1Request(input)
- err := req.Send()
- return out, err
- }
- const opInputService7TestCaseOperation2 = "OperationName"
- // InputService7TestCaseOperation2Request generates a "aws/request.Request" representing the
- // client's request for the InputService7TestCaseOperation2 operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // 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 InputService7TestCaseOperation2 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 InputService7TestCaseOperation2Request method.
- // req, resp := client.InputService7TestCaseOperation2Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *InputService7ProtocolTest) InputService7TestCaseOperation2Request(input *InputService7TestShapeInputShape) (req *request.Request, output *InputService7TestShapeInputService7TestCaseOperation2Output) {
- op := &request.Operation{
- Name: opInputService7TestCaseOperation2,
- HTTPMethod: "POST",
- HTTPPath: "/path",
- }
- if input == nil {
- input = &InputService7TestShapeInputShape{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &InputService7TestShapeInputService7TestCaseOperation2Output{}
- req.Data = output
- return
- }
- func (c *InputService7ProtocolTest) InputService7TestCaseOperation2(input *InputService7TestShapeInputShape) (*InputService7TestShapeInputService7TestCaseOperation2Output, error) {
- req, out := c.InputService7TestCaseOperation2Request(input)
- err := req.Send()
- return out, err
- }
- type InputService7TestShapeInputService7TestCaseOperation1Output struct {
- _ struct{} `type:"structure"`
- }
- type InputService7TestShapeInputService7TestCaseOperation2Output struct {
- _ struct{} `type:"structure"`
- }
- type InputService7TestShapeInputShape struct {
- _ struct{} `type:"structure"`
- Token *string `type:"string" idempotencyToken:"true"`
- }
- //
- // Tests begin here
- //
- func TestInputService1ProtocolTestScalarMembersCase1(t *testing.T) {
- svc := NewInputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService1TestShapeInputService1TestCaseOperation1Input{
- Name: aws.String("myname"),
- }
- req, _ := svc.InputService1TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- jsonrpc.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertJSON(t, `{"Name":"myname"}`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type"))
- assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target"))
- }
- func TestInputService2ProtocolTestTimestampValuesCase1(t *testing.T) {
- svc := NewInputService2ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService2TestShapeInputService2TestCaseOperation1Input{
- TimeArg: aws.Time(time.Unix(1422172800, 0)),
- }
- req, _ := svc.InputService2TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- jsonrpc.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertJSON(t, `{"TimeArg":1422172800}`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type"))
- assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target"))
- }
- func TestInputService3ProtocolTestBase64EncodedBlobsCase1(t *testing.T) {
- svc := NewInputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService3TestShapeInputShape{
- BlobArg: []byte("foo"),
- }
- req, _ := svc.InputService3TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- jsonrpc.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertJSON(t, `{"BlobArg":"Zm9v"}`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type"))
- assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target"))
- }
- func TestInputService3ProtocolTestBase64EncodedBlobsCase2(t *testing.T) {
- svc := NewInputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService3TestShapeInputShape{
- BlobMap: map[string][]byte{
- "key1": []byte("foo"),
- "key2": []byte("bar"),
- },
- }
- req, _ := svc.InputService3TestCaseOperation2Request(input)
- r := req.HTTPRequest
- // build request
- jsonrpc.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertJSON(t, `{"BlobMap":{"key1":"Zm9v","key2":"YmFy"}}`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type"))
- assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target"))
- }
- func TestInputService4ProtocolTestNestedBlobsCase1(t *testing.T) {
- svc := NewInputService4ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService4TestShapeInputService4TestCaseOperation1Input{
- ListParam: [][]byte{
- []byte("foo"),
- []byte("bar"),
- },
- }
- req, _ := svc.InputService4TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- jsonrpc.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertJSON(t, `{"ListParam":["Zm9v","YmFy"]}`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type"))
- assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target"))
- }
- func TestInputService5ProtocolTestRecursiveShapesCase1(t *testing.T) {
- svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService5TestShapeInputShape{
- RecursiveStruct: &InputService5TestShapeRecursiveStructType{
- NoRecurse: aws.String("foo"),
- },
- }
- req, _ := svc.InputService5TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- jsonrpc.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertJSON(t, `{"RecursiveStruct":{"NoRecurse":"foo"}}`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type"))
- assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target"))
- }
- func TestInputService5ProtocolTestRecursiveShapesCase2(t *testing.T) {
- svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService5TestShapeInputShape{
- RecursiveStruct: &InputService5TestShapeRecursiveStructType{
- RecursiveStruct: &InputService5TestShapeRecursiveStructType{
- NoRecurse: aws.String("foo"),
- },
- },
- }
- req, _ := svc.InputService5TestCaseOperation2Request(input)
- r := req.HTTPRequest
- // build request
- jsonrpc.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertJSON(t, `{"RecursiveStruct":{"RecursiveStruct":{"NoRecurse":"foo"}}}`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type"))
- assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target"))
- }
- func TestInputService5ProtocolTestRecursiveShapesCase3(t *testing.T) {
- svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService5TestShapeInputShape{
- RecursiveStruct: &InputService5TestShapeRecursiveStructType{
- RecursiveStruct: &InputService5TestShapeRecursiveStructType{
- RecursiveStruct: &InputService5TestShapeRecursiveStructType{
- RecursiveStruct: &InputService5TestShapeRecursiveStructType{
- NoRecurse: aws.String("foo"),
- },
- },
- },
- },
- }
- req, _ := svc.InputService5TestCaseOperation3Request(input)
- r := req.HTTPRequest
- // build request
- jsonrpc.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertJSON(t, `{"RecursiveStruct":{"RecursiveStruct":{"RecursiveStruct":{"RecursiveStruct":{"NoRecurse":"foo"}}}}}`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type"))
- assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target"))
- }
- func TestInputService5ProtocolTestRecursiveShapesCase4(t *testing.T) {
- svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService5TestShapeInputShape{
- RecursiveStruct: &InputService5TestShapeRecursiveStructType{
- RecursiveList: []*InputService5TestShapeRecursiveStructType{
- {
- NoRecurse: aws.String("foo"),
- },
- {
- NoRecurse: aws.String("bar"),
- },
- },
- },
- }
- req, _ := svc.InputService5TestCaseOperation4Request(input)
- r := req.HTTPRequest
- // build request
- jsonrpc.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertJSON(t, `{"RecursiveStruct":{"RecursiveList":[{"NoRecurse":"foo"},{"NoRecurse":"bar"}]}}`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type"))
- assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target"))
- }
- func TestInputService5ProtocolTestRecursiveShapesCase5(t *testing.T) {
- svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService5TestShapeInputShape{
- RecursiveStruct: &InputService5TestShapeRecursiveStructType{
- RecursiveList: []*InputService5TestShapeRecursiveStructType{
- {
- NoRecurse: aws.String("foo"),
- },
- {
- RecursiveStruct: &InputService5TestShapeRecursiveStructType{
- NoRecurse: aws.String("bar"),
- },
- },
- },
- },
- }
- req, _ := svc.InputService5TestCaseOperation5Request(input)
- r := req.HTTPRequest
- // build request
- jsonrpc.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertJSON(t, `{"RecursiveStruct":{"RecursiveList":[{"NoRecurse":"foo"},{"RecursiveStruct":{"NoRecurse":"bar"}}]}}`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type"))
- assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target"))
- }
- func TestInputService5ProtocolTestRecursiveShapesCase6(t *testing.T) {
- svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService5TestShapeInputShape{
- RecursiveStruct: &InputService5TestShapeRecursiveStructType{
- RecursiveMap: map[string]*InputService5TestShapeRecursiveStructType{
- "bar": {
- NoRecurse: aws.String("bar"),
- },
- "foo": {
- NoRecurse: aws.String("foo"),
- },
- },
- },
- }
- req, _ := svc.InputService5TestCaseOperation6Request(input)
- r := req.HTTPRequest
- // build request
- jsonrpc.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertJSON(t, `{"RecursiveStruct":{"RecursiveMap":{"foo":{"NoRecurse":"foo"},"bar":{"NoRecurse":"bar"}}}}`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type"))
- assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target"))
- }
- func TestInputService6ProtocolTestEmptyMapsCase1(t *testing.T) {
- svc := NewInputService6ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService6TestShapeInputService6TestCaseOperation1Input{
- Map: map[string]*string{},
- }
- req, _ := svc.InputService6TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- jsonrpc.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertJSON(t, `{"Map":{}}`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/", r.URL.String())
- // assert headers
- assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type"))
- assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target"))
- }
- func TestInputService7ProtocolTestIdempotencyTokenAutoFillCase1(t *testing.T) {
- svc := NewInputService7ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService7TestShapeInputShape{
- Token: aws.String("abc123"),
- }
- req, _ := svc.InputService7TestCaseOperation1Request(input)
- r := req.HTTPRequest
- // build request
- jsonrpc.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertJSON(t, `{"Token":"abc123"}`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/path", r.URL.String())
- // assert headers
- }
- func TestInputService7ProtocolTestIdempotencyTokenAutoFillCase2(t *testing.T) {
- svc := NewInputService7ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")})
- input := &InputService7TestShapeInputShape{}
- req, _ := svc.InputService7TestCaseOperation2Request(input)
- r := req.HTTPRequest
- // build request
- jsonrpc.Build(req)
- assert.NoError(t, req.Error)
- // assert body
- assert.NotNil(t, r.Body)
- body, _ := ioutil.ReadAll(r.Body)
- awstesting.AssertJSON(t, `{"Token":"00000000-0000-4000-8000-000000000000"}`, util.Trim(string(body)))
- // assert URL
- awstesting.AssertURL(t, "https://test/path", r.URL.String())
- // assert headers
- }
|