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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98cf1a34259cb0018a79969269d6896d468d014ec5302908976ab3652577ef66
|
4
|
+
data.tar.gz: 4c0be54167fb1f32c034db71c8470244f43a0fd0c355118fcb881d7931d004bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 375a9a19b9dd445bf1f27da0212b1182d1f68700b2f38d66f19b7aed8aef7d0c1b78454438aee3d3da3dd8012d631afc78c45a4a9aab9a90af8d0e6b7266080b
|
7
|
+
data.tar.gz: 7778cae40dd54fefc3e520d2c83d4e0019c5ecd4176d6d67fbdf5ba4fa4adfe6b58c6706aa5b8bbfd5e3cda98f79439693d90e047a889772dbbd04636116909f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.490.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -8591,6 +8591,9 @@ module Aws::EC2
|
|
8591
8591
|
# @option params [required, Types::RequestLaunchTemplateData] :launch_template_data
|
8592
8592
|
# The information for the launch template.
|
8593
8593
|
#
|
8594
|
+
# @option params [Types::OperatorRequest] :operator
|
8595
|
+
# Reserved for internal use.
|
8596
|
+
#
|
8594
8597
|
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
8595
8598
|
# The tags to apply to the launch template on creation. To tag the
|
8596
8599
|
# launch template, the resource type must be `launch-template`.
|
@@ -8887,6 +8890,12 @@ module Aws::EC2
|
|
8887
8890
|
# auto_recovery: "default", # accepts default, disabled
|
8888
8891
|
# },
|
8889
8892
|
# disable_api_stop: false,
|
8893
|
+
# operator: {
|
8894
|
+
# principal: "String",
|
8895
|
+
# },
|
8896
|
+
# },
|
8897
|
+
# operator: {
|
8898
|
+
# principal: "String",
|
8890
8899
|
# },
|
8891
8900
|
# tag_specifications: [
|
8892
8901
|
# {
|
@@ -8912,6 +8921,8 @@ module Aws::EC2
|
|
8912
8921
|
# resp.launch_template.tags #=> Array
|
8913
8922
|
# resp.launch_template.tags[0].key #=> String
|
8914
8923
|
# resp.launch_template.tags[0].value #=> String
|
8924
|
+
# resp.launch_template.operator.managed #=> Boolean
|
8925
|
+
# resp.launch_template.operator.principal #=> String
|
8915
8926
|
# resp.warning.errors #=> Array
|
8916
8927
|
# resp.warning.errors[0].code #=> String
|
8917
8928
|
# resp.warning.errors[0].message #=> String
|
@@ -9289,6 +9300,9 @@ module Aws::EC2
|
|
9289
9300
|
# auto_recovery: "default", # accepts default, disabled
|
9290
9301
|
# },
|
9291
9302
|
# disable_api_stop: false,
|
9303
|
+
# operator: {
|
9304
|
+
# principal: "String",
|
9305
|
+
# },
|
9292
9306
|
# },
|
9293
9307
|
# resolve_alias: false,
|
9294
9308
|
# })
|
@@ -9451,6 +9465,10 @@ module Aws::EC2
|
|
9451
9465
|
# resp.launch_template_version.launch_template_data.private_dns_name_options.enable_resource_name_dns_aaaa_record #=> Boolean
|
9452
9466
|
# resp.launch_template_version.launch_template_data.maintenance_options.auto_recovery #=> String, one of "default", "disabled"
|
9453
9467
|
# resp.launch_template_version.launch_template_data.disable_api_stop #=> Boolean
|
9468
|
+
# resp.launch_template_version.launch_template_data.operator.managed #=> Boolean
|
9469
|
+
# resp.launch_template_version.launch_template_data.operator.principal #=> String
|
9470
|
+
# resp.launch_template_version.operator.managed #=> Boolean
|
9471
|
+
# resp.launch_template_version.operator.principal #=> String
|
9454
9472
|
# resp.warning.errors #=> Array
|
9455
9473
|
# resp.warning.errors[0].code #=> String
|
9456
9474
|
# resp.warning.errors[0].message #=> String
|
@@ -10768,6 +10786,9 @@ module Aws::EC2
|
|
10768
10786
|
# @option params [Types::ConnectionTrackingSpecificationRequest] :connection_tracking_specification
|
10769
10787
|
# A connection tracking specification for the network interface.
|
10770
10788
|
#
|
10789
|
+
# @option params [Types::OperatorRequest] :operator
|
10790
|
+
# Reserved for internal use.
|
10791
|
+
#
|
10771
10792
|
# @option params [required, String] :subnet_id
|
10772
10793
|
# The ID of the subnet to associate with the network interface.
|
10773
10794
|
#
|
@@ -10911,6 +10932,9 @@ module Aws::EC2
|
|
10911
10932
|
# udp_stream_timeout: 1,
|
10912
10933
|
# udp_timeout: 1,
|
10913
10934
|
# },
|
10935
|
+
# operator: {
|
10936
|
+
# principal: "String",
|
10937
|
+
# },
|
10914
10938
|
# subnet_id: "SubnetId", # required
|
10915
10939
|
# description: "String",
|
10916
10940
|
# private_ip_address: "String",
|
@@ -10996,6 +11020,8 @@ module Aws::EC2
|
|
10996
11020
|
# resp.network_interface.deny_all_igw_traffic #=> Boolean
|
10997
11021
|
# resp.network_interface.ipv_6_native #=> Boolean
|
10998
11022
|
# resp.network_interface.ipv_6_address #=> String
|
11023
|
+
# resp.network_interface.operator.managed #=> Boolean
|
11024
|
+
# resp.network_interface.operator.principal #=> String
|
10999
11025
|
# resp.client_token #=> String
|
11000
11026
|
#
|
11001
11027
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkInterface AWS API Documentation
|
@@ -14688,6 +14714,9 @@ module Aws::EC2
|
|
14688
14714
|
#
|
14689
14715
|
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
14690
14716
|
#
|
14717
|
+
# @option params [Types::OperatorRequest] :operator
|
14718
|
+
# Reserved for internal use.
|
14719
|
+
#
|
14691
14720
|
# @option params [Boolean] :dry_run
|
14692
14721
|
# Checks whether you have the required permissions for the action,
|
14693
14722
|
# without actually making the request, and provides an error response.
|
@@ -14704,6 +14733,7 @@ module Aws::EC2
|
|
14704
14733
|
# * {Types::Volume#multi_attach_enabled #multi_attach_enabled} => Boolean
|
14705
14734
|
# * {Types::Volume#throughput #throughput} => Integer
|
14706
14735
|
# * {Types::Volume#sse_type #sse_type} => String
|
14736
|
+
# * {Types::Volume#operator #operator} => Types::OperatorResponse
|
14707
14737
|
# * {Types::Volume#volume_id #volume_id} => String
|
14708
14738
|
# * {Types::Volume#size #size} => Integer
|
14709
14739
|
# * {Types::Volume#snapshot_id #snapshot_id} => String
|
@@ -14791,6 +14821,9 @@ module Aws::EC2
|
|
14791
14821
|
# multi_attach_enabled: false,
|
14792
14822
|
# throughput: 1,
|
14793
14823
|
# client_token: "String",
|
14824
|
+
# operator: {
|
14825
|
+
# principal: "String",
|
14826
|
+
# },
|
14794
14827
|
# dry_run: false,
|
14795
14828
|
# })
|
14796
14829
|
#
|
@@ -14806,6 +14839,8 @@ module Aws::EC2
|
|
14806
14839
|
# resp.multi_attach_enabled #=> Boolean
|
14807
14840
|
# resp.throughput #=> Integer
|
14808
14841
|
# resp.sse_type #=> String, one of "sse-ebs", "sse-kms", "none"
|
14842
|
+
# resp.operator.managed #=> Boolean
|
14843
|
+
# resp.operator.principal #=> String
|
14809
14844
|
# resp.volume_id #=> String
|
14810
14845
|
# resp.size #=> Integer
|
14811
14846
|
# resp.snapshot_id #=> String
|
@@ -16956,6 +16991,8 @@ module Aws::EC2
|
|
16956
16991
|
# resp.launch_template.tags #=> Array
|
16957
16992
|
# resp.launch_template.tags[0].key #=> String
|
16958
16993
|
# resp.launch_template.tags[0].value #=> String
|
16994
|
+
# resp.launch_template.operator.managed #=> Boolean
|
16995
|
+
# resp.launch_template.operator.principal #=> String
|
16959
16996
|
#
|
16960
16997
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteLaunchTemplate AWS API Documentation
|
16961
16998
|
#
|
@@ -21097,7 +21134,6 @@ module Aws::EC2
|
|
21097
21134
|
# * `dedicated` - The Capacity Reservation is created on single-tenant
|
21098
21135
|
# hardware that is dedicated to a single Amazon Web Services
|
21099
21136
|
# account.
|
21100
|
-
#
|
21101
21137
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost on
|
21102
21138
|
# which the Capacity Reservation was created.
|
21103
21139
|
#
|
@@ -21121,7 +21157,6 @@ module Aws::EC2
|
|
21121
21157
|
# might fail due to invalid request parameters, capacity
|
21122
21158
|
# constraints, or instance limit constraints. Failed requests are
|
21123
21159
|
# retained for 60 minutes.
|
21124
|
-
#
|
21125
21160
|
# * `start-date` - The date and time at which the Capacity Reservation
|
21126
21161
|
# was started.
|
21127
21162
|
#
|
@@ -21140,7 +21175,6 @@ module Aws::EC2
|
|
21140
21175
|
#
|
21141
21176
|
# * `limited` - The Capacity Reservation expires automatically at a
|
21142
21177
|
# specified date and time.
|
21143
|
-
#
|
21144
21178
|
# * `instance-match-criteria` - Indicates the type of instance launches
|
21145
21179
|
# that the Capacity Reservation accepts. The options include:
|
21146
21180
|
#
|
@@ -21155,7 +21189,6 @@ module Aws::EC2
|
|
21155
21189
|
# Availability Zone), and explicitly target the Capacity
|
21156
21190
|
# Reservation. This ensures that only permitted instances can use
|
21157
21191
|
# the reserved capacity.
|
21158
|
-
#
|
21159
21192
|
# * `placement-group-arn` - The ARN of the cluster placement group in
|
21160
21193
|
# which the Capacity Reservation was created.
|
21161
21194
|
#
|
@@ -24711,6 +24744,8 @@ module Aws::EC2
|
|
24711
24744
|
# resp.block_device_mappings[0].ebs.volume_id #=> String
|
24712
24745
|
# resp.block_device_mappings[0].ebs.associated_resource #=> String
|
24713
24746
|
# resp.block_device_mappings[0].ebs.volume_owner_id #=> String
|
24747
|
+
# resp.block_device_mappings[0].ebs.operator.managed #=> Boolean
|
24748
|
+
# resp.block_device_mappings[0].ebs.operator.principal #=> String
|
24714
24749
|
# resp.disable_api_termination.value #=> Boolean
|
24715
24750
|
# resp.ena_support.value #=> Boolean
|
24716
24751
|
# resp.enclave_options.enabled #=> Boolean
|
@@ -25249,6 +25284,8 @@ module Aws::EC2
|
|
25249
25284
|
# resp.instance_image_metadata[0].image_metadata.creation_date #=> String
|
25250
25285
|
# resp.instance_image_metadata[0].image_metadata.deprecation_time #=> String
|
25251
25286
|
# resp.instance_image_metadata[0].image_metadata.is_public #=> Boolean
|
25287
|
+
# resp.instance_image_metadata[0].operator.managed #=> Boolean
|
25288
|
+
# resp.instance_image_metadata[0].operator.principal #=> String
|
25252
25289
|
# resp.next_token #=> String
|
25253
25290
|
#
|
25254
25291
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceImageMetadata AWS API Documentation
|
@@ -25454,6 +25491,8 @@ module Aws::EC2
|
|
25454
25491
|
# resp.instance_statuses #=> Array
|
25455
25492
|
# resp.instance_statuses[0].availability_zone #=> String
|
25456
25493
|
# resp.instance_statuses[0].outpost_arn #=> String
|
25494
|
+
# resp.instance_statuses[0].operator.managed #=> Boolean
|
25495
|
+
# resp.instance_statuses[0].operator.principal #=> String
|
25457
25496
|
# resp.instance_statuses[0].events #=> Array
|
25458
25497
|
# resp.instance_statuses[0].events[0].instance_event_id #=> String
|
25459
25498
|
# resp.instance_statuses[0].events[0].code #=> String, one of "instance-reboot", "system-reboot", "system-maintenance", "instance-retirement", "instance-stop"
|
@@ -25509,7 +25548,6 @@ module Aws::EC2
|
|
25509
25548
|
# * Availability Zone
|
25510
25549
|
#
|
25511
25550
|
# * Local Zone
|
25512
|
-
#
|
25513
25551
|
# * Supported instance types
|
25514
25552
|
#
|
25515
25553
|
# * `hpc6a.48xlarge` \| `hpc6id.32xlarge` \| `hpc7a.12xlarge` \|
|
@@ -26634,6 +26672,8 @@ module Aws::EC2
|
|
26634
26672
|
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.volume_id #=> String
|
26635
26673
|
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.associated_resource #=> String
|
26636
26674
|
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.volume_owner_id #=> String
|
26675
|
+
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.operator.managed #=> Boolean
|
26676
|
+
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.operator.principal #=> String
|
26637
26677
|
# resp.reservations[0].instances[0].client_token #=> String
|
26638
26678
|
# resp.reservations[0].instances[0].ebs_optimized #=> Boolean
|
26639
26679
|
# resp.reservations[0].instances[0].ena_support #=> Boolean
|
@@ -26698,6 +26738,8 @@ module Aws::EC2
|
|
26698
26738
|
# resp.reservations[0].instances[0].network_interfaces[0].connection_tracking_configuration.tcp_established_timeout #=> Integer
|
26699
26739
|
# resp.reservations[0].instances[0].network_interfaces[0].connection_tracking_configuration.udp_stream_timeout #=> Integer
|
26700
26740
|
# resp.reservations[0].instances[0].network_interfaces[0].connection_tracking_configuration.udp_timeout #=> Integer
|
26741
|
+
# resp.reservations[0].instances[0].network_interfaces[0].operator.managed #=> Boolean
|
26742
|
+
# resp.reservations[0].instances[0].network_interfaces[0].operator.principal #=> String
|
26701
26743
|
# resp.reservations[0].instances[0].outpost_arn #=> String
|
26702
26744
|
# resp.reservations[0].instances[0].root_device_name #=> String
|
26703
26745
|
# resp.reservations[0].instances[0].root_device_type #=> String, one of "ebs", "instance-store"
|
@@ -26741,6 +26783,8 @@ module Aws::EC2
|
|
26741
26783
|
# resp.reservations[0].instances[0].tpm_support #=> String
|
26742
26784
|
# resp.reservations[0].instances[0].maintenance_options.auto_recovery #=> String, one of "disabled", "default"
|
26743
26785
|
# resp.reservations[0].instances[0].current_instance_boot_mode #=> String, one of "legacy-bios", "uefi"
|
26786
|
+
# resp.reservations[0].instances[0].operator.managed #=> Boolean
|
26787
|
+
# resp.reservations[0].instances[0].operator.principal #=> String
|
26744
26788
|
# resp.reservations[0].instances[0].instance_id #=> String
|
26745
26789
|
# resp.reservations[0].instances[0].image_id #=> String
|
26746
26790
|
# resp.reservations[0].instances[0].state.code #=> Integer
|
@@ -28023,6 +28067,10 @@ module Aws::EC2
|
|
28023
28067
|
# resp.launch_template_versions[0].launch_template_data.private_dns_name_options.enable_resource_name_dns_aaaa_record #=> Boolean
|
28024
28068
|
# resp.launch_template_versions[0].launch_template_data.maintenance_options.auto_recovery #=> String, one of "default", "disabled"
|
28025
28069
|
# resp.launch_template_versions[0].launch_template_data.disable_api_stop #=> Boolean
|
28070
|
+
# resp.launch_template_versions[0].launch_template_data.operator.managed #=> Boolean
|
28071
|
+
# resp.launch_template_versions[0].launch_template_data.operator.principal #=> String
|
28072
|
+
# resp.launch_template_versions[0].operator.managed #=> Boolean
|
28073
|
+
# resp.launch_template_versions[0].operator.principal #=> String
|
28026
28074
|
# resp.next_token #=> String
|
28027
28075
|
#
|
28028
28076
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeLaunchTemplateVersions AWS API Documentation
|
@@ -28133,6 +28181,8 @@ module Aws::EC2
|
|
28133
28181
|
# resp.launch_templates[0].tags #=> Array
|
28134
28182
|
# resp.launch_templates[0].tags[0].key #=> String
|
28135
28183
|
# resp.launch_templates[0].tags[0].value #=> String
|
28184
|
+
# resp.launch_templates[0].operator.managed #=> Boolean
|
28185
|
+
# resp.launch_templates[0].operator.principal #=> String
|
28136
28186
|
# resp.next_token #=> String
|
28137
28187
|
#
|
28138
28188
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeLaunchTemplates AWS API Documentation
|
@@ -31015,6 +31065,8 @@ module Aws::EC2
|
|
31015
31065
|
# resp.network_interfaces[0].deny_all_igw_traffic #=> Boolean
|
31016
31066
|
# resp.network_interfaces[0].ipv_6_native #=> Boolean
|
31017
31067
|
# resp.network_interfaces[0].ipv_6_address #=> String
|
31068
|
+
# resp.network_interfaces[0].operator.managed #=> Boolean
|
31069
|
+
# resp.network_interfaces[0].operator.principal #=> String
|
31018
31070
|
# resp.next_token #=> String
|
31019
31071
|
#
|
31020
31072
|
#
|
@@ -37385,6 +37437,8 @@ module Aws::EC2
|
|
37385
37437
|
# resp.volumes[0].multi_attach_enabled #=> Boolean
|
37386
37438
|
# resp.volumes[0].throughput #=> Integer
|
37387
37439
|
# resp.volumes[0].sse_type #=> String, one of "sse-ebs", "sse-kms", "none"
|
37440
|
+
# resp.volumes[0].operator.managed #=> Boolean
|
37441
|
+
# resp.volumes[0].operator.principal #=> String
|
37388
37442
|
# resp.volumes[0].volume_id #=> String
|
37389
37443
|
# resp.volumes[0].size #=> Integer
|
37390
37444
|
# resp.volumes[0].snapshot_id #=> String
|
@@ -44029,6 +44083,8 @@ module Aws::EC2
|
|
44029
44083
|
# resp.launch_template_data.private_dns_name_options.enable_resource_name_dns_aaaa_record #=> Boolean
|
44030
44084
|
# resp.launch_template_data.maintenance_options.auto_recovery #=> String, one of "default", "disabled"
|
44031
44085
|
# resp.launch_template_data.disable_api_stop #=> Boolean
|
44086
|
+
# resp.launch_template_data.operator.managed #=> Boolean
|
44087
|
+
# resp.launch_template_data.operator.principal #=> String
|
44032
44088
|
#
|
44033
44089
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetLaunchTemplateData AWS API Documentation
|
44034
44090
|
#
|
@@ -46890,7 +46946,6 @@ module Aws::EC2
|
|
46890
46946
|
#
|
46891
46947
|
# * The snapshot is unlocked by a user with the appropriate
|
46892
46948
|
# permissions.
|
46893
|
-
#
|
46894
46949
|
# Users with the appropriate IAM permissions can unlock the snapshot,
|
46895
46950
|
# increase or decrease the lock duration, and change the lock mode to
|
46896
46951
|
# `compliance` at any time.
|
@@ -49663,6 +49718,8 @@ module Aws::EC2
|
|
49663
49718
|
# resp.launch_template.tags #=> Array
|
49664
49719
|
# resp.launch_template.tags[0].key #=> String
|
49665
49720
|
# resp.launch_template.tags[0].value #=> String
|
49721
|
+
# resp.launch_template.operator.managed #=> Boolean
|
49722
|
+
# resp.launch_template.operator.principal #=> String
|
49666
49723
|
#
|
49667
49724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyLaunchTemplate AWS API Documentation
|
49668
49725
|
#
|
@@ -57879,6 +57936,9 @@ module Aws::EC2
|
|
57879
57936
|
# first IPv6 GUA address associated with the ENI becomes the primary
|
57880
57937
|
# IPv6 address.
|
57881
57938
|
#
|
57939
|
+
# @option params [Types::OperatorRequest] :operator
|
57940
|
+
# Reserved for internal use.
|
57941
|
+
#
|
57882
57942
|
# @option params [Boolean] :dry_run
|
57883
57943
|
# Checks whether you have the required permissions for the operation,
|
57884
57944
|
# without actually making the request, and provides an error response.
|
@@ -58137,6 +58197,9 @@ module Aws::EC2
|
|
58137
58197
|
# },
|
58138
58198
|
# disable_api_stop: false,
|
58139
58199
|
# enable_primary_ipv_6: false,
|
58200
|
+
# operator: {
|
58201
|
+
# principal: "String",
|
58202
|
+
# },
|
58140
58203
|
# dry_run: false,
|
58141
58204
|
# disable_api_termination: false,
|
58142
58205
|
# instance_initiated_shutdown_behavior: "stop", # accepts stop, terminate
|
@@ -58221,6 +58284,8 @@ module Aws::EC2
|
|
58221
58284
|
# resp.instances[0].block_device_mappings[0].ebs.volume_id #=> String
|
58222
58285
|
# resp.instances[0].block_device_mappings[0].ebs.associated_resource #=> String
|
58223
58286
|
# resp.instances[0].block_device_mappings[0].ebs.volume_owner_id #=> String
|
58287
|
+
# resp.instances[0].block_device_mappings[0].ebs.operator.managed #=> Boolean
|
58288
|
+
# resp.instances[0].block_device_mappings[0].ebs.operator.principal #=> String
|
58224
58289
|
# resp.instances[0].client_token #=> String
|
58225
58290
|
# resp.instances[0].ebs_optimized #=> Boolean
|
58226
58291
|
# resp.instances[0].ena_support #=> Boolean
|
@@ -58285,6 +58350,8 @@ module Aws::EC2
|
|
58285
58350
|
# resp.instances[0].network_interfaces[0].connection_tracking_configuration.tcp_established_timeout #=> Integer
|
58286
58351
|
# resp.instances[0].network_interfaces[0].connection_tracking_configuration.udp_stream_timeout #=> Integer
|
58287
58352
|
# resp.instances[0].network_interfaces[0].connection_tracking_configuration.udp_timeout #=> Integer
|
58353
|
+
# resp.instances[0].network_interfaces[0].operator.managed #=> Boolean
|
58354
|
+
# resp.instances[0].network_interfaces[0].operator.principal #=> String
|
58288
58355
|
# resp.instances[0].outpost_arn #=> String
|
58289
58356
|
# resp.instances[0].root_device_name #=> String
|
58290
58357
|
# resp.instances[0].root_device_type #=> String, one of "ebs", "instance-store"
|
@@ -58328,6 +58395,8 @@ module Aws::EC2
|
|
58328
58395
|
# resp.instances[0].tpm_support #=> String
|
58329
58396
|
# resp.instances[0].maintenance_options.auto_recovery #=> String, one of "disabled", "default"
|
58330
58397
|
# resp.instances[0].current_instance_boot_mode #=> String, one of "legacy-bios", "uefi"
|
58398
|
+
# resp.instances[0].operator.managed #=> Boolean
|
58399
|
+
# resp.instances[0].operator.principal #=> String
|
58331
58400
|
# resp.instances[0].instance_id #=> String
|
58332
58401
|
# resp.instances[0].image_id #=> String
|
58333
58402
|
# resp.instances[0].state.code #=> Integer
|
@@ -60849,7 +60918,7 @@ module Aws::EC2
|
|
60849
60918
|
tracer: tracer
|
60850
60919
|
)
|
60851
60920
|
context[:gem_name] = 'aws-sdk-ec2'
|
60852
|
-
context[:gem_version] = '1.
|
60921
|
+
context[:gem_version] = '1.490.0'
|
60853
60922
|
Seahorse::Client::Request.new(handlers, context)
|
60854
60923
|
end
|
60855
60924
|
|
@@ -2377,6 +2377,8 @@ module Aws::EC2
|
|
2377
2377
|
OnDemandOptions = Shapes::StructureShape.new(name: 'OnDemandOptions')
|
2378
2378
|
OnDemandOptionsRequest = Shapes::StructureShape.new(name: 'OnDemandOptionsRequest')
|
2379
2379
|
OperationType = Shapes::StringShape.new(name: 'OperationType')
|
2380
|
+
OperatorRequest = Shapes::StructureShape.new(name: 'OperatorRequest')
|
2381
|
+
OperatorResponse = Shapes::StructureShape.new(name: 'OperatorResponse')
|
2380
2382
|
OrganizationArnStringList = Shapes::ListShape.new(name: 'OrganizationArnStringList')
|
2381
2383
|
OrganizationalUnitArnStringList = Shapes::ListShape.new(name: 'OrganizationalUnitArnStringList')
|
2382
2384
|
OutpostArn = Shapes::StringShape.new(name: 'OutpostArn')
|
@@ -4975,6 +4977,7 @@ module Aws::EC2
|
|
4975
4977
|
CreateLaunchTemplateRequest.add_member(:launch_template_name, Shapes::ShapeRef.new(shape: LaunchTemplateName, required: true, location_name: "LaunchTemplateName"))
|
4976
4978
|
CreateLaunchTemplateRequest.add_member(:version_description, Shapes::ShapeRef.new(shape: VersionDescription, location_name: "VersionDescription"))
|
4977
4979
|
CreateLaunchTemplateRequest.add_member(:launch_template_data, Shapes::ShapeRef.new(shape: RequestLaunchTemplateData, required: true, location_name: "LaunchTemplateData"))
|
4980
|
+
CreateLaunchTemplateRequest.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorRequest, location_name: "Operator"))
|
4978
4981
|
CreateLaunchTemplateRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
4979
4982
|
CreateLaunchTemplateRequest.struct_class = Types::CreateLaunchTemplateRequest
|
4980
4983
|
|
@@ -5130,6 +5133,7 @@ module Aws::EC2
|
|
5130
5133
|
CreateNetworkInterfaceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
5131
5134
|
CreateNetworkInterfaceRequest.add_member(:enable_primary_ipv_6, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnablePrimaryIpv6"))
|
5132
5135
|
CreateNetworkInterfaceRequest.add_member(:connection_tracking_specification, Shapes::ShapeRef.new(shape: ConnectionTrackingSpecificationRequest, location_name: "ConnectionTrackingSpecification"))
|
5136
|
+
CreateNetworkInterfaceRequest.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorRequest, location_name: "Operator"))
|
5133
5137
|
CreateNetworkInterfaceRequest.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, required: true, location_name: "subnetId"))
|
5134
5138
|
CreateNetworkInterfaceRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
5135
5139
|
CreateNetworkInterfaceRequest.add_member(:private_ip_address, Shapes::ShapeRef.new(shape: String, location_name: "privateIpAddress"))
|
@@ -5595,6 +5599,7 @@ module Aws::EC2
|
|
5595
5599
|
CreateVolumeRequest.add_member(:multi_attach_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "MultiAttachEnabled"))
|
5596
5600
|
CreateVolumeRequest.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "Throughput"))
|
5597
5601
|
CreateVolumeRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
5602
|
+
CreateVolumeRequest.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorRequest, location_name: "Operator"))
|
5598
5603
|
CreateVolumeRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
5599
5604
|
CreateVolumeRequest.struct_class = Types::CreateVolumeRequest
|
5600
5605
|
|
@@ -8488,6 +8493,7 @@ module Aws::EC2
|
|
8488
8493
|
EbsInstanceBlockDevice.add_member(:volume_id, Shapes::ShapeRef.new(shape: String, location_name: "volumeId"))
|
8489
8494
|
EbsInstanceBlockDevice.add_member(:associated_resource, Shapes::ShapeRef.new(shape: String, location_name: "associatedResource"))
|
8490
8495
|
EbsInstanceBlockDevice.add_member(:volume_owner_id, Shapes::ShapeRef.new(shape: String, location_name: "volumeOwnerId"))
|
8496
|
+
EbsInstanceBlockDevice.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
8491
8497
|
EbsInstanceBlockDevice.struct_class = Types::EbsInstanceBlockDevice
|
8492
8498
|
|
8493
8499
|
EbsInstanceBlockDeviceSpecification.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, location_name: "volumeId"))
|
@@ -10166,6 +10172,7 @@ module Aws::EC2
|
|
10166
10172
|
Instance.add_member(:tpm_support, Shapes::ShapeRef.new(shape: String, location_name: "tpmSupport"))
|
10167
10173
|
Instance.add_member(:maintenance_options, Shapes::ShapeRef.new(shape: InstanceMaintenanceOptions, location_name: "maintenanceOptions"))
|
10168
10174
|
Instance.add_member(:current_instance_boot_mode, Shapes::ShapeRef.new(shape: InstanceBootModeValues, location_name: "currentInstanceBootMode"))
|
10175
|
+
Instance.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
10169
10176
|
Instance.add_member(:instance_id, Shapes::ShapeRef.new(shape: String, location_name: "instanceId"))
|
10170
10177
|
Instance.add_member(:image_id, Shapes::ShapeRef.new(shape: String, location_name: "imageId"))
|
10171
10178
|
Instance.add_member(:state, Shapes::ShapeRef.new(shape: InstanceState, location_name: "instanceState"))
|
@@ -10328,6 +10335,7 @@ module Aws::EC2
|
|
10328
10335
|
InstanceImageMetadata.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "instanceOwnerId"))
|
10329
10336
|
InstanceImageMetadata.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
10330
10337
|
InstanceImageMetadata.add_member(:image_metadata, Shapes::ShapeRef.new(shape: ImageMetadata, location_name: "imageMetadata"))
|
10338
|
+
InstanceImageMetadata.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
10331
10339
|
InstanceImageMetadata.struct_class = Types::InstanceImageMetadata
|
10332
10340
|
|
10333
10341
|
InstanceImageMetadataList.member = Shapes::ShapeRef.new(shape: InstanceImageMetadata, location_name: "item")
|
@@ -10411,6 +10419,7 @@ module Aws::EC2
|
|
10411
10419
|
InstanceNetworkInterface.add_member(:ipv_4_prefixes, Shapes::ShapeRef.new(shape: InstanceIpv4PrefixList, location_name: "ipv4PrefixSet"))
|
10412
10420
|
InstanceNetworkInterface.add_member(:ipv_6_prefixes, Shapes::ShapeRef.new(shape: InstanceIpv6PrefixList, location_name: "ipv6PrefixSet"))
|
10413
10421
|
InstanceNetworkInterface.add_member(:connection_tracking_configuration, Shapes::ShapeRef.new(shape: ConnectionTrackingSpecificationResponse, location_name: "connectionTrackingConfiguration"))
|
10422
|
+
InstanceNetworkInterface.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
10414
10423
|
InstanceNetworkInterface.struct_class = Types::InstanceNetworkInterface
|
10415
10424
|
|
10416
10425
|
InstanceNetworkInterfaceAssociation.add_member(:carrier_ip, Shapes::ShapeRef.new(shape: String, location_name: "carrierIp"))
|
@@ -10542,6 +10551,7 @@ module Aws::EC2
|
|
10542
10551
|
|
10543
10552
|
InstanceStatus.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
|
10544
10553
|
InstanceStatus.add_member(:outpost_arn, Shapes::ShapeRef.new(shape: String, location_name: "outpostArn"))
|
10554
|
+
InstanceStatus.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
10545
10555
|
InstanceStatus.add_member(:events, Shapes::ShapeRef.new(shape: InstanceStatusEventList, location_name: "eventsSet"))
|
10546
10556
|
InstanceStatus.add_member(:instance_id, Shapes::ShapeRef.new(shape: String, location_name: "instanceId"))
|
10547
10557
|
InstanceStatus.add_member(:instance_state, Shapes::ShapeRef.new(shape: InstanceState, location_name: "instanceState"))
|
@@ -11084,6 +11094,7 @@ module Aws::EC2
|
|
11084
11094
|
LaunchTemplate.add_member(:default_version_number, Shapes::ShapeRef.new(shape: Long, location_name: "defaultVersionNumber"))
|
11085
11095
|
LaunchTemplate.add_member(:latest_version_number, Shapes::ShapeRef.new(shape: Long, location_name: "latestVersionNumber"))
|
11086
11096
|
LaunchTemplate.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
11097
|
+
LaunchTemplate.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
11087
11098
|
LaunchTemplate.struct_class = Types::LaunchTemplate
|
11088
11099
|
|
11089
11100
|
LaunchTemplateAndOverridesResponse.add_member(:launch_template_specification, Shapes::ShapeRef.new(shape: FleetLaunchTemplateSpecification, location_name: "launchTemplateSpecification"))
|
@@ -11368,6 +11379,7 @@ module Aws::EC2
|
|
11368
11379
|
LaunchTemplateVersion.add_member(:created_by, Shapes::ShapeRef.new(shape: String, location_name: "createdBy"))
|
11369
11380
|
LaunchTemplateVersion.add_member(:default_version, Shapes::ShapeRef.new(shape: Boolean, location_name: "defaultVersion"))
|
11370
11381
|
LaunchTemplateVersion.add_member(:launch_template_data, Shapes::ShapeRef.new(shape: ResponseLaunchTemplateData, location_name: "launchTemplateData"))
|
11382
|
+
LaunchTemplateVersion.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
11371
11383
|
LaunchTemplateVersion.struct_class = Types::LaunchTemplateVersion
|
11372
11384
|
|
11373
11385
|
LaunchTemplateVersionSet.member = Shapes::ShapeRef.new(shape: LaunchTemplateVersion, location_name: "item")
|
@@ -12635,6 +12647,7 @@ module Aws::EC2
|
|
12635
12647
|
NetworkInterface.add_member(:deny_all_igw_traffic, Shapes::ShapeRef.new(shape: Boolean, location_name: "denyAllIgwTraffic"))
|
12636
12648
|
NetworkInterface.add_member(:ipv_6_native, Shapes::ShapeRef.new(shape: Boolean, location_name: "ipv6Native"))
|
12637
12649
|
NetworkInterface.add_member(:ipv_6_address, Shapes::ShapeRef.new(shape: String, location_name: "ipv6Address"))
|
12650
|
+
NetworkInterface.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
12638
12651
|
NetworkInterface.struct_class = Types::NetworkInterface
|
12639
12652
|
|
12640
12653
|
NetworkInterfaceAssociation.add_member(:allocation_id, Shapes::ShapeRef.new(shape: String, location_name: "allocationId"))
|
@@ -12766,6 +12779,13 @@ module Aws::EC2
|
|
12766
12779
|
OnDemandOptionsRequest.add_member(:max_total_price, Shapes::ShapeRef.new(shape: String, location_name: "MaxTotalPrice"))
|
12767
12780
|
OnDemandOptionsRequest.struct_class = Types::OnDemandOptionsRequest
|
12768
12781
|
|
12782
|
+
OperatorRequest.add_member(:principal, Shapes::ShapeRef.new(shape: String, location_name: "Principal"))
|
12783
|
+
OperatorRequest.struct_class = Types::OperatorRequest
|
12784
|
+
|
12785
|
+
OperatorResponse.add_member(:managed, Shapes::ShapeRef.new(shape: Boolean, location_name: "managed"))
|
12786
|
+
OperatorResponse.add_member(:principal, Shapes::ShapeRef.new(shape: String, location_name: "principal"))
|
12787
|
+
OperatorResponse.struct_class = Types::OperatorResponse
|
12788
|
+
|
12769
12789
|
OrganizationArnStringList.member = Shapes::ShapeRef.new(shape: String, location_name: "OrganizationArn")
|
12770
12790
|
|
12771
12791
|
OrganizationalUnitArnStringList.member = Shapes::ShapeRef.new(shape: String, location_name: "OrganizationalUnitArn")
|
@@ -13530,6 +13550,7 @@ module Aws::EC2
|
|
13530
13550
|
RequestLaunchTemplateData.add_member(:private_dns_name_options, Shapes::ShapeRef.new(shape: LaunchTemplatePrivateDnsNameOptionsRequest, location_name: "PrivateDnsNameOptions"))
|
13531
13551
|
RequestLaunchTemplateData.add_member(:maintenance_options, Shapes::ShapeRef.new(shape: LaunchTemplateInstanceMaintenanceOptionsRequest, location_name: "MaintenanceOptions"))
|
13532
13552
|
RequestLaunchTemplateData.add_member(:disable_api_stop, Shapes::ShapeRef.new(shape: Boolean, location_name: "DisableApiStop"))
|
13553
|
+
RequestLaunchTemplateData.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorRequest, location_name: "Operator"))
|
13533
13554
|
RequestLaunchTemplateData.struct_class = Types::RequestLaunchTemplateData
|
13534
13555
|
|
13535
13556
|
RequestSpotFleetRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
@@ -13803,6 +13824,7 @@ module Aws::EC2
|
|
13803
13824
|
ResponseLaunchTemplateData.add_member(:private_dns_name_options, Shapes::ShapeRef.new(shape: LaunchTemplatePrivateDnsNameOptions, location_name: "privateDnsNameOptions"))
|
13804
13825
|
ResponseLaunchTemplateData.add_member(:maintenance_options, Shapes::ShapeRef.new(shape: LaunchTemplateInstanceMaintenanceOptions, location_name: "maintenanceOptions"))
|
13805
13826
|
ResponseLaunchTemplateData.add_member(:disable_api_stop, Shapes::ShapeRef.new(shape: Boolean, location_name: "disableApiStop"))
|
13827
|
+
ResponseLaunchTemplateData.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
13806
13828
|
ResponseLaunchTemplateData.struct_class = Types::ResponseLaunchTemplateData
|
13807
13829
|
|
13808
13830
|
RestorableByStringList.member = Shapes::ShapeRef.new(shape: String)
|
@@ -14022,6 +14044,7 @@ module Aws::EC2
|
|
14022
14044
|
RunInstancesRequest.add_member(:maintenance_options, Shapes::ShapeRef.new(shape: InstanceMaintenanceOptionsRequest, location_name: "MaintenanceOptions"))
|
14023
14045
|
RunInstancesRequest.add_member(:disable_api_stop, Shapes::ShapeRef.new(shape: Boolean, location_name: "DisableApiStop"))
|
14024
14046
|
RunInstancesRequest.add_member(:enable_primary_ipv_6, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnablePrimaryIpv6"))
|
14047
|
+
RunInstancesRequest.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorRequest, location_name: "Operator"))
|
14025
14048
|
RunInstancesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
14026
14049
|
RunInstancesRequest.add_member(:disable_api_termination, Shapes::ShapeRef.new(shape: Boolean, location_name: "disableApiTermination"))
|
14027
14050
|
RunInstancesRequest.add_member(:instance_initiated_shutdown_behavior, Shapes::ShapeRef.new(shape: ShutdownBehavior, location_name: "instanceInitiatedShutdownBehavior"))
|
@@ -15708,6 +15731,7 @@ module Aws::EC2
|
|
15708
15731
|
Volume.add_member(:multi_attach_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "multiAttachEnabled"))
|
15709
15732
|
Volume.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "throughput"))
|
15710
15733
|
Volume.add_member(:sse_type, Shapes::ShapeRef.new(shape: SSEType, location_name: "sseType"))
|
15734
|
+
Volume.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
15711
15735
|
Volume.add_member(:volume_id, Shapes::ShapeRef.new(shape: String, location_name: "volumeId"))
|
15712
15736
|
Volume.add_member(:size, Shapes::ShapeRef.new(shape: Integer, location_name: "size"))
|
15713
15737
|
Volume.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: String, location_name: "snapshotId"))
|
data/lib/aws-sdk-ec2/instance.rb
CHANGED
@@ -306,6 +306,12 @@ module Aws::EC2
|
|
306
306
|
data[:current_instance_boot_mode]
|
307
307
|
end
|
308
308
|
|
309
|
+
# The entity that manages the instance.
|
310
|
+
# @return [Types::OperatorResponse]
|
311
|
+
def operator
|
312
|
+
data[:operator]
|
313
|
+
end
|
314
|
+
|
309
315
|
# The ID of the AMI used to launch the instance.
|
310
316
|
# @return [String]
|
311
317
|
def image_id
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -212,6 +212,9 @@ module Aws::EC2
|
|
212
212
|
# },
|
213
213
|
# disable_api_stop: false,
|
214
214
|
# enable_primary_ipv_6: false,
|
215
|
+
# operator: {
|
216
|
+
# principal: "String",
|
217
|
+
# },
|
215
218
|
# dry_run: false,
|
216
219
|
# disable_api_termination: false,
|
217
220
|
# instance_initiated_shutdown_behavior: "stop", # accepts stop, terminate
|
@@ -544,6 +547,8 @@ module Aws::EC2
|
|
544
547
|
# attached to your instance and you enable a primary IPv6 address, the
|
545
548
|
# first IPv6 GUA address associated with the ENI becomes the primary
|
546
549
|
# IPv6 address.
|
550
|
+
# @option options [Types::OperatorRequest] :operator
|
551
|
+
# Reserved for internal use.
|
547
552
|
# @option options [Boolean] :dry_run
|
548
553
|
# Checks whether you have the required permissions for the operation,
|
549
554
|
# without actually making the request, and provides an error response.
|
@@ -887,6 +892,9 @@ module Aws::EC2
|
|
887
892
|
# udp_stream_timeout: 1,
|
888
893
|
# udp_timeout: 1,
|
889
894
|
# },
|
895
|
+
# operator: {
|
896
|
+
# principal: "String",
|
897
|
+
# },
|
890
898
|
# subnet_id: "SubnetId", # required
|
891
899
|
# description: "String",
|
892
900
|
# private_ip_address: "String",
|
@@ -971,6 +979,8 @@ module Aws::EC2
|
|
971
979
|
# the primary IPv6 address.
|
972
980
|
# @option options [Types::ConnectionTrackingSpecificationRequest] :connection_tracking_specification
|
973
981
|
# A connection tracking specification for the network interface.
|
982
|
+
# @option options [Types::OperatorRequest] :operator
|
983
|
+
# Reserved for internal use.
|
974
984
|
# @option options [required, String] :subnet_id
|
975
985
|
# The ID of the subnet to associate with the network interface.
|
976
986
|
# @option options [String] :description
|
@@ -1449,6 +1459,9 @@ module Aws::EC2
|
|
1449
1459
|
# multi_attach_enabled: false,
|
1450
1460
|
# throughput: 1,
|
1451
1461
|
# client_token: "String",
|
1462
|
+
# operator: {
|
1463
|
+
# principal: "String",
|
1464
|
+
# },
|
1452
1465
|
# dry_run: false,
|
1453
1466
|
# })
|
1454
1467
|
# @param [Hash] options ({})
|
@@ -1597,6 +1610,8 @@ module Aws::EC2
|
|
1597
1610
|
#
|
1598
1611
|
#
|
1599
1612
|
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
1613
|
+
# @option options [Types::OperatorRequest] :operator
|
1614
|
+
# Reserved for internal use.
|
1600
1615
|
# @option options [Boolean] :dry_run
|
1601
1616
|
# Checks whether you have the required permissions for the action,
|
1602
1617
|
# without actually making the request, and provides an error response.
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
@@ -447,6 +447,9 @@ module Aws::EC2
|
|
447
447
|
# },
|
448
448
|
# disable_api_stop: false,
|
449
449
|
# enable_primary_ipv_6: false,
|
450
|
+
# operator: {
|
451
|
+
# principal: "String",
|
452
|
+
# },
|
450
453
|
# dry_run: false,
|
451
454
|
# disable_api_termination: false,
|
452
455
|
# instance_initiated_shutdown_behavior: "stop", # accepts stop, terminate
|
@@ -774,6 +777,8 @@ module Aws::EC2
|
|
774
777
|
# attached to your instance and you enable a primary IPv6 address, the
|
775
778
|
# first IPv6 GUA address associated with the ENI becomes the primary
|
776
779
|
# IPv6 address.
|
780
|
+
# @option options [Types::OperatorRequest] :operator
|
781
|
+
# Reserved for internal use.
|
777
782
|
# @option options [Boolean] :dry_run
|
778
783
|
# Checks whether you have the required permissions for the operation,
|
779
784
|
# without actually making the request, and provides an error response.
|
@@ -889,6 +894,9 @@ module Aws::EC2
|
|
889
894
|
# udp_stream_timeout: 1,
|
890
895
|
# udp_timeout: 1,
|
891
896
|
# },
|
897
|
+
# operator: {
|
898
|
+
# principal: "String",
|
899
|
+
# },
|
892
900
|
# description: "String",
|
893
901
|
# private_ip_address: "String",
|
894
902
|
# groups: ["SecurityGroupId"],
|
@@ -972,6 +980,8 @@ module Aws::EC2
|
|
972
980
|
# the primary IPv6 address.
|
973
981
|
# @option options [Types::ConnectionTrackingSpecificationRequest] :connection_tracking_specification
|
974
982
|
# A connection tracking specification for the network interface.
|
983
|
+
# @option options [Types::OperatorRequest] :operator
|
984
|
+
# Reserved for internal use.
|
975
985
|
# @option options [String] :description
|
976
986
|
# A description for the network interface.
|
977
987
|
# @option options [String] :private_ip_address
|