aws-sdk-sns 1.86.0 → 1.88.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 940fea1e30f61f880363fa65cc789650689f67c69f9f4140ac9d89a32b07b7ef
4
- data.tar.gz: 2404757fc80480c5e23b6a19f0fae606d1682bcae8842e8126585712b649721d
3
+ metadata.gz: 7e6bc4544858ed36c097cf3a2b6578c10bf60b328c5f7bf22bfe2bb7af3ab9b6
4
+ data.tar.gz: ae8823ad3d4825bf7ffc4bf0d9e9305dc203b82bba2dcac98b714c33d0c2a04f
5
5
  SHA512:
6
- metadata.gz: 52d20283ad68cae05684852895fb1459b9bf03c6a05f0519d53ed6d952067bcb31a82e21e36195af5cb2898e333898c31fa40636bc842b5a2e6108717a599c92
7
- data.tar.gz: 3a3059f729685d5a9539206ae1764d87fbdc493d0c67b7c0e4c7d2292c1c2384e8ca6a61e3dbccaabb1194a98f1c6b0a61a320bd774bd9f588bfe71aeb75661d
6
+ metadata.gz: 72440dbd432ffd67a5bed9ac3e30b04b19305055e4c804faa7bc55cc422414cc72e30ab866cc7b70883305b4f79c929fdad914dab03dd4f7db133661a90a03bd
7
+ data.tar.gz: 5dee2f7aa94973e03e5005f8870b633b2d76c9390fc03162eea9c0906c5f7505dadfc8b55dad73e9d0c45136cf7db8673ff9e45bc6132d19c3577716e6a9c838
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.88.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.87.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.86.0 (2024-09-20)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.86.0
1
+ 1.88.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/query.rb'
38
38
 
39
- Aws::Plugins::GlobalConfiguration.add_identifier(:sns)
40
-
41
39
  module Aws::SNS
42
40
  # An API client for SNS. To construct a client, you need to configure a `:region` and `:credentials`.
43
41
  #
@@ -2997,7 +2995,7 @@ module Aws::SNS
2997
2995
  tracer: tracer
2998
2996
  )
2999
2997
  context[:gem_name] = 'aws-sdk-sns'
3000
- context[:gem_version] = '1.86.0'
2998
+ context[:gem_version] = '1.88.0'
3001
2999
  Seahorse::Client::Request.new(handlers, context)
3002
3000
  end
3003
3001
 
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  module Aws::SNS
11
12
  # @api private
12
13
  module ClientApi
@@ -1,4 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # utility classes
4
- require 'aws-sdk-sns/message_verifier'
4
+ module Aws
5
+ module SNS
6
+ autoload :MessageVerifier, 'aws-sdk-sns/message_verifier'
7
+ end
8
+ end
@@ -3129,3 +3129,4 @@ module Aws::SNS
3129
3129
 
3130
3130
  end
3131
3131
  end
3132
+
data/lib/aws-sdk-sns.rb CHANGED
@@ -11,20 +11,7 @@
11
11
  require 'aws-sdk-core'
12
12
  require 'aws-sigv4'
13
13
 
14
- require_relative 'aws-sdk-sns/types'
15
- require_relative 'aws-sdk-sns/client_api'
16
- require_relative 'aws-sdk-sns/plugins/endpoints.rb'
17
- require_relative 'aws-sdk-sns/client'
18
- require_relative 'aws-sdk-sns/errors'
19
- require_relative 'aws-sdk-sns/resource'
20
- require_relative 'aws-sdk-sns/endpoint_parameters'
21
- require_relative 'aws-sdk-sns/endpoint_provider'
22
- require_relative 'aws-sdk-sns/endpoints'
23
- require_relative 'aws-sdk-sns/platform_application'
24
- require_relative 'aws-sdk-sns/platform_endpoint'
25
- require_relative 'aws-sdk-sns/subscription'
26
- require_relative 'aws-sdk-sns/topic'
27
- require_relative 'aws-sdk-sns/customizations'
14
+ Aws::Plugins::GlobalConfiguration.add_identifier(:sns)
28
15
 
29
16
  # This module provides support for Amazon Simple Notification Service. This module is available in the
30
17
  # `aws-sdk-sns` gem.
@@ -55,7 +42,24 @@ require_relative 'aws-sdk-sns/customizations'
55
42
  #
56
43
  # @!group service
57
44
  module Aws::SNS
45
+ autoload :Types, 'aws-sdk-sns/types'
46
+ autoload :ClientApi, 'aws-sdk-sns/client_api'
47
+ module Plugins
48
+ autoload :Endpoints, 'aws-sdk-sns/plugins/endpoints.rb'
49
+ end
50
+ autoload :Client, 'aws-sdk-sns/client'
51
+ autoload :Errors, 'aws-sdk-sns/errors'
52
+ autoload :Resource, 'aws-sdk-sns/resource'
53
+ autoload :EndpointParameters, 'aws-sdk-sns/endpoint_parameters'
54
+ autoload :EndpointProvider, 'aws-sdk-sns/endpoint_provider'
55
+ autoload :Endpoints, 'aws-sdk-sns/endpoints'
56
+ autoload :PlatformApplication, 'aws-sdk-sns/platform_application'
57
+ autoload :PlatformEndpoint, 'aws-sdk-sns/platform_endpoint'
58
+ autoload :Subscription, 'aws-sdk-sns/subscription'
59
+ autoload :Topic, 'aws-sdk-sns/topic'
58
60
 
59
- GEM_VERSION = '1.86.0'
61
+ GEM_VERSION = '1.88.0'
60
62
 
61
63
  end
64
+
65
+ require_relative 'aws-sdk-sns/customizations'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sns
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.86.0
4
+ version: 1.88.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