aws-sdk-pipes 1.23.0 → 1.25.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-pipes/client.rb +19 -2
- data/lib/aws-sdk-pipes/types.rb +10 -10
- data/lib/aws-sdk-pipes.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ad3a31e6c268b473466b770fd68d7a27e948cc7495575d058d72899958aae66
|
4
|
+
data.tar.gz: 4a4db600af8f2246e36d34b550eb2bf65554a1390a9f3344f5775cc910a9b8e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 563d3f856f283a0aebfb7602635b9e7ce23682bdda3d10de4cf24c7e117fcb3d6c30d5c6d92036d2e830c469dbeb0e8840d6f77de4b233c1de1ac71fdb1495f9
|
7
|
+
data.tar.gz: 89d0e73db1c11a0478a1981d0a2639302709397a901194e7daffb38f7e42fa5169a1950df855b03489f52ee0efc425792ed4f5df486c3c551793343b29083d66
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.25.0 (2024-09-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.24.0 (2024-07-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.23.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.25.0
|
data/lib/aws-sdk-pipes/client.rb
CHANGED
@@ -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
|
|
@@ -83,6 +84,7 @@ module Aws::Pipes
|
|
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::RestJson)
|
88
90
|
add_plugin(Aws::Pipes::Plugins::Endpoints)
|
@@ -330,6 +332,16 @@ module Aws::Pipes
|
|
330
332
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
331
333
|
# requests are made, and retries are disabled.
|
332
334
|
#
|
335
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
336
|
+
# Allows you to provide a telemetry provider, which is used to
|
337
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
338
|
+
# will not record or emit any telemetry data. The SDK supports the
|
339
|
+
# following telemetry providers:
|
340
|
+
#
|
341
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
342
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
343
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
344
|
+
#
|
333
345
|
# @option options [Aws::TokenProvider] :token_provider
|
334
346
|
# A Bearer Token Provider. This can be an instance of any one of the
|
335
347
|
# following classes:
|
@@ -1784,14 +1796,19 @@ module Aws::Pipes
|
|
1784
1796
|
# @api private
|
1785
1797
|
def build_request(operation_name, params = {})
|
1786
1798
|
handlers = @handlers.for(operation_name)
|
1799
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
1800
|
+
Aws::Telemetry.module_to_tracer_name('Aws::Pipes')
|
1801
|
+
)
|
1787
1802
|
context = Seahorse::Client::RequestContext.new(
|
1788
1803
|
operation_name: operation_name,
|
1789
1804
|
operation: config.api.operation(operation_name),
|
1790
1805
|
client: self,
|
1791
1806
|
params: params,
|
1792
|
-
config: config
|
1807
|
+
config: config,
|
1808
|
+
tracer: tracer
|
1809
|
+
)
|
1793
1810
|
context[:gem_name] = 'aws-sdk-pipes'
|
1794
|
-
context[:gem_version] = '1.
|
1811
|
+
context[:gem_version] = '1.25.0'
|
1795
1812
|
Seahorse::Client::Request.new(handlers, context)
|
1796
1813
|
end
|
1797
1814
|
|
data/lib/aws-sdk-pipes/types.rb
CHANGED
@@ -38,7 +38,7 @@ module Aws::Pipes
|
|
38
38
|
:subnets,
|
39
39
|
:security_groups,
|
40
40
|
:assign_public_ip)
|
41
|
-
SENSITIVE = []
|
41
|
+
SENSITIVE = [:subnets, :security_groups]
|
42
42
|
include Aws::Structure
|
43
43
|
end
|
44
44
|
|
@@ -511,7 +511,7 @@ module Aws::Pipes
|
|
511
511
|
:role_arn,
|
512
512
|
:tags,
|
513
513
|
:log_configuration)
|
514
|
-
SENSITIVE = [:description]
|
514
|
+
SENSITIVE = [:description, :tags]
|
515
515
|
include Aws::Structure
|
516
516
|
end
|
517
517
|
|
@@ -742,7 +742,7 @@ module Aws::Pipes
|
|
742
742
|
:creation_time,
|
743
743
|
:last_modified_time,
|
744
744
|
:log_configuration)
|
745
|
-
SENSITIVE = [:description]
|
745
|
+
SENSITIVE = [:description, :tags]
|
746
746
|
include Aws::Structure
|
747
747
|
end
|
748
748
|
|
@@ -1269,7 +1269,7 @@ module Aws::Pipes
|
|
1269
1269
|
#
|
1270
1270
|
class ListTagsForResourceResponse < Struct.new(
|
1271
1271
|
:tags)
|
1272
|
-
SENSITIVE = []
|
1272
|
+
SENSITIVE = [:tags]
|
1273
1273
|
include Aws::Structure
|
1274
1274
|
end
|
1275
1275
|
|
@@ -1501,7 +1501,7 @@ module Aws::Pipes
|
|
1501
1501
|
:path_parameter_values,
|
1502
1502
|
:header_parameters,
|
1503
1503
|
:query_string_parameters)
|
1504
|
-
SENSITIVE = []
|
1504
|
+
SENSITIVE = [:path_parameter_values, :header_parameters, :query_string_parameters]
|
1505
1505
|
include Aws::Structure
|
1506
1506
|
end
|
1507
1507
|
|
@@ -2035,7 +2035,7 @@ module Aws::Pipes
|
|
2035
2035
|
:credentials,
|
2036
2036
|
:server_root_ca_certificate,
|
2037
2037
|
:vpc)
|
2038
|
-
SENSITIVE = [:topic_name, :consumer_group_id]
|
2038
|
+
SENSITIVE = [:topic_name, :additional_bootstrap_servers, :consumer_group_id]
|
2039
2039
|
include Aws::Structure
|
2040
2040
|
end
|
2041
2041
|
|
@@ -2351,7 +2351,7 @@ module Aws::Pipes
|
|
2351
2351
|
:path_parameter_values,
|
2352
2352
|
:header_parameters,
|
2353
2353
|
:query_string_parameters)
|
2354
|
-
SENSITIVE = []
|
2354
|
+
SENSITIVE = [:path_parameter_values, :header_parameters, :query_string_parameters]
|
2355
2355
|
include Aws::Structure
|
2356
2356
|
end
|
2357
2357
|
|
@@ -2544,7 +2544,7 @@ module Aws::Pipes
|
|
2544
2544
|
:statement_name,
|
2545
2545
|
:with_event,
|
2546
2546
|
:sqls)
|
2547
|
-
SENSITIVE = [:database, :db_user, :statement_name]
|
2547
|
+
SENSITIVE = [:database, :db_user, :statement_name, :sqls]
|
2548
2548
|
include Aws::Structure
|
2549
2549
|
end
|
2550
2550
|
|
@@ -2965,7 +2965,7 @@ module Aws::Pipes
|
|
2965
2965
|
class SelfManagedKafkaAccessConfigurationVpc < Struct.new(
|
2966
2966
|
:subnets,
|
2967
2967
|
:security_group)
|
2968
|
-
SENSITIVE = []
|
2968
|
+
SENSITIVE = [:subnets, :security_group]
|
2969
2969
|
include Aws::Structure
|
2970
2970
|
end
|
2971
2971
|
|
@@ -3178,7 +3178,7 @@ module Aws::Pipes
|
|
3178
3178
|
class TagResourceRequest < Struct.new(
|
3179
3179
|
:resource_arn,
|
3180
3180
|
:tags)
|
3181
|
-
SENSITIVE = []
|
3181
|
+
SENSITIVE = [:tags]
|
3182
3182
|
include Aws::Structure
|
3183
3183
|
end
|
3184
3184
|
|
data/lib/aws-sdk-pipes.rb
CHANGED
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-pipes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.25.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-
|
11
|
+
date: 2024-09-03 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.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.
|
32
|
+
version: 3.203.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|