aws-sdk-ec2 1.352.0 → 1.354.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 +1973 -125
- data/lib/aws-sdk-ec2/client_api.rb +781 -0
- data/lib/aws-sdk-ec2/endpoints.rb +336 -0
- data/lib/aws-sdk-ec2/instance.rb +1 -1
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +48 -0
- 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 +3 -3
- data/lib/aws-sdk-ec2/types.rb +2220 -13046
- 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
- metadata +2 -2
@@ -431,6 +431,20 @@ module Aws::EC2
|
|
431
431
|
end
|
432
432
|
end
|
433
433
|
|
434
|
+
class AttachVerifiedAccessTrustProvider
|
435
|
+
def self.build(context)
|
436
|
+
unless context.config.regional_endpoint
|
437
|
+
endpoint = context.config.endpoint.to_s
|
438
|
+
end
|
439
|
+
Aws::EC2::EndpointParameters.new(
|
440
|
+
region: context.config.region,
|
441
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
442
|
+
use_fips: context.config.use_fips_endpoint,
|
443
|
+
endpoint: endpoint,
|
444
|
+
)
|
445
|
+
end
|
446
|
+
end
|
447
|
+
|
434
448
|
class AttachVolume
|
435
449
|
def self.build(context)
|
436
450
|
unless context.config.regional_endpoint
|
@@ -1649,6 +1663,62 @@ module Aws::EC2
|
|
1649
1663
|
end
|
1650
1664
|
end
|
1651
1665
|
|
1666
|
+
class CreateVerifiedAccessEndpoint
|
1667
|
+
def self.build(context)
|
1668
|
+
unless context.config.regional_endpoint
|
1669
|
+
endpoint = context.config.endpoint.to_s
|
1670
|
+
end
|
1671
|
+
Aws::EC2::EndpointParameters.new(
|
1672
|
+
region: context.config.region,
|
1673
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1674
|
+
use_fips: context.config.use_fips_endpoint,
|
1675
|
+
endpoint: endpoint,
|
1676
|
+
)
|
1677
|
+
end
|
1678
|
+
end
|
1679
|
+
|
1680
|
+
class CreateVerifiedAccessGroup
|
1681
|
+
def self.build(context)
|
1682
|
+
unless context.config.regional_endpoint
|
1683
|
+
endpoint = context.config.endpoint.to_s
|
1684
|
+
end
|
1685
|
+
Aws::EC2::EndpointParameters.new(
|
1686
|
+
region: context.config.region,
|
1687
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1688
|
+
use_fips: context.config.use_fips_endpoint,
|
1689
|
+
endpoint: endpoint,
|
1690
|
+
)
|
1691
|
+
end
|
1692
|
+
end
|
1693
|
+
|
1694
|
+
class CreateVerifiedAccessInstance
|
1695
|
+
def self.build(context)
|
1696
|
+
unless context.config.regional_endpoint
|
1697
|
+
endpoint = context.config.endpoint.to_s
|
1698
|
+
end
|
1699
|
+
Aws::EC2::EndpointParameters.new(
|
1700
|
+
region: context.config.region,
|
1701
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1702
|
+
use_fips: context.config.use_fips_endpoint,
|
1703
|
+
endpoint: endpoint,
|
1704
|
+
)
|
1705
|
+
end
|
1706
|
+
end
|
1707
|
+
|
1708
|
+
class CreateVerifiedAccessTrustProvider
|
1709
|
+
def self.build(context)
|
1710
|
+
unless context.config.regional_endpoint
|
1711
|
+
endpoint = context.config.endpoint.to_s
|
1712
|
+
end
|
1713
|
+
Aws::EC2::EndpointParameters.new(
|
1714
|
+
region: context.config.region,
|
1715
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1716
|
+
use_fips: context.config.use_fips_endpoint,
|
1717
|
+
endpoint: endpoint,
|
1718
|
+
)
|
1719
|
+
end
|
1720
|
+
end
|
1721
|
+
|
1652
1722
|
class CreateVolume
|
1653
1723
|
def self.build(context)
|
1654
1724
|
unless context.config.regional_endpoint
|
@@ -2601,6 +2671,62 @@ module Aws::EC2
|
|
2601
2671
|
end
|
2602
2672
|
end
|
2603
2673
|
|
2674
|
+
class DeleteVerifiedAccessEndpoint
|
2675
|
+
def self.build(context)
|
2676
|
+
unless context.config.regional_endpoint
|
2677
|
+
endpoint = context.config.endpoint.to_s
|
2678
|
+
end
|
2679
|
+
Aws::EC2::EndpointParameters.new(
|
2680
|
+
region: context.config.region,
|
2681
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2682
|
+
use_fips: context.config.use_fips_endpoint,
|
2683
|
+
endpoint: endpoint,
|
2684
|
+
)
|
2685
|
+
end
|
2686
|
+
end
|
2687
|
+
|
2688
|
+
class DeleteVerifiedAccessGroup
|
2689
|
+
def self.build(context)
|
2690
|
+
unless context.config.regional_endpoint
|
2691
|
+
endpoint = context.config.endpoint.to_s
|
2692
|
+
end
|
2693
|
+
Aws::EC2::EndpointParameters.new(
|
2694
|
+
region: context.config.region,
|
2695
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2696
|
+
use_fips: context.config.use_fips_endpoint,
|
2697
|
+
endpoint: endpoint,
|
2698
|
+
)
|
2699
|
+
end
|
2700
|
+
end
|
2701
|
+
|
2702
|
+
class DeleteVerifiedAccessInstance
|
2703
|
+
def self.build(context)
|
2704
|
+
unless context.config.regional_endpoint
|
2705
|
+
endpoint = context.config.endpoint.to_s
|
2706
|
+
end
|
2707
|
+
Aws::EC2::EndpointParameters.new(
|
2708
|
+
region: context.config.region,
|
2709
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2710
|
+
use_fips: context.config.use_fips_endpoint,
|
2711
|
+
endpoint: endpoint,
|
2712
|
+
)
|
2713
|
+
end
|
2714
|
+
end
|
2715
|
+
|
2716
|
+
class DeleteVerifiedAccessTrustProvider
|
2717
|
+
def self.build(context)
|
2718
|
+
unless context.config.regional_endpoint
|
2719
|
+
endpoint = context.config.endpoint.to_s
|
2720
|
+
end
|
2721
|
+
Aws::EC2::EndpointParameters.new(
|
2722
|
+
region: context.config.region,
|
2723
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2724
|
+
use_fips: context.config.use_fips_endpoint,
|
2725
|
+
endpoint: endpoint,
|
2726
|
+
)
|
2727
|
+
end
|
2728
|
+
end
|
2729
|
+
|
2604
2730
|
class DeleteVolume
|
2605
2731
|
def self.build(context)
|
2606
2732
|
unless context.config.regional_endpoint
|
@@ -4505,6 +4631,76 @@ module Aws::EC2
|
|
4505
4631
|
end
|
4506
4632
|
end
|
4507
4633
|
|
4634
|
+
class DescribeVerifiedAccessEndpoints
|
4635
|
+
def self.build(context)
|
4636
|
+
unless context.config.regional_endpoint
|
4637
|
+
endpoint = context.config.endpoint.to_s
|
4638
|
+
end
|
4639
|
+
Aws::EC2::EndpointParameters.new(
|
4640
|
+
region: context.config.region,
|
4641
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
4642
|
+
use_fips: context.config.use_fips_endpoint,
|
4643
|
+
endpoint: endpoint,
|
4644
|
+
)
|
4645
|
+
end
|
4646
|
+
end
|
4647
|
+
|
4648
|
+
class DescribeVerifiedAccessGroups
|
4649
|
+
def self.build(context)
|
4650
|
+
unless context.config.regional_endpoint
|
4651
|
+
endpoint = context.config.endpoint.to_s
|
4652
|
+
end
|
4653
|
+
Aws::EC2::EndpointParameters.new(
|
4654
|
+
region: context.config.region,
|
4655
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
4656
|
+
use_fips: context.config.use_fips_endpoint,
|
4657
|
+
endpoint: endpoint,
|
4658
|
+
)
|
4659
|
+
end
|
4660
|
+
end
|
4661
|
+
|
4662
|
+
class DescribeVerifiedAccessInstanceLoggingConfigurations
|
4663
|
+
def self.build(context)
|
4664
|
+
unless context.config.regional_endpoint
|
4665
|
+
endpoint = context.config.endpoint.to_s
|
4666
|
+
end
|
4667
|
+
Aws::EC2::EndpointParameters.new(
|
4668
|
+
region: context.config.region,
|
4669
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
4670
|
+
use_fips: context.config.use_fips_endpoint,
|
4671
|
+
endpoint: endpoint,
|
4672
|
+
)
|
4673
|
+
end
|
4674
|
+
end
|
4675
|
+
|
4676
|
+
class DescribeVerifiedAccessInstances
|
4677
|
+
def self.build(context)
|
4678
|
+
unless context.config.regional_endpoint
|
4679
|
+
endpoint = context.config.endpoint.to_s
|
4680
|
+
end
|
4681
|
+
Aws::EC2::EndpointParameters.new(
|
4682
|
+
region: context.config.region,
|
4683
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
4684
|
+
use_fips: context.config.use_fips_endpoint,
|
4685
|
+
endpoint: endpoint,
|
4686
|
+
)
|
4687
|
+
end
|
4688
|
+
end
|
4689
|
+
|
4690
|
+
class DescribeVerifiedAccessTrustProviders
|
4691
|
+
def self.build(context)
|
4692
|
+
unless context.config.regional_endpoint
|
4693
|
+
endpoint = context.config.endpoint.to_s
|
4694
|
+
end
|
4695
|
+
Aws::EC2::EndpointParameters.new(
|
4696
|
+
region: context.config.region,
|
4697
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
4698
|
+
use_fips: context.config.use_fips_endpoint,
|
4699
|
+
endpoint: endpoint,
|
4700
|
+
)
|
4701
|
+
end
|
4702
|
+
end
|
4703
|
+
|
4508
4704
|
class DescribeVolumeAttribute
|
4509
4705
|
def self.build(context)
|
4510
4706
|
unless context.config.regional_endpoint
|
@@ -4785,6 +4981,20 @@ module Aws::EC2
|
|
4785
4981
|
end
|
4786
4982
|
end
|
4787
4983
|
|
4984
|
+
class DetachVerifiedAccessTrustProvider
|
4985
|
+
def self.build(context)
|
4986
|
+
unless context.config.regional_endpoint
|
4987
|
+
endpoint = context.config.endpoint.to_s
|
4988
|
+
end
|
4989
|
+
Aws::EC2::EndpointParameters.new(
|
4990
|
+
region: context.config.region,
|
4991
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
4992
|
+
use_fips: context.config.use_fips_endpoint,
|
4993
|
+
endpoint: endpoint,
|
4994
|
+
)
|
4995
|
+
end
|
4996
|
+
end
|
4997
|
+
|
4788
4998
|
class DetachVolume
|
4789
4999
|
def self.build(context)
|
4790
5000
|
unless context.config.regional_endpoint
|
@@ -5905,6 +6115,34 @@ module Aws::EC2
|
|
5905
6115
|
end
|
5906
6116
|
end
|
5907
6117
|
|
6118
|
+
class GetVerifiedAccessEndpointPolicy
|
6119
|
+
def self.build(context)
|
6120
|
+
unless context.config.regional_endpoint
|
6121
|
+
endpoint = context.config.endpoint.to_s
|
6122
|
+
end
|
6123
|
+
Aws::EC2::EndpointParameters.new(
|
6124
|
+
region: context.config.region,
|
6125
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
6126
|
+
use_fips: context.config.use_fips_endpoint,
|
6127
|
+
endpoint: endpoint,
|
6128
|
+
)
|
6129
|
+
end
|
6130
|
+
end
|
6131
|
+
|
6132
|
+
class GetVerifiedAccessGroupPolicy
|
6133
|
+
def self.build(context)
|
6134
|
+
unless context.config.regional_endpoint
|
6135
|
+
endpoint = context.config.endpoint.to_s
|
6136
|
+
end
|
6137
|
+
Aws::EC2::EndpointParameters.new(
|
6138
|
+
region: context.config.region,
|
6139
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
6140
|
+
use_fips: context.config.use_fips_endpoint,
|
6141
|
+
endpoint: endpoint,
|
6142
|
+
)
|
6143
|
+
end
|
6144
|
+
end
|
6145
|
+
|
5908
6146
|
class GetVpnConnectionDeviceSampleConfiguration
|
5909
6147
|
def self.build(context)
|
5910
6148
|
unless context.config.regional_endpoint
|
@@ -6633,6 +6871,104 @@ module Aws::EC2
|
|
6633
6871
|
end
|
6634
6872
|
end
|
6635
6873
|
|
6874
|
+
class ModifyVerifiedAccessEndpoint
|
6875
|
+
def self.build(context)
|
6876
|
+
unless context.config.regional_endpoint
|
6877
|
+
endpoint = context.config.endpoint.to_s
|
6878
|
+
end
|
6879
|
+
Aws::EC2::EndpointParameters.new(
|
6880
|
+
region: context.config.region,
|
6881
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
6882
|
+
use_fips: context.config.use_fips_endpoint,
|
6883
|
+
endpoint: endpoint,
|
6884
|
+
)
|
6885
|
+
end
|
6886
|
+
end
|
6887
|
+
|
6888
|
+
class ModifyVerifiedAccessEndpointPolicy
|
6889
|
+
def self.build(context)
|
6890
|
+
unless context.config.regional_endpoint
|
6891
|
+
endpoint = context.config.endpoint.to_s
|
6892
|
+
end
|
6893
|
+
Aws::EC2::EndpointParameters.new(
|
6894
|
+
region: context.config.region,
|
6895
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
6896
|
+
use_fips: context.config.use_fips_endpoint,
|
6897
|
+
endpoint: endpoint,
|
6898
|
+
)
|
6899
|
+
end
|
6900
|
+
end
|
6901
|
+
|
6902
|
+
class ModifyVerifiedAccessGroup
|
6903
|
+
def self.build(context)
|
6904
|
+
unless context.config.regional_endpoint
|
6905
|
+
endpoint = context.config.endpoint.to_s
|
6906
|
+
end
|
6907
|
+
Aws::EC2::EndpointParameters.new(
|
6908
|
+
region: context.config.region,
|
6909
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
6910
|
+
use_fips: context.config.use_fips_endpoint,
|
6911
|
+
endpoint: endpoint,
|
6912
|
+
)
|
6913
|
+
end
|
6914
|
+
end
|
6915
|
+
|
6916
|
+
class ModifyVerifiedAccessGroupPolicy
|
6917
|
+
def self.build(context)
|
6918
|
+
unless context.config.regional_endpoint
|
6919
|
+
endpoint = context.config.endpoint.to_s
|
6920
|
+
end
|
6921
|
+
Aws::EC2::EndpointParameters.new(
|
6922
|
+
region: context.config.region,
|
6923
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
6924
|
+
use_fips: context.config.use_fips_endpoint,
|
6925
|
+
endpoint: endpoint,
|
6926
|
+
)
|
6927
|
+
end
|
6928
|
+
end
|
6929
|
+
|
6930
|
+
class ModifyVerifiedAccessInstance
|
6931
|
+
def self.build(context)
|
6932
|
+
unless context.config.regional_endpoint
|
6933
|
+
endpoint = context.config.endpoint.to_s
|
6934
|
+
end
|
6935
|
+
Aws::EC2::EndpointParameters.new(
|
6936
|
+
region: context.config.region,
|
6937
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
6938
|
+
use_fips: context.config.use_fips_endpoint,
|
6939
|
+
endpoint: endpoint,
|
6940
|
+
)
|
6941
|
+
end
|
6942
|
+
end
|
6943
|
+
|
6944
|
+
class ModifyVerifiedAccessInstanceLoggingConfiguration
|
6945
|
+
def self.build(context)
|
6946
|
+
unless context.config.regional_endpoint
|
6947
|
+
endpoint = context.config.endpoint.to_s
|
6948
|
+
end
|
6949
|
+
Aws::EC2::EndpointParameters.new(
|
6950
|
+
region: context.config.region,
|
6951
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
6952
|
+
use_fips: context.config.use_fips_endpoint,
|
6953
|
+
endpoint: endpoint,
|
6954
|
+
)
|
6955
|
+
end
|
6956
|
+
end
|
6957
|
+
|
6958
|
+
class ModifyVerifiedAccessTrustProvider
|
6959
|
+
def self.build(context)
|
6960
|
+
unless context.config.regional_endpoint
|
6961
|
+
endpoint = context.config.endpoint.to_s
|
6962
|
+
end
|
6963
|
+
Aws::EC2::EndpointParameters.new(
|
6964
|
+
region: context.config.region,
|
6965
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
6966
|
+
use_fips: context.config.use_fips_endpoint,
|
6967
|
+
endpoint: endpoint,
|
6968
|
+
)
|
6969
|
+
end
|
6970
|
+
end
|
6971
|
+
|
6636
6972
|
class ModifyVolume
|
6637
6973
|
def self.build(context)
|
6638
6974
|
unless context.config.regional_endpoint
|
data/lib/aws-sdk-ec2/instance.rb
CHANGED
@@ -728,7 +728,7 @@ module Aws::EC2
|
|
728
728
|
# no_reboot: false,
|
729
729
|
# tag_specifications: [
|
730
730
|
# {
|
731
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, 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, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, 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, vpn-connection-device-type
|
731
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, 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, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, 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
|
732
732
|
# tags: [
|
733
733
|
# {
|
734
734
|
# key: "String",
|
@@ -116,6 +116,8 @@ module Aws::EC2
|
|
116
116
|
Aws::EC2::Endpoints::AttachInternetGateway.build(context)
|
117
117
|
when :attach_network_interface
|
118
118
|
Aws::EC2::Endpoints::AttachNetworkInterface.build(context)
|
119
|
+
when :attach_verified_access_trust_provider
|
120
|
+
Aws::EC2::Endpoints::AttachVerifiedAccessTrustProvider.build(context)
|
119
121
|
when :attach_volume
|
120
122
|
Aws::EC2::Endpoints::AttachVolume.build(context)
|
121
123
|
when :attach_vpn_gateway
|
@@ -290,6 +292,14 @@ module Aws::EC2
|
|
290
292
|
Aws::EC2::Endpoints::CreateTransitGatewayRouteTableAnnouncement.build(context)
|
291
293
|
when :create_transit_gateway_vpc_attachment
|
292
294
|
Aws::EC2::Endpoints::CreateTransitGatewayVpcAttachment.build(context)
|
295
|
+
when :create_verified_access_endpoint
|
296
|
+
Aws::EC2::Endpoints::CreateVerifiedAccessEndpoint.build(context)
|
297
|
+
when :create_verified_access_group
|
298
|
+
Aws::EC2::Endpoints::CreateVerifiedAccessGroup.build(context)
|
299
|
+
when :create_verified_access_instance
|
300
|
+
Aws::EC2::Endpoints::CreateVerifiedAccessInstance.build(context)
|
301
|
+
when :create_verified_access_trust_provider
|
302
|
+
Aws::EC2::Endpoints::CreateVerifiedAccessTrustProvider.build(context)
|
293
303
|
when :create_volume
|
294
304
|
Aws::EC2::Endpoints::CreateVolume.build(context)
|
295
305
|
when :create_vpc
|
@@ -426,6 +436,14 @@ module Aws::EC2
|
|
426
436
|
Aws::EC2::Endpoints::DeleteTransitGatewayRouteTableAnnouncement.build(context)
|
427
437
|
when :delete_transit_gateway_vpc_attachment
|
428
438
|
Aws::EC2::Endpoints::DeleteTransitGatewayVpcAttachment.build(context)
|
439
|
+
when :delete_verified_access_endpoint
|
440
|
+
Aws::EC2::Endpoints::DeleteVerifiedAccessEndpoint.build(context)
|
441
|
+
when :delete_verified_access_group
|
442
|
+
Aws::EC2::Endpoints::DeleteVerifiedAccessGroup.build(context)
|
443
|
+
when :delete_verified_access_instance
|
444
|
+
Aws::EC2::Endpoints::DeleteVerifiedAccessInstance.build(context)
|
445
|
+
when :delete_verified_access_trust_provider
|
446
|
+
Aws::EC2::Endpoints::DeleteVerifiedAccessTrustProvider.build(context)
|
429
447
|
when :delete_volume
|
430
448
|
Aws::EC2::Endpoints::DeleteVolume.build(context)
|
431
449
|
when :delete_vpc
|
@@ -698,6 +716,16 @@ module Aws::EC2
|
|
698
716
|
Aws::EC2::Endpoints::DescribeTransitGateways.build(context)
|
699
717
|
when :describe_trunk_interface_associations
|
700
718
|
Aws::EC2::Endpoints::DescribeTrunkInterfaceAssociations.build(context)
|
719
|
+
when :describe_verified_access_endpoints
|
720
|
+
Aws::EC2::Endpoints::DescribeVerifiedAccessEndpoints.build(context)
|
721
|
+
when :describe_verified_access_groups
|
722
|
+
Aws::EC2::Endpoints::DescribeVerifiedAccessGroups.build(context)
|
723
|
+
when :describe_verified_access_instance_logging_configurations
|
724
|
+
Aws::EC2::Endpoints::DescribeVerifiedAccessInstanceLoggingConfigurations.build(context)
|
725
|
+
when :describe_verified_access_instances
|
726
|
+
Aws::EC2::Endpoints::DescribeVerifiedAccessInstances.build(context)
|
727
|
+
when :describe_verified_access_trust_providers
|
728
|
+
Aws::EC2::Endpoints::DescribeVerifiedAccessTrustProviders.build(context)
|
701
729
|
when :describe_volume_attribute
|
702
730
|
Aws::EC2::Endpoints::DescribeVolumeAttribute.build(context)
|
703
731
|
when :describe_volume_status
|
@@ -738,6 +766,8 @@ module Aws::EC2
|
|
738
766
|
Aws::EC2::Endpoints::DetachInternetGateway.build(context)
|
739
767
|
when :detach_network_interface
|
740
768
|
Aws::EC2::Endpoints::DetachNetworkInterface.build(context)
|
769
|
+
when :detach_verified_access_trust_provider
|
770
|
+
Aws::EC2::Endpoints::DetachVerifiedAccessTrustProvider.build(context)
|
741
771
|
when :detach_volume
|
742
772
|
Aws::EC2::Endpoints::DetachVolume.build(context)
|
743
773
|
when :detach_vpn_gateway
|
@@ -898,6 +928,10 @@ module Aws::EC2
|
|
898
928
|
Aws::EC2::Endpoints::GetTransitGatewayRouteTableAssociations.build(context)
|
899
929
|
when :get_transit_gateway_route_table_propagations
|
900
930
|
Aws::EC2::Endpoints::GetTransitGatewayRouteTablePropagations.build(context)
|
931
|
+
when :get_verified_access_endpoint_policy
|
932
|
+
Aws::EC2::Endpoints::GetVerifiedAccessEndpointPolicy.build(context)
|
933
|
+
when :get_verified_access_group_policy
|
934
|
+
Aws::EC2::Endpoints::GetVerifiedAccessGroupPolicy.build(context)
|
901
935
|
when :get_vpn_connection_device_sample_configuration
|
902
936
|
Aws::EC2::Endpoints::GetVpnConnectionDeviceSampleConfiguration.build(context)
|
903
937
|
when :get_vpn_connection_device_types
|
@@ -1002,6 +1036,20 @@ module Aws::EC2
|
|
1002
1036
|
Aws::EC2::Endpoints::ModifyTransitGatewayPrefixListReference.build(context)
|
1003
1037
|
when :modify_transit_gateway_vpc_attachment
|
1004
1038
|
Aws::EC2::Endpoints::ModifyTransitGatewayVpcAttachment.build(context)
|
1039
|
+
when :modify_verified_access_endpoint
|
1040
|
+
Aws::EC2::Endpoints::ModifyVerifiedAccessEndpoint.build(context)
|
1041
|
+
when :modify_verified_access_endpoint_policy
|
1042
|
+
Aws::EC2::Endpoints::ModifyVerifiedAccessEndpointPolicy.build(context)
|
1043
|
+
when :modify_verified_access_group
|
1044
|
+
Aws::EC2::Endpoints::ModifyVerifiedAccessGroup.build(context)
|
1045
|
+
when :modify_verified_access_group_policy
|
1046
|
+
Aws::EC2::Endpoints::ModifyVerifiedAccessGroupPolicy.build(context)
|
1047
|
+
when :modify_verified_access_instance
|
1048
|
+
Aws::EC2::Endpoints::ModifyVerifiedAccessInstance.build(context)
|
1049
|
+
when :modify_verified_access_instance_logging_configuration
|
1050
|
+
Aws::EC2::Endpoints::ModifyVerifiedAccessInstanceLoggingConfiguration.build(context)
|
1051
|
+
when :modify_verified_access_trust_provider
|
1052
|
+
Aws::EC2::Endpoints::ModifyVerifiedAccessTrustProvider.build(context)
|
1005
1053
|
when :modify_volume
|
1006
1054
|
Aws::EC2::Endpoints::ModifyVolume.build(context)
|
1007
1055
|
when :modify_volume_attribute
|