aws-sdk-finspace 1.38.0 → 1.40.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: 7e3fb240eb3f7c6d2567d4003187c2f80215a4bf786a99b294ad1d8eea11a961
4
- data.tar.gz: 1430a97c7423465d0f87c9eb75276ec3d92ce146bd7542d9869dca6b850fb6b5
3
+ metadata.gz: fa01e2fce4ec7628f826a7711d5918ce47d7b4c2513b95ef0b56d74e45f52690
4
+ data.tar.gz: 2b5569007aa3e991f00df7d8c3df819a8c3d5b144ef4df15c1108c9bcb006b27
5
5
  SHA512:
6
- metadata.gz: 7ad368b8eb595f099ce7df56a2345dda058c65c6e0ebafb11202a28f404dff09295ab984dc2800441abab8012f3e3f30eee0d3f6ba56836356763b1416e02b13
7
- data.tar.gz: 98b93c4d27e706bfcdf97d038f946ad56bb3bf6a80ee19a6f38fb6cec0c89df7d4f23224fac3568c42d28dc8f1695fd652a37227b307e4d5ce33d5d52ccf420c
6
+ metadata.gz: dea3d6853a213eae3af3c19acb0d384bc158b3f633a478607c5e89e3d22cb1efb86145928806a0ba6a46696c4bed5017f3e54bcdbdb94de6663f83e729f0b8d9
7
+ data.tar.gz: 70cec1a84bc7b5d1b35eed0feb40e7185ee27bb463bfa48595a847c76ecb9fdc65bcba0862f45a09688ec51b6675bd58a7e4ed065b669f76215c9cd39bd961ef
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.40.0 (2024-09-04)
5
+ ------------------
6
+
7
+ * Feature - Updates Finspace documentation for smaller instances.
8
+
9
+ 1.39.0 (2024-09-03)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.38.0 (2024-07-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.38.0
1
+ 1.40.0
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
32
  require 'aws-sdk-core/plugins/request_compression.rb'
33
33
  require 'aws-sdk-core/plugins/defaults_mode.rb'
34
34
  require 'aws-sdk-core/plugins/recursion_detection.rb'
35
+ require 'aws-sdk-core/plugins/telemetry.rb'
35
36
  require 'aws-sdk-core/plugins/sign.rb'
36
37
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
37
38
  require 'aws-sdk-finspace/plugins/content_type.rb'
@@ -84,6 +85,7 @@ module Aws::Finspace
84
85
  add_plugin(Aws::Plugins::RequestCompression)
85
86
  add_plugin(Aws::Plugins::DefaultsMode)
86
87
  add_plugin(Aws::Plugins::RecursionDetection)
88
+ add_plugin(Aws::Plugins::Telemetry)
87
89
  add_plugin(Aws::Plugins::Sign)
88
90
  add_plugin(Aws::Plugins::Protocols::RestJson)
89
91
  add_plugin(Aws::Finspace::Plugins::ContentType)
@@ -332,6 +334,16 @@ module Aws::Finspace
332
334
  # ** Please note ** When response stubbing is enabled, no HTTP
333
335
  # requests are made, and retries are disabled.
334
336
  #
337
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
338
+ # Allows you to provide a telemetry provider, which is used to
339
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
340
+ # will not record or emit any telemetry data. The SDK supports the
341
+ # following telemetry providers:
342
+ #
343
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
344
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
345
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
346
+ #
335
347
  # @option options [Aws::TokenProvider] :token_provider
336
348
  # A Bearer Token Provider. This can be an instance of any one of the
337
349
  # following classes:
@@ -1237,6 +1249,15 @@ module Aws::Finspace
1237
1249
  #
1238
1250
  # You can add one of the following values:
1239
1251
  #
1252
+ # * `kx.sg.large` – The host type with a configuration of 16 GiB memory
1253
+ # and 2 vCPUs.
1254
+ #
1255
+ # * `kx.sg.xlarge` – The host type with a configuration of 32 GiB memory
1256
+ # and 4 vCPUs.
1257
+ #
1258
+ # * `kx.sg.2xlarge` – The host type with a configuration of 64 GiB
1259
+ # memory and 8 vCPUs.
1260
+ #
1240
1261
  # * `kx.sg.4xlarge` – The host type with a configuration of 108 GiB
1241
1262
  # memory and 16 vCPUs.
1242
1263
  #
@@ -3752,14 +3773,19 @@ module Aws::Finspace
3752
3773
  # @api private
3753
3774
  def build_request(operation_name, params = {})
3754
3775
  handlers = @handlers.for(operation_name)
3776
+ tracer = config.telemetry_provider.tracer_provider.tracer(
3777
+ Aws::Telemetry.module_to_tracer_name('Aws::Finspace')
3778
+ )
3755
3779
  context = Seahorse::Client::RequestContext.new(
3756
3780
  operation_name: operation_name,
3757
3781
  operation: config.api.operation(operation_name),
3758
3782
  client: self,
3759
3783
  params: params,
3760
- config: config)
3784
+ config: config,
3785
+ tracer: tracer
3786
+ )
3761
3787
  context[:gem_name] = 'aws-sdk-finspace'
