mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-14 18:53:35 +00:00
rebase: bump github.com/aws/aws-sdk-go from 1.43.8 to 1.43.13
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.43.8 to 1.43.13. - [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.8...v1.43.13) --- 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
4e98cff11e
commit
c435c7bf21
25
vendor/github.com/aws/aws-sdk-go/service/ec2/api.go
generated
vendored
25
vendor/github.com/aws/aws-sdk-go/service/ec2/api.go
generated
vendored
@ -61546,7 +61546,7 @@ type CreateFleetInput struct {
|
||||
// desired capacity, and returns errors for any instances that could not
|
||||
// be launched.
|
||||
//
|
||||
// For more information, see EC2 Fleet request types (https://docs.aws.amazon.com/https:/docs.aws.amazon.com/ec2-fleet-request-type.html)
|
||||
// For more information, see EC2 Fleet request types (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-request-type.html)
|
||||
// in the Amazon EC2 User Guide.
|
||||
Type *string `type:"string" enum:"FleetType"`
|
||||
|
||||
@ -62827,7 +62827,9 @@ type CreateIpamPoolInput struct {
|
||||
|
||||
// The IP protocol assigned to this IPAM pool. You must choose either IPv4 or
|
||||
// IPv6 protocol for a pool.
|
||||
AddressFamily *string `type:"string" enum:"AddressFamily"`
|
||||
//
|
||||
// AddressFamily is a required field
|
||||
AddressFamily *string `type:"string" required:"true" enum:"AddressFamily"`
|
||||
|
||||
// The default netmask length for allocations added to this pool. If, for example,
|
||||
// the CIDR assigned to this pool is 10.0.0.0/8 and you enter 16 here, new allocations
|
||||
@ -62937,6 +62939,9 @@ func (s CreateIpamPoolInput) GoString() string {
|
||||
// Validate inspects the fields of the type to determine if they are valid.
|
||||
func (s *CreateIpamPoolInput) Validate() error {
|
||||
invalidParams := request.ErrInvalidParams{Context: "CreateIpamPoolInput"}
|
||||
if s.AddressFamily == nil {
|
||||
invalidParams.Add(request.NewErrParamRequired("AddressFamily"))
|
||||
}
|
||||
if s.IpamScopeId == nil {
|
||||
invalidParams.Add(request.NewErrParamRequired("IpamScopeId"))
|
||||
}
|
||||
@ -115724,6 +115729,10 @@ type InstanceRequirements struct {
|
||||
// This parameter is not supported for GetSpotPlacementScores (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetSpotPlacementScores.html)
|
||||
// and GetInstanceTypesFromInstanceRequirements (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetInstanceTypesFromInstanceRequirements.html).
|
||||
//
|
||||
// If you set TargetCapacityUnitType to vcpu or memory-mib, the price protection
|
||||
// threshold is applied based on the per-vCPU or per-memory price instead of
|
||||
// the per-instance price.
|
||||
//
|
||||
// Default: 20
|
||||
OnDemandMaxPricePercentageOverLowestPrice *int64 `locationName:"onDemandMaxPricePercentageOverLowestPrice" type:"integer"`
|
||||
|
||||
@ -115747,6 +115756,10 @@ type InstanceRequirements struct {
|
||||
// This parameter is not supported for GetSpotPlacementScores (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetSpotPlacementScores.html)
|
||||
// and GetInstanceTypesFromInstanceRequirements (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetInstanceTypesFromInstanceRequirements.html).
|
||||
//
|
||||
// If you set TargetCapacityUnitType to vcpu or memory-mib, the price protection
|
||||
// threshold is applied based on the per-vCPU or per-memory price instead of
|
||||
// the per-instance price.
|
||||
//
|
||||
// Default: 100
|
||||
SpotMaxPricePercentageOverLowestPrice *int64 `locationName:"spotMaxPricePercentageOverLowestPrice" type:"integer"`
|
||||
|
||||
@ -116100,6 +116113,10 @@ type InstanceRequirementsRequest struct {
|
||||
// This parameter is not supported for GetSpotPlacementScores (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetSpotPlacementScores.html)
|
||||
// and GetInstanceTypesFromInstanceRequirements (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetInstanceTypesFromInstanceRequirements.html).
|
||||
//
|
||||
// If you set TargetCapacityUnitType to vcpu or memory-mib, the price protection
|
||||
// threshold is applied based on the per-vCPU or per-memory price instead of
|
||||
// the per-instance price.
|
||||
//
|
||||
// Default: 20
|
||||
OnDemandMaxPricePercentageOverLowestPrice *int64 `type:"integer"`
|
||||
|
||||
@ -116123,6 +116140,10 @@ type InstanceRequirementsRequest struct {
|
||||
// This parameter is not supported for GetSpotPlacementScores (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetSpotPlacementScores.html)
|
||||
// and GetInstanceTypesFromInstanceRequirements (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetInstanceTypesFromInstanceRequirements.html).
|
||||
//
|
||||
// If you set TargetCapacityUnitType to vcpu or memory-mib, the price protection
|
||||
// threshold is applied based on the per-vCPU or per-memory price instead of
|
||||
// the per-instance price.
|
||||
//
|
||||
// Default: 100
|
||||
SpotMaxPricePercentageOverLowestPrice *int64 `type:"integer"`
|
||||
|
||||
|
Reference in New Issue
Block a user