aws-sdk-cloudwatchrum 1.30.0 → 1.32.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: 528f7581ddcaa6b31b220517ab35234f24c5a0d2fe251fdf0d6e013ed2f7772b
4
- data.tar.gz: ebb3afd0e83598f9eedfe74621bdfb66f9a9dd59d6b67132279b7dfa34105a8a
3
+ metadata.gz: 33200bdb1b17bf504217640673d952a535427a0cbf377fcc4444b2ba2fa15179
4
+ data.tar.gz: 2627ad96b6d1b3aa13b71d0b3e0105b2a86b687c7af6f2ab388291348ec7c8c0
5
5
  SHA512:
6
- metadata.gz: 13736f1e7ff503055f669544c16628fefb82c84caa56e3e5a63d7381cb7e03f385d3f522829d71887309d67fa4a12cdfa3006720628fbdfa7c8644732466164f
7
- data.tar.gz: 57eafbf3976c82fd15ab4bc84bd1af839482a5e9d37dae5e4a3071b58145b72be7eb2a299835c4d834ea074a39086fea8ed4b243597661be36ccc79f6126f8c3
6
+ metadata.gz: cf08b9f19385a23599a69648b8421f92d045adbfb0067780d1d0cc428de31d502b9a78742b681bc76637a0cf07dd94cd456a9a79fbe9d086fa89d826b160aa1c
7
+ data.tar.gz: 48183fdf1aba720545c25b5632b8b824e07d86ac05714504585c798b5136fef324ac324d2918d709baafeb9128866e73604449dd3d6663c5fa83f1a2d2f954c3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.32.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.31.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.30.0 (2024-09-20)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.30.0
1
+ 1.32.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(:cloudwatchrum)
40
-
41
39
  module Aws::CloudWatchRUM
42
40
  # An API client for CloudWatchRUM. To construct a client, you need to configure a `:region` and `:credentials`.
43
41
  #
@@ -1530,7 +1528,7 @@ module Aws::CloudWatchRUM
1530
1528
  tracer: tracer
1531
1529
  )
1532
1530
  context[:gem_name] = 'aws-sdk-cloudwatchrum'
1533
- context[:gem_version] = '1.30.0'
1531
+ context[:gem_version] = '1.32.0'
1534
1532
  Seahorse::Client::Request.new(handlers, context)
1535
1533
  end
1536
1534
 
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  module Aws::CloudWatchRUM
11
12
  # @api private
12
13
  module ClientApi
@@ -1756,3 +1756,4 @@ module Aws::CloudWatchRUM
1756
1756
 
1757
1757
  end
1758
1758
  end
1759
+
@@ -11,16 +11,7 @@
11
11
  require 'aws-sdk-core'
12
12
  require 'aws-sigv4'
13
13
 
14
- require_relative 'aws-sdk-cloudwatchrum/types'
15
- require_relative 'aws-sdk-cloudwatchrum/client_api'
16
- require_relative 'aws-sdk-cloudwatchrum/plugins/endpoints.rb'
17
- require_relative 'aws-sdk-cloudwatchrum/client'
18
- require_relative 'aws-sdk-cloudwatchrum/errors'
19
- require_relative 'aws-sdk-cloudwatchrum/resource'
20
- require_relative 'aws-sdk-cloudwatchrum/endpoint_parameters'
21
- require_relative 'aws-sdk-cloudwatchrum/endpoint_provider'
22
- require_relative 'aws-sdk-cloudwatchrum/endpoints'
23
- require_relative 'aws-sdk-cloudwatchrum/customizations'
14
+ Aws::Plugins::GlobalConfiguration.add_identifier(:cloudwatchrum)
24
15
 
25
16
  # This module provides support for CloudWatch RUM. This module is available in the
26
17
  # `aws-sdk-cloudwatchrum` gem.
@@ -51,7 +42,20 @@ require_relative 'aws-sdk-cloudwatchrum/customizations'
51
42
  #
52
43
  # @!group service
53
44
  module Aws::CloudWatchRUM
45
+ autoload :Types, 'aws-sdk-cloudwatchrum/types'
46
+ autoload :ClientApi, 'aws-sdk-cloudwatchrum/client_api'
47
+ module Plugins
48
+ autoload :Endpoints, 'aws-sdk-cloudwatchrum/plugins/endpoints.rb'
49
+ end
50
+ autoload :Client, 'aws-sdk-cloudwatchrum/client'
51
+ autoload :Errors, 'aws-sdk-cloudwatchrum/errors'
52
+ autoload :Resource, 'aws-sdk-cloudwatchrum/resource'
53
+ autoload :EndpointParameters, 'aws-sdk-cloudwatchrum/endpoint_parameters'
54
+ autoload :EndpointProvider, 'aws-sdk-cloudwatchrum/endpoint_provider'
55
+ autoload :Endpoints, 'aws-sdk-cloudwatchrum/endpoints'
54
56
 
55
- GEM_VERSION = '1.30.0'
57
+ GEM_VERSION = '1.32.0'
56
58
 
57
59
  end
60
+
61
+ require_relative 'aws-sdk-cloudwatchrum/customizations'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudwatchrum
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.30.0
4
+ version: 1.32.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