Update Go AWS SDK to the latest version

This commit is contained in:
Andrey Smirnov
2019-07-13 00:03:55 +03:00
committed by Andrey Smirnov
parent d08be990ef
commit 94a72b23ff
2183 changed files with 885887 additions and 228114 deletions
+234
View File
@@ -0,0 +1,234 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package ec2instanceconnect
import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
)
const opSendSSHPublicKey = "SendSSHPublicKey"
// SendSSHPublicKeyRequest generates a "aws/request.Request" representing the
// client's request for the SendSSHPublicKey operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See SendSSHPublicKey for more information on using the SendSSHPublicKey
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
//
// // Example sending a request using the SendSSHPublicKeyRequest method.
// req, resp := client.SendSSHPublicKeyRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/ec2-instance-connect-2018-04-02/SendSSHPublicKey
func (c *EC2InstanceConnect) SendSSHPublicKeyRequest(input *SendSSHPublicKeyInput) (req *request.Request, output *SendSSHPublicKeyOutput) {
op := &request.Operation{
Name: opSendSSHPublicKey,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &SendSSHPublicKeyInput{}
}
output = &SendSSHPublicKeyOutput{}
req = c.newRequest(op, input, output)
return
}
// SendSSHPublicKey API operation for AWS EC2 Instance Connect.
//
// Pushes an SSH public key to a particular OS user on a given EC2 instance
// for 60 seconds.
//
// 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 AWS EC2 Instance Connect's
// API operation SendSSHPublicKey for usage and error information.
//
// Returned Error Codes:
// * ErrCodeAuthException "AuthException"
// Indicates that either your AWS credentials are invalid or you do not have
// access to the EC2 instance.
//
// * ErrCodeInvalidArgsException "InvalidArgsException"
// Indicates that you provided bad input. Ensure you have a valid instance ID,
// the correct zone, and a valid SSH public key.
//
// * ErrCodeServiceException "ServiceException"
// Indicates that the service encountered an error. Follow the message's instructions
// and try again.
//
// * ErrCodeThrottlingException "ThrottlingException"
// Indicates you have been making requests too frequently and have been throttled.
// Wait for a while and try again. If higher call volume is warranted contact
// AWS Support.
//
// * ErrCodeEC2InstanceNotFoundException "EC2InstanceNotFoundException"
// Indicates that the instance requested was not found in the given zone. Check
// that you have provided a valid instance ID and the correct zone.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/ec2-instance-connect-2018-04-02/SendSSHPublicKey
func (c *EC2InstanceConnect) SendSSHPublicKey(input *SendSSHPublicKeyInput) (*SendSSHPublicKeyOutput, error) {
req, out := c.SendSSHPublicKeyRequest(input)
return out, req.Send()
}
// SendSSHPublicKeyWithContext is the same as SendSSHPublicKey with the addition of
// the ability to pass a context and additional request options.
//
// See SendSSHPublicKey for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *EC2InstanceConnect) SendSSHPublicKeyWithContext(ctx aws.Context, input *SendSSHPublicKeyInput, opts ...request.Option) (*SendSSHPublicKeyOutput, error) {
req, out := c.SendSSHPublicKeyRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
type SendSSHPublicKeyInput struct {
_ struct{} `type:"structure"`
// The availability zone the EC2 instance was launched in.
//
// AvailabilityZone is a required field
AvailabilityZone *string `min:"6" type:"string" required:"true"`
// The EC2 instance you wish to publish the SSH key to.
//
// InstanceId is a required field
InstanceId *string `min:"10" type:"string" required:"true"`
// The OS user on the EC2 instance whom the key may be used to authenticate
// as.
//
// InstanceOSUser is a required field
InstanceOSUser *string `min:"1" type:"string" required:"true"`
// The public key to be published to the instance. To use it after publication
// you must have the matching private key.
//
// SSHPublicKey is a required field
SSHPublicKey *string `min:"256" type:"string" required:"true"`
}
// String returns the string representation
func (s SendSSHPublicKeyInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s SendSSHPublicKeyInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *SendSSHPublicKeyInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "SendSSHPublicKeyInput"}
if s.AvailabilityZone == nil {
invalidParams.Add(request.NewErrParamRequired("AvailabilityZone"))
}
if s.AvailabilityZone != nil && len(*s.AvailabilityZone) < 6 {
invalidParams.Add(request.NewErrParamMinLen("AvailabilityZone", 6))
}
if s.InstanceId == nil {
invalidParams.Add(request.NewErrParamRequired("InstanceId"))
}
if s.InstanceId != nil && len(*s.InstanceId) < 10 {
invalidParams.Add(request.NewErrParamMinLen("InstanceId", 10))
}
if s.InstanceOSUser == nil {
invalidParams.Add(request.NewErrParamRequired("InstanceOSUser"))
}
if s.InstanceOSUser != nil && len(*s.InstanceOSUser) < 1 {
invalidParams.Add(request.NewErrParamMinLen("InstanceOSUser", 1))
}
if s.SSHPublicKey == nil {
invalidParams.Add(request.NewErrParamRequired("SSHPublicKey"))
}
if s.SSHPublicKey != nil && len(*s.SSHPublicKey) < 256 {
invalidParams.Add(request.NewErrParamMinLen("SSHPublicKey", 256))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetAvailabilityZone sets the AvailabilityZone field's value.
func (s *SendSSHPublicKeyInput) SetAvailabilityZone(v string) *SendSSHPublicKeyInput {
s.AvailabilityZone = &v
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *SendSSHPublicKeyInput) SetInstanceId(v string) *SendSSHPublicKeyInput {
s.InstanceId = &v
return s
}
// SetInstanceOSUser sets the InstanceOSUser field's value.
func (s *SendSSHPublicKeyInput) SetInstanceOSUser(v string) *SendSSHPublicKeyInput {
s.InstanceOSUser = &v
return s
}
// SetSSHPublicKey sets the SSHPublicKey field's value.
func (s *SendSSHPublicKeyInput) SetSSHPublicKey(v string) *SendSSHPublicKeyInput {
s.SSHPublicKey = &v
return s
}
type SendSSHPublicKeyOutput struct {
_ struct{} `type:"structure"`
// The request ID as logged by EC2 Connect. Please provide this when contacting
// AWS Support.
RequestId *string `type:"string"`
// Indicates request success.
Success *bool `type:"boolean"`
}
// String returns the string representation
func (s SendSSHPublicKeyOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s SendSSHPublicKeyOutput) GoString() string {
return s.String()
}
// SetRequestId sets the RequestId field's value.
func (s *SendSSHPublicKeyOutput) SetRequestId(v string) *SendSSHPublicKeyOutput {
s.RequestId = &v
return s
}
// SetSuccess sets the Success field's value.
func (s *SendSSHPublicKeyOutput) SetSuccess(v bool) *SendSSHPublicKeyOutput {
s.Success = &v
return s
}
+30
View File
@@ -0,0 +1,30 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
// Package ec2instanceconnect provides the client and types for making API
// requests to AWS EC2 Instance Connect.
//
// AWS EC2 Connect Service is a service that enables system administrators to
// publish temporary SSH keys to their EC2 instances in order to establish connections
// to their instances without leaving a permanent authentication option.
//
// See https://docs.aws.amazon.com/goto/WebAPI/ec2-instance-connect-2018-04-02 for more information on this service.
//
// See ec2instanceconnect package documentation for more information.
// https://docs.aws.amazon.com/sdk-for-go/api/service/ec2instanceconnect/
//
// Using the Client
//
// To contact AWS EC2 Instance Connect with the SDK use the New function to create
// a new service client. With that client you can make API requests to the service.
// These clients are safe to use concurrently.
//
// See the SDK's documentation for more information on how to use the SDK.
// https://docs.aws.amazon.com/sdk-for-go/api/
//
// See aws.Config documentation for more information on configuring SDK clients.
// https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config
//
// See the AWS EC2 Instance Connect client EC2InstanceConnect for more
// information on creating client for this service.
// https://docs.aws.amazon.com/sdk-for-go/api/service/ec2instanceconnect/#New
package ec2instanceconnect
@@ -0,0 +1,68 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
// Package ec2instanceconnectiface provides an interface to enable mocking the AWS EC2 Instance Connect service client
// for testing your code.
//
// It is important to note that this interface will have breaking changes
// when the service model is updated and adds new API operations, paginators,
// and waiters.
package ec2instanceconnectiface
import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/service/ec2instanceconnect"
)
// EC2InstanceConnectAPI provides an interface to enable mocking the
// ec2instanceconnect.EC2InstanceConnect service client's API operation,
// paginators, and waiters. This make unit testing your code that calls out
// to the SDK's service client's calls easier.
//
// The best way to use this interface is so the SDK's service client's calls
// can be stubbed out for unit testing your code with the SDK without needing
// to inject custom request handlers into the SDK's request pipeline.
//
// // myFunc uses an SDK service client to make a request to
// // AWS EC2 Instance Connect.
// func myFunc(svc ec2instanceconnectiface.EC2InstanceConnectAPI) bool {
// // Make svc.SendSSHPublicKey request
// }
//
// func main() {
// sess := session.New()
// svc := ec2instanceconnect.New(sess)
//
// myFunc(svc)
// }
//
// In your _test.go file:
//
// // Define a mock struct to be used in your unit tests of myFunc.
// type mockEC2InstanceConnectClient struct {
// ec2instanceconnectiface.EC2InstanceConnectAPI
// }
// func (m *mockEC2InstanceConnectClient) SendSSHPublicKey(input *ec2instanceconnect.SendSSHPublicKeyInput) (*ec2instanceconnect.SendSSHPublicKeyOutput, error) {
// // mock response/functionality
// }
//
// func TestMyFunc(t *testing.T) {
// // Setup Test
// mockSvc := &mockEC2InstanceConnectClient{}
//
// myfunc(mockSvc)
//
// // Verify myFunc's functionality
// }
//
// It is important to note that this interface will have breaking changes
// when the service model is updated and adds new API operations, paginators,
// and waiters. Its suggested to use the pattern above for testing, or using
// tooling to generate mocks to satisfy the interfaces.
type EC2InstanceConnectAPI interface {
SendSSHPublicKey(*ec2instanceconnect.SendSSHPublicKeyInput) (*ec2instanceconnect.SendSSHPublicKeyOutput, error)
SendSSHPublicKeyWithContext(aws.Context, *ec2instanceconnect.SendSSHPublicKeyInput, ...request.Option) (*ec2instanceconnect.SendSSHPublicKeyOutput, error)
SendSSHPublicKeyRequest(*ec2instanceconnect.SendSSHPublicKeyInput) (*request.Request, *ec2instanceconnect.SendSSHPublicKeyOutput)
}
var _ EC2InstanceConnectAPI = (*ec2instanceconnect.EC2InstanceConnect)(nil)
+42
View File
@@ -0,0 +1,42 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package ec2instanceconnect
const (
// ErrCodeAuthException for service response error code
// "AuthException".
//
// Indicates that either your AWS credentials are invalid or you do not have
// access to the EC2 instance.
ErrCodeAuthException = "AuthException"
// ErrCodeEC2InstanceNotFoundException for service response error code
// "EC2InstanceNotFoundException".
//
// Indicates that the instance requested was not found in the given zone. Check
// that you have provided a valid instance ID and the correct zone.
ErrCodeEC2InstanceNotFoundException = "EC2InstanceNotFoundException"
// ErrCodeInvalidArgsException for service response error code
// "InvalidArgsException".
//
// Indicates that you provided bad input. Ensure you have a valid instance ID,
// the correct zone, and a valid SSH public key.
ErrCodeInvalidArgsException = "InvalidArgsException"
// ErrCodeServiceException for service response error code
// "ServiceException".
//
// Indicates that the service encountered an error. Follow the message's instructions
// and try again.
ErrCodeServiceException = "ServiceException"
// ErrCodeThrottlingException for service response error code
// "ThrottlingException".
//
// Indicates you have been making requests too frequently and have been throttled.
// Wait for a while and try again. If higher call volume is warranted contact
// AWS Support.
ErrCodeThrottlingException = "ThrottlingException"
)
@@ -0,0 +1,67 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package ec2instanceconnect_test
import (
"fmt"
"strings"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/ec2instanceconnect"
)
var _ time.Duration
var _ strings.Reader
var _ aws.Config
func parseTime(layout, value string) *time.Time {
t, err := time.Parse(layout, value)
if err != nil {
panic(err)
}
return &t
}
// To push an SSH key to an EC2 instance
//
// The following example pushes a sample SSH public key to the EC2 instance i-abcd1234
// in AZ us-west-2b for use by the instance OS user ec2-user.
func ExampleEC2InstanceConnect_SendSSHPublicKey_shared00() {
svc := ec2instanceconnect.New(session.New())
input := &ec2instanceconnect.SendSSHPublicKeyInput{
AvailabilityZone: aws.String("us-west-2a"),
InstanceId: aws.String("i-abcd1234"),
InstanceOSUser: aws.String("ec2-user"),
SSHPublicKey: aws.String("ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC3FlHqj2eqCdrGHuA6dRjfZXQ4HX5lXEIRHaNbxEwE5Te7xNF7StwhrDtiV7IdT5fDqbRyGw/szPj3xGkNTVoElCZ2dDFb2qYZ1WLIpZwj/UhO9l2mgfjR56UojjQut5Jvn2KZ1OcyrNO0J83kCaJCV7JoVbXY79FBMUccYNY45zmv9+1FMCfY6i2jdIhwR6+yLk8oubL8lIPyq7X+6b9S0yKCkB7Peml1DvghlybpAIUrC9vofHt6XP4V1i0bImw1IlljQS+DUmULRFSccATDscCX9ajnj7Crhm0HAZC0tBPXpFdHkPwL3yzYo546SCS9LKEwz62ymxxbL9k7h09t"),
}
result, err := svc.SendSSHPublicKey(input)
if err != nil {
if aerr, ok := err.(awserr.Error); ok {
switch aerr.Code() {
case ec2instanceconnect.ErrCodeAuthException:
fmt.Println(ec2instanceconnect.ErrCodeAuthException, aerr.Error())
case ec2instanceconnect.ErrCodeInvalidArgsException:
fmt.Println(ec2instanceconnect.ErrCodeInvalidArgsException, aerr.Error())
case ec2instanceconnect.ErrCodeServiceException:
fmt.Println(ec2instanceconnect.ErrCodeServiceException, aerr.Error())
case ec2instanceconnect.ErrCodeThrottlingException:
fmt.Println(ec2instanceconnect.ErrCodeThrottlingException, aerr.Error())
case ec2instanceconnect.ErrCodeEC2InstanceNotFoundException:
fmt.Println(ec2instanceconnect.ErrCodeEC2InstanceNotFoundException, aerr.Error())
default:
fmt.Println(aerr.Error())
}
} else {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
}
return
}
fmt.Println(result)
}
+97
View File
@@ -0,0 +1,97 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package ec2instanceconnect
import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/client"
"github.com/aws/aws-sdk-go/aws/client/metadata"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/aws/signer/v4"
"github.com/aws/aws-sdk-go/private/protocol/jsonrpc"
)
// EC2InstanceConnect provides the API operation methods for making requests to
// AWS EC2 Instance Connect. See this package's package overview docs
// for details on the service.
//
// EC2InstanceConnect methods are safe to use concurrently. It is not safe to
// modify mutate any of the struct's properties though.
type EC2InstanceConnect struct {
*client.Client
}
// Used for custom client initialization logic
var initClient func(*client.Client)
// Used for custom request initialization logic
var initRequest func(*request.Request)
// Service information constants
const (
ServiceName = "EC2 Instance Connect" // Name of service.
EndpointsID = "ec2-instance-connect" // ID to lookup a service endpoint with.
ServiceID = "EC2 Instance Connect" // ServiceID is a unique identifer of a specific service.
)
// New creates a new instance of the EC2InstanceConnect 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 EC2InstanceConnect client from just a session.
// svc := ec2instanceconnect.New(mySession)
//
// // Create a EC2InstanceConnect client with additional configuration
// svc := ec2instanceconnect.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
func New(p client.ConfigProvider, cfgs ...*aws.Config) *EC2InstanceConnect {
c := p.ClientConfig(EndpointsID, cfgs...)
return newClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion, c.SigningName)
}
// newClient creates, initializes and returns a new service client instance.
func newClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion, signingName string) *EC2InstanceConnect {
svc := &EC2InstanceConnect{
Client: client.New(
cfg,
metadata.ClientInfo{
ServiceName: ServiceName,
ServiceID: ServiceID,
SigningName: signingName,
SigningRegion: signingRegion,
Endpoint: endpoint,
APIVersion: "2018-04-02",
JSONVersion: "1.1",
TargetPrefix: "AWSEC2InstanceConnectService",
},
handlers,
),
}
// Handlers
svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler)
svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler)
svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler)
svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler)
svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler)
// Run custom client initialization if present
if initClient != nil {
initClient(svc.Client)
}
return svc
}
// newRequest creates a new request for a EC2InstanceConnect operation and runs any
// custom request initialization.
func (c *EC2InstanceConnect) newRequest(op *request.Operation, params, data interface{}) *request.Request {
req := c.NewRequest(op, params, data)
// Run custom request initialization if present
if initRequest != nil {
initRequest(req)
}
return req
}