aws-sdk-pipes 1.24.0 → 1.26.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 +66 -2
- data/lib/aws-sdk-pipes/client_api.rb +5 -0
- data/lib/aws-sdk-pipes/types.rb +60 -23
- data/lib/aws-sdk-pipes.rb +1 -1
- data/sig/client.rbs +6 -2
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +3 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 152cafc38dd7996acda13fc2756f9e634d12e3666c13fc976793fd16f11b1272
|
4
|
+
data.tar.gz: 84e425616f56382510c25c785d330f6471ca367a4257481cac11063bd5d4db30
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64bcd899e02ca54f42f59f5f7ded5dd0366ed70a9ab1bd0325cf5dff7086970ebc1c1d69fdf547834a0f366f0247157a45f3daa8c2198a418c1205ddd1d4c4ee
|
7
|
+
data.tar.gz: dab21bfe8e0538a3c0aca4fe69ae7748537350bcd07cae6cede5d6f264bf619432104610902ddccedc926f0e4257c9d551eb80a91acaf0db6cb8c88fb8526694
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.26.0 (2024-09-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for customer managed KMS keys in Amazon EventBridge Pipe
|
8
|
+
|
9
|
+
1.25.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.24.0 (2024-07-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.26.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:
|
@@ -413,6 +425,12 @@ module Aws::Pipes
|
|
413
425
|
# @option options [String] :ssl_ca_store
|
414
426
|
# Sets the X509::Store to verify peer certificate.
|
415
427
|
#
|
428
|
+
# @option options [OpenSSL::X509::Certificate] :ssl_cert
|
429
|
+
# Sets a client certificate when creating http connections.
|
430
|
+
#
|
431
|
+
# @option options [OpenSSL::PKey] :ssl_key
|
432
|
+
# Sets a client key when creating http connections.
|
433
|
+
#
|
416
434
|
# @option options [Float] :ssl_timeout
|
417
435
|
# Sets the SSL timeout in seconds
|
418
436
|
#
|
@@ -473,6 +491,22 @@ module Aws::Pipes
|
|
473
491
|
# @option params [Types::PipeLogConfigurationParameters] :log_configuration
|
474
492
|
# The logging configuration settings for the pipe.
|
475
493
|
#
|
494
|
+
# @option params [String] :kms_key_identifier
|
495
|
+
# The identifier of the KMS customer managed key for EventBridge to use,
|
496
|
+
# if you choose to use a customer managed key to encrypt pipe data. The
|
497
|
+
# identifier can be the key Amazon Resource Name (ARN), KeyId, key
|
498
|
+
# alias, or key alias ARN.
|
499
|
+
#
|
500
|
+
# If you do not specify a customer managed key identifier, EventBridge
|
501
|
+
# uses an Amazon Web Services owned key to encrypt pipe data.
|
502
|
+
#
|
503
|
+
# For more information, see [Managing keys][1] in the *Key Management
|
504
|
+
# Service Developer Guide*.
|
505
|
+
#
|
506
|
+
#
|
507
|
+
#
|
508
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/getting-started.html
|
509
|
+
#
|
476
510
|
# @return [Types::CreatePipeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
477
511
|
#
|
478
512
|
# * {Types::CreatePipeResponse#arn #arn} => String
|
@@ -813,6 +847,7 @@ module Aws::Pipes
|
|
813
847
|
# level: "OFF", # required, accepts OFF, ERROR, INFO, TRACE
|
814
848
|
# include_execution_data: ["ALL"], # accepts ALL
|
815
849
|
# },
|
850
|
+
# kms_key_identifier: "KmsKeyIdentifier",
|
816
851
|
# })
|
817
852
|
#
|
818
853
|
# @example Response structure
|
@@ -906,6 +941,7 @@ module Aws::Pipes
|
|
906
941
|
# * {Types::DescribePipeResponse#creation_time #creation_time} => Time
|
907
942
|
# * {Types::DescribePipeResponse#last_modified_time #last_modified_time} => Time
|
908
943
|
# * {Types::DescribePipeResponse#log_configuration #log_configuration} => Types::PipeLogConfiguration
|
944
|
+
# * {Types::DescribePipeResponse#kms_key_identifier #kms_key_identifier} => String
|
909
945
|
#
|
910
946
|
# @example Request syntax with placeholder values
|
911
947
|
#
|
@@ -1116,6 +1152,7 @@ module Aws::Pipes
|
|
1116
1152
|
# resp.log_configuration.level #=> String, one of "OFF", "ERROR", "INFO", "TRACE"
|
1117
1153
|
# resp.log_configuration.include_execution_data #=> Array
|
1118
1154
|
# resp.log_configuration.include_execution_data[0] #=> String, one of "ALL"
|
1155
|
+
# resp.kms_key_identifier #=> String
|
1119
1156
|
#
|
1120
1157
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/DescribePipe AWS API Documentation
|
1121
1158
|
#
|
@@ -1435,6 +1472,27 @@ module Aws::Pipes
|
|
1435
1472
|
# @option params [Types::PipeLogConfigurationParameters] :log_configuration
|
1436
1473
|
# The logging configuration settings for the pipe.
|
1437
1474
|
#
|
1475
|
+
# @option params [String] :kms_key_identifier
|
1476
|
+
# The identifier of the KMS customer managed key for EventBridge to use,
|
1477
|
+
# if you choose to use a customer managed key to encrypt pipe data. The
|
1478
|
+
# identifier can be the key Amazon Resource Name (ARN), KeyId, key
|
1479
|
+
# alias, or key alias ARN.
|
1480
|
+
#
|
1481
|
+
# To update a pipe that is using the default Amazon Web Services owned
|
1482
|
+
# key to use a customer managed key instead, or update a pipe that is
|
1483
|
+
# using a customer managed key to use a different customer managed key,
|
1484
|
+
# specify a customer managed key identifier.
|
1485
|
+
#
|
1486
|
+
# To update a pipe that is using a customer managed key to use the
|
1487
|
+
# default Amazon Web Services owned key, specify an empty string.
|
1488
|
+
#
|
1489
|
+
# For more information, see [Managing keys][1] in the *Key Management
|
1490
|
+
# Service Developer Guide*.
|
1491
|
+
#
|
1492
|
+
#
|
1493
|
+
#
|
1494
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/getting-started.html
|
1495
|
+
#
|
1438
1496
|
# @return [Types::UpdatePipeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1439
1497
|
#
|
1440
1498
|
# * {Types::UpdatePipeResponse#arn #arn} => String
|
@@ -1758,6 +1816,7 @@ module Aws::Pipes
|
|
1758
1816
|
# level: "OFF", # required, accepts OFF, ERROR, INFO, TRACE
|
1759
1817
|
# include_execution_data: ["ALL"], # accepts ALL
|
1760
1818
|
# },
|
1819
|
+
# kms_key_identifier: "KmsKeyIdentifier",
|
1761
1820
|
# })
|
1762
1821
|
#
|
1763
1822
|
# @example Response structure
|
@@ -1784,14 +1843,19 @@ module Aws::Pipes
|
|
1784
1843
|
# @api private
|
1785
1844
|
def build_request(operation_name, params = {})
|
1786
1845
|
handlers = @handlers.for(operation_name)
|
1846
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
1847
|
+
Aws::Telemetry.module_to_tracer_name('Aws::Pipes')
|
1848
|
+
)
|
1787
1849
|
context = Seahorse::Client::RequestContext.new(
|
1788
1850
|
operation_name: operation_name,
|
1789
1851
|
operation: config.api.operation(operation_name),
|
1790
1852
|
client: self,
|
1791
1853
|
params: params,
|
1792
|
-
config: config
|
1854
|
+
config: config,
|
1855
|
+
tracer: tracer
|
1856
|
+
)
|
1793
1857
|
context[:gem_name] = 'aws-sdk-pipes'
|
1794
|
-
context[:gem_version] = '1.
|
1858
|
+
context[:gem_version] = '1.26.0'
|
1795
1859
|
Seahorse::Client::Request.new(handlers, context)
|
1796
1860
|
end
|
1797
1861
|
|
@@ -99,6 +99,7 @@ module Aws::Pipes
|
|
99
99
|
KafkaTopicName = Shapes::StringShape.new(name: 'KafkaTopicName')
|
100
100
|
KinesisPartitionKey = Shapes::StringShape.new(name: 'KinesisPartitionKey')
|
101
101
|
KinesisStreamStartPosition = Shapes::StringShape.new(name: 'KinesisStreamStartPosition')
|
102
|
+
KmsKeyIdentifier = Shapes::StringShape.new(name: 'KmsKeyIdentifier')
|
102
103
|
LaunchType = Shapes::StringShape.new(name: 'LaunchType')
|
103
104
|
LimitMax10 = Shapes::IntegerShape.new(name: 'LimitMax10')
|
104
105
|
LimitMax100 = Shapes::IntegerShape.new(name: 'LimitMax100')
|
@@ -319,6 +320,7 @@ module Aws::Pipes
|
|
319
320
|
CreatePipeRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
|
320
321
|
CreatePipeRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
321
322
|
CreatePipeRequest.add_member(:log_configuration, Shapes::ShapeRef.new(shape: PipeLogConfigurationParameters, location_name: "LogConfiguration"))
|
323
|
+
CreatePipeRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
|
322
324
|
CreatePipeRequest.struct_class = Types::CreatePipeRequest
|
323
325
|
|
324
326
|
CreatePipeResponse.add_member(:arn, Shapes::ShapeRef.new(shape: PipeArn, location_name: "Arn"))
|
@@ -363,6 +365,7 @@ module Aws::Pipes
|
|
363
365
|
DescribePipeResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
364
366
|
DescribePipeResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
365
367
|
DescribePipeResponse.add_member(:log_configuration, Shapes::ShapeRef.new(shape: PipeLogConfiguration, location_name: "LogConfiguration"))
|
368
|
+
DescribePipeResponse.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
|
366
369
|
DescribePipeResponse.struct_class = Types::DescribePipeResponse
|
367
370
|
|
368
371
|
DimensionMapping.add_member(:dimension_value, Shapes::ShapeRef.new(shape: DimensionValue, required: true, location_name: "DimensionValue"))
|
@@ -832,6 +835,7 @@ module Aws::Pipes
|
|
832
835
|
UpdatePipeRequest.add_member(:target_parameters, Shapes::ShapeRef.new(shape: PipeTargetParameters, location_name: "TargetParameters"))
|
833
836
|
UpdatePipeRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
|
834
837
|
UpdatePipeRequest.add_member(:log_configuration, Shapes::ShapeRef.new(shape: PipeLogConfigurationParameters, location_name: "LogConfiguration"))
|
838
|
+
UpdatePipeRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
|
835
839
|
UpdatePipeRequest.struct_class = Types::UpdatePipeRequest
|
836
840
|
|
837
841
|
UpdatePipeResponse.add_member(:arn, Shapes::ShapeRef.new(shape: PipeArn, location_name: "Arn"))
|
@@ -914,6 +918,7 @@ module Aws::Pipes
|
|
914
918
|
|
915
919
|
api.metadata = {
|
916
920
|
"apiVersion" => "2015-10-07",
|
921
|
+
"auth" => ["aws.auth#sigv4"],
|
917
922
|
"endpointPrefix" => "pipes",
|
918
923
|
"protocol" => "rest-json",
|
919
924
|
"protocols" => ["rest-json"],
|
data/lib/aws-sdk-pipes/types.rb
CHANGED
@@ -496,6 +496,23 @@ module Aws::Pipes
|
|
496
496
|
# The logging configuration settings for the pipe.
|
497
497
|
# @return [Types::PipeLogConfigurationParameters]
|
498
498
|
#
|
499
|
+
# @!attribute [rw] kms_key_identifier
|
500
|
+
# The identifier of the KMS customer managed key for EventBridge to
|
501
|
+
# use, if you choose to use a customer managed key to encrypt pipe
|
502
|
+
# data. The identifier can be the key Amazon Resource Name (ARN),
|
503
|
+
# KeyId, key alias, or key alias ARN.
|
504
|
+
#
|
505
|
+
# If you do not specify a customer managed key identifier, EventBridge
|
506
|
+
# uses an Amazon Web Services owned key to encrypt pipe data.
|
507
|
+
#
|
508
|
+
# For more information, see [Managing keys][1] in the *Key Management
|
509
|
+
# Service Developer Guide*.
|
510
|
+
#
|
511
|
+
#
|
512
|
+
#
|
513
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/getting-started.html
|
514
|
+
# @return [String]
|
515
|
+
#
|
499
516
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/CreatePipeRequest AWS API Documentation
|
500
517
|
#
|
501
518
|
class CreatePipeRequest < Struct.new(
|
@@ -510,7 +527,8 @@ module Aws::Pipes
|
|
510
527
|
:target_parameters,
|
511
528
|
:role_arn,
|
512
529
|
:tags,
|
513
|
-
:log_configuration
|
530
|
+
:log_configuration,
|
531
|
+
:kms_key_identifier)
|
514
532
|
SENSITIVE = [:description, :tags]
|
515
533
|
include Aws::Structure
|
516
534
|
end
|
@@ -722,6 +740,18 @@ module Aws::Pipes
|
|
722
740
|
# The logging configuration settings for the pipe.
|
723
741
|
# @return [Types::PipeLogConfiguration]
|
724
742
|
#
|
743
|
+
# @!attribute [rw] kms_key_identifier
|
744
|
+
# The identifier of the KMS customer managed key for EventBridge to
|
745
|
+
# use to encrypt pipe data, if one has been specified.
|
746
|
+
#
|
747
|
+
# For more information, see [Data encryption in EventBridge][1] in the
|
748
|
+
# *Amazon EventBridge User Guide*.
|
749
|
+
#
|
750
|
+
#
|
751
|
+
#
|
752
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption.html
|
753
|
+
# @return [String]
|
754
|
+
#
|
725
755
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/DescribePipeResponse AWS API Documentation
|
726
756
|
#
|
727
757
|
class DescribePipeResponse < Struct.new(
|
@@ -741,7 +771,8 @@ module Aws::Pipes
|
|
741
771
|
:tags,
|
742
772
|
:creation_time,
|
743
773
|
:last_modified_time,
|
744
|
-
:log_configuration
|
774
|
+
:log_configuration,
|
775
|
+
:kms_key_identifier)
|
745
776
|
SENSITIVE = [:description, :tags]
|
746
777
|
include Aws::Structure
|
747
778
|
end
|
@@ -2807,15 +2838,7 @@ module Aws::Pipes
|
|
2807
2838
|
# @!attribute [rw] output_format
|
2808
2839
|
# The format EventBridge uses for the log records.
|
2809
2840
|
#
|
2810
|
-
#
|
2811
|
-
#
|
2812
|
-
# * `plain`: Plain text
|
2813
|
-
#
|
2814
|
-
# * `w3c`: [W3C extended logging file format][1]
|
2815
|
-
#
|
2816
|
-
#
|
2817
|
-
#
|
2818
|
-
# [1]: https://www.w3.org/TR/WD-logfile
|
2841
|
+
# EventBridge currently only supports `json` formatting.
|
2819
2842
|
# @return [String]
|
2820
2843
|
#
|
2821
2844
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/S3LogDestination AWS API Documentation
|
@@ -2844,15 +2867,7 @@ module Aws::Pipes
|
|
2844
2867
|
# @!attribute [rw] output_format
|
2845
2868
|
# How EventBridge should format the log records.
|
2846
2869
|
#
|
2847
|
-
#
|
2848
|
-
#
|
2849
|
-
# * `plain`: Plain text
|
2850
|
-
#
|
2851
|
-
# * `w3c`: [W3C extended logging file format][1]
|
2852
|
-
#
|
2853
|
-
#
|
2854
|
-
#
|
2855
|
-
# [1]: https://www.w3.org/TR/WD-logfile
|
2870
|
+
# EventBridge currently only supports `json` formatting.
|
2856
2871
|
# @return [String]
|
2857
2872
|
#
|
2858
2873
|
# @!attribute [rw] prefix
|
@@ -2956,8 +2971,7 @@ module Aws::Pipes
|
|
2956
2971
|
# @!attribute [rw] security_group
|
2957
2972
|
# Specifies the security groups associated with the stream. These
|
2958
2973
|
# security groups must all be in the same VPC. You can specify as many
|
2959
|
-
# as five security groups.
|
2960
|
-
# default security group for the VPC is used.
|
2974
|
+
# as five security groups.
|
2961
2975
|
# @return [Array<String>]
|
2962
2976
|
#
|
2963
2977
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/SelfManagedKafkaAccessConfigurationVpc AWS API Documentation
|
@@ -3284,6 +3298,28 @@ module Aws::Pipes
|
|
3284
3298
|
# The logging configuration settings for the pipe.
|
3285
3299
|
# @return [Types::PipeLogConfigurationParameters]
|
3286
3300
|
#
|
3301
|
+
# @!attribute [rw] kms_key_identifier
|
3302
|
+
# The identifier of the KMS customer managed key for EventBridge to
|
3303
|
+
# use, if you choose to use a customer managed key to encrypt pipe
|
3304
|
+
# data. The identifier can be the key Amazon Resource Name (ARN),
|
3305
|
+
# KeyId, key alias, or key alias ARN.
|
3306
|
+
#
|
3307
|
+
# To update a pipe that is using the default Amazon Web Services owned
|
3308
|
+
# key to use a customer managed key instead, or update a pipe that is
|
3309
|
+
# using a customer managed key to use a different customer managed
|
3310
|
+
# key, specify a customer managed key identifier.
|
3311
|
+
#
|
3312
|
+
# To update a pipe that is using a customer managed key to use the
|
3313
|
+
# default Amazon Web Services owned key, specify an empty string.
|
3314
|
+
#
|
3315
|
+
# For more information, see [Managing keys][1] in the *Key Management
|
3316
|
+
# Service Developer Guide*.
|
3317
|
+
#
|
3318
|
+
#
|
3319
|
+
#
|
3320
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/getting-started.html
|
3321
|
+
# @return [String]
|
3322
|
+
#
|
3287
3323
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/UpdatePipeRequest AWS API Documentation
|
3288
3324
|
#
|
3289
3325
|
class UpdatePipeRequest < Struct.new(
|
@@ -3296,7 +3332,8 @@ module Aws::Pipes
|
|
3296
3332
|
:target,
|
3297
3333
|
:target_parameters,
|
3298
3334
|
:role_arn,
|
3299
|
-
:log_configuration
|
3335
|
+
:log_configuration,
|
3336
|
+
:kms_key_identifier)
|
3300
3337
|
SENSITIVE = [:description]
|
3301
3338
|
include Aws::Structure
|
3302
3339
|
end
|
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,
|
@@ -399,7 +400,8 @@ module Aws
|
|
399
400
|
}?,
|
400
401
|
level: ("OFF" | "ERROR" | "INFO" | "TRACE"),
|
401
402
|
include_execution_data: Array[("ALL")]?
|
402
|
-
}
|
403
|
+
},
|
404
|
+
?kms_key_identifier: ::String
|
403
405
|
) -> _CreatePipeResponseSuccess
|
404
406
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePipeResponseSuccess
|
405
407
|
|
@@ -437,6 +439,7 @@ module Aws
|
|
437
439
|
def creation_time: () -> ::Time
|
438
440
|
def last_modified_time: () -> ::Time
|
439
441
|
def log_configuration: () -> Types::PipeLogConfiguration
|
442
|
+
def kms_key_identifier: () -> ::String
|
440
443
|
end
|
441
444
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Pipes/Client.html#describe_pipe-instance_method
|
442
445
|
def describe_pipe: (
|
@@ -832,7 +835,8 @@ module Aws
|
|
832
835
|
}?,
|
833
836
|
level: ("OFF" | "ERROR" | "INFO" | "TRACE"),
|
834
837
|
include_execution_data: Array[("ALL")]?
|
835
|
-
}
|
838
|
+
},
|
839
|
+
?kms_key_identifier: ::String
|
836
840
|
) -> _UpdatePipeResponseSuccess
|
837
841
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePipeResponseSuccess
|
838
842
|
end
|
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,
|
data/sig/types.rbs
CHANGED
@@ -88,6 +88,7 @@ module Aws::Pipes
|
|
88
88
|
attr_accessor role_arn: ::String
|
89
89
|
attr_accessor tags: ::Hash[::String, ::String]
|
90
90
|
attr_accessor log_configuration: Types::PipeLogConfigurationParameters
|
91
|
+
attr_accessor kms_key_identifier: ::String
|
91
92
|
SENSITIVE: [:description]
|
92
93
|
end
|
93
94
|
|
@@ -144,6 +145,7 @@ module Aws::Pipes
|
|
144
145
|
attr_accessor creation_time: ::Time
|
145
146
|
attr_accessor last_modified_time: ::Time
|
146
147
|
attr_accessor log_configuration: Types::PipeLogConfiguration
|
148
|
+
attr_accessor kms_key_identifier: ::String
|
147
149
|
SENSITIVE: [:description]
|
148
150
|
end
|
149
151
|
|
@@ -701,6 +703,7 @@ module Aws::Pipes
|
|
701
703
|
attr_accessor target_parameters: Types::PipeTargetParameters
|
702
704
|
attr_accessor role_arn: ::String
|
703
705
|
attr_accessor log_configuration: Types::PipeLogConfigurationParameters
|
706
|
+
attr_accessor kms_key_identifier: ::String
|
704
707
|
SENSITIVE: [:description]
|
705
708
|
end
|
706
709
|
|
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.26.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-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.
|
22
|
+
version: 3.203.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ 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
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for Amazon EventBridge Pipes. This gem is part
|
48
48
|
of the AWS SDK for Ruby.
|
49
49
|
email:
|