Conver to regular Go vendor + dep tool

This commit is contained in:
Andrey Smirnov
2017-03-22 17:38:32 +03:00
parent 070347295e
commit c6c1012330
3260 changed files with 1742550 additions and 72 deletions
+103
View File
@@ -0,0 +1,103 @@
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
package iotdataplane_test
import (
"bytes"
"fmt"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/iotdataplane"
)
var _ time.Duration
var _ bytes.Buffer
func ExampleIoTDataPlane_DeleteThingShadow() {
sess := session.Must(session.NewSession())
svc := iotdataplane.New(sess)
params := &iotdataplane.DeleteThingShadowInput{
ThingName: aws.String("ThingName"), // Required
}
resp, err := svc.DeleteThingShadow(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
func ExampleIoTDataPlane_GetThingShadow() {
sess := session.Must(session.NewSession())
svc := iotdataplane.New(sess)
params := &iotdataplane.GetThingShadowInput{
ThingName: aws.String("ThingName"), // Required
}
resp, err := svc.GetThingShadow(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
func ExampleIoTDataPlane_Publish() {
sess := session.Must(session.NewSession())
svc := iotdataplane.New(sess)
params := &iotdataplane.PublishInput{
Topic: aws.String("Topic"), // Required
Payload: []byte("PAYLOAD"),
Qos: aws.Int64(1),
}
resp, err := svc.Publish(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
func ExampleIoTDataPlane_UpdateThingShadow() {
sess := session.Must(session.NewSession())
svc := iotdataplane.New(sess)
params := &iotdataplane.UpdateThingShadowInput{
Payload: []byte("PAYLOAD"), // Required
ThingName: aws.String("ThingName"), // Required
}
resp, err := svc.UpdateThingShadow(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}