aws-sdk-ec2 1.577.0 → 1.579.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +618 -136
- data/lib/aws-sdk-ec2/client_api.rb +181 -0
- data/lib/aws-sdk-ec2/instance.rb +1 -1
- data/lib/aws-sdk-ec2/resource.rb +17 -17
- data/lib/aws-sdk-ec2/security_group.rb +2 -2
- data/lib/aws-sdk-ec2/snapshot.rb +1 -1
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +496 -0
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- data/lib/aws-sdk-ec2/vpc.rb +5 -5
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +225 -105
- data/sig/instance.rbs +1 -1
- data/sig/resource.rbs +17 -17
- data/sig/security_group.rbs +2 -2
- data/sig/snapshot.rbs +1 -1
- data/sig/subnet.rbs +2 -2
- data/sig/tag.rbs +1 -1
- data/sig/types.rbs +133 -16
- data/sig/volume.rbs +1 -1
- data/sig/vpc.rbs +5 -5
- metadata +1 -1
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -16293,6 +16293,48 @@ module Aws::EC2
|
|
|
16293
16293
|
include Aws::Structure
|
|
16294
16294
|
end
|
|
16295
16295
|
|
|
16296
|
+
# @!attribute [rw] type
|
|
16297
|
+
# The type of VPN concentrator to create.
|
|
16298
|
+
# @return [String]
|
|
16299
|
+
#
|
|
16300
|
+
# @!attribute [rw] transit_gateway_id
|
|
16301
|
+
# The ID of the transit gateway to attach the VPN concentrator to.
|
|
16302
|
+
# @return [String]
|
|
16303
|
+
#
|
|
16304
|
+
# @!attribute [rw] tag_specifications
|
|
16305
|
+
# The tags to apply to the VPN concentrator during creation.
|
|
16306
|
+
# @return [Array<Types::TagSpecification>]
|
|
16307
|
+
#
|
|
16308
|
+
# @!attribute [rw] dry_run
|
|
16309
|
+
# Checks whether you have the required permissions for the action,
|
|
16310
|
+
# without actually making the request, and provides an error response.
|
|
16311
|
+
# If you have the required permissions, the error response is
|
|
16312
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
16313
|
+
# @return [Boolean]
|
|
16314
|
+
#
|
|
16315
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpnConcentratorRequest AWS API Documentation
|
|
16316
|
+
#
|
|
16317
|
+
class CreateVpnConcentratorRequest < Struct.new(
|
|
16318
|
+
:type,
|
|
16319
|
+
:transit_gateway_id,
|
|
16320
|
+
:tag_specifications,
|
|
16321
|
+
:dry_run)
|
|
16322
|
+
SENSITIVE = []
|
|
16323
|
+
include Aws::Structure
|
|
16324
|
+
end
|
|
16325
|
+
|
|
16326
|
+
# @!attribute [rw] vpn_concentrator
|
|
16327
|
+
# Information about the VPN concentrator.
|
|
16328
|
+
# @return [Types::VpnConcentrator]
|
|
16329
|
+
#
|
|
16330
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpnConcentratorResult AWS API Documentation
|
|
16331
|
+
#
|
|
16332
|
+
class CreateVpnConcentratorResult < Struct.new(
|
|
16333
|
+
:vpn_concentrator)
|
|
16334
|
+
SENSITIVE = []
|
|
16335
|
+
include Aws::Structure
|
|
16336
|
+
end
|
|
16337
|
+
|
|
16296
16338
|
# Contains the parameters for CreateVpnConnection.
|
|
16297
16339
|
#
|
|
16298
16340
|
# @!attribute [rw] customer_gateway_id
|
|
@@ -16313,6 +16355,10 @@ module Aws::EC2
|
|
|
16313
16355
|
# cannot specify a virtual private gateway.
|
|
16314
16356
|
# @return [String]
|
|
16315
16357
|
#
|
|
16358
|
+
# @!attribute [rw] vpn_concentrator_id
|
|
16359
|
+
# The ID of the VPN concentrator to associate with the VPN connection.
|
|
16360
|
+
# @return [String]
|
|
16361
|
+
#
|
|
16316
16362
|
# @!attribute [rw] tag_specifications
|
|
16317
16363
|
# The tags to apply to the VPN connection.
|
|
16318
16364
|
# @return [Array<Types::TagSpecification>]
|
|
@@ -16341,6 +16387,7 @@ module Aws::EC2
|
|
|
16341
16387
|
:type,
|
|
16342
16388
|
:vpn_gateway_id,
|
|
16343
16389
|
:transit_gateway_id,
|
|
16390
|
+
:vpn_concentrator_id,
|
|
16344
16391
|
:tag_specifications,
|
|
16345
16392
|
:pre_shared_key_storage,
|
|
16346
16393
|
:dry_run,
|
|
@@ -19649,6 +19696,39 @@ module Aws::EC2
|
|
|
19649
19696
|
include Aws::Structure
|
|
19650
19697
|
end
|
|
19651
19698
|
|
|
19699
|
+
# @!attribute [rw] vpn_concentrator_id
|
|
19700
|
+
# The ID of the VPN concentrator to delete.
|
|
19701
|
+
# @return [String]
|
|
19702
|
+
#
|
|
19703
|
+
# @!attribute [rw] dry_run
|
|
19704
|
+
# Checks whether you have the required permissions for the action,
|
|
19705
|
+
# without actually making the request, and provides an error response.
|
|
19706
|
+
# If you have the required permissions, the error response is
|
|
19707
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
19708
|
+
# @return [Boolean]
|
|
19709
|
+
#
|
|
19710
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnConcentratorRequest AWS API Documentation
|
|
19711
|
+
#
|
|
19712
|
+
class DeleteVpnConcentratorRequest < Struct.new(
|
|
19713
|
+
:vpn_concentrator_id,
|
|
19714
|
+
:dry_run)
|
|
19715
|
+
SENSITIVE = []
|
|
19716
|
+
include Aws::Structure
|
|
19717
|
+
end
|
|
19718
|
+
|
|
19719
|
+
# @!attribute [rw] return
|
|
19720
|
+
# Returns `true` if the request succeeds; otherwise, it returns an
|
|
19721
|
+
# error.
|
|
19722
|
+
# @return [Boolean]
|
|
19723
|
+
#
|
|
19724
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnConcentratorResult AWS API Documentation
|
|
19725
|
+
#
|
|
19726
|
+
class DeleteVpnConcentratorResult < Struct.new(
|
|
19727
|
+
:return)
|
|
19728
|
+
SENSITIVE = []
|
|
19729
|
+
include Aws::Structure
|
|
19730
|
+
end
|
|
19731
|
+
|
|
19652
19732
|
# Contains the parameters for DeleteVpnConnection.
|
|
19653
19733
|
#
|
|
19654
19734
|
# @!attribute [rw] vpn_connection_id
|
|
@@ -24600,6 +24680,173 @@ module Aws::EC2
|
|
|
24600
24680
|
include Aws::Structure
|
|
24601
24681
|
end
|
|
24602
24682
|
|
|
24683
|
+
# @!attribute [rw] instance_ids
|
|
24684
|
+
# The IDs of the SQL Server High Availability instances to describe.
|
|
24685
|
+
# If omitted, the API returns historical states for all SQL Server
|
|
24686
|
+
# High Availability instances.
|
|
24687
|
+
# @return [Array<String>]
|
|
24688
|
+
#
|
|
24689
|
+
# @!attribute [rw] start_time
|
|
24690
|
+
# The start data and time of the period for which to get the
|
|
24691
|
+
# historical SQL Server High Availability states. If omitted, the API
|
|
24692
|
+
# returns all available historical states.
|
|
24693
|
+
#
|
|
24694
|
+
# Timezone: UTC
|
|
24695
|
+
#
|
|
24696
|
+
# Format: `YYYY-MM-DDThh:mm:ss.sssZ`
|
|
24697
|
+
# @return [Time]
|
|
24698
|
+
#
|
|
24699
|
+
# @!attribute [rw] end_time
|
|
24700
|
+
# The end data and time of the period for which to get historical SQL
|
|
24701
|
+
# Server High Availability states. If omitted, the API returns
|
|
24702
|
+
# historical states up to the current date and time.
|
|
24703
|
+
#
|
|
24704
|
+
# Timezone: UTC
|
|
24705
|
+
#
|
|
24706
|
+
# Format: `YYYY-MM-DDThh:mm:ss.sssZ`
|
|
24707
|
+
# @return [Time]
|
|
24708
|
+
#
|
|
24709
|
+
# @!attribute [rw] next_token
|
|
24710
|
+
# The token to use to retrieve the next page of results.
|
|
24711
|
+
# @return [String]
|
|
24712
|
+
#
|
|
24713
|
+
# @!attribute [rw] max_results
|
|
24714
|
+
# The maximum number of results to return for the request in a single
|
|
24715
|
+
# page. The remaining results can be seen by sending another request
|
|
24716
|
+
# with the returned `nextToken` value.
|
|
24717
|
+
# @return [Integer]
|
|
24718
|
+
#
|
|
24719
|
+
# @!attribute [rw] filters
|
|
24720
|
+
# One or more filters to apply to the results. Supported filters
|
|
24721
|
+
# include:
|
|
24722
|
+
#
|
|
24723
|
+
# * `tag:<key>` - The tag key and value pair assigned to the instance.
|
|
24724
|
+
# For example, to find all instances tagged with `Owner:TeamA`,
|
|
24725
|
+
# specify `tag:Owner` for the filter name and `TeamA` for the filter
|
|
24726
|
+
# value.
|
|
24727
|
+
#
|
|
24728
|
+
# * `tag-key` - The tag key assigned to the instance.
|
|
24729
|
+
#
|
|
24730
|
+
# * `haStatus` - The SQL Server High Availability status of the SQL
|
|
24731
|
+
# Server High Availability instance (`processing` \| `active` \|
|
|
24732
|
+
# `standby` \| `invalid`).
|
|
24733
|
+
#
|
|
24734
|
+
# * `sqlServerLicenseUsage` - The license type for the SQL Server
|
|
24735
|
+
# license (`full` \| `waived`).
|
|
24736
|
+
# @return [Array<Types::Filter>]
|
|
24737
|
+
#
|
|
24738
|
+
# @!attribute [rw] dry_run
|
|
24739
|
+
# Checks whether you have the required permissions for the action,
|
|
24740
|
+
# without actually making the request, and provides an error response.
|
|
24741
|
+
# If you have the required permissions, the error response is
|
|
24742
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
24743
|
+
# @return [Boolean]
|
|
24744
|
+
#
|
|
24745
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceSqlHaHistoryStatesRequest AWS API Documentation
|
|
24746
|
+
#
|
|
24747
|
+
class DescribeInstanceSqlHaHistoryStatesRequest < Struct.new(
|
|
24748
|
+
:instance_ids,
|
|
24749
|
+
:start_time,
|
|
24750
|
+
:end_time,
|
|
24751
|
+
:next_token,
|
|
24752
|
+
:max_results,
|
|
24753
|
+
:filters,
|
|
24754
|
+
:dry_run)
|
|
24755
|
+
SENSITIVE = []
|
|
24756
|
+
include Aws::Structure
|
|
24757
|
+
end
|
|
24758
|
+
|
|
24759
|
+
# @!attribute [rw] instances
|
|
24760
|
+
# Information about the historical SQL Server High Availability states
|
|
24761
|
+
# of the SQL Server High Availability instances.
|
|
24762
|
+
# @return [Array<Types::RegisteredInstance>]
|
|
24763
|
+
#
|
|
24764
|
+
# @!attribute [rw] next_token
|
|
24765
|
+
# The token to use to retrieve the next page of results. This value is
|
|
24766
|
+
# `null` when there are no more results to return.
|
|
24767
|
+
# @return [String]
|
|
24768
|
+
#
|
|
24769
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceSqlHaHistoryStatesResult AWS API Documentation
|
|
24770
|
+
#
|
|
24771
|
+
class DescribeInstanceSqlHaHistoryStatesResult < Struct.new(
|
|
24772
|
+
:instances,
|
|
24773
|
+
:next_token)
|
|
24774
|
+
SENSITIVE = []
|
|
24775
|
+
include Aws::Structure
|
|
24776
|
+
end
|
|
24777
|
+
|
|
24778
|
+
# @!attribute [rw] instance_ids
|
|
24779
|
+
# The IDs of the SQL Server High Availability instances to describe.
|
|
24780
|
+
# If omitted, the API returns SQL Server High Availability states for
|
|
24781
|
+
# all SQL Server High Availability instances.
|
|
24782
|
+
# @return [Array<String>]
|
|
24783
|
+
#
|
|
24784
|
+
# @!attribute [rw] next_token
|
|
24785
|
+
# The token to use to retrieve the next page of results.
|
|
24786
|
+
# @return [String]
|
|
24787
|
+
#
|
|
24788
|
+
# @!attribute [rw] max_results
|
|
24789
|
+
# The maximum number of results to return for the request in a single
|
|
24790
|
+
# page. The remaining results can be seen by sending another request
|
|
24791
|
+
# with the returned `nextToken` value.
|
|
24792
|
+
# @return [Integer]
|
|
24793
|
+
#
|
|
24794
|
+
# @!attribute [rw] filters
|
|
24795
|
+
# One or more filters to apply to the results. Supported filters
|
|
24796
|
+
# include:
|
|
24797
|
+
#
|
|
24798
|
+
# * `tag:<key>` - The tag key and value pair assigned to the instance.
|
|
24799
|
+
# For example, to find all instances tagged with `Owner:TeamA`,
|
|
24800
|
+
# specify `tag:Owner` for the filter name and `TeamA` for the filter
|
|
24801
|
+
# value.
|
|
24802
|
+
#
|
|
24803
|
+
# * `tag-key` - The tag key assigned to the instance.
|
|
24804
|
+
#
|
|
24805
|
+
# * `haStatus` - The SQL Server High Availability status of the SQL
|
|
24806
|
+
# Server High Availability instance (`processing` \| `active` \|
|
|
24807
|
+
# `standby` \| `invalid`).
|
|
24808
|
+
#
|
|
24809
|
+
# * `sqlServerLicenseUsage` - The license type for the SQL Server
|
|
24810
|
+
# license (`full` \| `waived`).
|
|
24811
|
+
# @return [Array<Types::Filter>]
|
|
24812
|
+
#
|
|
24813
|
+
# @!attribute [rw] dry_run
|
|
24814
|
+
# Checks whether you have the required permissions for the action,
|
|
24815
|
+
# without actually making the request, and provides an error response.
|
|
24816
|
+
# If you have the required permissions, the error response is
|
|
24817
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
24818
|
+
# @return [Boolean]
|
|
24819
|
+
#
|
|
24820
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceSqlHaStatesRequest AWS API Documentation
|
|
24821
|
+
#
|
|
24822
|
+
class DescribeInstanceSqlHaStatesRequest < Struct.new(
|
|
24823
|
+
:instance_ids,
|
|
24824
|
+
:next_token,
|
|
24825
|
+
:max_results,
|
|
24826
|
+
:filters,
|
|
24827
|
+
:dry_run)
|
|
24828
|
+
SENSITIVE = []
|
|
24829
|
+
include Aws::Structure
|
|
24830
|
+
end
|
|
24831
|
+
|
|
24832
|
+
# @!attribute [rw] instances
|
|
24833
|
+
# Information about the SQL Server High Availability instances.
|
|
24834
|
+
# @return [Array<Types::RegisteredInstance>]
|
|
24835
|
+
#
|
|
24836
|
+
# @!attribute [rw] next_token
|
|
24837
|
+
# The token to use to retrieve the next page of results. This value is
|
|
24838
|
+
# `null` when there are no more results to return.
|
|
24839
|
+
# @return [String]
|
|
24840
|
+
#
|
|
24841
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceSqlHaStatesResult AWS API Documentation
|
|
24842
|
+
#
|
|
24843
|
+
class DescribeInstanceSqlHaStatesResult < Struct.new(
|
|
24844
|
+
:instances,
|
|
24845
|
+
:next_token)
|
|
24846
|
+
SENSITIVE = []
|
|
24847
|
+
include Aws::Structure
|
|
24848
|
+
end
|
|
24849
|
+
|
|
24603
24850
|
# @!attribute [rw] instance_ids
|
|
24604
24851
|
# The instance IDs.
|
|
24605
24852
|
#
|
|
@@ -33779,6 +34026,61 @@ module Aws::EC2
|
|
|
33779
34026
|
include Aws::Structure
|
|
33780
34027
|
end
|
|
33781
34028
|
|
|
34029
|
+
# @!attribute [rw] vpn_concentrator_ids
|
|
34030
|
+
# One or more VPN concentrator IDs.
|
|
34031
|
+
# @return [Array<String>]
|
|
34032
|
+
#
|
|
34033
|
+
# @!attribute [rw] filters
|
|
34034
|
+
# One or more filters to limit the results.
|
|
34035
|
+
# @return [Array<Types::Filter>]
|
|
34036
|
+
#
|
|
34037
|
+
# @!attribute [rw] max_results
|
|
34038
|
+
# The maximum number of results to return with a single call. To
|
|
34039
|
+
# retrieve the remaining results, make another call with the returned
|
|
34040
|
+
# `nextToken` value.
|
|
34041
|
+
# @return [Integer]
|
|
34042
|
+
#
|
|
34043
|
+
# @!attribute [rw] next_token
|
|
34044
|
+
# The token for the next page of results.
|
|
34045
|
+
# @return [String]
|
|
34046
|
+
#
|
|
34047
|
+
# @!attribute [rw] dry_run
|
|
34048
|
+
# Checks whether you have the required permissions for the action,
|
|
34049
|
+
# without actually making the request, and provides an error response.
|
|
34050
|
+
# If you have the required permissions, the error response is
|
|
34051
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
34052
|
+
# @return [Boolean]
|
|
34053
|
+
#
|
|
34054
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpnConcentratorsRequest AWS API Documentation
|
|
34055
|
+
#
|
|
34056
|
+
class DescribeVpnConcentratorsRequest < Struct.new(
|
|
34057
|
+
:vpn_concentrator_ids,
|
|
34058
|
+
:filters,
|
|
34059
|
+
:max_results,
|
|
34060
|
+
:next_token,
|
|
34061
|
+
:dry_run)
|
|
34062
|
+
SENSITIVE = []
|
|
34063
|
+
include Aws::Structure
|
|
34064
|
+
end
|
|
34065
|
+
|
|
34066
|
+
# @!attribute [rw] vpn_concentrators
|
|
34067
|
+
# Information about the VPN concentrators.
|
|
34068
|
+
# @return [Array<Types::VpnConcentrator>]
|
|
34069
|
+
#
|
|
34070
|
+
# @!attribute [rw] next_token
|
|
34071
|
+
# The token to use to retrieve the next page of results. This value is
|
|
34072
|
+
# `null` when there are no more results to return.
|
|
34073
|
+
# @return [String]
|
|
34074
|
+
#
|
|
34075
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpnConcentratorsResult AWS API Documentation
|
|
34076
|
+
#
|
|
34077
|
+
class DescribeVpnConcentratorsResult < Struct.new(
|
|
34078
|
+
:vpn_concentrators,
|
|
34079
|
+
:next_token)
|
|
34080
|
+
SENSITIVE = []
|
|
34081
|
+
include Aws::Structure
|
|
34082
|
+
end
|
|
34083
|
+
|
|
33782
34084
|
# Contains the parameters for DescribeVpnConnections.
|
|
33783
34085
|
#
|
|
33784
34086
|
# @!attribute [rw] filters
|
|
@@ -34949,6 +35251,40 @@ module Aws::EC2
|
|
|
34949
35251
|
include Aws::Structure
|
|
34950
35252
|
end
|
|
34951
35253
|
|
|
35254
|
+
# @!attribute [rw] instance_ids
|
|
35255
|
+
# The IDs of the instances to disable from SQL Server High
|
|
35256
|
+
# Availability standby detection monitoring.
|
|
35257
|
+
# @return [Array<String>]
|
|
35258
|
+
#
|
|
35259
|
+
# @!attribute [rw] dry_run
|
|
35260
|
+
# Checks whether you have the required permissions for the action,
|
|
35261
|
+
# without actually making the request, and provides an error response.
|
|
35262
|
+
# If you have the required permissions, the error response is
|
|
35263
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
35264
|
+
# @return [Boolean]
|
|
35265
|
+
#
|
|
35266
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableInstanceSqlHaStandbyDetectionsRequest AWS API Documentation
|
|
35267
|
+
#
|
|
35268
|
+
class DisableInstanceSqlHaStandbyDetectionsRequest < Struct.new(
|
|
35269
|
+
:instance_ids,
|
|
35270
|
+
:dry_run)
|
|
35271
|
+
SENSITIVE = []
|
|
35272
|
+
include Aws::Structure
|
|
35273
|
+
end
|
|
35274
|
+
|
|
35275
|
+
# @!attribute [rw] instances
|
|
35276
|
+
# Information about the instances that were disabled from SQL Server
|
|
35277
|
+
# High Availability standby detection monitoring.
|
|
35278
|
+
# @return [Array<Types::RegisteredInstance>]
|
|
35279
|
+
#
|
|
35280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableInstanceSqlHaStandbyDetectionsResult AWS API Documentation
|
|
35281
|
+
#
|
|
35282
|
+
class DisableInstanceSqlHaStandbyDetectionsResult < Struct.new(
|
|
35283
|
+
:instances)
|
|
35284
|
+
SENSITIVE = []
|
|
35285
|
+
include Aws::Structure
|
|
35286
|
+
end
|
|
35287
|
+
|
|
34952
35288
|
# @!attribute [rw] dry_run
|
|
34953
35289
|
# A check for whether you have the required permissions for the action
|
|
34954
35290
|
# without actually making the request and provides an error response.
|
|
@@ -37811,6 +38147,50 @@ module Aws::EC2
|
|
|
37811
38147
|
include Aws::Structure
|
|
37812
38148
|
end
|
|
37813
38149
|
|
|
38150
|
+
# @!attribute [rw] instance_ids
|
|
38151
|
+
# The IDs of the instances to enable for SQL Server High Availability
|
|
38152
|
+
# standby detection monitoring.
|
|
38153
|
+
# @return [Array<String>]
|
|
38154
|
+
#
|
|
38155
|
+
# @!attribute [rw] sql_server_credentials
|
|
38156
|
+
# The ARN of the Secrets Manager secret containing the SQL Server
|
|
38157
|
+
# access credentials. The specified secret must contain valid SQL
|
|
38158
|
+
# Server credentials for the specified instances. If not specified,
|
|
38159
|
+
# deafult local user credentials will be used by the Amazon Web
|
|
38160
|
+
# Services Systems Manager agent. To enable instances with different
|
|
38161
|
+
# credentials, you must make separate requests.
|
|
38162
|
+
# @return [String]
|
|
38163
|
+
#
|
|
38164
|
+
# @!attribute [rw] dry_run
|
|
38165
|
+
# Checks whether you have the required permissions for the action,
|
|
38166
|
+
# without actually making the request, and provides an error response.
|
|
38167
|
+
# If you have the required permissions, the error response is
|
|
38168
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
38169
|
+
# @return [Boolean]
|
|
38170
|
+
#
|
|
38171
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableInstanceSqlHaStandbyDetectionsRequest AWS API Documentation
|
|
38172
|
+
#
|
|
38173
|
+
class EnableInstanceSqlHaStandbyDetectionsRequest < Struct.new(
|
|
38174
|
+
:instance_ids,
|
|
38175
|
+
:sql_server_credentials,
|
|
38176
|
+
:dry_run)
|
|
38177
|
+
SENSITIVE = []
|
|
38178
|
+
include Aws::Structure
|
|
38179
|
+
end
|
|
38180
|
+
|
|
38181
|
+
# @!attribute [rw] instances
|
|
38182
|
+
# Information about the instances that were enabled for SQL Server
|
|
38183
|
+
# High Availability standby detection monitoring.
|
|
38184
|
+
# @return [Array<Types::RegisteredInstance>]
|
|
38185
|
+
#
|
|
38186
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableInstanceSqlHaStandbyDetectionsResult AWS API Documentation
|
|
38187
|
+
#
|
|
38188
|
+
class EnableInstanceSqlHaStandbyDetectionsResult < Struct.new(
|
|
38189
|
+
:instances)
|
|
38190
|
+
SENSITIVE = []
|
|
38191
|
+
include Aws::Structure
|
|
38192
|
+
end
|
|
38193
|
+
|
|
37814
38194
|
# @!attribute [rw] dry_run
|
|
37815
38195
|
# A check for whether you have the required permissions for the action
|
|
37816
38196
|
# without actually making the request and provides an error response.
|
|
@@ -67051,6 +67431,78 @@ module Aws::EC2
|
|
|
67051
67431
|
include Aws::Structure
|
|
67052
67432
|
end
|
|
67053
67433
|
|
|
67434
|
+
# Describes an Amazon EC2 instance that is enabled for SQL Server High
|
|
67435
|
+
# Availability standby detection monitoring.
|
|
67436
|
+
#
|
|
67437
|
+
# @!attribute [rw] instance_id
|
|
67438
|
+
# The ID of the SQL Server High Availability instance.
|
|
67439
|
+
# @return [String]
|
|
67440
|
+
#
|
|
67441
|
+
# @!attribute [rw] sql_server_license_usage
|
|
67442
|
+
# The license type for the SQL Server license. Valid values include:
|
|
67443
|
+
#
|
|
67444
|
+
# * `full` - The SQL Server High Availability instance is using a full
|
|
67445
|
+
# SQL Server license.
|
|
67446
|
+
#
|
|
67447
|
+
# * `waived` - The SQL Server High Availability instance is waived
|
|
67448
|
+
# from the SQL Server license.
|
|
67449
|
+
# @return [String]
|
|
67450
|
+
#
|
|
67451
|
+
# @!attribute [rw] ha_status
|
|
67452
|
+
# The SQL Server High Availability status of the instance. Valid
|
|
67453
|
+
# values are:
|
|
67454
|
+
#
|
|
67455
|
+
# * `processing` - The SQL Server High Availability status for the SQL
|
|
67456
|
+
# Server High Availability instance is being updated.
|
|
67457
|
+
#
|
|
67458
|
+
# * `active` - The SQL Server High Availability instance is an active
|
|
67459
|
+
# node in an SQL Server High Availability cluster.
|
|
67460
|
+
#
|
|
67461
|
+
# * `standby` - The SQL Server High Availability instance is a standby
|
|
67462
|
+
# failover node in an SQL Server High Availability cluster.
|
|
67463
|
+
#
|
|
67464
|
+
# * `invalid` - An error occurred due to misconfigured permissions, or
|
|
67465
|
+
# unable to dertemine SQL Server High Availability status for the
|
|
67466
|
+
# SQL Server High Availability instance.
|
|
67467
|
+
# @return [String]
|
|
67468
|
+
#
|
|
67469
|
+
# @!attribute [rw] processing_status
|
|
67470
|
+
# A brief description of the SQL Server High Availability status. If
|
|
67471
|
+
# the instance is in the `invalid` High Availability status, this
|
|
67472
|
+
# parameter includes the error message.
|
|
67473
|
+
# @return [String]
|
|
67474
|
+
#
|
|
67475
|
+
# @!attribute [rw] last_updated_time
|
|
67476
|
+
# The date and time when the instance's SQL Server High Availability
|
|
67477
|
+
# status was last updated, in the ISO 8601 format in the UTC time zone
|
|
67478
|
+
# (`YYYY-MM-DDThh:mm:ss.sssZ`).
|
|
67479
|
+
# @return [Time]
|
|
67480
|
+
#
|
|
67481
|
+
# @!attribute [rw] sql_server_credentials
|
|
67482
|
+
# The ARN of the Secrets Manager secret containing the SQL Server
|
|
67483
|
+
# access credentials for the SQL Server High Availability instance. If
|
|
67484
|
+
# not specified, deafult local user credentials will be used by the
|
|
67485
|
+
# Amazon Web Services Systems Manager agent.
|
|
67486
|
+
# @return [String]
|
|
67487
|
+
#
|
|
67488
|
+
# @!attribute [rw] tags
|
|
67489
|
+
# The tags assigned to the SQL Server High Availability instance.
|
|
67490
|
+
# @return [Array<Types::Tag>]
|
|
67491
|
+
#
|
|
67492
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RegisteredInstance AWS API Documentation
|
|
67493
|
+
#
|
|
67494
|
+
class RegisteredInstance < Struct.new(
|
|
67495
|
+
:instance_id,
|
|
67496
|
+
:sql_server_license_usage,
|
|
67497
|
+
:ha_status,
|
|
67498
|
+
:processing_status,
|
|
67499
|
+
:last_updated_time,
|
|
67500
|
+
:sql_server_credentials,
|
|
67501
|
+
:tags)
|
|
67502
|
+
SENSITIVE = []
|
|
67503
|
+
include Aws::Structure
|
|
67504
|
+
end
|
|
67505
|
+
|
|
67054
67506
|
# @!attribute [rw] dry_run
|
|
67055
67507
|
# Checks whether you have the required permissions for the action,
|
|
67056
67508
|
# without actually making the request, and provides an error response.
|
|
@@ -82036,6 +82488,45 @@ module Aws::EC2
|
|
|
82036
82488
|
include Aws::Structure
|
|
82037
82489
|
end
|
|
82038
82490
|
|
|
82491
|
+
# Describes a VPN concentrator.
|
|
82492
|
+
#
|
|
82493
|
+
# @!attribute [rw] vpn_concentrator_id
|
|
82494
|
+
# The ID of the VPN concentrator.
|
|
82495
|
+
# @return [String]
|
|
82496
|
+
#
|
|
82497
|
+
# @!attribute [rw] state
|
|
82498
|
+
# The current state of the VPN concentrator.
|
|
82499
|
+
# @return [String]
|
|
82500
|
+
#
|
|
82501
|
+
# @!attribute [rw] transit_gateway_id
|
|
82502
|
+
# The ID of the transit gateway associated with the VPN concentrator.
|
|
82503
|
+
# @return [String]
|
|
82504
|
+
#
|
|
82505
|
+
# @!attribute [rw] transit_gateway_attachment_id
|
|
82506
|
+
# The ID of the transit gateway attachment for the VPN concentrator.
|
|
82507
|
+
# @return [String]
|
|
82508
|
+
#
|
|
82509
|
+
# @!attribute [rw] type
|
|
82510
|
+
# The type of VPN concentrator.
|
|
82511
|
+
# @return [String]
|
|
82512
|
+
#
|
|
82513
|
+
# @!attribute [rw] tags
|
|
82514
|
+
# Any tags assigned to the VPN concentrator.
|
|
82515
|
+
# @return [Array<Types::Tag>]
|
|
82516
|
+
#
|
|
82517
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpnConcentrator AWS API Documentation
|
|
82518
|
+
#
|
|
82519
|
+
class VpnConcentrator < Struct.new(
|
|
82520
|
+
:vpn_concentrator_id,
|
|
82521
|
+
:state,
|
|
82522
|
+
:transit_gateway_id,
|
|
82523
|
+
:transit_gateway_attachment_id,
|
|
82524
|
+
:type,
|
|
82525
|
+
:tags)
|
|
82526
|
+
SENSITIVE = []
|
|
82527
|
+
include Aws::Structure
|
|
82528
|
+
end
|
|
82529
|
+
|
|
82039
82530
|
# Describes a VPN connection.
|
|
82040
82531
|
#
|
|
82041
82532
|
# @!attribute [rw] category
|
|
@@ -82048,6 +82539,10 @@ module Aws::EC2
|
|
|
82048
82539
|
# The ID of the transit gateway associated with the VPN connection.
|
|
82049
82540
|
# @return [String]
|
|
82050
82541
|
#
|
|
82542
|
+
# @!attribute [rw] vpn_concentrator_id
|
|
82543
|
+
# The ID of the VPN concentrator associated with the VPN connection.
|
|
82544
|
+
# @return [String]
|
|
82545
|
+
#
|
|
82051
82546
|
# @!attribute [rw] core_network_arn
|
|
82052
82547
|
# The ARN of the core network.
|
|
82053
82548
|
# @return [String]
|
|
@@ -82115,6 +82610,7 @@ module Aws::EC2
|
|
|
82115
82610
|
class VpnConnection < Struct.new(
|
|
82116
82611
|
:category,
|
|
82117
82612
|
:transit_gateway_id,
|
|
82613
|
+
:vpn_concentrator_id,
|
|
82118
82614
|
:core_network_arn,
|
|
82119
82615
|
:core_network_attachment_arn,
|
|
82120
82616
|
:gateway_association_state,
|
data/lib/aws-sdk-ec2/volume.rb
CHANGED
|
@@ -347,7 +347,7 @@ module Aws::EC2
|
|
|
347
347
|
# outpost_arn: "String",
|
|
348
348
|
# tag_specifications: [
|
|
349
349
|
# {
|
|
350
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-prefix-list-resolver-target, capacity-manager-data-export
|
|
350
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-prefix-list-resolver-target, capacity-manager-data-export, vpn-concentrator
|
|
351
351
|
# tags: [
|
|
352
352
|
# {
|
|
353
353
|
# key: "String",
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
|
@@ -369,7 +369,7 @@ module Aws::EC2
|
|
|
369
369
|
# networkacl = vpc.create_network_acl({
|
|
370
370
|
# tag_specifications: [
|
|
371
371
|
# {
|
|
372
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-prefix-list-resolver-target, capacity-manager-data-export
|
|
372
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-prefix-list-resolver-target, capacity-manager-data-export, vpn-concentrator
|
|
373
373
|
# tags: [
|
|
374
374
|
# {
|
|
375
375
|
# key: "String",
|
|
@@ -415,7 +415,7 @@ module Aws::EC2
|
|
|
415
415
|
# routetable = vpc.create_route_table({
|
|
416
416
|
# tag_specifications: [
|
|
417
417
|
# {
|
|
418
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-prefix-list-resolver-target, capacity-manager-data-export
|
|
418
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-prefix-list-resolver-target, capacity-manager-data-export, vpn-concentrator
|
|
419
419
|
# tags: [
|
|
420
420
|
# {
|
|
421
421
|
# key: "String",
|
|
@@ -463,7 +463,7 @@ module Aws::EC2
|
|
|
463
463
|
# group_name: "String", # required
|
|
464
464
|
# tag_specifications: [
|
|
465
465
|
# {
|
|
466
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-prefix-list-resolver-target, capacity-manager-data-export
|
|
466
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-prefix-list-resolver-target, capacity-manager-data-export, vpn-concentrator
|
|
467
467
|
# tags: [
|
|
468
468
|
# {
|
|
469
469
|
# key: "String",
|
|
@@ -514,7 +514,7 @@ module Aws::EC2
|
|
|
514
514
|
# subnet = vpc.create_subnet({
|
|
515
515
|
# tag_specifications: [
|
|
516
516
|
# {
|
|
517
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-prefix-list-resolver-target, capacity-manager-data-export
|
|
517
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-prefix-list-resolver-target, capacity-manager-data-export, vpn-concentrator
|
|
518
518
|
# tags: [
|
|
519
519
|
# {
|
|
520
520
|
# key: "String",
|
|
@@ -864,7 +864,7 @@ module Aws::EC2
|
|
|
864
864
|
# peer_region: "String",
|
|
865
865
|
# tag_specifications: [
|
|
866
866
|
# {
|
|
867
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-prefix-list-resolver-target, capacity-manager-data-export
|
|
867
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-prefix-list-resolver-target, capacity-manager-data-export, vpn-concentrator
|
|
868
868
|
# tags: [
|
|
869
869
|
# {
|
|
870
870
|
# key: "String",
|