build(deps): bump the go-deps group with 1 update
Bumps the go-deps group with 1 update: [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go). - [Release notes](https://github.com/aws/aws-sdk-go/releases) - [Commits](https://github.com/aws/aws-sdk-go/compare/v1.45.16...v1.45.17) --- updated-dependencies: - dependency-name: github.com/aws/aws-sdk-go dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go-deps ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
parent
5903aad07b
commit
347239838c
6 changed files with 33 additions and 5 deletions
2
vendor/github.com/aws/aws-sdk-go/aws/version.go
generated
vendored
2
vendor/github.com/aws/aws-sdk-go/aws/version.go
generated
vendored
|
|
@ -5,4 +5,4 @@ package aws
|
|||
const SDKName = "aws-sdk-go"
|
||||
|
||||
// SDKVersion is the version of this SDK
|
||||
const SDKVersion = "1.45.16"
|
||||
const SDKVersion = "1.45.17"
|
||||
|
|
|
|||
24
vendor/github.com/aws/aws-sdk-go/service/ec2/api.go
generated
vendored
24
vendor/github.com/aws/aws-sdk-go/service/ec2/api.go
generated
vendored
|
|
@ -52862,6 +52862,10 @@ func (c *EC2) RevokeSecurityGroupIngressRequest(input *RevokeSecurityGroupIngres
|
|||
// values, no error is returned, and the output describes the security group
|
||||
// rules that were not revoked.
|
||||
//
|
||||
// For a non-default VPC, if the values you specify do not match the existing
|
||||
// rule's values, an InvalidPermission.NotFound client error is returned, and
|
||||
// no rules are revoked.
|
||||
//
|
||||
// Amazon Web Services recommends that you describe the security group to verify
|
||||
// that the rules were removed.
|
||||
//
|
||||
|
|
@ -78184,6 +78188,10 @@ type CreateVerifiedAccessInstanceInput struct {
|
|||
// it is UnauthorizedOperation.
|
||||
DryRun *bool `type:"boolean"`
|
||||
|
||||
// Choose to enable or disable support for Federal Information Processing Standards
|
||||
// (FIPS) on the instance.
|
||||
FIPSEnabled *bool `type:"boolean"`
|
||||
|
||||
// The tags to assign to the Verified Access instance.
|
||||
TagSpecifications []*TagSpecification `locationName:"TagSpecification" locationNameList:"item" type:"list"`
|
||||
}
|
||||
|
|
@ -78224,6 +78232,12 @@ func (s *CreateVerifiedAccessInstanceInput) SetDryRun(v bool) *CreateVerifiedAcc
|
|||
return s
|
||||
}
|
||||
|
||||
// SetFIPSEnabled sets the FIPSEnabled field's value.
|
||||
func (s *CreateVerifiedAccessInstanceInput) SetFIPSEnabled(v bool) *CreateVerifiedAccessInstanceInput {
|
||||
s.FIPSEnabled = &v
|
||||
return s
|
||||
}
|
||||
|
||||
// SetTagSpecifications sets the TagSpecifications field's value.
|
||||
func (s *CreateVerifiedAccessInstanceInput) SetTagSpecifications(v []*TagSpecification) *CreateVerifiedAccessInstanceInput {
|
||||
s.TagSpecifications = v
|
||||
|
|
@ -179083,6 +179097,10 @@ type VerifiedAccessInstance struct {
|
|||
// A description for the Amazon Web Services Verified Access instance.
|
||||
Description *string `locationName:"description" type:"string"`
|
||||
|
||||
// Describes if support for Federal Information Processing Standards (FIPS)
|
||||
// is enabled on the instance.
|
||||
FipsEnabled *bool `locationName:"fipsEnabled" type:"boolean"`
|
||||
|
||||
// The last updated time.
|
||||
LastUpdatedTime *string `locationName:"lastUpdatedTime" type:"string"`
|
||||
|
||||
|
|
@ -179126,6 +179144,12 @@ func (s *VerifiedAccessInstance) SetDescription(v string) *VerifiedAccessInstanc
|
|||
return s
|
||||
}
|
||||
|
||||
// SetFipsEnabled sets the FipsEnabled field's value.
|
||||
func (s *VerifiedAccessInstance) SetFipsEnabled(v bool) *VerifiedAccessInstance {
|
||||
s.FipsEnabled = &v
|
||||
return s
|
||||
}
|
||||
|
||||
// SetLastUpdatedTime sets the LastUpdatedTime field's value.
|
||||
func (s *VerifiedAccessInstance) SetLastUpdatedTime(v string) *VerifiedAccessInstance {
|
||||
s.LastUpdatedTime = &v
|
||||
|
|
|
|||
4
vendor/github.com/aws/aws-sdk-go/service/s3/api.go
generated
vendored
4
vendor/github.com/aws/aws-sdk-go/service/s3/api.go
generated
vendored
|
|
@ -42379,6 +42379,9 @@ const (
|
|||
|
||||
// ReplicationStatusReplica is a ReplicationStatus enum value
|
||||
ReplicationStatusReplica = "REPLICA"
|
||||
|
||||
// ReplicationStatusCompleted is a ReplicationStatus enum value
|
||||
ReplicationStatusCompleted = "COMPLETED"
|
||||
)
|
||||
|
||||
// ReplicationStatus_Values returns all elements of the ReplicationStatus enum
|
||||
|
|
@ -42388,6 +42391,7 @@ func ReplicationStatus_Values() []string {
|
|||
ReplicationStatusPending,
|
||||
ReplicationStatusFailed,
|
||||
ReplicationStatusReplica,
|
||||
ReplicationStatusCompleted,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue