mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-13 10:33:35 +00:00
rebase: bump github.com/aws/aws-sdk-go from 1.43.3 to 1.43.8
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.43.3 to 1.43.8. - [Release notes](https://github.com/aws/aws-sdk-go/releases) - [Changelog](https://github.com/aws/aws-sdk-go/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws/aws-sdk-go/compare/v1.43.3...v1.43.8) --- updated-dependencies: - dependency-name: github.com/aws/aws-sdk-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
committed by
mergify[bot]
parent
d5c98f81a2
commit
9a9c69cba2
23
vendor/github.com/aws/aws-sdk-go/service/ec2/api.go
generated
vendored
23
vendor/github.com/aws/aws-sdk-go/service/ec2/api.go
generated
vendored
@ -82303,7 +82303,7 @@ type DescribeImageAttributeOutput struct {
|
||||
// The block device mapping entries.
|
||||
BlockDeviceMappings []*BlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"`
|
||||
|
||||
// Describes a value for a resource attribute that is a String.
|
||||
// The boot mode.
|
||||
BootMode *AttributeValue `locationName:"bootMode" type:"structure"`
|
||||
|
||||
// A description for the AMI.
|
||||
@ -82315,6 +82315,13 @@ type DescribeImageAttributeOutput struct {
|
||||
// The kernel ID.
|
||||
KernelId *AttributeValue `locationName:"kernel" type:"structure"`
|
||||
|
||||
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601),
|
||||
// when the AMI was last used to launch an EC2 instance. When the AMI is used,
|
||||
// there is a 24-hour delay before that usage is reported.
|
||||
//
|
||||
// lastLaunchedTime data is available starting April 2017.
|
||||
LastLaunchedTime *AttributeValue `locationName:"lastLaunchedTime" type:"structure"`
|
||||
|
||||
// The launch permissions.
|
||||
LaunchPermissions []*LaunchPermission `locationName:"launchPermission" locationNameList:"item" type:"list"`
|
||||
|
||||
@ -82377,6 +82384,12 @@ func (s *DescribeImageAttributeOutput) SetKernelId(v *AttributeValue) *DescribeI
|
||||
return s
|
||||
}
|
||||
|
||||
// SetLastLaunchedTime sets the LastLaunchedTime field's value.
|
||||
func (s *DescribeImageAttributeOutput) SetLastLaunchedTime(v *AttributeValue) *DescribeImageAttributeOutput {
|
||||
s.LastLaunchedTime = v
|
||||
return s
|
||||
}
|
||||
|
||||
// SetLaunchPermissions sets the LaunchPermissions field's value.
|
||||
func (s *DescribeImageAttributeOutput) SetLaunchPermissions(v []*LaunchPermission) *DescribeImageAttributeOutput {
|
||||
s.LaunchPermissions = v
|
||||
@ -162064,6 +162077,9 @@ const (
|
||||
|
||||
// ImageAttributeNameBootMode is a ImageAttributeName enum value
|
||||
ImageAttributeNameBootMode = "bootMode"
|
||||
|
||||
// ImageAttributeNameLastLaunchedTime is a ImageAttributeName enum value
|
||||
ImageAttributeNameLastLaunchedTime = "lastLaunchedTime"
|
||||
)
|
||||
|
||||
// ImageAttributeName_Values returns all elements of the ImageAttributeName enum
|
||||
@ -162077,6 +162093,7 @@ func ImageAttributeName_Values() []string {
|
||||
ImageAttributeNameBlockDeviceMapping,
|
||||
ImageAttributeNameSriovNetSupport,
|
||||
ImageAttributeNameBootMode,
|
||||
ImageAttributeNameLastLaunchedTime,
|
||||
}
|
||||
}
|
||||
|
||||
@ -166134,6 +166151,9 @@ const (
|
||||
// ResourceTypeSubnet is a ResourceType enum value
|
||||
ResourceTypeSubnet = "subnet"
|
||||
|
||||
// ResourceTypeSubnetCidrReservation is a ResourceType enum value
|
||||
ResourceTypeSubnetCidrReservation = "subnet-cidr-reservation"
|
||||
|
||||
// ResourceTypeTrafficMirrorFilter is a ResourceType enum value
|
||||
ResourceTypeTrafficMirrorFilter = "traffic-mirror-filter"
|
||||
|
||||
@ -166237,6 +166257,7 @@ func ResourceType_Values() []string {
|
||||
ResourceTypeSpotFleetRequest,
|
||||
ResourceTypeSpotInstancesRequest,
|
||||
ResourceTypeSubnet,
|
||||
ResourceTypeSubnetCidrReservation,
|
||||
ResourceTypeTrafficMirrorFilter,
|
||||
ResourceTypeTrafficMirrorSession,
|
||||
ResourceTypeTrafficMirrorTarget,
|
||||
|
Reference in New Issue
Block a user