aws-sdk-cloudtraildata 1.20.0 → 1.22.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: 57483210bed39ce1fedbb0181772da49020dcf17ebca93a88e4a6402e2396e8c
4
- data.tar.gz: cac66b6f2fadb72e974768cbb0a5749aa7253e8cbab3e39b28763f6f3bbbba6a
3
+ metadata.gz: e28de7629233424803105553f3ad54d16ba62f2520b122ce8cdffec6bea61860
4
+ data.tar.gz: c58cb1b6b2cfc1bc76fb326de287752094573aa13746937527fd9170cc5b74e1
5
5
  SHA512:
6
- metadata.gz: 51afddd1eae0777bd1bd96c9e5aa9cac5b71510b63630b9ef27058adfa7a743b886b057fbdbc6adaff6b94dd867332e3b2f4ebe25f3409ed5c96e6239b7e92a1
7
- data.tar.gz: 2c17608a2aa0ac24294f959c7b97aafecf014e27cd5b6bd63e450ee4c82cdb39b9bda11e7d36eea0bf366162a68813fe00eceb4bbe005d51a571917cce7682e9
6
+ metadata.gz: e3e3c654160fd8dfe3e69ef35b7bfef1b15dd5735401fe816f1cdcf069d7693f95d0cf3d346862bec7dbb10caf68fdf817b93e462f8513957e0deac8763c6421
7
+ data.tar.gz: 27d69d331153d6f364f3c77073281379cc3207d7075362881d067f6f480aa07c224a61ab0829943fcbf85bcc4ce93ce06f57f03b46e53171f32755004a606be8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.22.0 (2024-09-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.21.0 (2024-09-23)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.20.0 (2024-09-20)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.20.0
1
+ 1.22.0
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
36
36
  require 'aws-sdk-core/plugins/sign.rb'
37
37
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
38
38
 
39
- Aws::Plugins::GlobalConfiguration.add_identifier(:cloudtraildata)
40
-
41
39
  module Aws::CloudTrailData
42
40
  # An API client for CloudTrailData. To construct a client, you need to configure a `:region` and `:credentials`.
43
41
  #
@@ -523,7 +521,7 @@ module Aws::CloudTrailData
523
521
  tracer: tracer
524
522
  )
525
523
  context[:gem_name] = 'aws-sdk-cloudtraildata'
526
- context[:gem_version] = '1.20.0'
524
+ context[:gem_version] = '1.22.0'
527
525
  Seahorse::Client::Request.new(handlers, context)
528
526
  end
529
527
 
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  module Aws::CloudTrailData
11
12
  # @api private
12
13
  module ClientApi
@@ -216,3 +216,4 @@ module Aws::CloudTrailData
216
216
 
217
217
  end
218
218
  end
219
+
@@ -11,16 +11,7 @@
11
11
  require 'aws-sdk-core'
12
12
  require 'aws-sigv4'
13
13
 
14
- require_relative 'aws-sdk-cloudtraildata/types'
15
- require_relative 'aws-sdk-cloudtraildata/client_api'
16
- require_relative 'aws-sdk-cloudtraildata/plugins/endpoints.rb'
17
- require_relative 'aws-sdk-cloudtraildata/client'
18
- require_relative 'aws-sdk-cloudtraildata/errors'
19
- require_relative 'aws-sdk-cloudtraildata/resource'
20
- require_relative 'aws-sdk-cloudtraildata/endpoint_parameters'
21
- require_relative 'aws-sdk-cloudtraildata/endpoint_provider'
22
- require_relative 'aws-sdk-cloudtraildata/endpoints'
23
- require_relative 'aws-sdk-cloudtraildata/customizations'
14
+ Aws::Plugins::GlobalConfiguration.add_identifier(:cloudtraildata)
24
15
 
25
16
  # This module provides support for AWS CloudTrail Data Service. This module is available in the
26
17
  # `aws-sdk-cloudtraildata` gem.
@@ -51,7 +42,20 @@ require_relative 'aws-sdk-cloudtraildata/customizations'
51
42
  #
52
43
  # @!group service
53
44
  module Aws::CloudTrailData
45
+ autoload :Types, 'aws-sdk-cloudtraildata/types'
46
+ autoload :ClientApi, 'aws-sdk-cloudtraildata/client_api'
47
+ module Plugins
48
+ autoload :Endpoints, 'aws-sdk-cloudtraildata/plugins/endpoints.rb'
49
+ end
50
+ autoload :Client, 'aws-sdk-cloudtraildata/client'
51
+ autoload :Errors, 'aws-sdk-cloudtraildata/errors'
52
+ autoload :Resource, 'aws-sdk-cloudtraildata/resource'
53
+ autoload :EndpointParameters, 'aws-sdk-cloudtraildata/endpoint_parameters'
54
+ autoload :EndpointProvider, 'aws-sdk-cloudtraildata/endpoint_provider'
55
+ autoload :Endpoints, 'aws-sdk-cloudtraildata/endpoints'
54
56
 
55
- GEM_VERSION = '1.20.0'
57
+ GEM_VERSION = '1.22.0'
56
58
 
57
59
  end
60
+
61
+ require_relative 'aws-sdk-cloudtraildata/customizations'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudtraildata
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.20.0
4
+ version: 1.22.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: 2024-09-20 00:00:00.000000000 Z
11
+ date: 2024-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core