Vendor aws-sdk-go (dep ensure) (#178)

This commit is contained in:
Onur Filiz
2018-04-27 18:18:36 -07:00
committed by Robbie Zhang
parent 228a1f7a5f
commit 8d67098d06
2785 changed files with 1973570 additions and 25 deletions

View File

@@ -0,0 +1,347 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package marketplaceentitlementservice
import (
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
)
const opGetEntitlements = "GetEntitlements"
// GetEntitlementsRequest generates a "aws/request.Request" representing the
// client's request for the GetEntitlements operation. The "output" return
// value will be populated with the request's response once the request completes
// successfuly.
//
// 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 GetEntitlements for more information on using the GetEntitlements
// 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 GetEntitlementsRequest method.
// req, resp := client.GetEntitlementsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/entitlement.marketplace-2017-01-11/GetEntitlements
func (c *MarketplaceEntitlementService) GetEntitlementsRequest(input *GetEntitlementsInput) (req *request.Request, output *GetEntitlementsOutput) {
op := &request.Operation{
Name: opGetEntitlements,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetEntitlementsInput{}
}
output = &GetEntitlementsOutput{}
req = c.newRequest(op, input, output)
return
}
// GetEntitlements API operation for AWS Marketplace Entitlement Service.
//
// GetEntitlements retrieves entitlement values for a given product. The results
// can be filtered based on customer identifier or product dimensions.
//
// 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 Marketplace Entitlement Service's
// API operation GetEntitlements for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInvalidParameterException "InvalidParameterException"
// One or more parameters in your request was invalid.
//
// * ErrCodeThrottlingException "ThrottlingException"
// The calls to the GetEntitlements API are throttled.
//
// * ErrCodeInternalServiceErrorException "InternalServiceErrorException"
// An internal error has occurred. Retry your request. If the problem persists,
// post a message with details on the AWS forums.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/entitlement.marketplace-2017-01-11/GetEntitlements
func (c *MarketplaceEntitlementService) GetEntitlements(input *GetEntitlementsInput) (*GetEntitlementsOutput, error) {
req, out := c.GetEntitlementsRequest(input)
return out, req.Send()
}
// GetEntitlementsWithContext is the same as GetEntitlements with the addition of
// the ability to pass a context and additional request options.
//
// See GetEntitlements 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 *MarketplaceEntitlementService) GetEntitlementsWithContext(ctx aws.Context, input *GetEntitlementsInput, opts ...request.Option) (*GetEntitlementsOutput, error) {
req, out := c.GetEntitlementsRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
// An entitlement represents capacity in a product owned by the customer. For
// example, a customer might own some number of users or seats in an SaaS application
// or some amount of data capacity in a multi-tenant database.
type Entitlement struct {
_ struct{} `type:"structure"`
// The customer identifier is a handle to each unique customer in an application.
// Customer identifiers are obtained through the ResolveCustomer operation in
// AWS Marketplace Metering Service.
CustomerIdentifier *string `type:"string"`
// The dimension for which the given entitlement applies. Dimensions represent
// categories of capacity in a product and are specified when the product is
// listed in AWS Marketplace.
Dimension *string `type:"string"`
// The expiration date represents the minimum date through which this entitlement
// is expected to remain valid. For contractual products listed on AWS Marketplace,
// the expiration date is the date at which the customer will renew or cancel
// their contract. Customers who are opting to renew their contract will still
// have entitlements with an expiration date.
ExpirationDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// The product code for which the given entitlement applies. Product codes are
// provided by AWS Marketplace when the product listing is created.
ProductCode *string `min:"1" type:"string"`
// The EntitlementValue represents the amount of capacity that the customer
// is entitled to for the product.
Value *EntitlementValue `type:"structure"`
}
// String returns the string representation
func (s Entitlement) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Entitlement) GoString() string {
return s.String()
}
// SetCustomerIdentifier sets the CustomerIdentifier field's value.
func (s *Entitlement) SetCustomerIdentifier(v string) *Entitlement {
s.CustomerIdentifier = &v
return s
}
// SetDimension sets the Dimension field's value.
func (s *Entitlement) SetDimension(v string) *Entitlement {
s.Dimension = &v
return s
}
// SetExpirationDate sets the ExpirationDate field's value.
func (s *Entitlement) SetExpirationDate(v time.Time) *Entitlement {
s.ExpirationDate = &v
return s
}
// SetProductCode sets the ProductCode field's value.
func (s *Entitlement) SetProductCode(v string) *Entitlement {
s.ProductCode = &v
return s
}
// SetValue sets the Value field's value.
func (s *Entitlement) SetValue(v *EntitlementValue) *Entitlement {
s.Value = v
return s
}
// The EntitlementValue represents the amount of capacity that the customer
// is entitled to for the product.
type EntitlementValue struct {
_ struct{} `type:"structure"`
// The BooleanValue field will be populated with a boolean value when the entitlement
// is a boolean type. Otherwise, the field will not be set.
BooleanValue *bool `type:"boolean"`
// The DoubleValue field will be populated with a double value when the entitlement
// is a double type. Otherwise, the field will not be set.
DoubleValue *float64 `type:"double"`
// The IntegerValue field will be populated with an integer value when the entitlement
// is an integer type. Otherwise, the field will not be set.
IntegerValue *int64 `type:"integer"`
// The StringValue field will be populated with a string value when the entitlement
// is a string type. Otherwise, the field will not be set.
StringValue *string `type:"string"`
}
// String returns the string representation
func (s EntitlementValue) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s EntitlementValue) GoString() string {
return s.String()
}
// SetBooleanValue sets the BooleanValue field's value.
func (s *EntitlementValue) SetBooleanValue(v bool) *EntitlementValue {
s.BooleanValue = &v
return s
}
// SetDoubleValue sets the DoubleValue field's value.
func (s *EntitlementValue) SetDoubleValue(v float64) *EntitlementValue {
s.DoubleValue = &v
return s
}
// SetIntegerValue sets the IntegerValue field's value.
func (s *EntitlementValue) SetIntegerValue(v int64) *EntitlementValue {
s.IntegerValue = &v
return s
}
// SetStringValue sets the StringValue field's value.
func (s *EntitlementValue) SetStringValue(v string) *EntitlementValue {
s.StringValue = &v
return s
}
// The GetEntitlementsRequest contains parameters for the GetEntitlements operation.
type GetEntitlementsInput struct {
_ struct{} `type:"structure"`
// Filter is used to return entitlements for a specific customer or for a specific
// dimension. Filters are described as keys mapped to a lists of values. Filtered
// requests are unioned for each value in the value list, and then intersected
// for each filter key.
Filter map[string][]*string `type:"map"`
// The maximum number of items to retrieve from the GetEntitlements operation.
// For pagination, use the NextToken field in subsequent calls to GetEntitlements.
MaxResults *int64 `type:"integer"`
// For paginated calls to GetEntitlements, pass the NextToken from the previous
// GetEntitlementsResult.
NextToken *string `type:"string"`
// Product code is used to uniquely identify a product in AWS Marketplace. The
// product code will be provided by AWS Marketplace when the product listing
// is created.
//
// ProductCode is a required field
ProductCode *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s GetEntitlementsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetEntitlementsInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetEntitlementsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetEntitlementsInput"}
if s.ProductCode == nil {
invalidParams.Add(request.NewErrParamRequired("ProductCode"))
}
if s.ProductCode != nil && len(*s.ProductCode) < 1 {
invalidParams.Add(request.NewErrParamMinLen("ProductCode", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFilter sets the Filter field's value.
func (s *GetEntitlementsInput) SetFilter(v map[string][]*string) *GetEntitlementsInput {
s.Filter = v
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *GetEntitlementsInput) SetMaxResults(v int64) *GetEntitlementsInput {
s.MaxResults = &v
return s
}
// SetNextToken sets the NextToken field's value.
func (s *GetEntitlementsInput) SetNextToken(v string) *GetEntitlementsInput {
s.NextToken = &v
return s
}
// SetProductCode sets the ProductCode field's value.
func (s *GetEntitlementsInput) SetProductCode(v string) *GetEntitlementsInput {
s.ProductCode = &v
return s
}
// The GetEntitlementsRequest contains results from the GetEntitlements operation.
type GetEntitlementsOutput struct {
_ struct{} `type:"structure"`
// The set of entitlements found through the GetEntitlements operation. If the
// result contains an empty set of entitlements, NextToken might still be present
// and should be used.
Entitlements []*Entitlement `type:"list"`
// For paginated results, use NextToken in subsequent calls to GetEntitlements.
// If the result contains an empty set of entitlements, NextToken might still
// be present and should be used.
NextToken *string `type:"string"`
}
// String returns the string representation
func (s GetEntitlementsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetEntitlementsOutput) GoString() string {
return s.String()
}
// SetEntitlements sets the Entitlements field's value.
func (s *GetEntitlementsOutput) SetEntitlements(v []*Entitlement) *GetEntitlementsOutput {
s.Entitlements = v
return s
}
// SetNextToken sets the NextToken field's value.
func (s *GetEntitlementsOutput) SetNextToken(v string) *GetEntitlementsOutput {
s.NextToken = &v
return s
}
const (
// GetEntitlementFilterNameCustomerIdentifier is a GetEntitlementFilterName enum value
GetEntitlementFilterNameCustomerIdentifier = "CUSTOMER_IDENTIFIER"
// GetEntitlementFilterNameDimension is a GetEntitlementFilterName enum value
GetEntitlementFilterNameDimension = "DIMENSION"
)

View File

@@ -0,0 +1,39 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
// Package marketplaceentitlementservice provides the client and types for making API
// requests to AWS Marketplace Entitlement Service.
//
// This reference provides descriptions of the AWS Marketplace Entitlement Service
// API.
//
// AWS Marketplace Entitlement Service is used to determine the entitlement
// of a customer to a given product. An entitlement represents capacity in a
// product owned by the customer. For example, a customer might own some number
// of users or seats in an SaaS application or some amount of data capacity
// in a multi-tenant database.
//
// Getting Entitlement Records
//
// * GetEntitlements- Gets the entitlements for a Marketplace product.
//
// See https://docs.aws.amazon.com/goto/WebAPI/entitlement.marketplace-2017-01-11 for more information on this service.
//
// See marketplaceentitlementservice package documentation for more information.
// https://docs.aws.amazon.com/sdk-for-go/api/service/marketplaceentitlementservice/
//
// Using the Client
//
// To contact AWS Marketplace Entitlement Service 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 Marketplace Entitlement Service client MarketplaceEntitlementService for more
// information on creating client for this service.
// https://docs.aws.amazon.com/sdk-for-go/api/service/marketplaceentitlementservice/#New
package marketplaceentitlementservice

View File

@@ -0,0 +1,25 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package marketplaceentitlementservice
const (
// ErrCodeInternalServiceErrorException for service response error code
// "InternalServiceErrorException".
//
// An internal error has occurred. Retry your request. If the problem persists,
// post a message with details on the AWS forums.
ErrCodeInternalServiceErrorException = "InternalServiceErrorException"
// ErrCodeInvalidParameterException for service response error code
// "InvalidParameterException".
//
// One or more parameters in your request was invalid.
ErrCodeInvalidParameterException = "InvalidParameterException"
// ErrCodeThrottlingException for service response error code
// "ThrottlingException".
//
// The calls to the GetEntitlements API are throttled.
ErrCodeThrottlingException = "ThrottlingException"
)

View File

@@ -0,0 +1,68 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
// Package marketplaceentitlementserviceiface provides an interface to enable mocking the AWS Marketplace Entitlement Service service client
// for testing your code.
//
// It is important to note that this interface will have breaking changes
// when the service model is updated and adds new API operations, paginators,
// and waiters.
package marketplaceentitlementserviceiface
import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/service/marketplaceentitlementservice"
)
// MarketplaceEntitlementServiceAPI provides an interface to enable mocking the
// marketplaceentitlementservice.MarketplaceEntitlementService 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 Marketplace Entitlement Service.
// func myFunc(svc marketplaceentitlementserviceiface.MarketplaceEntitlementServiceAPI) bool {
// // Make svc.GetEntitlements request
// }
//
// func main() {
// sess := session.New()
// svc := marketplaceentitlementservice.New(sess)
//
// myFunc(svc)
// }
//
// In your _test.go file:
//
// // Define a mock struct to be used in your unit tests of myFunc.
// type mockMarketplaceEntitlementServiceClient struct {
// marketplaceentitlementserviceiface.MarketplaceEntitlementServiceAPI
// }
// func (m *mockMarketplaceEntitlementServiceClient) GetEntitlements(input *marketplaceentitlementservice.GetEntitlementsInput) (*marketplaceentitlementservice.GetEntitlementsOutput, error) {
// // mock response/functionality
// }
//
// func TestMyFunc(t *testing.T) {
// // Setup Test
// mockSvc := &mockMarketplaceEntitlementServiceClient{}
//
// 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 MarketplaceEntitlementServiceAPI interface {
GetEntitlements(*marketplaceentitlementservice.GetEntitlementsInput) (*marketplaceentitlementservice.GetEntitlementsOutput, error)
GetEntitlementsWithContext(aws.Context, *marketplaceentitlementservice.GetEntitlementsInput, ...request.Option) (*marketplaceentitlementservice.GetEntitlementsOutput, error)
GetEntitlementsRequest(*marketplaceentitlementservice.GetEntitlementsInput) (*request.Request, *marketplaceentitlementservice.GetEntitlementsOutput)
}
var _ MarketplaceEntitlementServiceAPI = (*marketplaceentitlementservice.MarketplaceEntitlementService)(nil)

View File

@@ -0,0 +1,98 @@
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package marketplaceentitlementservice
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"
)
// MarketplaceEntitlementService provides the API operation methods for making requests to
// AWS Marketplace Entitlement Service. See this package's package overview docs
// for details on the service.
//
// MarketplaceEntitlementService methods are safe to use concurrently. It is not safe to
// modify mutate any of the struct's properties though.
type MarketplaceEntitlementService 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 = "entitlement.marketplace" // Service endpoint prefix API calls made to.
EndpointsID = ServiceName // Service ID for Regions and Endpoints metadata.
)
// New creates a new instance of the MarketplaceEntitlementService 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 MarketplaceEntitlementService client from just a session.
// svc := marketplaceentitlementservice.New(mySession)
//
// // Create a MarketplaceEntitlementService client with additional configuration
// svc := marketplaceentitlementservice.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
func New(p client.ConfigProvider, cfgs ...*aws.Config) *MarketplaceEntitlementService {
c := p.ClientConfig(EndpointsID, cfgs...)
if c.SigningNameDerived || len(c.SigningName) == 0 {
c.SigningName = "aws-marketplace"
}
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) *MarketplaceEntitlementService {
svc := &MarketplaceEntitlementService{
Client: client.New(
cfg,
metadata.ClientInfo{
ServiceName: ServiceName,
SigningName: signingName,
SigningRegion: signingRegion,
Endpoint: endpoint,
APIVersion: "2017-01-11",
JSONVersion: "1.1",
TargetPrefix: "AWSMPEntitlementService",
},
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 MarketplaceEntitlementService operation and runs any
// custom request initialization.
func (c *MarketplaceEntitlementService) 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
}