aws-sdk-lookoutequipment 1.36.0 → 1.38.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: cf1808ac9dee8010326dda4221ef3f889ffeec559cb7d31a1893f52b99fb76fc
4
- data.tar.gz: c30b669e4cadbcca4d56dc7e1e8e291fb96d7961c47f6d76be2fca2674ae14b3
3
+ metadata.gz: 87f2cb2f04a8df1f34a27c4caed23b5ef59e17648efeeea63d03eae1207be823
4
+ data.tar.gz: 8a8c73c71959d4e3736032cf2b81d2a75909615cc9363a69ad1a0e808d861989
5
5
  SHA512:
6
- metadata.gz: c6ae497568419a64d2cd48f3600434733f4ee9aa2724b98cb59f14bb2b7bbd4f11dcdb3c6994c2b0bfe57208da360cf5e3ade4a246f52224e5aba894391b3124
7
- data.tar.gz: bbf35c576a53bcb1e26cf190501665e0ae0eac4100d7af7156c9c5b8a20d8de389a32eef61104163a287f6c8a71e0919ef542f9fdd579643b6a734d90a204a2d
6
+ metadata.gz: 4dee3ec309f7a192caf5629e7a4b9b58d0fdde1e21335cb333c219d3a266aff2ea174f854bc9f99869709c653eaa09d4eeb9e3a1fa7338cdc194b88d05481fc9
7
+ data.tar.gz: 8ca0910f3c80ce270316a165d6ac5e2b4b822e8bf0d10b77e366b1f3641c8659aeaede748c257a0a8e0e64dc1969a955810253907c9e34bf2c0a743f78136f36
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.38.0 (2024-09-10)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.37.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.36.0 (2024-07-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.36.0
1
+ 1.38.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/json_rpc.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::LookoutEquipment
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
89
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
88
90
  add_plugin(Aws::LookoutEquipment::Plugins::Endpoints)
@@ -337,6 +339,16 @@ module Aws::LookoutEquipment
337
339
  # ** Please note ** When response stubbing is enabled, no HTTP
338
340
  # requests are made, and retries are disabled.
339
341
  #
342
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
343
+ # Allows you to provide a telemetry provider, which is used to
344
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
345
+ # will not record or emit any telemetry data. The SDK supports the
346
+ # following telemetry providers:
347
+ #
348
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
349
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
350
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
351
+ #
340
352
  # @option options [Aws::TokenProvider] :token_provider
341
353
  # A Bearer Token Provider. This can be an instance of any one of the
342
354
  # following classes:
@@ -420,6 +432,12 @@ module Aws::LookoutEquipment
420
432
  # @option options [String] :ssl_ca_store
421
433
  # Sets the X509::Store to verify peer certificate.
422
434
  #
435
+ # @option options [OpenSSL::X509::Certificate] :ssl_cert
436
+ # Sets a client certificate when creating http connections.
437
+ #
438
+ # @option options [OpenSSL::PKey] :ssl_key
439
+ # Sets a client key when creating http connections.
440
+ #
423
441
  # @option options [Float] :ssl_timeout
424
442
  # Sets the SSL timeout in seconds
425
443
  #
@@ -3329,14 +3347,19 @@ module Aws::LookoutEquipment
3329
3347
  # @api private
3330
3348
  def build_request(operation_name, params = {})
3331
3349
  handlers = @handlers.for(operation_name)
3350
+ tracer = config.telemetry_provider.tracer_provider.tracer(
3351
+ Aws::Telemetry.module_to_tracer_name('Aws::LookoutEquipment')
3352
+ )
3332
3353
  context = Seahorse::Client::RequestContext.new(
3333
3354
  operation_name: operation_name,
3334
3355
  operation: config.api.operation(operation_name),
3335
3356
  client: self,
3336
3357
  params: params,
3337
- config: config)
3358
+ config: config,
3359
+ tracer: tracer
3360
+ )
3338
3361
  context[:gem_name] = 'aws-sdk-lookoutequipment'
3339
- context[:gem_version] = '1.36.0'
3362
+ context[:gem_version] = '1.38.0'
3340
3363
  Seahorse::Client::Request.new(handlers, context)
3341
3364
  end
3342
3365
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-lookoutequipment/customizations'
52
52
  # @!group service
53
53
  module Aws::LookoutEquipment
54
54
 
55
- GEM_VERSION = '1.36.0'
55
+ GEM_VERSION = '1.38.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -51,6 +51,7 @@ module Aws
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?simple_json: bool,
53
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
54
55
  ?token_provider: untyped,
55
56
  ?use_dualstack_endpoint: bool,
56
57
  ?use_fips_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -51,6 +51,7 @@ module Aws
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?simple_json: bool,
53
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
54
55
  ?token_provider: untyped,
55
56
  ?use_dualstack_endpoint: bool,
56
57
  ?use_fips_endpoint: bool,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lookoutequipment
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.36.0
4
+ version: 1.38.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-10 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