deps: Update osbuild images module to commit 03212162ff49

This pulls in the Size(0) change for test_distro.

Ran:
go get github.com/osbuild/images@latest
./tools/prepare-source.sh
This commit is contained in:
Brian C. Lane 2023-08-04 08:45:35 -07:00 committed by Ondřej Budai
parent e96ed30d4b
commit 50c5147cf1
9 changed files with 486 additions and 18 deletions

View file

@ -7043,6 +7043,7 @@ type AlarmSpecification struct {
_ struct{} `type:"structure"`
// The names of one or more CloudWatch alarms to monitor for the instance refresh.
// You can specify up to 10 alarms.
Alarms []*string `type:"list"`
}

View file

@ -72923,6 +72923,21 @@ type CreateNetworkInterfaceInput struct {
// it is UnauthorizedOperation.
DryRun *bool `locationName:"dryRun" type:"boolean"`
// If youre creating a network interface in a dual-stack or IPv6-only subnet,
// you have the option to assign a primary IPv6 IP address. A primary IPv6 address
// is an IPv6 GUA address associated with an ENI that you have enabled to use
// a primary IPv6 address. Use this option if the instance that this ENI will
// be attached to relies on its IPv6 address not changing. Amazon Web Services
// will automatically assign an IPv6 address associated with the ENI attached
// to your instance to be the primary IPv6 address. Once you enable an IPv6
// GUA address to be a primary IPv6, you cannot disable it. When you enable
// an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made
// the primary IPv6 address until the instance is terminated or the network
// interface is detached. If you have multiple IPv6 addresses associated with
// an ENI attached to your instance and you enable a primary IPv6 address, the
// first IPv6 GUA address associated with the ENI becomes the primary IPv6 address.
EnablePrimaryIpv6 *bool `type:"boolean"`
// The IDs of one or more security groups.
Groups []*string `locationName:"SecurityGroupId" locationNameList:"SecurityGroupId" type:"list"`
@ -73060,6 +73075,12 @@ func (s *CreateNetworkInterfaceInput) SetDryRun(v bool) *CreateNetworkInterfaceI
return s
}
// SetEnablePrimaryIpv6 sets the EnablePrimaryIpv6 field's value.
func (s *CreateNetworkInterfaceInput) SetEnablePrimaryIpv6(v bool) *CreateNetworkInterfaceInput {
s.EnablePrimaryIpv6 = &v
return s
}
// SetGroups sets the Groups field's value.
func (s *CreateNetworkInterfaceInput) SetGroups(v []*string) *CreateNetworkInterfaceInput {
s.Groups = v
@ -112880,8 +112901,7 @@ type EbsBlockDevice struct {
// The ARN of the Outpost on which the snapshot is stored.
//
// This parameter is only supported on BlockDeviceMapping objects called by
// CreateImage (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage.html).
// This parameter is not supported when using CreateImage (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage.html).
OutpostArn *string `locationName:"outpostArn" type:"string"`
// The ID of the snapshot.
@ -130058,6 +130078,13 @@ type InstanceIpv6Address struct {
// The IPv6 address.
Ipv6Address *string `locationName:"ipv6Address" type:"string"`
// Determines if an IPv6 address associated with a network interface is the
// primary IPv6 address. When you enable an IPv6 GUA address to be a primary
// IPv6, the first IPv6 GUA will be made the primary IPv6 address until the
// instance is terminated or the network interface is detached. For more information,
// see RunInstances (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html).
IsPrimaryIpv6 *bool `locationName:"isPrimaryIpv6" type:"boolean"`
}
// String returns the string representation.
@ -130084,6 +130111,12 @@ func (s *InstanceIpv6Address) SetIpv6Address(v string) *InstanceIpv6Address {
return s
}
// SetIsPrimaryIpv6 sets the IsPrimaryIpv6 field's value.
func (s *InstanceIpv6Address) SetIsPrimaryIpv6(v bool) *InstanceIpv6Address {
s.IsPrimaryIpv6 = &v
return s
}
// Describes an IPv6 address.
type InstanceIpv6AddressRequest struct {
_ struct{} `type:"structure"`
@ -130922,6 +130955,13 @@ type InstanceNetworkInterfaceSpecification struct {
// specify a network interface ID in a launch specification.
NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"`
// The primary IPv6 address of the network interface. When you enable an IPv6
// GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary
// IPv6 address until the instance is terminated or the network interface is
// detached. For more information about primary IPv6 addresses, see RunInstances
// (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html).
PrimaryIpv6 *bool `type:"boolean"`
// The private IPv4 address of the network interface. Applies only if creating
// a network interface when launching an instance. You cannot specify this option
// if you're launching more than one instance in a RunInstances (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html)
@ -131054,6 +131094,12 @@ func (s *InstanceNetworkInterfaceSpecification) SetNetworkInterfaceId(v string)
return s
}
// SetPrimaryIpv6 sets the PrimaryIpv6 field's value.
func (s *InstanceNetworkInterfaceSpecification) SetPrimaryIpv6(v bool) *InstanceNetworkInterfaceSpecification {
s.PrimaryIpv6 = &v
return s
}
// SetPrivateIpAddress sets the PrivateIpAddress field's value.
func (s *InstanceNetworkInterfaceSpecification) SetPrivateIpAddress(v string) *InstanceNetworkInterfaceSpecification {
s.PrivateIpAddress = &v
@ -137434,6 +137480,13 @@ type LaunchTemplateInstanceNetworkInterfaceSpecification struct {
// The ID of the network interface.
NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"`
// The primary IPv6 address of the network interface. When you enable an IPv6
// GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary
// IPv6 address until the instance is terminated or the network interface is
// detached. For more information about primary IPv6 addresses, see RunInstances
// (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html).
PrimaryIpv6 *bool `locationName:"primaryIpv6" type:"boolean"`
// The primary private IPv4 address of the network interface.
PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"`
@ -137555,6 +137608,12 @@ func (s *LaunchTemplateInstanceNetworkInterfaceSpecification) SetNetworkInterfac
return s
}
// SetPrimaryIpv6 sets the PrimaryIpv6 field's value.
func (s *LaunchTemplateInstanceNetworkInterfaceSpecification) SetPrimaryIpv6(v bool) *LaunchTemplateInstanceNetworkInterfaceSpecification {
s.PrimaryIpv6 = &v
return s
}
// SetPrivateIpAddress sets the PrivateIpAddress field's value.
func (s *LaunchTemplateInstanceNetworkInterfaceSpecification) SetPrivateIpAddress(v string) *LaunchTemplateInstanceNetworkInterfaceSpecification {
s.PrivateIpAddress = &v
@ -137648,6 +137707,13 @@ type LaunchTemplateInstanceNetworkInterfaceSpecificationRequest struct {
// The ID of the network interface.
NetworkInterfaceId *string `type:"string"`
// The primary IPv6 address of the network interface. When you enable an IPv6
// GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary
// IPv6 address until the instance is terminated or the network interface is
// detached. For more information about primary IPv6 addresses, see RunInstances
// (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html).
PrimaryIpv6 *bool `type:"boolean"`
// The primary private IPv4 address of the network interface.
PrivateIpAddress *string `type:"string"`
@ -137769,6 +137835,12 @@ func (s *LaunchTemplateInstanceNetworkInterfaceSpecificationRequest) SetNetworkI
return s
}
// SetPrimaryIpv6 sets the PrimaryIpv6 field's value.
func (s *LaunchTemplateInstanceNetworkInterfaceSpecificationRequest) SetPrimaryIpv6(v bool) *LaunchTemplateInstanceNetworkInterfaceSpecificationRequest {
s.PrimaryIpv6 = &v
return s
}
// SetPrivateIpAddress sets the PrivateIpAddress field's value.
func (s *LaunchTemplateInstanceNetworkInterfaceSpecificationRequest) SetPrivateIpAddress(v string) *LaunchTemplateInstanceNetworkInterfaceSpecificationRequest {
s.PrivateIpAddress = &v
@ -144423,6 +144495,21 @@ type ModifyNetworkInterfaceAttributeInput struct {
// attached to the instance.
EnaSrdSpecification *EnaSrdSpecification `type:"structure"`
// If youre modifying a network interface in a dual-stack or IPv6-only subnet,
// you have the option to assign a primary IPv6 IP address. A primary IPv6 address
// is an IPv6 GUA address associated with an ENI that you have enabled to use
// a primary IPv6 address. Use this option if the instance that this ENI will
// be attached to relies on its IPv6 address not changing. Amazon Web Services
// will automatically assign an IPv6 address associated with the ENI attached
// to your instance to be the primary IPv6 address. Once you enable an IPv6
// GUA address to be a primary IPv6, you cannot disable it. When you enable
// an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made
// the primary IPv6 address until the instance is terminated or the network
// interface is detached. If you have multiple IPv6 addresses associated with
// an ENI attached to your instance and you enable a primary IPv6 address, the
// first IPv6 GUA address associated with the ENI becomes the primary IPv6 address.
EnablePrimaryIpv6 *bool `type:"boolean"`
// Changes the security groups for the network interface. The new set of groups
// you specify replaces the current set. You must specify at least one group,
// even if it's just the default security group in the VPC. You must specify
@ -144498,6 +144585,12 @@ func (s *ModifyNetworkInterfaceAttributeInput) SetEnaSrdSpecification(v *EnaSrdS
return s
}
// SetEnablePrimaryIpv6 sets the EnablePrimaryIpv6 field's value.
func (s *ModifyNetworkInterfaceAttributeInput) SetEnablePrimaryIpv6(v bool) *ModifyNetworkInterfaceAttributeInput {
s.EnablePrimaryIpv6 = &v
return s
}
// SetGroups sets the Groups field's value.
func (s *ModifyNetworkInterfaceAttributeInput) SetGroups(v []*string) *ModifyNetworkInterfaceAttributeInput {
s.Groups = v
@ -151911,6 +152004,13 @@ type NetworkInterfaceIpv6Address struct {
// The IPv6 address.
Ipv6Address *string `locationName:"ipv6Address" type:"string"`
// Determines if an IPv6 address associated with a network interface is the
// primary IPv6 address. When you enable an IPv6 GUA address to be a primary
// IPv6, the first IPv6 GUA will be made the primary IPv6 address until the
// instance is terminated or the network interface is detached. For more information,
// see ModifyNetworkInterfaceAttribute (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyNetworkInterfaceAttribute.html).
IsPrimaryIpv6 *bool `locationName:"isPrimaryIpv6" type:"boolean"`
}
// String returns the string representation.
@ -151937,6 +152037,12 @@ func (s *NetworkInterfaceIpv6Address) SetIpv6Address(v string) *NetworkInterface
return s
}
// SetIsPrimaryIpv6 sets the IsPrimaryIpv6 field's value.
func (s *NetworkInterfaceIpv6Address) SetIsPrimaryIpv6(v bool) *NetworkInterfaceIpv6Address {
s.IsPrimaryIpv6 = &v
return s
}
// Describes a permission for a network interface.
type NetworkInterfacePermission struct {
_ struct{} `type:"structure"`
@ -164029,6 +164135,21 @@ type RunInstancesInput struct {
// are considered current customers and will be able to continue using the service.
ElasticInferenceAccelerators []*ElasticInferenceAccelerator `locationName:"ElasticInferenceAccelerator" locationNameList:"item" type:"list"`
// If youre launching an instance into a dual-stack or IPv6-only subnet,
// you can enable assigning a primary IPv6 address. A primary IPv6 address is
// an IPv6 GUA address associated with an ENI that you have enabled to use a
// primary IPv6 address. Use this option if an instance relies on its IPv6 address
// not changing. When you launch the instance, Amazon Web Services will automatically
// assign an IPv6 address associated with the ENI attached to your instance
// to be the primary IPv6 address. Once you enable an IPv6 GUA address to be
// a primary IPv6, you cannot disable it. When you enable an IPv6 GUA address
// to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address
// until the instance is terminated or the network interface is detached. If
// you have multiple IPv6 addresses associated with an ENI attached to your
// instance and you enable a primary IPv6 address, the first IPv6 GUA address
// associated with the ENI becomes the primary IPv6 address.
EnablePrimaryIpv6 *bool `type:"boolean"`
// Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves.
// For more information, see What is Amazon Web Services Nitro Enclaves? (https://docs.aws.amazon.com/enclaves/latest/user/nitro-enclave.html)
// in the Amazon Web Services Nitro Enclaves User Guide.
@ -164366,6 +164487,12 @@ func (s *RunInstancesInput) SetElasticInferenceAccelerators(v []*ElasticInferenc
return s
}
// SetEnablePrimaryIpv6 sets the EnablePrimaryIpv6 field's value.
func (s *RunInstancesInput) SetEnablePrimaryIpv6(v bool) *RunInstancesInput {
s.EnablePrimaryIpv6 = &v
return s
}
// SetEnclaveOptions sets the EnclaveOptions field's value.
func (s *RunInstancesInput) SetEnclaveOptions(v *EnclaveOptionsRequest) *RunInstancesInput {
s.EnclaveOptions = v