aws-sdk-ec2 1.489.0 → 1.490.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +76 -7
- data/lib/aws-sdk-ec2/client_api.rb +24 -0
- data/lib/aws-sdk-ec2/instance.rb +6 -0
- data/lib/aws-sdk-ec2/network_interface.rb +6 -0
- data/lib/aws-sdk-ec2/resource.rb +15 -0
- data/lib/aws-sdk-ec2/subnet.rb +10 -0
- data/lib/aws-sdk-ec2/types.rb +118 -14
- data/lib/aws-sdk-ec2/volume.rb +6 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +21 -2
- data/sig/instance.rbs +3 -0
- data/sig/network_interface.rbs +3 -0
- data/sig/resource.rbs +9 -0
- data/sig/subnet.rbs +6 -0
- data/sig/types.rbs +26 -0
- data/sig/volume.rbs +3 -0
- metadata +2 -2
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -9298,6 +9298,10 @@ module Aws::EC2
|
|
9298
9298
|
# The information for the launch template.
|
9299
9299
|
# @return [Types::RequestLaunchTemplateData]
|
9300
9300
|
#
|
9301
|
+
# @!attribute [rw] operator
|
9302
|
+
# Reserved for internal use.
|
9303
|
+
# @return [Types::OperatorRequest]
|
9304
|
+
#
|
9301
9305
|
# @!attribute [rw] tag_specifications
|
9302
9306
|
# The tags to apply to the launch template on creation. To tag the
|
9303
9307
|
# launch template, the resource type must be `launch-template`.
|
@@ -9319,6 +9323,7 @@ module Aws::EC2
|
|
9319
9323
|
:launch_template_name,
|
9320
9324
|
:version_description,
|
9321
9325
|
:launch_template_data,
|
9326
|
+
:operator,
|
9322
9327
|
:tag_specifications)
|
9323
9328
|
SENSITIVE = []
|
9324
9329
|
include Aws::Structure
|
@@ -10243,6 +10248,10 @@ module Aws::EC2
|
|
10243
10248
|
# A connection tracking specification for the network interface.
|
10244
10249
|
# @return [Types::ConnectionTrackingSpecificationRequest]
|
10245
10250
|
#
|
10251
|
+
# @!attribute [rw] operator
|
10252
|
+
# Reserved for internal use.
|
10253
|
+
# @return [Types::OperatorRequest]
|
10254
|
+
#
|
10246
10255
|
# @!attribute [rw] subnet_id
|
10247
10256
|
# The ID of the subnet to associate with the network interface.
|
10248
10257
|
# @return [String]
|
@@ -10324,6 +10333,7 @@ module Aws::EC2
|
|
10324
10333
|
:client_token,
|
10325
10334
|
:enable_primary_ipv_6,
|
10326
10335
|
:connection_tracking_specification,
|
10336
|
+
:operator,
|
10327
10337
|
:subnet_id,
|
10328
10338
|
:description,
|
10329
10339
|
:private_ip_address,
|
@@ -12977,6 +12987,10 @@ module Aws::EC2
|
|
12977
12987
|
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
12978
12988
|
# @return [String]
|
12979
12989
|
#
|
12990
|
+
# @!attribute [rw] operator
|
12991
|
+
# Reserved for internal use.
|
12992
|
+
# @return [Types::OperatorRequest]
|
12993
|
+
#
|
12980
12994
|
# @!attribute [rw] dry_run
|
12981
12995
|
# Checks whether you have the required permissions for the action,
|
12982
12996
|
# without actually making the request, and provides an error response.
|
@@ -12999,6 +13013,7 @@ module Aws::EC2
|
|
12999
13013
|
:multi_attach_enabled,
|
13000
13014
|
:throughput,
|
13001
13015
|
:client_token,
|
13016
|
+
:operator,
|
13002
13017
|
:dry_run)
|
13003
13018
|
SENSITIVE = []
|
13004
13019
|
include Aws::Structure
|
@@ -17489,7 +17504,6 @@ module Aws::EC2
|
|
17489
17504
|
# * `dedicated` - The Capacity Reservation is created on
|
17490
17505
|
# single-tenant hardware that is dedicated to a single Amazon Web
|
17491
17506
|
# Services account.
|
17492
|
-
#
|
17493
17507
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost on
|
17494
17508
|
# which the Capacity Reservation was created.
|
17495
17509
|
#
|
@@ -17513,7 +17527,6 @@ module Aws::EC2
|
|
17513
17527
|
# request might fail due to invalid request parameters, capacity
|
17514
17528
|
# constraints, or instance limit constraints. Failed requests are
|
17515
17529
|
# retained for 60 minutes.
|
17516
|
-
#
|
17517
17530
|
# * `start-date` - The date and time at which the Capacity Reservation
|
17518
17531
|
# was started.
|
17519
17532
|
#
|
@@ -17532,7 +17545,6 @@ module Aws::EC2
|
|
17532
17545
|
#
|
17533
17546
|
# * `limited` - The Capacity Reservation expires automatically at a
|
17534
17547
|
# specified date and time.
|
17535
|
-
#
|
17536
17548
|
# * `instance-match-criteria` - Indicates the type of instance
|
17537
17549
|
# launches that the Capacity Reservation accepts. The options
|
17538
17550
|
# include:
|
@@ -17548,7 +17560,6 @@ module Aws::EC2
|
|
17548
17560
|
# Availability Zone), and explicitly target the Capacity
|
17549
17561
|
# Reservation. This ensures that only permitted instances can use
|
17550
17562
|
# the reserved capacity.
|
17551
|
-
#
|
17552
17563
|
# * `placement-group-arn` - The ARN of the cluster placement group in
|
17553
17564
|
# which the Capacity Reservation was created.
|
17554
17565
|
# @return [Array<Types::Filter>]
|
@@ -31184,6 +31195,10 @@ module Aws::EC2
|
|
31184
31195
|
# Fargate tasks.
|
31185
31196
|
# @return [String]
|
31186
31197
|
#
|
31198
|
+
# @!attribute [rw] operator
|
31199
|
+
# The entity that manages the EBS volume.
|
31200
|
+
# @return [Types::OperatorResponse]
|
31201
|
+
#
|
31187
31202
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsInstanceBlockDevice AWS API Documentation
|
31188
31203
|
#
|
31189
31204
|
class EbsInstanceBlockDevice < Struct.new(
|
@@ -31192,7 +31207,8 @@ module Aws::EC2
|
|
31192
31207
|
:status,
|
31193
31208
|
:volume_id,
|
31194
31209
|
:associated_resource,
|
31195
|
-
:volume_owner_id
|
31210
|
+
:volume_owner_id,
|
31211
|
+
:operator)
|
31196
31212
|
SENSITIVE = []
|
31197
31213
|
include Aws::Structure
|
31198
31214
|
end
|
@@ -40067,6 +40083,10 @@ module Aws::EC2
|
|
40067
40083
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-boot.html
|
40068
40084
|
# @return [String]
|
40069
40085
|
#
|
40086
|
+
# @!attribute [rw] operator
|
40087
|
+
# The entity that manages the instance.
|
40088
|
+
# @return [Types::OperatorResponse]
|
40089
|
+
#
|
40070
40090
|
# @!attribute [rw] instance_id
|
40071
40091
|
# The ID of the instance.
|
40072
40092
|
# @return [String]
|
@@ -40209,6 +40229,7 @@ module Aws::EC2
|
|
40209
40229
|
:tpm_support,
|
40210
40230
|
:maintenance_options,
|
40211
40231
|
:current_instance_boot_mode,
|
40232
|
+
:operator,
|
40212
40233
|
:instance_id,
|
40213
40234
|
:image_id,
|
40214
40235
|
:state,
|
@@ -40818,6 +40839,10 @@ module Aws::EC2
|
|
40818
40839
|
# Information about the AMI used to launch the instance.
|
40819
40840
|
# @return [Types::ImageMetadata]
|
40820
40841
|
#
|
40842
|
+
# @!attribute [rw] operator
|
40843
|
+
# The entity that manages the instance.
|
40844
|
+
# @return [Types::OperatorResponse]
|
40845
|
+
#
|
40821
40846
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceImageMetadata AWS API Documentation
|
40822
40847
|
#
|
40823
40848
|
class InstanceImageMetadata < Struct.new(
|
@@ -40829,7 +40854,8 @@ module Aws::EC2
|
|
40829
40854
|
:state,
|
40830
40855
|
:owner_id,
|
40831
40856
|
:tags,
|
40832
|
-
:image_metadata
|
40857
|
+
:image_metadata,
|
40858
|
+
:operator)
|
40833
40859
|
SENSITIVE = []
|
40834
40860
|
include Aws::Structure
|
40835
40861
|
end
|
@@ -41254,6 +41280,10 @@ module Aws::EC2
|
|
41254
41280
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts
|
41255
41281
|
# @return [Types::ConnectionTrackingSpecificationResponse]
|
41256
41282
|
#
|
41283
|
+
# @!attribute [rw] operator
|
41284
|
+
# The entity that manages the network interface.
|
41285
|
+
# @return [Types::OperatorResponse]
|
41286
|
+
#
|
41257
41287
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterface AWS API Documentation
|
41258
41288
|
#
|
41259
41289
|
class InstanceNetworkInterface < Struct.new(
|
@@ -41275,7 +41305,8 @@ module Aws::EC2
|
|
41275
41305
|
:interface_type,
|
41276
41306
|
:ipv_4_prefixes,
|
41277
41307
|
:ipv_6_prefixes,
|
41278
|
-
:connection_tracking_configuration
|
41308
|
+
:connection_tracking_configuration,
|
41309
|
+
:operator)
|
41279
41310
|
SENSITIVE = []
|
41280
41311
|
include Aws::Structure
|
41281
41312
|
end
|
@@ -42691,6 +42722,10 @@ module Aws::EC2
|
|
42691
42722
|
# The Amazon Resource Name (ARN) of the Outpost.
|
42692
42723
|
# @return [String]
|
42693
42724
|
#
|
42725
|
+
# @!attribute [rw] operator
|
42726
|
+
# The entity that manages the instance.
|
42727
|
+
# @return [Types::OperatorResponse]
|
42728
|
+
#
|
42694
42729
|
# @!attribute [rw] events
|
42695
42730
|
# Any scheduled events associated with the instance.
|
42696
42731
|
# @return [Array<Types::InstanceStatusEvent>]
|
@@ -42726,6 +42761,7 @@ module Aws::EC2
|
|
42726
42761
|
class InstanceStatus < Struct.new(
|
42727
42762
|
:availability_zone,
|
42728
42763
|
:outpost_arn,
|
42764
|
+
:operator,
|
42729
42765
|
:events,
|
42730
42766
|
:instance_id,
|
42731
42767
|
:instance_state,
|
@@ -43827,7 +43863,6 @@ module Aws::EC2
|
|
43827
43863
|
# * You have opted-out of the IPAM home Region.
|
43828
43864
|
#
|
43829
43865
|
# * Account you are using as your IPAM account has been suspended.
|
43830
|
-
#
|
43831
43866
|
# * `throttling-failure` - IPAM account is already using the allotted
|
43832
43867
|
# transactions per second and IPAM is receiving a throttling error
|
43833
43868
|
# when assuming the Amazon Web Services IAM SLR.
|
@@ -45291,6 +45326,10 @@ module Aws::EC2
|
|
45291
45326
|
# The tags for the launch template.
|
45292
45327
|
# @return [Array<Types::Tag>]
|
45293
45328
|
#
|
45329
|
+
# @!attribute [rw] operator
|
45330
|
+
# The entity that manages the launch template.
|
45331
|
+
# @return [Types::OperatorResponse]
|
45332
|
+
#
|
45294
45333
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplate AWS API Documentation
|
45295
45334
|
#
|
45296
45335
|
class LaunchTemplate < Struct.new(
|
@@ -45300,7 +45339,8 @@ module Aws::EC2
|
|
45300
45339
|
:created_by,
|
45301
45340
|
:default_version_number,
|
45302
45341
|
:latest_version_number,
|
45303
|
-
:tags
|
45342
|
+
:tags,
|
45343
|
+
:operator)
|
45304
45344
|
SENSITIVE = []
|
45305
45345
|
include Aws::Structure
|
45306
45346
|
end
|
@@ -47004,6 +47044,10 @@ module Aws::EC2
|
|
47004
47044
|
# Information about the launch template.
|
47005
47045
|
# @return [Types::ResponseLaunchTemplateData]
|
47006
47046
|
#
|
47047
|
+
# @!attribute [rw] operator
|
47048
|
+
# The entity that manages the launch template.
|
47049
|
+
# @return [Types::OperatorResponse]
|
47050
|
+
#
|
47007
47051
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateVersion AWS API Documentation
|
47008
47052
|
#
|
47009
47053
|
class LaunchTemplateVersion < Struct.new(
|
@@ -47014,7 +47058,8 @@ module Aws::EC2
|
|
47014
47058
|
:create_time,
|
47015
47059
|
:created_by,
|
47016
47060
|
:default_version,
|
47017
|
-
:launch_template_data
|
47061
|
+
:launch_template_data,
|
47062
|
+
:operator)
|
47018
47063
|
SENSITIVE = []
|
47019
47064
|
include Aws::Structure
|
47020
47065
|
end
|
@@ -47643,7 +47688,6 @@ module Aws::EC2
|
|
47643
47688
|
#
|
47644
47689
|
# * The snapshot is unlocked by a user with the appropriate
|
47645
47690
|
# permissions.
|
47646
|
-
#
|
47647
47691
|
# Users with the appropriate IAM permissions can unlock the
|
47648
47692
|
# snapshot, increase or decrease the lock duration, and change the
|
47649
47693
|
# lock mode to `compliance` at any time.
|
@@ -53896,6 +53940,10 @@ module Aws::EC2
|
|
53896
53940
|
# interface.
|
53897
53941
|
# @return [String]
|
53898
53942
|
#
|
53943
|
+
# @!attribute [rw] operator
|
53944
|
+
# The entity that manages the network interface.
|
53945
|
+
# @return [Types::OperatorResponse]
|
53946
|
+
#
|
53899
53947
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInterface AWS API Documentation
|
53900
53948
|
#
|
53901
53949
|
class NetworkInterface < Struct.new(
|
@@ -53925,7 +53973,8 @@ module Aws::EC2
|
|
53925
53973
|
:vpc_id,
|
53926
53974
|
:deny_all_igw_traffic,
|
53927
53975
|
:ipv_6_native,
|
53928
|
-
:ipv_6_address
|
53976
|
+
:ipv_6_address,
|
53977
|
+
:operator)
|
53929
53978
|
SENSITIVE = []
|
53930
53979
|
include Aws::Structure
|
53931
53980
|
end
|
@@ -54534,6 +54583,41 @@ module Aws::EC2
|
|
54534
54583
|
include Aws::Structure
|
54535
54584
|
end
|
54536
54585
|
|
54586
|
+
# The entity that manages the resource.
|
54587
|
+
#
|
54588
|
+
# @!attribute [rw] principal
|
54589
|
+
# The entity that manages the resource.
|
54590
|
+
# @return [String]
|
54591
|
+
#
|
54592
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/OperatorRequest AWS API Documentation
|
54593
|
+
#
|
54594
|
+
class OperatorRequest < Struct.new(
|
54595
|
+
:principal)
|
54596
|
+
SENSITIVE = []
|
54597
|
+
include Aws::Structure
|
54598
|
+
end
|
54599
|
+
|
54600
|
+
# Describes whether the resource is managed by an entity and, if so,
|
54601
|
+
# describes the entity that manages it.
|
54602
|
+
#
|
54603
|
+
# @!attribute [rw] managed
|
54604
|
+
# If `true`, the resource is managed by an entity.
|
54605
|
+
# @return [Boolean]
|
54606
|
+
#
|
54607
|
+
# @!attribute [rw] principal
|
54608
|
+
# If `managed` is `true`, then the principal is returned. The
|
54609
|
+
# principal is the entity that manages the resource.
|
54610
|
+
# @return [String]
|
54611
|
+
#
|
54612
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/OperatorResponse AWS API Documentation
|
54613
|
+
#
|
54614
|
+
class OperatorResponse < Struct.new(
|
54615
|
+
:managed,
|
54616
|
+
:principal)
|
54617
|
+
SENSITIVE = []
|
54618
|
+
include Aws::Structure
|
54619
|
+
end
|
54620
|
+
|
54537
54621
|
# Describes a packet header statement.
|
54538
54622
|
#
|
54539
54623
|
# @!attribute [rw] source_addresses
|
@@ -58249,6 +58333,10 @@ module Aws::EC2
|
|
58249
58333
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-stop-protection.html
|
58250
58334
|
# @return [Boolean]
|
58251
58335
|
#
|
58336
|
+
# @!attribute [rw] operator
|
58337
|
+
# The entity that manages the launch template.
|
58338
|
+
# @return [Types::OperatorRequest]
|
58339
|
+
#
|
58252
58340
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RequestLaunchTemplateData AWS API Documentation
|
58253
58341
|
#
|
58254
58342
|
class RequestLaunchTemplateData < Struct.new(
|
@@ -58282,7 +58370,8 @@ module Aws::EC2
|
|
58282
58370
|
:instance_requirements,
|
58283
58371
|
:private_dns_name_options,
|
58284
58372
|
:maintenance_options,
|
58285
|
-
:disable_api_stop
|
58373
|
+
:disable_api_stop,
|
58374
|
+
:operator)
|
58286
58375
|
SENSITIVE = [:user_data]
|
58287
58376
|
include Aws::Structure
|
58288
58377
|
end
|
@@ -59644,6 +59733,10 @@ module Aws::EC2
|
|
59644
59733
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-stop-protection.html
|
59645
59734
|
# @return [Boolean]
|
59646
59735
|
#
|
59736
|
+
# @!attribute [rw] operator
|
59737
|
+
# The entity that manages the launch template.
|
59738
|
+
# @return [Types::OperatorResponse]
|
59739
|
+
#
|
59647
59740
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResponseLaunchTemplateData AWS API Documentation
|
59648
59741
|
#
|
59649
59742
|
class ResponseLaunchTemplateData < Struct.new(
|
@@ -59677,7 +59770,8 @@ module Aws::EC2
|
|
59677
59770
|
:instance_requirements,
|
59678
59771
|
:private_dns_name_options,
|
59679
59772
|
:maintenance_options,
|
59680
|
-
:disable_api_stop
|
59773
|
+
:disable_api_stop,
|
59774
|
+
:operator)
|
59681
59775
|
SENSITIVE = [:user_data]
|
59682
59776
|
include Aws::Structure
|
59683
59777
|
end
|
@@ -60881,6 +60975,10 @@ module Aws::EC2
|
|
60881
60975
|
# ENI becomes the primary IPv6 address.
|
60882
60976
|
# @return [Boolean]
|
60883
60977
|
#
|
60978
|
+
# @!attribute [rw] operator
|
60979
|
+
# Reserved for internal use.
|
60980
|
+
# @return [Types::OperatorRequest]
|
60981
|
+
#
|
60884
60982
|
# @!attribute [rw] dry_run
|
60885
60983
|
# Checks whether you have the required permissions for the operation,
|
60886
60984
|
# without actually making the request, and provides an error response.
|
@@ -61002,6 +61100,7 @@ module Aws::EC2
|
|
61002
61100
|
:maintenance_options,
|
61003
61101
|
:disable_api_stop,
|
61004
61102
|
:enable_primary_ipv_6,
|
61103
|
+
:operator,
|
61005
61104
|
:dry_run,
|
61006
61105
|
:disable_api_termination,
|
61007
61106
|
:instance_initiated_shutdown_behavior,
|
@@ -69252,6 +69351,10 @@ module Aws::EC2
|
|
69252
69351
|
# Reserved for future use.
|
69253
69352
|
# @return [String]
|
69254
69353
|
#
|
69354
|
+
# @!attribute [rw] operator
|
69355
|
+
# The entity that manages the volume.
|
69356
|
+
# @return [Types::OperatorResponse]
|
69357
|
+
#
|
69255
69358
|
# @!attribute [rw] volume_id
|
69256
69359
|
# The ID of the volume.
|
69257
69360
|
# @return [String]
|
@@ -69304,6 +69407,7 @@ module Aws::EC2
|
|
69304
69407
|
:multi_attach_enabled,
|
69305
69408
|
:throughput,
|
69306
69409
|
:sse_type,
|
69410
|
+
:operator,
|
69307
69411
|
:volume_id,
|
69308
69412
|
:size,
|
69309
69413
|
:snapshot_id,
|
data/lib/aws-sdk-ec2/volume.rb
CHANGED
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -2180,7 +2180,13 @@ module Aws
|
|
2180
2180
|
maintenance_options: {
|
2181
2181
|
auto_recovery: ("default" | "disabled")?
|
2182
2182
|
}?,
|
2183
|
-
disable_api_stop: bool
|
2183
|
+
disable_api_stop: bool?,
|
2184
|
+
operator: {
|
2185
|
+
principal: ::String?
|
2186
|
+
}?
|
2187
|
+
},
|
2188
|
+
?operator: {
|
2189
|
+
principal: ::String?
|
2184
2190
|
},
|
2185
2191
|
?tag_specifications: Array[
|
2186
2192
|
{
|
@@ -2434,7 +2440,10 @@ module Aws
|
|
2434
2440
|
maintenance_options: {
|
2435
2441
|
auto_recovery: ("default" | "disabled")?
|
2436
2442
|
}?,
|
2437
|
-
disable_api_stop: bool
|
2443
|
+
disable_api_stop: bool?,
|
2444
|
+
operator: {
|
2445
|
+
principal: ::String?
|
2446
|
+
}?
|
2438
2447
|
},
|
2439
2448
|
?resolve_alias: bool
|
2440
2449
|
) -> _CreateLaunchTemplateVersionResponseSuccess
|
@@ -2827,6 +2836,9 @@ module Aws
|
|
2827
2836
|
udp_stream_timeout: ::Integer?,
|
2828
2837
|
udp_timeout: ::Integer?
|
2829
2838
|
},
|
2839
|
+
?operator: {
|
2840
|
+
principal: ::String?
|
2841
|
+
},
|
2830
2842
|
subnet_id: ::String,
|
2831
2843
|
?description: ::String,
|
2832
2844
|
?private_ip_address: ::String,
|
@@ -3763,6 +3775,7 @@ module Aws
|
|
3763
3775
|
def multi_attach_enabled: () -> bool
|
3764
3776
|
def throughput: () -> ::Integer
|
3765
3777
|
def sse_type: () -> ("sse-ebs" | "sse-kms" | "none")
|
3778
|
+
def operator: () -> Types::OperatorResponse
|
3766
3779
|
def volume_id: () -> ::String
|
3767
3780
|
def size: () -> ::Integer
|
3768
3781
|
def snapshot_id: () -> ::String
|
@@ -3797,6 +3810,9 @@ module Aws
|
|
3797
3810
|
?multi_attach_enabled: bool,
|
3798
3811
|
?throughput: ::Integer,
|
3799
3812
|
?client_token: ::String,
|
3813
|
+
?operator: {
|
3814
|
+
principal: ::String?
|
3815
|
+
},
|
3800
3816
|
?dry_run: bool
|
3801
3817
|
) -> _CreateVolumeResponseSuccess
|
3802
3818
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVolumeResponseSuccess
|
@@ -12688,6 +12704,9 @@ module Aws
|
|
12688
12704
|
},
|
12689
12705
|
?disable_api_stop: bool,
|
12690
12706
|
?enable_primary_ipv_6: bool,
|
12707
|
+
?operator: {
|
12708
|
+
principal: ::String?
|
12709
|
+
},
|
12691
12710
|
?dry_run: bool,
|
12692
12711
|
?disable_api_termination: bool,
|
12693
12712
|
?instance_initiated_shutdown_behavior: ("stop" | "terminate"),
|
data/sig/instance.rbs
CHANGED
@@ -126,6 +126,9 @@ module Aws
|
|
126
126
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Instance.html#current_instance_boot_mode-instance_method
|
127
127
|
def current_instance_boot_mode: () -> ("legacy-bios" | "uefi")
|
128
128
|
|
129
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Instance.html#operator-instance_method
|
130
|
+
def operator: () -> Types::OperatorResponse
|
131
|
+
|
129
132
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Instance.html#image_id-instance_method
|
130
133
|
def image_id: () -> ::String
|
131
134
|
|
data/sig/network_interface.rbs
CHANGED
@@ -93,6 +93,9 @@ module Aws
|
|
93
93
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/NetworkInterface.html#ipv_6_address-instance_method
|
94
94
|
def ipv_6_address: () -> ::String
|
95
95
|
|
96
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/NetworkInterface.html#operator-instance_method
|
97
|
+
def operator: () -> Types::OperatorResponse
|
98
|
+
|
96
99
|
def client: () -> Client
|
97
100
|
|
98
101
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/NetworkInterface.html#load-instance_method
|
data/sig/resource.rbs
CHANGED
@@ -232,6 +232,9 @@ module Aws
|
|
232
232
|
},
|
233
233
|
?disable_api_stop: bool,
|
234
234
|
?enable_primary_ipv_6: bool,
|
235
|
+
?operator: {
|
236
|
+
principal: ::String?
|
237
|
+
},
|
235
238
|
?dry_run: bool,
|
236
239
|
?disable_api_termination: bool,
|
237
240
|
?instance_initiated_shutdown_behavior: ("stop" | "terminate"),
|
@@ -413,6 +416,9 @@ module Aws
|
|
413
416
|
udp_stream_timeout: ::Integer?,
|
414
417
|
udp_timeout: ::Integer?
|
415
418
|
},
|
419
|
+
?operator: {
|
420
|
+
principal: ::String?
|
421
|
+
},
|
416
422
|
subnet_id: ::String,
|
417
423
|
?description: ::String,
|
418
424
|
?private_ip_address: ::String,
|
@@ -593,6 +599,9 @@ module Aws
|
|
593
599
|
?multi_attach_enabled: bool,
|
594
600
|
?throughput: ::Integer,
|
595
601
|
?client_token: ::String,
|
602
|
+
?operator: {
|
603
|
+
principal: ::String?
|
604
|
+
},
|
596
605
|
?dry_run: bool
|
597
606
|
) -> Volume
|
598
607
|
| (?Hash[Symbol, untyped]) -> Volume
|
data/sig/subnet.rbs
CHANGED
@@ -222,6 +222,9 @@ module Aws
|
|
222
222
|
},
|
223
223
|
?disable_api_stop: bool,
|
224
224
|
?enable_primary_ipv_6: bool,
|
225
|
+
?operator: {
|
226
|
+
principal: ::String?
|
227
|
+
},
|
225
228
|
?dry_run: bool,
|
226
229
|
?disable_api_termination: bool,
|
227
230
|
?instance_initiated_shutdown_behavior: ("stop" | "terminate"),
|
@@ -322,6 +325,9 @@ module Aws
|
|
322
325
|
udp_stream_timeout: ::Integer?,
|
323
326
|
udp_timeout: ::Integer?
|
324
327
|
},
|
328
|
+
?operator: {
|
329
|
+
principal: ::String?
|
330
|
+
},
|
325
331
|
?description: ::String,
|
326
332
|
?private_ip_address: ::String,
|
327
333
|
?groups: Array[::String],
|
data/sig/types.rbs
CHANGED
@@ -2109,6 +2109,7 @@ module Aws::EC2
|
|
2109
2109
|
attr_accessor launch_template_name: ::String
|
2110
2110
|
attr_accessor version_description: ::String
|
2111
2111
|
attr_accessor launch_template_data: Types::RequestLaunchTemplateData
|
2112
|
+
attr_accessor operator: Types::OperatorRequest
|
2112
2113
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
2113
2114
|
SENSITIVE: []
|
2114
2115
|
end
|
@@ -2314,6 +2315,7 @@ module Aws::EC2
|
|
2314
2315
|
attr_accessor client_token: ::String
|
2315
2316
|
attr_accessor enable_primary_ipv_6: bool
|
2316
2317
|
attr_accessor connection_tracking_specification: Types::ConnectionTrackingSpecificationRequest
|
2318
|
+
attr_accessor operator: Types::OperatorRequest
|
2317
2319
|
attr_accessor subnet_id: ::String
|
2318
2320
|
attr_accessor description: ::String
|
2319
2321
|
attr_accessor private_ip_address: ::String
|
@@ -2931,6 +2933,7 @@ module Aws::EC2
|
|
2931
2933
|
attr_accessor multi_attach_enabled: bool
|
2932
2934
|
attr_accessor throughput: ::Integer
|
2933
2935
|
attr_accessor client_token: ::String
|
2936
|
+
attr_accessor operator: Types::OperatorRequest
|
2934
2937
|
attr_accessor dry_run: bool
|
2935
2938
|
SENSITIVE: []
|
2936
2939
|
end
|
@@ -6926,6 +6929,7 @@ module Aws::EC2
|
|
6926
6929
|
attr_accessor volume_id: ::String
|
6927
6930
|
attr_accessor associated_resource: ::String
|
6928
6931
|
attr_accessor volume_owner_id: ::String
|
6932
|
+
attr_accessor operator: Types::OperatorResponse
|
6929
6933
|
SENSITIVE: []
|
6930
6934
|
end
|
6931
6935
|
|
@@ -8964,6 +8968,7 @@ module Aws::EC2
|
|
8964
8968
|
attr_accessor tpm_support: ::String
|
8965
8969
|
attr_accessor maintenance_options: Types::InstanceMaintenanceOptions
|
8966
8970
|
attr_accessor current_instance_boot_mode: ("legacy-bios" | "uefi")
|
8971
|
+
attr_accessor operator: Types::OperatorResponse
|
8967
8972
|
attr_accessor instance_id: ::String
|
8968
8973
|
attr_accessor image_id: ::String
|
8969
8974
|
attr_accessor state: Types::InstanceState
|
@@ -9134,6 +9139,7 @@ module Aws::EC2
|
|
9134
9139
|
attr_accessor owner_id: ::String
|
9135
9140
|
attr_accessor tags: ::Array[Types::Tag]
|
9136
9141
|
attr_accessor image_metadata: Types::ImageMetadata
|
9142
|
+
attr_accessor operator: Types::OperatorResponse
|
9137
9143
|
SENSITIVE: []
|
9138
9144
|
end
|
9139
9145
|
|
@@ -9227,6 +9233,7 @@ module Aws::EC2
|
|
9227
9233
|
attr_accessor ipv_4_prefixes: ::Array[Types::InstanceIpv4Prefix]
|
9228
9234
|
attr_accessor ipv_6_prefixes: ::Array[Types::InstanceIpv6Prefix]
|
9229
9235
|
attr_accessor connection_tracking_configuration: Types::ConnectionTrackingSpecificationResponse
|
9236
|
+
attr_accessor operator: Types::OperatorResponse
|
9230
9237
|
SENSITIVE: []
|
9231
9238
|
end
|
9232
9239
|
|
@@ -9370,6 +9377,7 @@ module Aws::EC2
|
|
9370
9377
|
class InstanceStatus
|
9371
9378
|
attr_accessor availability_zone: ::String
|
9372
9379
|
attr_accessor outpost_arn: ::String
|
9380
|
+
attr_accessor operator: Types::OperatorResponse
|
9373
9381
|
attr_accessor events: ::Array[Types::InstanceStatusEvent]
|
9374
9382
|
attr_accessor instance_id: ::String
|
9375
9383
|
attr_accessor instance_state: Types::InstanceState
|
@@ -9910,6 +9918,7 @@ module Aws::EC2
|
|
9910
9918
|
attr_accessor default_version_number: ::Integer
|
9911
9919
|
attr_accessor latest_version_number: ::Integer
|
9912
9920
|
attr_accessor tags: ::Array[Types::Tag]
|
9921
|
+
attr_accessor operator: Types::OperatorResponse
|
9913
9922
|
SENSITIVE: []
|
9914
9923
|
end
|
9915
9924
|
|
@@ -10246,6 +10255,7 @@ module Aws::EC2
|
|
10246
10255
|
attr_accessor created_by: ::String
|
10247
10256
|
attr_accessor default_version: bool
|
10248
10257
|
attr_accessor launch_template_data: Types::ResponseLaunchTemplateData
|
10258
|
+
attr_accessor operator: Types::OperatorResponse
|
10249
10259
|
SENSITIVE: []
|
10250
10260
|
end
|
10251
10261
|
|
@@ -11805,6 +11815,7 @@ module Aws::EC2
|
|
11805
11815
|
attr_accessor deny_all_igw_traffic: bool
|
11806
11816
|
attr_accessor ipv_6_native: bool
|
11807
11817
|
attr_accessor ipv_6_address: ::String
|
11818
|
+
attr_accessor operator: Types::OperatorResponse
|
11808
11819
|
SENSITIVE: []
|
11809
11820
|
end
|
11810
11821
|
|
@@ -11947,6 +11958,17 @@ module Aws::EC2
|
|
11947
11958
|
SENSITIVE: []
|
11948
11959
|
end
|
11949
11960
|
|
11961
|
+
class OperatorRequest
|
11962
|
+
attr_accessor principal: ::String
|
11963
|
+
SENSITIVE: []
|
11964
|
+
end
|
11965
|
+
|
11966
|
+
class OperatorResponse
|
11967
|
+
attr_accessor managed: bool
|
11968
|
+
attr_accessor principal: ::String
|
11969
|
+
SENSITIVE: []
|
11970
|
+
end
|
11971
|
+
|
11950
11972
|
class PacketHeaderStatement
|
11951
11973
|
attr_accessor source_addresses: ::Array[::String]
|
11952
11974
|
attr_accessor destination_addresses: ::Array[::String]
|
@@ -12822,6 +12844,7 @@ module Aws::EC2
|
|
12822
12844
|
attr_accessor private_dns_name_options: Types::LaunchTemplatePrivateDnsNameOptionsRequest
|
12823
12845
|
attr_accessor maintenance_options: Types::LaunchTemplateInstanceMaintenanceOptionsRequest
|
12824
12846
|
attr_accessor disable_api_stop: bool
|
12847
|
+
attr_accessor operator: Types::OperatorRequest
|
12825
12848
|
SENSITIVE: [:user_data]
|
12826
12849
|
end
|
12827
12850
|
|
@@ -13117,6 +13140,7 @@ module Aws::EC2
|
|
13117
13140
|
attr_accessor private_dns_name_options: Types::LaunchTemplatePrivateDnsNameOptions
|
13118
13141
|
attr_accessor maintenance_options: Types::LaunchTemplateInstanceMaintenanceOptions
|
13119
13142
|
attr_accessor disable_api_stop: bool
|
13143
|
+
attr_accessor operator: Types::OperatorResponse
|
13120
13144
|
SENSITIVE: [:user_data]
|
13121
13145
|
end
|
13122
13146
|
|
@@ -13368,6 +13392,7 @@ module Aws::EC2
|
|
13368
13392
|
attr_accessor maintenance_options: Types::InstanceMaintenanceOptionsRequest
|
13369
13393
|
attr_accessor disable_api_stop: bool
|
13370
13394
|
attr_accessor enable_primary_ipv_6: bool
|
13395
|
+
attr_accessor operator: Types::OperatorRequest
|
13371
13396
|
attr_accessor dry_run: bool
|
13372
13397
|
attr_accessor disable_api_termination: bool
|
13373
13398
|
attr_accessor instance_initiated_shutdown_behavior: ("stop" | "terminate")
|
@@ -15198,6 +15223,7 @@ module Aws::EC2
|
|
15198
15223
|
attr_accessor multi_attach_enabled: bool
|
15199
15224
|
attr_accessor throughput: ::Integer
|
15200
15225
|
attr_accessor sse_type: ("sse-ebs" | "sse-kms" | "none")
|
15226
|
+
attr_accessor operator: Types::OperatorResponse
|
15201
15227
|
attr_accessor volume_id: ::String
|
15202
15228
|
attr_accessor size: ::Integer
|
15203
15229
|
attr_accessor snapshot_id: ::String
|
data/sig/volume.rbs
CHANGED
@@ -42,6 +42,9 @@ module Aws
|
|
42
42
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Volume.html#sse_type-instance_method
|
43
43
|
def sse_type: () -> ("sse-ebs" | "sse-kms" | "none")
|
44
44
|
|
45
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Volume.html#operator-instance_method
|
46
|
+
def operator: () -> Types::OperatorResponse
|
47
|
+
|
45
48
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Volume.html#size-instance_method
|
46
49
|
def size: () -> ::Integer
|
47
50
|
|