3762
- context[:gem_version] = '1.38.0'
3788
+ context[:gem_version] = '1.40.0'
3763
3789
  Seahorse::Client::Request.new(handlers, context)
3764
3790
  end
3765
3791
 
@@ -1170,6 +1170,15 @@ module Aws::Finspace
1170
1170
  #
1171
1171
  # You can add one of the following values:
1172
1172
  #
1173
+ # * `kx.sg.large` – The host type with a configuration of 16 GiB
1174
+ # memory and 2 vCPUs.
1175
+ #
1176
+ # * `kx.sg.xlarge` – The host type with a configuration of 32 GiB
1177
+ # memory and 4 vCPUs.
1178
+ #
1179
+ # * `kx.sg.2xlarge` – The host type with a configuration of 64 GiB
1180
+ # memory and 8 vCPUs.
1181
+ #
1173
1182
  # * `kx.sg.4xlarge` – The host type with a configuration of 108 GiB
1174
1183
  # memory and 16 vCPUs.
1175
1184
  #
@@ -2630,6 +2639,15 @@ module Aws::Finspace
2630
2639
  #
2631
2640
  # It can have one of the following values:
2632
2641
  #
2642
+ # * `kx.sg.large` – The host type with a configuration of 16 GiB
2643
+ # memory and 2 vCPUs.
2644
+ #
2645
+ # * `kx.sg.xlarge` – The host type with a configuration of 32 GiB
2646
+ # memory and 4 vCPUs.
2647
+ #
2648
+ # * `kx.sg.2xlarge` – The host type with a configuration of 64 GiB
2649
+ # memory and 8 vCPUs.
2650
+ #
2633
2651
  # * `kx.sg.4xlarge` – The host type with a configuration of 108 GiB
2634
2652
  # memory and 16 vCPUs.
2635
2653
  #
@@ -3800,6 +3818,15 @@ module Aws::Finspace
3800
3818
  #
3801
3819
  # You can add one of the following values:
3802
3820
  #
3821
+ # * `kx.sg.large` – The host type with a configuration of 16 GiB
3822
+ # memory and 2 vCPUs.
3823
+ #
3824
+ # * `kx.sg.xlarge` – The host type with a configuration of 32 GiB
3825
+ # memory and 4 vCPUs.
3826
+ #
3827
+ # * `kx.sg.2xlarge` – The host type with a configuration of 64 GiB
3828
+ # memory and 8 vCPUs.
3829
+ #
3803
3830
  # * `kx.sg.4xlarge` – The host type with a configuration of 108 GiB
3804
3831
  # memory and 16 vCPUs.
3805
3832
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-finspace/customizations'
52
52
  # @!group service
53
53
  module Aws::Finspace
54
54
 
55
- GEM_VERSION = '1.38.0'
55
+ GEM_VERSION = '1.40.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-finspace
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.38.0
4
+ version: 1.40.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-07-02 00:00:00.000000000 Z
11
+ date: 2024-09-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.201.0
22
+ version: 3.203.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement