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

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

---
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-02 20:18:53 +00:00
committed by mergify[bot]
parent 1ca5e8efb0
commit 6a5758c346
6 changed files with 145 additions and 10 deletions

View File

@ -5615,11 +5615,12 @@ func (c *EC2) CreateKeyPairRequest(input *CreateKeyPairInput) (req *request.Requ
// CreateKeyPair API operation for Amazon Elastic Compute Cloud.
//
// Creates an ED25519 or 2048-bit RSA key pair with the specified name. Amazon
// EC2 stores the public key and displays the private key for you to save to
// a file. The private key is returned as an unencrypted PEM encoded PKCS#1
// private key. If a key with the specified name already exists, Amazon EC2
// returns an error.
// Creates an ED25519 or 2048-bit RSA key pair with the specified name and in
// the specified PEM or PPK format. Amazon EC2 stores the public key and displays
// the private key for you to save to a file. The private key is returned as
// an unencrypted PEM encoded PKCS#1 private key or an unencrypted PPK formatted
// private key for use with PuTTY. If a key with the specified name already
// exists, Amazon EC2 returns an error.
//
// The key pair returned to you is available only in the Amazon Web Services
// Region in which you create it. If you prefer, you can create your own key
@ -63312,6 +63313,11 @@ type CreateKeyPairInput struct {
// it is UnauthorizedOperation.
DryRun *bool `locationName:"dryRun" type:"boolean"`
// The format of the key pair.
//
// Default: pem
KeyFormat *string `type:"string" enum:"KeyFormat"`
// A unique name for the key pair.
//
// Constraints: Up to 255 ASCII characters
@ -63366,6 +63372,12 @@ func (s *CreateKeyPairInput) SetDryRun(v bool) *CreateKeyPairInput {
return s
}
// SetKeyFormat sets the KeyFormat field's value.
func (s *CreateKeyPairInput) SetKeyFormat(v string) *CreateKeyPairInput {
s.KeyFormat = &v
return s
}
// SetKeyName sets the KeyName field's value.
func (s *CreateKeyPairInput) SetKeyName(v string) *CreateKeyPairInput {
s.KeyName = &v
@ -85229,6 +85241,11 @@ type DescribeKeyPairsInput struct {
// the filter value.
Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`
// If true, the public key material is included in the response.
//
// Default: false
IncludePublicKey *bool `type:"boolean"`
// The key pair names.
//
// Default: Describes all of your key pairs.
@ -85268,6 +85285,12 @@ func (s *DescribeKeyPairsInput) SetFilters(v []*Filter) *DescribeKeyPairsInput {
return s
}
// SetIncludePublicKey sets the IncludePublicKey field's value.
func (s *DescribeKeyPairsInput) SetIncludePublicKey(v bool) *DescribeKeyPairsInput {
s.IncludePublicKey = &v
return s
}
// SetKeyNames sets the KeyNames field's value.
func (s *DescribeKeyPairsInput) SetKeyNames(v []*string) *DescribeKeyPairsInput {
s.KeyNames = v
@ -119376,6 +119399,15 @@ func (s *Ipv6Range) SetDescription(v string) *Ipv6Range {
type KeyPairInfo struct {
_ struct{} `type:"structure"`
// If you used Amazon EC2 to create the key pair, this is the date and time
// when the key was created, in ISO 8601 date-time format (https://www.iso.org/iso-8601-date-and-time-format.html),
// in the UTC time zone.
//
// If you imported an existing key pair to Amazon EC2, this is the date and
// time the key was imported, in ISO 8601 date-time format (https://www.iso.org/iso-8601-date-and-time-format.html),
// in the UTC time zone.
CreateTime *time.Time `locationName:"createTime" type:"timestamp"`
// If you used CreateKeyPair to create the key pair:
//
// * For RSA key pairs, the key fingerprint is the SHA-1 digest of the DER
@ -119402,6 +119434,9 @@ type KeyPairInfo struct {
// The type of key pair.
KeyType *string `locationName:"keyType" type:"string" enum:"KeyType"`
// The public key material.
PublicKey *string `locationName:"publicKey" type:"string"`
// Any tags applied to the key pair.
Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`
}
@ -119424,6 +119459,12 @@ func (s KeyPairInfo) GoString() string {
return s.String()
}
// SetCreateTime sets the CreateTime field's value.
func (s *KeyPairInfo) SetCreateTime(v time.Time) *KeyPairInfo {
s.CreateTime = &v
return s
}
// SetKeyFingerprint sets the KeyFingerprint field's value.
func (s *KeyPairInfo) SetKeyFingerprint(v string) *KeyPairInfo {
s.KeyFingerprint = &v
@ -119448,6 +119489,12 @@ func (s *KeyPairInfo) SetKeyType(v string) *KeyPairInfo {
return s
}
// SetPublicKey sets the PublicKey field's value.
func (s *KeyPairInfo) SetPublicKey(v string) *KeyPairInfo {
s.PublicKey = &v
return s
}
// SetTags sets the Tags field's value.
func (s *KeyPairInfo) SetTags(v []*Tag) *KeyPairInfo {
s.Tags = v
@ -165538,6 +165585,22 @@ func Ipv6SupportValue_Values() []string {
}
}
const (
// KeyFormatPem is a KeyFormat enum value
KeyFormatPem = "pem"
// KeyFormatPpk is a KeyFormat enum value
KeyFormatPpk = "ppk"
)
// KeyFormat_Values returns all elements of the KeyFormat enum
func KeyFormat_Values() []string {
return []string{
KeyFormatPem,
KeyFormatPpk,
}
}
const (
// KeyTypeRsa is a KeyType enum value
KeyTypeRsa = "rsa"