mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-12-17 02:47:07 +00:00
Update deps
This commit is contained in:
28
vendor/github.com/aws/aws-sdk-go/service/ec2/api.go
generated
vendored
28
vendor/github.com/aws/aws-sdk-go/service/ec2/api.go
generated
vendored
@@ -15504,6 +15504,11 @@ func (s *AccountAttributeValue) SetAttributeValue(v string) *AccountAttributeVal
|
||||
type ActiveInstance struct {
|
||||
_ struct{} `type:"structure"`
|
||||
|
||||
// The health status of the instance. If the status of both the instance status
|
||||
// check and the system status check is impaired, the health status of the instance
|
||||
// is unhealthy. Otherwise, the health status is healthy.
|
||||
InstanceHealth *string `locationName:"instanceHealth" type:"string" enum:"InstanceHealthStatus"`
|
||||
|
||||
// The ID of the instance.
|
||||
InstanceId *string `locationName:"instanceId" type:"string"`
|
||||
|
||||
@@ -15524,6 +15529,12 @@ func (s ActiveInstance) GoString() string {
|
||||
return s.String()
|
||||
}
|
||||
|
||||
// SetInstanceHealth sets the InstanceHealth field's value.
|
||||
func (s *ActiveInstance) SetInstanceHealth(v string) *ActiveInstance {
|
||||
s.InstanceHealth = &v
|
||||
return s
|
||||
}
|
||||
|
||||
// SetInstanceId sets the InstanceId field's value.
|
||||
func (s *ActiveInstance) SetInstanceId(v string) *ActiveInstance {
|
||||
s.InstanceId = &v
|
||||
@@ -48233,6 +48244,9 @@ type SpotFleetRequestConfigData struct {
|
||||
// LaunchSpecifications is a required field
|
||||
LaunchSpecifications []*SpotFleetLaunchSpecification `locationName:"launchSpecifications" locationNameList:"item" min:"1" type:"list" required:"true"`
|
||||
|
||||
// Indicates whether Spot fleet should replace unhealthy instances.
|
||||
ReplaceUnhealthyInstances *bool `locationName:"replaceUnhealthyInstances" type:"boolean"`
|
||||
|
||||
// The bid price per unit hour.
|
||||
//
|
||||
// SpotPrice is a required field
|
||||
@@ -48350,6 +48364,12 @@ func (s *SpotFleetRequestConfigData) SetLaunchSpecifications(v []*SpotFleetLaunc
|
||||
return s
|
||||
}
|
||||
|
||||
// SetReplaceUnhealthyInstances sets the ReplaceUnhealthyInstances field's value.
|
||||
func (s *SpotFleetRequestConfigData) SetReplaceUnhealthyInstances(v bool) *SpotFleetRequestConfigData {
|
||||
s.ReplaceUnhealthyInstances = &v
|
||||
return s
|
||||
}
|
||||
|
||||
// SetSpotPrice sets the SpotPrice field's value.
|
||||
func (s *SpotFleetRequestConfigData) SetSpotPrice(v string) *SpotFleetRequestConfigData {
|
||||
s.SpotPrice = &v
|
||||
@@ -51943,6 +51963,14 @@ const (
|
||||
InstanceAttributeNameEnaSupport = "enaSupport"
|
||||
)
|
||||
|
||||
const (
|
||||
// InstanceHealthStatusHealthy is a InstanceHealthStatus enum value
|
||||
InstanceHealthStatusHealthy = "healthy"
|
||||
|
||||
// InstanceHealthStatusUnhealthy is a InstanceHealthStatus enum value
|
||||
InstanceHealthStatusUnhealthy = "unhealthy"
|
||||
)
|
||||
|
||||
const (
|
||||
// InstanceLifecycleTypeSpot is a InstanceLifecycleType enum value
|
||||
InstanceLifecycleTypeSpot = "spot"
|
||||
|
||||
Reference in New Issue
Block a user