rebase: bump github.com/aws/aws-sdk-go from 1.44.5 to 1.44.10

Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.44.5 to 1.44.10.
- [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.44.5...v1.44.10)

---
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:
dependabot[bot]
2022-05-09 20:13:10 +00:00
committed by mergify[bot]
parent cbd7220b37
commit 7d1c563b97
6 changed files with 396 additions and 15 deletions

View File

@ -47947,7 +47947,9 @@ func (c *EC2) StopInstancesRequest(input *StopInstancesInput) (req *request.Requ
// StopInstances API operation for Amazon Elastic Compute Cloud.
//
// Stops an Amazon EBS-backed instance.
// Stops an Amazon EBS-backed instance. For more information, see Stop and start
// your instance (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Stop_Start.html)
// in the Amazon EC2 User Guide.
//
// You can use the Stop action to hibernate an instance if the instance is enabled
// for hibernation (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Hibernate.html#enabling-hibernation)
@ -50401,6 +50403,10 @@ type AllocateHostsInput struct {
// You cannot specify InstanceType and InstanceFamily in the same request.
InstanceType *string `locationName:"instanceType" type:"string"`
// The Amazon Resource Name (ARN) of the Amazon Web Services Outpost on which
// to allocate the Dedicated Host.
OutpostArn *string `type:"string"`
// The number of Dedicated Hosts to allocate to your account with these parameters.
//
// Quantity is a required field
@ -50480,6 +50486,12 @@ func (s *AllocateHostsInput) SetInstanceType(v string) *AllocateHostsInput {
return s
}
// SetOutpostArn sets the OutpostArn field's value.
func (s *AllocateHostsInput) SetOutpostArn(v string) *AllocateHostsInput {
s.OutpostArn = &v
return s
}
// SetQuantity sets the Quantity field's value.
func (s *AllocateHostsInput) SetQuantity(v int64) *AllocateHostsInput {
s.Quantity = &v
@ -110325,6 +110337,10 @@ type Host struct {
// is true, the host is in a host resource group; otherwise, it is not.
MemberOfServiceLinkedResourceGroup *bool `locationName:"memberOfServiceLinkedResourceGroup" type:"boolean"`
// The Amazon Resource Name (ARN) of the Amazon Web Services Outpost on which
// the Dedicated Host is allocated.
OutpostArn *string `locationName:"outpostArn" type:"string"`
// The ID of the Amazon Web Services account that owns the Dedicated Host.
OwnerId *string `locationName:"ownerId" type:"string"`
@ -110434,6 +110450,12 @@ func (s *Host) SetMemberOfServiceLinkedResourceGroup(v bool) *Host {
return s
}
// SetOutpostArn sets the OutpostArn field's value.
func (s *Host) SetOutpostArn(v string) *Host {
s.OutpostArn = &v
return s
}
// SetOwnerId sets the OwnerId field's value.
func (s *Host) SetOwnerId(v string) *Host {
s.OwnerId = &v
@ -164650,6 +164672,27 @@ const (
// InstanceTypeM6aMetal is a InstanceType enum value
InstanceTypeM6aMetal = "m6a.metal"
// InstanceTypeI4iLarge is a InstanceType enum value
InstanceTypeI4iLarge = "i4i.large"
// InstanceTypeI4iXlarge is a InstanceType enum value
InstanceTypeI4iXlarge = "i4i.xlarge"
// InstanceTypeI4i2xlarge is a InstanceType enum value
InstanceTypeI4i2xlarge = "i4i.2xlarge"
// InstanceTypeI4i4xlarge is a InstanceType enum value
InstanceTypeI4i4xlarge = "i4i.4xlarge"
// InstanceTypeI4i8xlarge is a InstanceType enum value
InstanceTypeI4i8xlarge = "i4i.8xlarge"
// InstanceTypeI4i16xlarge is a InstanceType enum value
InstanceTypeI4i16xlarge = "i4i.16xlarge"
// InstanceTypeI4i32xlarge is a InstanceType enum value
InstanceTypeI4i32xlarge = "i4i.32xlarge"
)
// InstanceType_Values returns all elements of the InstanceType enum
@ -165162,6 +165205,13 @@ func InstanceType_Values() []string {
InstanceTypeC6a48xlarge,
InstanceTypeC6aMetal,
InstanceTypeM6aMetal,
InstanceTypeI4iLarge,
InstanceTypeI4iXlarge,
InstanceTypeI4i2xlarge,
InstanceTypeI4i4xlarge,
InstanceTypeI4i8xlarge,
InstanceTypeI4i16xlarge,
InstanceTypeI4i32xlarge,
}
}
@ -165420,6 +165470,15 @@ const (
// IpamPoolStateDeleteFailed is a IpamPoolState enum value
IpamPoolStateDeleteFailed = "delete-failed"
// IpamPoolStateIsolateInProgress is a IpamPoolState enum value
IpamPoolStateIsolateInProgress = "isolate-in-progress"
// IpamPoolStateIsolateComplete is a IpamPoolState enum value
IpamPoolStateIsolateComplete = "isolate-complete"
// IpamPoolStateRestoreInProgress is a IpamPoolState enum value
IpamPoolStateRestoreInProgress = "restore-in-progress"
)
// IpamPoolState_Values returns all elements of the IpamPoolState enum
@ -165434,6 +165493,9 @@ func IpamPoolState_Values() []string {
IpamPoolStateDeleteInProgress,
IpamPoolStateDeleteComplete,
IpamPoolStateDeleteFailed,
IpamPoolStateIsolateInProgress,
IpamPoolStateIsolateComplete,
IpamPoolStateRestoreInProgress,
}
}
@ -165492,6 +165554,15 @@ const (
// IpamScopeStateDeleteFailed is a IpamScopeState enum value
IpamScopeStateDeleteFailed = "delete-failed"
// IpamScopeStateIsolateInProgress is a IpamScopeState enum value
IpamScopeStateIsolateInProgress = "isolate-in-progress"
// IpamScopeStateIsolateComplete is a IpamScopeState enum value
IpamScopeStateIsolateComplete = "isolate-complete"
// IpamScopeStateRestoreInProgress is a IpamScopeState enum value
IpamScopeStateRestoreInProgress = "restore-in-progress"
)
// IpamScopeState_Values returns all elements of the IpamScopeState enum
@ -165506,6 +165577,9 @@ func IpamScopeState_Values() []string {
IpamScopeStateDeleteInProgress,
IpamScopeStateDeleteComplete,
IpamScopeStateDeleteFailed,
IpamScopeStateIsolateInProgress,
IpamScopeStateIsolateComplete,
IpamScopeStateRestoreInProgress,
}
}
@ -165552,6 +165626,15 @@ const (
// IpamStateDeleteFailed is a IpamState enum value
IpamStateDeleteFailed = "delete-failed"
// IpamStateIsolateInProgress is a IpamState enum value
IpamStateIsolateInProgress = "isolate-in-progress"
// IpamStateIsolateComplete is a IpamState enum value
IpamStateIsolateComplete = "isolate-complete"
// IpamStateRestoreInProgress is a IpamState enum value
IpamStateRestoreInProgress = "restore-in-progress"
)
// IpamState_Values returns all elements of the IpamState enum
@ -165566,6 +165649,9 @@ func IpamState_Values() []string {
IpamStateDeleteInProgress,
IpamStateDeleteComplete,
IpamStateDeleteFailed,
IpamStateIsolateInProgress,
IpamStateIsolateComplete,
IpamStateRestoreInProgress,
}
}