aws-sdk-support 1.68.0 → 1.70.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-support/client.rb +1 -3
- data/lib/aws-sdk-support/client_api.rb +1 -0
- data/lib/aws-sdk-support/types.rb +1 -0
- data/lib/aws-sdk-support.rb +15 -11
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8f2b6195fb22727790b1dc762ffb967da5c8f4471720a064c8f8542d9cbf1c54
|
|
4
|
+
data.tar.gz: e859884ac23f42fdbd8dd082fe0a0efcd7812908a44c833712415ed17a52ef14
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6fc4bfdeafd3c7fc219b5ba5a485f47db3f6716fdf15380722fbd4ed9de45a15df02cbc5898ca418f36622d6e9d1a4abbb0876ed067f27a9a98892db9f78e0c6
|
|
7
|
+
data.tar.gz: f0bc820f4c6b745fe78ba95b49cd1a5971ec5aaaa9efc051efab634eb54642892b215b47e79fb0d74c4446394474d084a4630a373d805646c53e912e25f98a0b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.70.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.69.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.68.0 (2024-09-20)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.70.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/json_rpc.rb'
|
|
38
38
|
|
|
39
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:support)
|
|
40
|
-
|
|
41
39
|
module Aws::Support
|
|
42
40
|
# An API client for Support. To construct a client, you need to configure a `:region` and `:credentials`.
|
|
43
41
|
#
|
|
@@ -1729,7 +1727,7 @@ module Aws::Support
|
|
|
1729
1727
|
tracer: tracer
|
|
1730
1728
|
)
|
|
1731
1729
|
context[:gem_name] = 'aws-sdk-support'
|
|
1732
|
-
context[:gem_version] = '1.
|
|
1730
|
+
context[:gem_version] = '1.70.0'
|
|
1733
1731
|
Seahorse::Client::Request.new(handlers, context)
|
|
1734
1732
|
end
|
|
1735
1733
|
|
data/lib/aws-sdk-support.rb
CHANGED
|
@@ -11,16 +11,7 @@
|
|
|
11
11
|
require 'aws-sdk-core'
|
|
12
12
|
require 'aws-sigv4'
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
require_relative 'aws-sdk-support/client_api'
|
|
16
|
-
require_relative 'aws-sdk-support/plugins/endpoints.rb'
|
|
17
|
-
require_relative 'aws-sdk-support/client'
|
|
18
|
-
require_relative 'aws-sdk-support/errors'
|
|
19
|
-
require_relative 'aws-sdk-support/resource'
|
|
20
|
-
require_relative 'aws-sdk-support/endpoint_parameters'
|
|
21
|
-
require_relative 'aws-sdk-support/endpoint_provider'
|
|
22
|
-
require_relative 'aws-sdk-support/endpoints'
|
|
23
|
-
require_relative 'aws-sdk-support/customizations'
|
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:support)
|
|
24
15
|
|
|
25
16
|
# This module provides support for AWS Support. This module is available in the
|
|
26
17
|
# `aws-sdk-support` gem.
|
|
@@ -51,7 +42,20 @@ require_relative 'aws-sdk-support/customizations'
|
|
|
51
42
|
#
|
|
52
43
|
# @!group service
|
|
53
44
|
module Aws::Support
|
|
45
|
+
autoload :Types, 'aws-sdk-support/types'
|
|
46
|
+
autoload :ClientApi, 'aws-sdk-support/client_api'
|
|
47
|
+
module Plugins
|
|
48
|
+
autoload :Endpoints, 'aws-sdk-support/plugins/endpoints.rb'
|
|
49
|
+
end
|
|
50
|
+
autoload :Client, 'aws-sdk-support/client'
|
|
51
|
+
autoload :Errors, 'aws-sdk-support/errors'
|
|
52
|
+
autoload :Resource, 'aws-sdk-support/resource'
|
|
53
|
+
autoload :EndpointParameters, 'aws-sdk-support/endpoint_parameters'
|
|
54
|
+
autoload :EndpointProvider, 'aws-sdk-support/endpoint_provider'
|
|
55
|
+
autoload :Endpoints, 'aws-sdk-support/endpoints'
|
|
54
56
|
|
|
55
|
-
GEM_VERSION = '1.
|
|
57
|
+
GEM_VERSION = '1.70.0'
|
|
56
58
|
|
|
57
59
|
end
|
|
60
|
+
|
|
61
|
+
require_relative 'aws-sdk-support/customizations'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-support
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.70.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-
|
|
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
|