aws-sdk-ec2 1.165.0 → 1.170.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/lib/aws-sdk-ec2.rb +3 -1
  3. data/lib/aws-sdk-ec2/classic_address.rb +2 -0
  4. data/lib/aws-sdk-ec2/client.rb +222 -120
  5. data/lib/aws-sdk-ec2/client_api.rb +14 -2
  6. data/lib/aws-sdk-ec2/customizations.rb +2 -0
  7. data/lib/aws-sdk-ec2/customizations/instance.rb +2 -0
  8. data/lib/aws-sdk-ec2/customizations/resource.rb +2 -0
  9. data/lib/aws-sdk-ec2/dhcp_options.rb +2 -0
  10. data/lib/aws-sdk-ec2/errors.rb +2 -0
  11. data/lib/aws-sdk-ec2/image.rb +2 -0
  12. data/lib/aws-sdk-ec2/instance.rb +2 -0
  13. data/lib/aws-sdk-ec2/internet_gateway.rb +2 -0
  14. data/lib/aws-sdk-ec2/key_pair.rb +2 -0
  15. data/lib/aws-sdk-ec2/key_pair_info.rb +2 -0
  16. data/lib/aws-sdk-ec2/nat_gateway.rb +2 -0
  17. data/lib/aws-sdk-ec2/network_acl.rb +2 -0
  18. data/lib/aws-sdk-ec2/network_interface.rb +2 -0
  19. data/lib/aws-sdk-ec2/network_interface_association.rb +2 -0
  20. data/lib/aws-sdk-ec2/placement_group.rb +2 -0
  21. data/lib/aws-sdk-ec2/plugins/copy_encrypted_snapshot.rb +2 -0
  22. data/lib/aws-sdk-ec2/plugins/region_validation.rb +2 -0
  23. data/lib/aws-sdk-ec2/resource.rb +18 -14
  24. data/lib/aws-sdk-ec2/route.rb +2 -0
  25. data/lib/aws-sdk-ec2/route_table.rb +2 -0
  26. data/lib/aws-sdk-ec2/route_table_association.rb +2 -0
  27. data/lib/aws-sdk-ec2/security_group.rb +2 -0
  28. data/lib/aws-sdk-ec2/snapshot.rb +7 -5
  29. data/lib/aws-sdk-ec2/subnet.rb +4 -2
  30. data/lib/aws-sdk-ec2/tag.rb +2 -0
  31. data/lib/aws-sdk-ec2/types.rb +1471 -125
  32. data/lib/aws-sdk-ec2/volume.rb +11 -7
  33. data/lib/aws-sdk-ec2/vpc.rb +2 -0
  34. data/lib/aws-sdk-ec2/vpc_address.rb +2 -0
  35. data/lib/aws-sdk-ec2/vpc_peering_connection.rb +2 -0
  36. data/lib/aws-sdk-ec2/waiters.rb +2 -0
  37. metadata +4 -4
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -305,7 +307,7 @@ module Aws::EC2
305
307
  # description: "String",
306
308
  # tag_specifications: [
307
309
  # {
308
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
310
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
309
311
  # tags: [
310
312
  # {
311
313
  # key: "String",
@@ -634,12 +636,13 @@ module Aws::EC2
634
636
  # * `encrypted` - Indicates whether the snapshot is encrypted (`true` \|
635
637
  # `false`)
636
638
  #
637
- # * `owner-alias` - Value from an Amazon-maintained list (`amazon` \|
638
- # `self` \| `all` \| `aws-marketplace` \| `microsoft`) of snapshot
639
- # owners. Not to be confused with the user-configured AWS account
640
- # alias, which is set from the IAM console.
639
+ # * `owner-alias` - The owner alias, from an Amazon-maintained list
640
+ # (`amazon`). This is not the user-configured AWS account alias set
641
+ # using the IAM console. We recommend that you use the related
642
+ # parameter instead of this filter.
641
643
  #
642
- # * `owner-id` - The ID of the AWS account that owns the snapshot.
644
+ # * `owner-id` - The AWS account ID of the owner. We recommend that you
645
+ # use the related parameter instead of this filter.
643
646
  #
644
647
  # * `progress` - The progress of the snapshot, as a percentage (for
645
648
  # example, 80%).
@@ -665,7 +668,8 @@ module Aws::EC2
665
668
  #
666
669
  # * `volume-size` - The size of the volume, in GiB.
667
670
  # @option options [Array<String>] :owner_ids
668
- # Describes the snapshots owned by these owners.
671
+ # Scopes the results to snapshots with the specified owners. You can
672
+ # specify a combination of AWS account IDs, `self`, and `amazon`.
669
673
  # @option options [Array<String>] :restorable_by_user_ids
670
674
  # The IDs of the AWS accounts that can create volumes from the snapshot.
671
675
  # @option options [Array<String>] :snapshot_ids
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.165.0
4
+ version: 1.170.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-04 00:00:00.000000000 Z
11
+ date: 2020-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: '3'
34
34
  - - ">="
35
35
  - !ruby/object:Gem::Version
36
- version: 3.71.0
36
+ version: 3.99.0
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '3'
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: 3.71.0
46
+ version: 3.99.0
47
47
  description: Official AWS Ruby gem for Amazon Elastic Compute Cloud (Amazon EC2).
48
48
  This gem is part of the AWS SDK for Ruby.
49
49
  email: