vendor: update all dependencies

This commit is contained in:
Nick Craig-Wood 2018-03-19 15:51:38 +00:00
parent 940df88eb2
commit d64789528d
4309 changed files with 1327278 additions and 1001118 deletions

View file

@ -9499,6 +9499,9 @@ func (c *IoT) SetDefaultAuthorizerRequest(input *SetDefaultAuthorizerInput) (req
// * ErrCodeInternalFailureException "InternalFailureException"
// An unexpected error has occurred.
//
// * ErrCodeResourceAlreadyExistsException "ResourceAlreadyExistsException"
// The resource already exists.
//
func (c *IoT) SetDefaultAuthorizer(input *SetDefaultAuthorizerInput) (*SetDefaultAuthorizerOutput, error) {
req, out := c.SetDefaultAuthorizerRequest(input)
return out, req.Send()
@ -12280,6 +12283,12 @@ type CACertificateDescription struct {
// The date the CA certificate was created.
CreationDate *time.Time `locationName:"creationDate" type:"timestamp" timestampFormat:"unix"`
CustomerVersion *int64 `locationName:"customerVersion" min:"1" type:"integer"`
GenerationId *string `locationName:"generationId" type:"string"`
LastModifiedDate *time.Time `locationName:"lastModifiedDate" type:"timestamp" timestampFormat:"unix"`
// The owner of the CA certificate.
OwnedBy *string `locationName:"ownedBy" type:"string"`
@ -12327,6 +12336,24 @@ func (s *CACertificateDescription) SetCreationDate(v time.Time) *CACertificateDe
return s
}
// SetCustomerVersion sets the CustomerVersion field's value.
func (s *CACertificateDescription) SetCustomerVersion(v int64) *CACertificateDescription {
s.CustomerVersion = &v
return s
}
// SetGenerationId sets the GenerationId field's value.
func (s *CACertificateDescription) SetGenerationId(v string) *CACertificateDescription {
s.GenerationId = &v
return s
}
// SetLastModifiedDate sets the LastModifiedDate field's value.
func (s *CACertificateDescription) SetLastModifiedDate(v time.Time) *CACertificateDescription {
s.LastModifiedDate = &v
return s
}
// SetOwnedBy sets the OwnedBy field's value.
func (s *CACertificateDescription) SetOwnedBy(v string) *CACertificateDescription {
s.OwnedBy = &v
@ -12558,6 +12585,10 @@ type CertificateDescription struct {
// The date and time the certificate was created.
CreationDate *time.Time `locationName:"creationDate" type:"timestamp" timestampFormat:"unix"`
CustomerVersion *int64 `locationName:"customerVersion" min:"1" type:"integer"`
GenerationId *string `locationName:"generationId" type:"string"`
// The date and time the certificate was last modified.
LastModifiedDate *time.Time `locationName:"lastModifiedDate" type:"timestamp" timestampFormat:"unix"`
@ -12614,6 +12645,18 @@ func (s *CertificateDescription) SetCreationDate(v time.Time) *CertificateDescri
return s
}
// SetCustomerVersion sets the CustomerVersion field's value.
func (s *CertificateDescription) SetCustomerVersion(v int64) *CertificateDescription {
s.CustomerVersion = &v
return s
}
// SetGenerationId sets the GenerationId field's value.
func (s *CertificateDescription) SetGenerationId(v string) *CertificateDescription {
s.GenerationId = &v
return s
}
// SetLastModifiedDate sets the LastModifiedDate field's value.
func (s *CertificateDescription) SetLastModifiedDate(v time.Time) *CertificateDescription {
s.LastModifiedDate = &v
@ -17902,9 +17945,15 @@ func (s *GetPolicyInput) SetPolicyName(v string) *GetPolicyInput {
type GetPolicyOutput struct {
_ struct{} `type:"structure"`
CreationDate *time.Time `locationName:"creationDate" type:"timestamp" timestampFormat:"unix"`
// The default policy version ID.
DefaultVersionId *string `locationName:"defaultVersionId" type:"string"`
GenerationId *string `locationName:"generationId" type:"string"`
LastModifiedDate *time.Time `locationName:"lastModifiedDate" type:"timestamp" timestampFormat:"unix"`
// The policy ARN.
PolicyArn *string `locationName:"policyArn" type:"string"`
@ -17925,12 +17974,30 @@ func (s GetPolicyOutput) GoString() string {
return s.String()
}
// SetCreationDate sets the CreationDate field's value.
func (s *GetPolicyOutput) SetCreationDate(v time.Time) *GetPolicyOutput {
s.CreationDate = &v
return s
}
// SetDefaultVersionId sets the DefaultVersionId field's value.
func (s *GetPolicyOutput) SetDefaultVersionId(v string) *GetPolicyOutput {
s.DefaultVersionId = &v
return s
}
// SetGenerationId sets the GenerationId field's value.
func (s *GetPolicyOutput) SetGenerationId(v string) *GetPolicyOutput {
s.GenerationId = &v
return s
}
// SetLastModifiedDate sets the LastModifiedDate field's value.
func (s *GetPolicyOutput) SetLastModifiedDate(v time.Time) *GetPolicyOutput {
s.LastModifiedDate = &v
return s
}
// SetPolicyArn sets the PolicyArn field's value.
func (s *GetPolicyOutput) SetPolicyArn(v string) *GetPolicyOutput {
s.PolicyArn = &v
@ -18009,9 +18076,15 @@ func (s *GetPolicyVersionInput) SetPolicyVersionId(v string) *GetPolicyVersionIn
type GetPolicyVersionOutput struct {
_ struct{} `type:"structure"`
CreationDate *time.Time `locationName:"creationDate" type:"timestamp" timestampFormat:"unix"`
GenerationId *string `locationName:"generationId" type:"string"`
// Specifies whether the policy version is the default.
IsDefaultVersion *bool `locationName:"isDefaultVersion" type:"boolean"`
LastModifiedDate *time.Time `locationName:"lastModifiedDate" type:"timestamp" timestampFormat:"unix"`
// The policy ARN.
PolicyArn *string `locationName:"policyArn" type:"string"`
@ -18035,12 +18108,30 @@ func (s GetPolicyVersionOutput) GoString() string {
return s.String()
}
// SetCreationDate sets the CreationDate field's value.
func (s *GetPolicyVersionOutput) SetCreationDate(v time.Time) *GetPolicyVersionOutput {
s.CreationDate = &v
return s
}
// SetGenerationId sets the GenerationId field's value.
func (s *GetPolicyVersionOutput) SetGenerationId(v string) *GetPolicyVersionOutput {
s.GenerationId = &v
return s
}
// SetIsDefaultVersion sets the IsDefaultVersion field's value.
func (s *GetPolicyVersionOutput) SetIsDefaultVersion(v bool) *GetPolicyVersionOutput {
s.IsDefaultVersion = &v
return s
}
// SetLastModifiedDate sets the LastModifiedDate field's value.
func (s *GetPolicyVersionOutput) SetLastModifiedDate(v time.Time) *GetPolicyVersionOutput {
s.LastModifiedDate = &v
return s
}
// SetPolicyArn sets the PolicyArn field's value.
func (s *GetPolicyVersionOutput) SetPolicyArn(v string) *GetPolicyVersionOutput {
s.PolicyArn = &v
@ -23077,6 +23168,8 @@ type RoleAliasDescription struct {
// The role alias.
RoleAlias *string `locationName:"roleAlias" min:"1" type:"string"`
RoleAliasArn *string `locationName:"roleAliasArn" type:"string"`
// The role ARN.
RoleArn *string `locationName:"roleArn" min:"20" type:"string"`
}
@ -23121,6 +23214,12 @@ func (s *RoleAliasDescription) SetRoleAlias(v string) *RoleAliasDescription {
return s
}
// SetRoleAliasArn sets the RoleAliasArn field's value.
func (s *RoleAliasDescription) SetRoleAliasArn(v string) *RoleAliasDescription {
s.RoleAliasArn = &v
return s
}
// SetRoleArn sets the RoleArn field's value.
func (s *RoleAliasDescription) SetRoleArn(v string) *RoleAliasDescription {
s.RoleArn = &v