aws-sdk-lookoutmetrics 1.5.0 → 1.9.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 +22 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lookoutmetrics/client.rb +10 -3
- data/lib/aws-sdk-lookoutmetrics.rb +1 -1
- metadata +5 -6
- data/lib/aws-sdk-lookoutmetrics/plugins/content_type.rb +0 -25
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1bde54ec92d49a6fed307eb8037dc8ad0442fd771722076a94b41187813eef57
|
4
|
+
data.tar.gz: 563a0067c2b6cfddcc1ea21ddd58873d8e9b18cbc353c34a0409d567f8e1f66f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb8e744c8f9d1ceae87a74c8a68307256e565e3471e097cc4da9bd362bcdcd94e3b51f0fabc372081507095e30ba2b84d9b6fb70d0a55e0fcfc2dc9dc832b60c
|
7
|
+
data.tar.gz: 703b2e4947bf39128d22dc9d50b2a59b15044d3f05517b27539bb9906062af5352d85a9df2b0faceffc20a61685791773268779724af660d184cb41228f7d4a6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,28 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.9.0 (2021-11-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.8.0 (2021-10-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
* Issue - Remove a plugin that sets the `Content-Type` header and instead depend on a new version of `aws-sdk-core` that does.
|
15
|
+
|
16
|
+
1.7.0 (2021-09-01)
|
17
|
+
------------------
|
18
|
+
|
19
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
20
|
+
|
21
|
+
1.6.0 (2021-07-30)
|
22
|
+
------------------
|
23
|
+
|
24
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
25
|
+
|
4
26
|
1.5.0 (2021-07-28)
|
5
27
|
------------------
|
6
28
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.9.0
|
@@ -29,7 +29,6 @@ require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
|
-
require 'aws-sdk-lookoutmetrics/plugins/content_type.rb'
|
33
32
|
|
34
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:lookoutmetrics)
|
35
34
|
|
@@ -76,7 +75,6 @@ module Aws::LookoutMetrics
|
|
76
75
|
add_plugin(Aws::Plugins::HttpChecksum)
|
77
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
78
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
79
|
-
add_plugin(Aws::LookoutMetrics::Plugins::ContentType)
|
80
78
|
|
81
79
|
# @overload initialize(options)
|
82
80
|
# @param [Hash] options
|
@@ -277,6 +275,15 @@ module Aws::LookoutMetrics
|
|
277
275
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
278
276
|
# requests are made, and retries are disabled.
|
279
277
|
#
|
278
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
279
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
280
|
+
# will be used if available.
|
281
|
+
#
|
282
|
+
# @option options [Boolean] :use_fips_endpoint
|
283
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
284
|
+
# When a `fips` region is used, the region is normalized and this config
|
285
|
+
# is set to `true`.
|
286
|
+
#
|
280
287
|
# @option options [Boolean] :validate_params (true)
|
281
288
|
# When `true`, request parameters are validated before
|
282
289
|
# sending the request.
|
@@ -1646,7 +1653,7 @@ module Aws::LookoutMetrics
|
|
1646
1653
|
params: params,
|
1647
1654
|
config: config)
|
1648
1655
|
context[:gem_name] = 'aws-sdk-lookoutmetrics'
|
1649
|
-
context[:gem_version] = '1.
|
1656
|
+
context[:gem_version] = '1.9.0'
|
1650
1657
|
Seahorse::Client::Request.new(handlers, context)
|
1651
1658
|
end
|
1652
1659
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-lookoutmetrics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.9.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: 2021-
|
11
|
+
date: 2021-11-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.
|
22
|
+
version: 3.122.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.
|
32
|
+
version: 3.122.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -60,7 +60,6 @@ files:
|
|
60
60
|
- lib/aws-sdk-lookoutmetrics/client_api.rb
|
61
61
|
- lib/aws-sdk-lookoutmetrics/customizations.rb
|
62
62
|
- lib/aws-sdk-lookoutmetrics/errors.rb
|
63
|
-
- lib/aws-sdk-lookoutmetrics/plugins/content_type.rb
|
64
63
|
- lib/aws-sdk-lookoutmetrics/resource.rb
|
65
64
|
- lib/aws-sdk-lookoutmetrics/types.rb
|
66
65
|
homepage: https://github.com/aws/aws-sdk-ruby
|
@@ -77,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
77
76
|
requirements:
|
78
77
|
- - ">="
|
79
78
|
- !ruby/object:Gem::Version
|
80
|
-
version: '
|
79
|
+
version: '2.3'
|
81
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
81
|
requirements:
|
83
82
|
- - ">="
|
@@ -1,25 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Aws
|
4
|
-
module LookoutMetrics
|
5
|
-
module Plugins
|
6
|
-
class ContentType < Seahorse::Client::Plugin
|
7
|
-
|
8
|
-
def add_handlers(handlers, _config)
|
9
|
-
handlers.add(Handler)
|
10
|
-
end
|
11
|
-
|
12
|
-
class Handler < Seahorse::Client::Handler
|
13
|
-
def call(context)
|
14
|
-
# Some operations break when given an empty content-type header.
|
15
|
-
# The SDK adds this blank content-type header
|
16
|
-
# since Net::HTTP provides a default that can break services.
|
17
|
-
# We're setting one here even though it's not used or necessary.
|
18
|
-
context.http_request.headers['content-type'] = 'application/x-amz-json-1.1'
|
19
|
-
@handler.call(context)
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|