aws-sdk-qbusiness 1.16.0 → 1.18.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-qbusiness/async_client.rb +1 -1
- data/lib/aws-sdk-qbusiness/client.rb +1 -3
- data/lib/aws-sdk-qbusiness/client_api.rb +1 -0
- data/lib/aws-sdk-qbusiness/types.rb +1 -0
- data/lib/aws-sdk-qbusiness.rb +18 -14
- 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: df3576af5283dffd73b157ecacc3f5cde5b84401d9bbba5d0628573129ed472d
|
4
|
+
data.tar.gz: 9fd56c3da1bfa1449133ab60a0d487217fd14b8ed937f81532e17dfe3e85d124
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd130046675717a416b6f4044c99b4fa2eb07baed206736271f8ffe606fa7c6808b3f79149689034017ab227d0368f2b45c9a802bc1a4517057c24e9ba6299e3
|
7
|
+
data.tar.gz: a7ff74732774fbd571caafe7a10c316ab0b8415e37493cb550d6ddda53273bc1bf511d25779a39863307c9e2db3cb889c163980606e6be379ff3d771414a20ed
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.18.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.17.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.16.0 (2024-09-20)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.18.0
|
@@ -37,8 +37,6 @@ require 'aws-sdk-core/plugins/sign.rb'
|
|
37
37
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
38
38
|
require 'aws-sdk-core/plugins/event_stream_configuration.rb'
|
39
39
|
|
40
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:qbusiness)
|
41
|
-
|
42
40
|
module Aws::QBusiness
|
43
41
|
# An API client for QBusiness. To construct a client, you need to configure a `:region` and `:credentials`.
|
44
42
|
#
|
@@ -4157,7 +4155,7 @@ module Aws::QBusiness
|
|
4157
4155
|
tracer: tracer
|
4158
4156
|
)
|
4159
4157
|
context[:gem_name] = 'aws-sdk-qbusiness'
|
4160
|
-
context[:gem_version] = '1.
|
4158
|
+
context[:gem_version] = '1.18.0'
|
4161
4159
|
Seahorse::Client::Request.new(handlers, context)
|
4162
4160
|
end
|
4163
4161
|
|
data/lib/aws-sdk-qbusiness.rb
CHANGED
@@ -11,19 +11,7 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
-
|
15
|
-
require_relative 'aws-sdk-qbusiness/client_api'
|
16
|
-
require_relative 'aws-sdk-qbusiness/plugins/endpoints.rb'
|
17
|
-
require_relative 'aws-sdk-qbusiness/client'
|
18
|
-
require_relative 'aws-sdk-qbusiness/errors'
|
19
|
-
require_relative 'aws-sdk-qbusiness/waiters'
|
20
|
-
require_relative 'aws-sdk-qbusiness/resource'
|
21
|
-
require_relative 'aws-sdk-qbusiness/endpoint_parameters'
|
22
|
-
require_relative 'aws-sdk-qbusiness/endpoint_provider'
|
23
|
-
require_relative 'aws-sdk-qbusiness/endpoints'
|
24
|
-
require_relative 'aws-sdk-qbusiness/customizations'
|
25
|
-
require_relative 'aws-sdk-qbusiness/async_client'
|
26
|
-
require_relative 'aws-sdk-qbusiness/event_streams'
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:qbusiness)
|
27
15
|
|
28
16
|
# This module provides support for QBusiness. This module is available in the
|
29
17
|
# `aws-sdk-qbusiness` gem.
|
@@ -54,7 +42,23 @@ require_relative 'aws-sdk-qbusiness/event_streams'
|
|
54
42
|
#
|
55
43
|
# @!group service
|
56
44
|
module Aws::QBusiness
|
45
|
+
autoload :Types, 'aws-sdk-qbusiness/types'
|
46
|
+
autoload :ClientApi, 'aws-sdk-qbusiness/client_api'
|
47
|
+
module Plugins
|
48
|
+
autoload :Endpoints, 'aws-sdk-qbusiness/plugins/endpoints.rb'
|
49
|
+
end
|
50
|
+
autoload :Client, 'aws-sdk-qbusiness/client'
|
51
|
+
autoload :Errors, 'aws-sdk-qbusiness/errors'
|
52
|
+
autoload :Waiters, 'aws-sdk-qbusiness/waiters'
|
53
|
+
autoload :Resource, 'aws-sdk-qbusiness/resource'
|
54
|
+
autoload :EndpointParameters, 'aws-sdk-qbusiness/endpoint_parameters'
|
55
|
+
autoload :EndpointProvider, 'aws-sdk-qbusiness/endpoint_provider'
|
56
|
+
autoload :Endpoints, 'aws-sdk-qbusiness/endpoints'
|
57
|
+
autoload :AsyncClient, 'aws-sdk-qbusiness/async_client'
|
58
|
+
autoload :EventStreams, 'aws-sdk-qbusiness/event_streams'
|
57
59
|
|
58
|
-
GEM_VERSION = '1.
|
60
|
+
GEM_VERSION = '1.18.0'
|
59
61
|
|
60
62
|
end
|
63
|
+
|
64
|
+
require_relative 'aws-sdk-qbusiness/customizations'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-qbusiness
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.18.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
|