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.44.180 to 1.44.185
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.44.180 to 1.44.185. - [Release notes](https://github.com/aws/aws-sdk-go/releases) - [Commits](https://github.com/aws/aws-sdk-go/compare/v1.44.180...v1.44.185) --- 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
a6e8679c72
commit
f852873e16
249
vendor/github.com/aws/aws-sdk-go/service/ec2/api.go
generated
vendored
249
vendor/github.com/aws/aws-sdk-go/service/ec2/api.go
generated
vendored
@ -68988,6 +68988,14 @@ type CreateLaunchTemplateVersionInput struct {
|
||||
// both.
|
||||
LaunchTemplateName *string `min:"3" type:"string"`
|
||||
|
||||
// If true, and if a Systems Manager parameter is specified for ImageId, the
|
||||
// AMI ID is displayed in the response for imageID. For more information, see
|
||||
// Use a Systems Manager parameter instead of an AMI ID (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html#use-an-ssm-parameter-instead-of-an-ami-id)
|
||||
// in the Amazon Elastic Compute Cloud User Guide.
|
||||
//
|
||||
// Default: false
|
||||
ResolveAlias *bool `type:"boolean"`
|
||||
|
||||
// The version number of the launch template version on which to base the new
|
||||
// version. The new version inherits the same launch parameters as the source
|
||||
// version, except for parameters that you specify in LaunchTemplateData. Snapshots
|
||||
@ -69068,6 +69076,12 @@ func (s *CreateLaunchTemplateVersionInput) SetLaunchTemplateName(v string) *Crea
|
||||
return s
|
||||
}
|
||||
|
||||
// SetResolveAlias sets the ResolveAlias field's value.
|
||||
func (s *CreateLaunchTemplateVersionInput) SetResolveAlias(v bool) *CreateLaunchTemplateVersionInput {
|
||||
s.ResolveAlias = &v
|
||||
return s
|
||||
}
|
||||
|
||||
// SetSourceVersion sets the SourceVersion field's value.
|
||||
func (s *CreateLaunchTemplateVersionInput) SetSourceVersion(v string) *CreateLaunchTemplateVersionInput {
|
||||
s.SourceVersion = &v
|
||||
@ -93640,6 +93654,19 @@ type DescribeLaunchTemplateVersionsInput struct {
|
||||
// The token to request the next page of results.
|
||||
NextToken *string `type:"string"`
|
||||
|
||||
// If true, and if a Systems Manager parameter is specified for ImageId, the
|
||||
// AMI ID is displayed in the response for imageId.
|
||||
//
|
||||
// If false, and if a Systems Manager parameter is specified for ImageId, the
|
||||
// parameter is displayed in the response for imageId.
|
||||
//
|
||||
// For more information, see Use a Systems Manager parameter instead of an AMI
|
||||
// ID (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html#use-an-ssm-parameter-instead-of-an-ami-id)
|
||||
// in the Amazon Elastic Compute Cloud User Guide.
|
||||
//
|
||||
// Default: false
|
||||
ResolveAlias *bool `type:"boolean"`
|
||||
|
||||
// One or more versions of the launch template. Valid values depend on whether
|
||||
// you are describing a specified launch template (by ID or name) or all launch
|
||||
// templates in your account.
|
||||
@ -93734,6 +93761,12 @@ func (s *DescribeLaunchTemplateVersionsInput) SetNextToken(v string) *DescribeLa
|
||||
return s
|
||||
}
|
||||
|
||||
// SetResolveAlias sets the ResolveAlias field's value.
|
||||
func (s *DescribeLaunchTemplateVersionsInput) SetResolveAlias(v bool) *DescribeLaunchTemplateVersionsInput {
|
||||
s.ResolveAlias = &v
|
||||
return s
|
||||
}
|
||||
|
||||
// SetVersions sets the Versions field's value.
|
||||
func (s *DescribeLaunchTemplateVersionsInput) SetVersions(v []*string) *DescribeLaunchTemplateVersionsInput {
|
||||
s.Versions = v
|
||||
@ -153251,7 +153284,22 @@ type RequestLaunchTemplateData struct {
|
||||
// The name or Amazon Resource Name (ARN) of an IAM instance profile.
|
||||
IamInstanceProfile *LaunchTemplateIamInstanceProfileSpecificationRequest `type:"structure"`
|
||||
|
||||
// The ID of the AMI.
|
||||
// The ID of the AMI. Alternatively, you can specify a Systems Manager parameter,
|
||||
// which will resolve to an AMI ID on launch.
|
||||
//
|
||||
// Valid formats:
|
||||
//
|
||||
// * ami-17characters00000
|
||||
//
|
||||
// * resolve:ssm:parameter-name
|
||||
//
|
||||
// * resolve:ssm:parameter-name:version-number
|
||||
//
|
||||
// * resolve:ssm:parameter-name:label
|
||||
//
|
||||
// For more information, see Use a Systems Manager parameter instead of an AMI
|
||||
// ID (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html#use-an-ssm-parameter-instead-of-an-ami-id)
|
||||
// in the Amazon Elastic Compute Cloud User Guide.
|
||||
ImageId *string `type:"string"`
|
||||
|
||||
// Indicates whether an instance stops or terminates when you initiate shutdown
|
||||
@ -156005,7 +156053,24 @@ type ResponseLaunchTemplateData struct {
|
||||
// The IAM instance profile.
|
||||
IamInstanceProfile *LaunchTemplateIamInstanceProfileSpecification `locationName:"iamInstanceProfile" type:"structure"`
|
||||
|
||||
// The ID of the AMI that was used to launch the instance.
|
||||
// The ID of the AMI or a Systems Manager parameter. The Systems Manager parameter
|
||||
// will resolve to the ID of the AMI at instance launch.
|
||||
//
|
||||
// The value depends on what you specified in the request. The possible values
|
||||
// are:
|
||||
//
|
||||
// * If an AMI ID was specified in the request, then this is the AMI ID.
|
||||
//
|
||||
// * If a Systems Manager parameter was specified in the request, and ResolveAlias
|
||||
// was configured as true, then this is the AMI ID that the parameter is
|
||||
// mapped to in the Parameter Store.
|
||||
//
|
||||
// * If a Systems Manager parameter was specified in the request, and ResolveAlias
|
||||
// was configured as false, then this is the parameter value.
|
||||
//
|
||||
// For more information, see Use a Systems Manager parameter instead of an AMI
|
||||
// ID (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html#use-an-ssm-parameter-instead-of-an-ami-id)
|
||||
// in the Amazon Elastic Compute Cloud User Guide.
|
||||
ImageId *string `locationName:"imageId" type:"string"`
|
||||
|
||||
// Indicates whether an instance stops or terminates when you initiate shutdown
|
||||
@ -180082,6 +180147,141 @@ const (
|
||||
|
||||
// InstanceTypeHpc6id32xlarge is a InstanceType enum value
|
||||
InstanceTypeHpc6id32xlarge = "hpc6id.32xlarge"
|
||||
|
||||
// InstanceTypeC6inLarge is a InstanceType enum value
|
||||
InstanceTypeC6inLarge = "c6in.large"
|
||||
|
||||
// InstanceTypeC6inXlarge is a InstanceType enum value
|
||||
InstanceTypeC6inXlarge = "c6in.xlarge"
|
||||
|
||||
// InstanceTypeC6in2xlarge is a InstanceType enum value
|
||||
InstanceTypeC6in2xlarge = "c6in.2xlarge"
|
||||
|
||||
// InstanceTypeC6in4xlarge is a InstanceType enum value
|
||||
InstanceTypeC6in4xlarge = "c6in.4xlarge"
|
||||
|
||||
// InstanceTypeC6in8xlarge is a InstanceType enum value
|
||||
InstanceTypeC6in8xlarge = "c6in.8xlarge"
|
||||
|
||||
// InstanceTypeC6in12xlarge is a InstanceType enum value
|
||||
InstanceTypeC6in12xlarge = "c6in.12xlarge"
|
||||
|
||||
// InstanceTypeC6in16xlarge is a InstanceType enum value
|
||||
InstanceTypeC6in16xlarge = "c6in.16xlarge"
|
||||
|
||||
// InstanceTypeC6in24xlarge is a InstanceType enum value
|
||||
InstanceTypeC6in24xlarge = "c6in.24xlarge"
|
||||
|
||||
// InstanceTypeC6in32xlarge is a InstanceType enum value
|
||||
InstanceTypeC6in32xlarge = "c6in.32xlarge"
|
||||
|
||||
// InstanceTypeM6inLarge is a InstanceType enum value
|
||||
InstanceTypeM6inLarge = "m6in.large"
|
||||
|
||||
// InstanceTypeM6inXlarge is a InstanceType enum value
|
||||
InstanceTypeM6inXlarge = "m6in.xlarge"
|
||||
|
||||
// InstanceTypeM6in2xlarge is a InstanceType enum value
|
||||
InstanceTypeM6in2xlarge = "m6in.2xlarge"
|
||||
|
||||
// InstanceTypeM6in4xlarge is a InstanceType enum value
|
||||
InstanceTypeM6in4xlarge = "m6in.4xlarge"
|
||||
|
||||
// InstanceTypeM6in8xlarge is a InstanceType enum value
|
||||
InstanceTypeM6in8xlarge = "m6in.8xlarge"
|
||||
|
||||
// InstanceTypeM6in12xlarge is a InstanceType enum value
|
||||
InstanceTypeM6in12xlarge = "m6in.12xlarge"
|
||||
|
||||
// InstanceTypeM6in16xlarge is a InstanceType enum value
|
||||
InstanceTypeM6in16xlarge = "m6in.16xlarge"
|
||||
|
||||
// InstanceTypeM6in24xlarge is a InstanceType enum value
|
||||
InstanceTypeM6in24xlarge = "m6in.24xlarge"
|
||||
|
||||
// InstanceTypeM6in32xlarge is a InstanceType enum value
|
||||
InstanceTypeM6in32xlarge = "m6in.32xlarge"
|
||||
|
||||
// InstanceTypeM6idnLarge is a InstanceType enum value
|
||||
InstanceTypeM6idnLarge = "m6idn.large"
|
||||
|
||||
// InstanceTypeM6idnXlarge is a InstanceType enum value
|
||||
InstanceTypeM6idnXlarge = "m6idn.xlarge"
|
||||
|
||||
// InstanceTypeM6idn2xlarge is a InstanceType enum value
|
||||
InstanceTypeM6idn2xlarge = "m6idn.2xlarge"
|
||||
|
||||
// InstanceTypeM6idn4xlarge is a InstanceType enum value
|
||||
InstanceTypeM6idn4xlarge = "m6idn.4xlarge"
|
||||
|
||||
// InstanceTypeM6idn8xlarge is a InstanceType enum value
|
||||
InstanceTypeM6idn8xlarge = "m6idn.8xlarge"
|
||||
|
||||
// InstanceTypeM6idn12xlarge is a InstanceType enum value
|
||||
InstanceTypeM6idn12xlarge = "m6idn.12xlarge"
|
||||
|
||||
// InstanceTypeM6idn16xlarge is a InstanceType enum value
|
||||
InstanceTypeM6idn16xlarge = "m6idn.16xlarge"
|
||||
|
||||
// InstanceTypeM6idn24xlarge is a InstanceType enum value
|
||||
InstanceTypeM6idn24xlarge = "m6idn.24xlarge"
|
||||
|
||||
// InstanceTypeM6idn32xlarge is a InstanceType enum value
|
||||
InstanceTypeM6idn32xlarge = "m6idn.32xlarge"
|
||||
|
||||
// InstanceTypeR6inLarge is a InstanceType enum value
|
||||
InstanceTypeR6inLarge = "r6in.large"
|
||||
|
||||
// InstanceTypeR6inXlarge is a InstanceType enum value
|
||||
InstanceTypeR6inXlarge = "r6in.xlarge"
|
||||
|
||||
// InstanceTypeR6in2xlarge is a InstanceType enum value
|
||||
InstanceTypeR6in2xlarge = "r6in.2xlarge"
|
||||
|
||||
// InstanceTypeR6in4xlarge is a InstanceType enum value
|
||||
InstanceTypeR6in4xlarge = "r6in.4xlarge"
|
||||
|
||||
// InstanceTypeR6in8xlarge is a InstanceType enum value
|
||||
InstanceTypeR6in8xlarge = "r6in.8xlarge"
|
||||
|
||||
// InstanceTypeR6in12xlarge is a InstanceType enum value
|
||||
InstanceTypeR6in12xlarge = "r6in.12xlarge"
|
||||
|
||||
// InstanceTypeR6in16xlarge is a InstanceType enum value
|
||||
InstanceTypeR6in16xlarge = "r6in.16xlarge"
|
||||
|
||||
// InstanceTypeR6in24xlarge is a InstanceType enum value
|
||||
InstanceTypeR6in24xlarge = "r6in.24xlarge"
|
||||
|
||||
// InstanceTypeR6in32xlarge is a InstanceType enum value
|
||||
InstanceTypeR6in32xlarge = "r6in.32xlarge"
|
||||
|
||||
// InstanceTypeR6idnLarge is a InstanceType enum value
|
||||
InstanceTypeR6idnLarge = "r6idn.large"
|
||||
|
||||
// InstanceTypeR6idnXlarge is a InstanceType enum value
|
||||
InstanceTypeR6idnXlarge = "r6idn.xlarge"
|
||||
|
||||
// InstanceTypeR6idn2xlarge is a InstanceType enum value
|
||||
InstanceTypeR6idn2xlarge = "r6idn.2xlarge"
|
||||
|
||||
// InstanceTypeR6idn4xlarge is a InstanceType enum value
|
||||
InstanceTypeR6idn4xlarge = "r6idn.4xlarge"
|
||||
|
||||
// InstanceTypeR6idn8xlarge is a InstanceType enum value
|
||||
InstanceTypeR6idn8xlarge = "r6idn.8xlarge"
|
||||
|
||||
// InstanceTypeR6idn12xlarge is a InstanceType enum value
|
||||
InstanceTypeR6idn12xlarge = "r6idn.12xlarge"
|
||||
|
||||
// InstanceTypeR6idn16xlarge is a InstanceType enum value
|
||||
InstanceTypeR6idn16xlarge = "r6idn.16xlarge"
|
||||
|
||||
// InstanceTypeR6idn24xlarge is a InstanceType enum value
|
||||
InstanceTypeR6idn24xlarge = "r6idn.24xlarge"
|
||||
|
||||
// InstanceTypeR6idn32xlarge is a InstanceType enum value
|
||||
InstanceTypeR6idn32xlarge = "r6idn.32xlarge"
|
||||
)
|
||||
|
||||
// InstanceType_Values returns all elements of the InstanceType enum
|
||||
@ -180661,6 +180861,51 @@ func InstanceType_Values() []string {
|
||||
InstanceTypeTrn12xlarge,
|
||||
InstanceTypeTrn132xlarge,
|
||||
InstanceTypeHpc6id32xlarge,
|
||||
InstanceTypeC6inLarge,
|
||||
InstanceTypeC6inXlarge,
|
||||
InstanceTypeC6in2xlarge,
|
||||
InstanceTypeC6in4xlarge,
|
||||
InstanceTypeC6in8xlarge,
|
||||
InstanceTypeC6in12xlarge,
|
||||
InstanceTypeC6in16xlarge,
|
||||
InstanceTypeC6in24xlarge,
|
||||
InstanceTypeC6in32xlarge,
|
||||
InstanceTypeM6inLarge,
|
||||
InstanceTypeM6inXlarge,
|
||||
InstanceTypeM6in2xlarge,
|
||||
InstanceTypeM6in4xlarge,
|
||||
InstanceTypeM6in8xlarge,
|
||||
InstanceTypeM6in12xlarge,
|
||||
InstanceTypeM6in16xlarge,
|
||||
InstanceTypeM6in24xlarge,
|
||||
InstanceTypeM6in32xlarge,
|
||||
InstanceTypeM6idnLarge,
|
||||
InstanceTypeM6idnXlarge,
|
||||
InstanceTypeM6idn2xlarge,
|
||||
InstanceTypeM6idn4xlarge,
|
||||
InstanceTypeM6idn8xlarge,
|
||||
InstanceTypeM6idn12xlarge,
|
||||
InstanceTypeM6idn16xlarge,
|
||||
InstanceTypeM6idn24xlarge,
|
||||
InstanceTypeM6idn32xlarge,
|
||||
InstanceTypeR6inLarge,
|
||||
InstanceTypeR6inXlarge,
|
||||
InstanceTypeR6in2xlarge,
|
||||
InstanceTypeR6in4xlarge,
|
||||
InstanceTypeR6in8xlarge,
|
||||
InstanceTypeR6in12xlarge,
|
||||
InstanceTypeR6in16xlarge,
|
||||
InstanceTypeR6in24xlarge,
|
||||
InstanceTypeR6in32xlarge,
|
||||
InstanceTypeR6idnLarge,
|
||||
InstanceTypeR6idnXlarge,
|
||||
InstanceTypeR6idn2xlarge,
|
||||
InstanceTypeR6idn4xlarge,
|
||||
InstanceTypeR6idn8xlarge,
|
||||
InstanceTypeR6idn12xlarge,
|
||||
InstanceTypeR6idn16xlarge,
|
||||
InstanceTypeR6idn24xlarge,
|
||||
InstanceTypeR6idn32xlarge,
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user