build(deps): bump github.com/aws/aws-sdk-go from 1.44.104 to 1.44.108
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.44.104 to 1.44.108. - [Release notes](https://github.com/aws/aws-sdk-go/releases) - [Commits](https://github.com/aws/aws-sdk-go/compare/v1.44.104...v1.44.108) --- 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:
parent
b1461c91bb
commit
79cef73227
6 changed files with 245 additions and 5 deletions
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
|
|
@ -107861,6 +107861,10 @@ type FleetLaunchTemplateOverrides struct {
|
|||
// The Availability Zone in which to launch the instances.
|
||||
AvailabilityZone *string `locationName:"availabilityZone" type:"string"`
|
||||
|
||||
// The ID of the AMI. An AMI is required to launch an instance. The AMI ID must
|
||||
// be specified here or in the launch template.
|
||||
ImageId *string `locationName:"imageId" type:"string"`
|
||||
|
||||
// The attributes for the instance types. When you specify instance attributes,
|
||||
// Amazon EC2 will identify instance types with those attributes.
|
||||
//
|
||||
|
|
@ -107932,6 +107936,12 @@ func (s *FleetLaunchTemplateOverrides) SetAvailabilityZone(v string) *FleetLaunc
|
|||
return s
|
||||
}
|
||||
|
||||
// SetImageId sets the ImageId field's value.
|
||||
func (s *FleetLaunchTemplateOverrides) SetImageId(v string) *FleetLaunchTemplateOverrides {
|
||||
s.ImageId = &v
|
||||
return s
|
||||
}
|
||||
|
||||
// SetInstanceRequirements sets the InstanceRequirements field's value.
|
||||
func (s *FleetLaunchTemplateOverrides) SetInstanceRequirements(v *InstanceRequirements) *FleetLaunchTemplateOverrides {
|
||||
s.InstanceRequirements = v
|
||||
|
|
@ -107981,6 +107991,10 @@ type FleetLaunchTemplateOverridesRequest struct {
|
|||
// The Availability Zone in which to launch the instances.
|
||||
AvailabilityZone *string `type:"string"`
|
||||
|
||||
// The ID of the AMI. An AMI is required to launch an instance. The AMI ID must
|
||||
// be specified here or in the launch template.
|
||||
ImageId *string `type:"string"`
|
||||
|
||||
// The attributes for the instance types. When you specify instance attributes,
|
||||
// Amazon EC2 will identify instance types with those attributes.
|
||||
//
|
||||
|
|
@ -108069,6 +108083,12 @@ func (s *FleetLaunchTemplateOverridesRequest) SetAvailabilityZone(v string) *Fle
|
|||
return s
|
||||
}
|
||||
|
||||
// SetImageId sets the ImageId field's value.
|
||||
func (s *FleetLaunchTemplateOverridesRequest) SetImageId(v string) *FleetLaunchTemplateOverridesRequest {
|
||||
s.ImageId = &v
|
||||
return s
|
||||
}
|
||||
|
||||
// SetInstanceRequirements sets the InstanceRequirements field's value.
|
||||
func (s *FleetLaunchTemplateOverridesRequest) SetInstanceRequirements(v *InstanceRequirementsRequest) *FleetLaunchTemplateOverridesRequest {
|
||||
s.InstanceRequirements = v
|
||||
|
|
@ -170022,6 +170042,9 @@ const (
|
|||
|
||||
// InstanceTypeP4de24xlarge is a InstanceType enum value
|
||||
InstanceTypeP4de24xlarge = "p4de.24xlarge"
|
||||
|
||||
// InstanceTypeU3tb156xlarge is a InstanceType enum value
|
||||
InstanceTypeU3tb156xlarge = "u-3tb1.56xlarge"
|
||||
)
|
||||
|
||||
// InstanceType_Values returns all elements of the InstanceType enum
|
||||
|
|
@ -170595,6 +170618,7 @@ func InstanceType_Values() []string {
|
|||
InstanceTypeR6a48xlarge,
|
||||
InstanceTypeR6aMetal,
|
||||
InstanceTypeP4de24xlarge,
|
||||
InstanceTypeU3tb156xlarge,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue