aws-sdk-ec2 1.381.0 → 1.382.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b8227b6cdcd9aea3233c9150cb666d23500ef1c783539a559b30d148dee2e8c
4
- data.tar.gz: cf00f59ae7fa9483bf1d919f0b9d937a34360416745232464023d57de8e1b798
3
+ metadata.gz: 39ec103af60f907ea0760746280002ff41ee1b8cf0453716e1cdcf4fdeee8b9e
4
+ data.tar.gz: 627c2dfda6fb8b146c938c27669dc19d109fa0551c5fec12c78e67b2ceaf4d7d
5
5
  SHA512:
6
- metadata.gz: 9dc2d62ef87d7b7c398cd37df18b75f05f2a6ac8a3fd6c3637134b06e12e782b8ae2a90816e76ffa5ae6098afd67a7d9331d64286371b748467ccb276b3253ca
7
- data.tar.gz: 5ca22effff59e66adb27196ea9ec3ec77c6df755acbc4bd2b84eae5e0d1d256147df587ce35e0ed4ca93e85512bdb7f8fd2b5a93d19073599c1ac64608a1d088
6
+ metadata.gz: 8f8f811991af5de804f27c57990bcd1715a79ed536af8d76c6e9d7248559e902cd8cf685b1070bca9a937eec96f3821516e3d801addbbe362ab9f42bbe2f4f0e
7
+ data.tar.gz: 22af94741265bfe3071b101a51b258f90c994c1fdb590b9cb174960be9ec9185f826b520502baef0cb9241259760731517b75fc99f7a7eed48aed66b3daf36eb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.382.0 (2023-06-05)
5
+ ------------------
6
+
7
+ * Feature - Making InstanceTagAttribute as the required parameter for the DeregisterInstanceEventNotificationAttributes and RegisterInstanceEventNotificationAttributes APIs.
8
+
4
9
  1.381.0 (2023-05-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.381.0
1
+ 1.382.0
@@ -18698,7 +18698,7 @@ module Aws::EC2
18698
18698
  # If you have the required permissions, the error response is
18699
18699
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
18700
18700
  #
18701
- # @option params [Types::DeregisterInstanceTagAttributeRequest] :instance_tag_attribute
18701
+ # @option params [required, Types::DeregisterInstanceTagAttributeRequest] :instance_tag_attribute
18702
18702
  # Information about the tag keys to deregister.
18703
18703
  #
18704
18704
  # @return [Types::DeregisterInstanceEventNotificationAttributesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -18709,7 +18709,7 @@ module Aws::EC2
18709
18709
  #
18710
18710
  # resp = client.deregister_instance_event_notification_attributes({
18711
18711
  # dry_run: false,
18712
- # instance_tag_attribute: {
18712
+ # instance_tag_attribute: { # required
18713
18713
  # include_all_tags_of_instance: false,
18714
18714
  # instance_tag_keys: ["String"],
18715
18715
  # },
@@ -50387,7 +50387,7 @@ module Aws::EC2
50387
50387
  # If you have the required permissions, the error response is
50388
50388
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
50389
50389
  #
50390
- # @option params [Types::RegisterInstanceTagAttributeRequest] :instance_tag_attribute
50390
+ # @option params [required, Types::RegisterInstanceTagAttributeRequest] :instance_tag_attribute
50391
50391
  # Information about the tag keys to register.
50392
50392
  #
50393
50393
  # @return [Types::RegisterInstanceEventNotificationAttributesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -50398,7 +50398,7 @@ module Aws::EC2
50398
50398
  #
50399
50399
  # resp = client.register_instance_event_notification_attributes({
50400
50400
  # dry_run: false,
50401
- # instance_tag_attribute: {
50401
+ # instance_tag_attribute: { # required
50402
50402
  # include_all_tags_of_instance: false,
50403
50403
  # instance_tag_keys: ["String"],
50404
50404
  # },
@@ -56786,7 +56786,7 @@ module Aws::EC2
56786
56786
  params: params,
56787
56787
  config: config)
56788
56788
  context[:gem_name] = 'aws-sdk-ec2'
56789
- context[:gem_version] = '1.381.0'
56789
+ context[:gem_version] = '1.382.0'
56790
56790
  Seahorse::Client::Request.new(handlers, context)
56791
56791
  end
56792
56792
 
@@ -5862,7 +5862,7 @@ module Aws::EC2
5862
5862
  DeregisterImageRequest.struct_class = Types::DeregisterImageRequest
5863
5863
 
5864
5864
  DeregisterInstanceEventNotificationAttributesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
5865
- DeregisterInstanceEventNotificationAttributesRequest.add_member(:instance_tag_attribute, Shapes::ShapeRef.new(shape: DeregisterInstanceTagAttributeRequest, location_name: "InstanceTagAttribute"))
5865
+ DeregisterInstanceEventNotificationAttributesRequest.add_member(:instance_tag_attribute, Shapes::ShapeRef.new(shape: DeregisterInstanceTagAttributeRequest, required: true, location_name: "InstanceTagAttribute"))
5866
5866
  DeregisterInstanceEventNotificationAttributesRequest.struct_class = Types::DeregisterInstanceEventNotificationAttributesRequest
5867
5867
 
5868
5868
  DeregisterInstanceEventNotificationAttributesResult.add_member(:instance_tag_attribute, Shapes::ShapeRef.new(shape: InstanceTagNotificationAttribute, location_name: "instanceTagAttribute"))
@@ -12197,7 +12197,7 @@ module Aws::EC2
12197
12197
  RegisterImageResult.struct_class = Types::RegisterImageResult
12198
12198
 
12199
12199
  RegisterInstanceEventNotificationAttributesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
12200
- RegisterInstanceEventNotificationAttributesRequest.add_member(:instance_tag_attribute, Shapes::ShapeRef.new(shape: RegisterInstanceTagAttributeRequest, location_name: "InstanceTagAttribute"))
12200
+ RegisterInstanceEventNotificationAttributesRequest.add_member(:instance_tag_attribute, Shapes::ShapeRef.new(shape: RegisterInstanceTagAttributeRequest, required: true, location_name: "InstanceTagAttribute"))
12201
12201
  RegisterInstanceEventNotificationAttributesRequest.struct_class = Types::RegisterInstanceEventNotificationAttributesRequest
12202
12202
 
12203
12203
  RegisterInstanceEventNotificationAttributesResult.add_member(:instance_tag_attribute, Shapes::ShapeRef.new(shape: InstanceTagNotificationAttribute, location_name: "instanceTagAttribute"))
data/lib/aws-sdk-ec2.rb CHANGED
@@ -76,6 +76,6 @@ require_relative 'aws-sdk-ec2/customizations'
76
76
  # @!group service
77
77
  module Aws::EC2
78
78
 
79
- GEM_VERSION = '1.381.0'
79
+ GEM_VERSION = '1.382.0'
80
80
 
81
81
  end
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.381.0
4
+ version: 1.382.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: 2023-05-31 00:00:00.000000000 Z
11
+ date: 2023-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4