aws-sdk-finspacedata 1.42.0 → 1.44.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-finspacedata/client.rb +1 -3
- data/lib/aws-sdk-finspacedata/client_api.rb +1 -0
- data/lib/aws-sdk-finspacedata/types.rb +1 -0
- data/lib/aws-sdk-finspacedata.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: 2f18a7f42f9439eb8b8c3b18d708fb7e92ec2bdbd5579b7f896298a77cec0faf
|
4
|
+
data.tar.gz: d979d1f3c863a17b0b1bf80b77050dc8981903e764e265cc5e8c2ee032766846
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e7df98c6f5d7dfc5a001e0654ecf824e70a43bad9c6d3b6ffae3ca6eca1699166e16edbb2a265391ac7b0cbedf127c23d5cac56d5902abfc3b9c3dd8a3979b7d
|
7
|
+
data.tar.gz: 484dbe37a11558d435b2cdd36fd3a5b27fa3ce6a5e1cc4ba074e312f77af3a83c5432afe87f1f5b2128a5f9108e6097fcb0bc15af86462092f5ae58ef89b0ae0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.44.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.43.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.42.0 (2024-09-20)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.44.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-finspacedata/plugins/content_type.rb'
|
39
39
|
|
40
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:finspacedata)
|
41
|
-
|
42
40
|
module Aws::FinSpaceData
|
43
41
|
# An API client for FinSpaceData. To construct a client, you need to configure a `:region` and `:credentials`.
|
44
42
|
#
|
@@ -2189,7 +2187,7 @@ module Aws::FinSpaceData
|
|
2189
2187
|
tracer: tracer
|
2190
2188
|
)
|
2191
2189
|
context[:gem_name] = 'aws-sdk-finspacedata'
|
2192
|
-
context[:gem_version] = '1.
|
2190
|
+
context[:gem_version] = '1.44.0'
|
2193
2191
|
Seahorse::Client::Request.new(handlers, context)
|
2194
2192
|
end
|
2195
2193
|
|
data/lib/aws-sdk-finspacedata.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-finspacedata/client_api'
|
16
|
-
require_relative 'aws-sdk-finspacedata/plugins/endpoints.rb'
|
17
|
-
require_relative 'aws-sdk-finspacedata/client'
|
18
|
-
require_relative 'aws-sdk-finspacedata/errors'
|
19
|
-
require_relative 'aws-sdk-finspacedata/resource'
|
20
|
-
require_relative 'aws-sdk-finspacedata/endpoint_parameters'
|
21
|
-
require_relative 'aws-sdk-finspacedata/endpoint_provider'
|
22
|
-
require_relative 'aws-sdk-finspacedata/endpoints'
|
23
|
-
require_relative 'aws-sdk-finspacedata/customizations'
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:finspacedata)
|
24
15
|
|
25
16
|
# This module provides support for FinSpace Public API. This module is available in the
|
26
17
|
# `aws-sdk-finspacedata` gem.
|
@@ -51,7 +42,20 @@ require_relative 'aws-sdk-finspacedata/customizations'
|
|
51
42
|
#
|
52
43
|
# @!group service
|
53
44
|
module Aws::FinSpaceData
|
45
|
+
autoload :Types, 'aws-sdk-finspacedata/types'
|
46
|
+
autoload :ClientApi, 'aws-sdk-finspacedata/client_api'
|
47
|
+
module Plugins
|
48
|
+
autoload :Endpoints, 'aws-sdk-finspacedata/plugins/endpoints.rb'
|
49
|
+
end
|
50
|
+
autoload :Client, 'aws-sdk-finspacedata/client'
|
51
|
+
autoload :Errors, 'aws-sdk-finspacedata/errors'
|
52
|
+
autoload :Resource, 'aws-sdk-finspacedata/resource'
|
53
|
+
autoload :EndpointParameters, 'aws-sdk-finspacedata/endpoint_parameters'
|
54
|
+
autoload :EndpointProvider, 'aws-sdk-finspacedata/endpoint_provider'
|
55
|
+
autoload :Endpoints, 'aws-sdk-finspacedata/endpoints'
|
54
56
|
|
55
|
-
GEM_VERSION = '1.
|
57
|
+
GEM_VERSION = '1.44.0'
|
56
58
|
|
57
59
|
end
|
60
|
+
|
61
|
+
require_relative 'aws-sdk-finspacedata/customizations'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-finspacedata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.44.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
|