aws-sdk-osis 1.33.0 → 1.35.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-osis/client.rb +46 -9
- data/lib/aws-sdk-osis/client_api.rb +4 -0
- data/lib/aws-sdk-osis/types.rb +34 -3
- data/lib/aws-sdk-osis.rb +1 -1
- data/sig/client.rbs +5 -2
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +3 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95777e4b1b560652302040bdd780c8cd6e9b63e554801fd7f43f52d921a983b4
|
4
|
+
data.tar.gz: dc52e52eb440d23c615b0a88309abe18aff9a2a237dfc6217a3a73a109de283a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd65f03ed01083d204d62e75268f9e034d322ec97a56b1eaec9e4025690f90b022d7cabe7eeadb30b593197dc1a107c132c92cd4a9405cc8af2f0a2b83dd596d
|
7
|
+
data.tar.gz: 7ce1b7105a683ea4d79aa93b048a501ea6e0c9fd11701cfe65337a9afd13ad8f72416dd6c57a4ba6ca2dc5eaf2eea0981107ddf08bfb35c666984cfb3fbf6e88
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.35.0 (2025-07-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add Pipeline Role Arn as an optional parameter to the create / update pipeline APIs as an alternative to passing in the pipeline configuration body
|
8
|
+
|
9
|
+
1.34.0 (2025-07-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.33.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.35.0
|
data/lib/aws-sdk-osis/client.rb
CHANGED
@@ -95,7 +95,7 @@ module Aws::OSIS
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::OSIS
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::OSIS
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::OSIS
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::OSIS
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -511,6 +521,16 @@ module Aws::OSIS
|
|
511
521
|
# @option params [Array<Types::Tag>] :tags
|
512
522
|
# List of tags to add to the pipeline upon creation.
|
513
523
|
#
|
524
|
+
# @option params [String] :pipeline_role_arn
|
525
|
+
# The Amazon Resource Name (ARN) of an IAM role that provides the
|
526
|
+
# required permissions for a pipeline to read from the source and write
|
527
|
+
# to the sink. For more information, see [Setting up roles and users in
|
528
|
+
# Amazon OpenSearch Ingestion][1].
|
529
|
+
#
|
530
|
+
#
|
531
|
+
#
|
532
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/pipeline-security-overview.html
|
533
|
+
#
|
514
534
|
# @return [Types::CreatePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
515
535
|
#
|
516
536
|
# * {Types::CreatePipelineResponse#pipeline #pipeline} => Types::Pipeline
|
@@ -549,6 +569,7 @@ module Aws::OSIS
|
|
549
569
|
# value: "TagValue", # required
|
550
570
|
# },
|
551
571
|
# ],
|
572
|
+
# pipeline_role_arn: "PipelineRoleArn",
|
552
573
|
# })
|
553
574
|
#
|
554
575
|
# @example Response structure
|
@@ -588,6 +609,7 @@ module Aws::OSIS
|
|
588
609
|
# resp.pipeline.tags #=> Array
|
589
610
|
# resp.pipeline.tags[0].key #=> String
|
590
611
|
# resp.pipeline.tags[0].value #=> String
|
612
|
+
# resp.pipeline.pipeline_role_arn #=> String
|
591
613
|
#
|
592
614
|
# @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/CreatePipeline AWS API Documentation
|
593
615
|
#
|
@@ -677,6 +699,7 @@ module Aws::OSIS
|
|
677
699
|
# resp.pipeline.tags #=> Array
|
678
700
|
# resp.pipeline.tags[0].key #=> String
|
679
701
|
# resp.pipeline.tags[0].value #=> String
|
702
|
+
# resp.pipeline.pipeline_role_arn #=> String
|
680
703
|
#
|
681
704
|
# @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/GetPipeline AWS API Documentation
|
682
705
|
#
|
@@ -959,6 +982,7 @@ module Aws::OSIS
|
|
959
982
|
# resp.pipeline.tags #=> Array
|
960
983
|
# resp.pipeline.tags[0].key #=> String
|
961
984
|
# resp.pipeline.tags[0].value #=> String
|
985
|
+
# resp.pipeline.pipeline_role_arn #=> String
|
962
986
|
#
|
963
987
|
# @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/StartPipeline AWS API Documentation
|
964
988
|
#
|
@@ -1026,6 +1050,7 @@ module Aws::OSIS
|
|
1026
1050
|
# resp.pipeline.tags #=> Array
|
1027
1051
|
# resp.pipeline.tags[0].key #=> String
|
1028
1052
|
# resp.pipeline.tags[0].value #=> String
|
1053
|
+
# resp.pipeline.pipeline_role_arn #=> String
|
1029
1054
|
#
|
1030
1055
|
# @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/StopPipeline AWS API Documentation
|
1031
1056
|
#
|
@@ -1136,6 +1161,16 @@ module Aws::OSIS
|
|
1136
1161
|
# Key-value pairs to configure encryption for data that is written to a
|
1137
1162
|
# persistent buffer.
|
1138
1163
|
#
|
1164
|
+
# @option params [String] :pipeline_role_arn
|
1165
|
+
# The Amazon Resource Name (ARN) of an IAM role that provides the
|
1166
|
+
# required permissions for a pipeline to read from the source and write
|
1167
|
+
# to the sink. For more information, see [Setting up roles and users in
|
1168
|
+
# Amazon OpenSearch Ingestion][1].
|
1169
|
+
#
|
1170
|
+
#
|
1171
|
+
#
|
1172
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/pipeline-security-overview.html
|
1173
|
+
#
|
1139
1174
|
# @return [Types::UpdatePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1140
1175
|
#
|
1141
1176
|
# * {Types::UpdatePipelineResponse#pipeline #pipeline} => Types::Pipeline
|
@@ -1159,6 +1194,7 @@ module Aws::OSIS
|
|
1159
1194
|
# encryption_at_rest_options: {
|
1160
1195
|
# kms_key_arn: "KmsKeyArn", # required
|
1161
1196
|
# },
|
1197
|
+
# pipeline_role_arn: "PipelineRoleArn",
|
1162
1198
|
# })
|
1163
1199
|
#
|
1164
1200
|
# @example Response structure
|
@@ -1198,6 +1234,7 @@ module Aws::OSIS
|
|
1198
1234
|
# resp.pipeline.tags #=> Array
|
1199
1235
|
# resp.pipeline.tags[0].key #=> String
|
1200
1236
|
# resp.pipeline.tags[0].value #=> String
|
1237
|
+
# resp.pipeline.pipeline_role_arn #=> String
|
1201
1238
|
#
|
1202
1239
|
# @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/UpdatePipeline AWS API Documentation
|
1203
1240
|
#
|
@@ -1266,7 +1303,7 @@ module Aws::OSIS
|
|
1266
1303
|
tracer: tracer
|
1267
1304
|
)
|
1268
1305
|
context[:gem_name] = 'aws-sdk-osis'
|
1269
|
-
context[:gem_version] = '1.
|
1306
|
+
context[:gem_version] = '1.35.0'
|
1270
1307
|
Seahorse::Client::Request.new(handlers, context)
|
1271
1308
|
end
|
1272
1309
|
|
@@ -64,6 +64,7 @@ module Aws::OSIS
|
|
64
64
|
PipelineDestination = Shapes::StructureShape.new(name: 'PipelineDestination')
|
65
65
|
PipelineDestinationList = Shapes::ListShape.new(name: 'PipelineDestinationList')
|
66
66
|
PipelineName = Shapes::StringShape.new(name: 'PipelineName')
|
67
|
+
PipelineRoleArn = Shapes::StringShape.new(name: 'PipelineRoleArn')
|
67
68
|
PipelineStatus = Shapes::StringShape.new(name: 'PipelineStatus')
|
68
69
|
PipelineStatusReason = Shapes::StructureShape.new(name: 'PipelineStatusReason')
|
69
70
|
PipelineSummary = Shapes::StructureShape.new(name: 'PipelineSummary')
|
@@ -141,6 +142,7 @@ module Aws::OSIS
|
|
141
142
|
CreatePipelineRequest.add_member(:buffer_options, Shapes::ShapeRef.new(shape: BufferOptions, location_name: "BufferOptions"))
|
142
143
|
CreatePipelineRequest.add_member(:encryption_at_rest_options, Shapes::ShapeRef.new(shape: EncryptionAtRestOptions, location_name: "EncryptionAtRestOptions"))
|
143
144
|
CreatePipelineRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
145
|
+
CreatePipelineRequest.add_member(:pipeline_role_arn, Shapes::ShapeRef.new(shape: PipelineRoleArn, location_name: "PipelineRoleArn"))
|
144
146
|
CreatePipelineRequest.struct_class = Types::CreatePipelineRequest
|
145
147
|
|
146
148
|
CreatePipelineResponse.add_member(:pipeline, Shapes::ShapeRef.new(shape: Pipeline, location_name: "Pipeline"))
|
@@ -225,6 +227,7 @@ module Aws::OSIS
|
|
225
227
|
Pipeline.add_member(:service_vpc_endpoints, Shapes::ShapeRef.new(shape: ServiceVpcEndpointsList, location_name: "ServiceVpcEndpoints"))
|
226
228
|
Pipeline.add_member(:destinations, Shapes::ShapeRef.new(shape: PipelineDestinationList, location_name: "Destinations"))
|
227
229
|
Pipeline.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
230
|
+
Pipeline.add_member(:pipeline_role_arn, Shapes::ShapeRef.new(shape: PipelineRoleArn, location_name: "PipelineRoleArn"))
|
228
231
|
Pipeline.struct_class = Types::Pipeline
|
229
232
|
|
230
233
|
PipelineBlueprint.add_member(:blueprint_name, Shapes::ShapeRef.new(shape: String, location_name: "BlueprintName"))
|
@@ -320,6 +323,7 @@ module Aws::OSIS
|
|
320
323
|
UpdatePipelineRequest.add_member(:log_publishing_options, Shapes::ShapeRef.new(shape: LogPublishingOptions, location_name: "LogPublishingOptions"))
|
321
324
|
UpdatePipelineRequest.add_member(:buffer_options, Shapes::ShapeRef.new(shape: BufferOptions, location_name: "BufferOptions"))
|
322
325
|
UpdatePipelineRequest.add_member(:encryption_at_rest_options, Shapes::ShapeRef.new(shape: EncryptionAtRestOptions, location_name: "EncryptionAtRestOptions"))
|
326
|
+
UpdatePipelineRequest.add_member(:pipeline_role_arn, Shapes::ShapeRef.new(shape: PipelineRoleArn, location_name: "PipelineRoleArn"))
|
323
327
|
UpdatePipelineRequest.struct_class = Types::UpdatePipelineRequest
|
324
328
|
|
325
329
|
UpdatePipelineResponse.add_member(:pipeline, Shapes::ShapeRef.new(shape: Pipeline, location_name: "Pipeline"))
|
data/lib/aws-sdk-osis/types.rb
CHANGED
@@ -165,6 +165,17 @@ module Aws::OSIS
|
|
165
165
|
# List of tags to add to the pipeline upon creation.
|
166
166
|
# @return [Array<Types::Tag>]
|
167
167
|
#
|
168
|
+
# @!attribute [rw] pipeline_role_arn
|
169
|
+
# The Amazon Resource Name (ARN) of an IAM role that provides the
|
170
|
+
# required permissions for a pipeline to read from the source and
|
171
|
+
# write to the sink. For more information, see [Setting up roles and
|
172
|
+
# users in Amazon OpenSearch Ingestion][1].
|
173
|
+
#
|
174
|
+
#
|
175
|
+
#
|
176
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/pipeline-security-overview.html
|
177
|
+
# @return [String]
|
178
|
+
#
|
168
179
|
# @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/CreatePipelineRequest AWS API Documentation
|
169
180
|
#
|
170
181
|
class CreatePipelineRequest < Struct.new(
|
@@ -176,7 +187,8 @@ module Aws::OSIS
|
|
176
187
|
:vpc_options,
|
177
188
|
:buffer_options,
|
178
189
|
:encryption_at_rest_options,
|
179
|
-
:tags
|
190
|
+
:tags,
|
191
|
+
:pipeline_role_arn)
|
180
192
|
SENSITIVE = []
|
181
193
|
include Aws::Structure
|
182
194
|
end
|
@@ -519,6 +531,12 @@ module Aws::OSIS
|
|
519
531
|
# A list of tags associated with the given pipeline.
|
520
532
|
# @return [Array<Types::Tag>]
|
521
533
|
#
|
534
|
+
# @!attribute [rw] pipeline_role_arn
|
535
|
+
# The Amazon Resource Name (ARN) of the IAM role that provides the
|
536
|
+
# required permissions for a pipeline to read from the source and
|
537
|
+
# write to the sink.
|
538
|
+
# @return [String]
|
539
|
+
#
|
522
540
|
# @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/Pipeline AWS API Documentation
|
523
541
|
#
|
524
542
|
class Pipeline < Struct.new(
|
@@ -539,7 +557,8 @@ module Aws::OSIS
|
|
539
557
|
:vpc_endpoint_service,
|
540
558
|
:service_vpc_endpoints,
|
541
559
|
:destinations,
|
542
|
-
:tags
|
560
|
+
:tags,
|
561
|
+
:pipeline_role_arn)
|
543
562
|
SENSITIVE = []
|
544
563
|
include Aws::Structure
|
545
564
|
end
|
@@ -886,6 +905,17 @@ module Aws::OSIS
|
|
886
905
|
# a persistent buffer.
|
887
906
|
# @return [Types::EncryptionAtRestOptions]
|
888
907
|
#
|
908
|
+
# @!attribute [rw] pipeline_role_arn
|
909
|
+
# The Amazon Resource Name (ARN) of an IAM role that provides the
|
910
|
+
# required permissions for a pipeline to read from the source and
|
911
|
+
# write to the sink. For more information, see [Setting up roles and
|
912
|
+
# users in Amazon OpenSearch Ingestion][1].
|
913
|
+
#
|
914
|
+
#
|
915
|
+
#
|
916
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/pipeline-security-overview.html
|
917
|
+
# @return [String]
|
918
|
+
#
|
889
919
|
# @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/UpdatePipelineRequest AWS API Documentation
|
890
920
|
#
|
891
921
|
class UpdatePipelineRequest < Struct.new(
|
@@ -895,7 +925,8 @@ module Aws::OSIS
|
|
895
925
|
:pipeline_configuration_body,
|
896
926
|
:log_publishing_options,
|
897
927
|
:buffer_options,
|
898
|
-
:encryption_at_rest_options
|
928
|
+
:encryption_at_rest_options,
|
929
|
+
:pipeline_role_arn)
|
899
930
|
SENSITIVE = []
|
900
931
|
include Aws::Structure
|
901
932
|
end
|
data/lib/aws-sdk-osis.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -113,7 +114,8 @@ module Aws
|
|
113
114
|
key: ::String,
|
114
115
|
value: ::String
|
115
116
|
},
|
116
|
-
]
|
117
|
+
],
|
118
|
+
?pipeline_role_arn: ::String
|
117
119
|
) -> _CreatePipelineResponseSuccess
|
118
120
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePipelineResponseSuccess
|
119
121
|
|
@@ -255,7 +257,8 @@ module Aws
|
|
255
257
|
},
|
256
258
|
?encryption_at_rest_options: {
|
257
259
|
kms_key_arn: ::String
|
258
|
-
}
|
260
|
+
},
|
261
|
+
?pipeline_role_arn: ::String
|
259
262
|
) -> _UpdatePipelineResponseSuccess
|
260
263
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePipelineResponseSuccess
|
261
264
|
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws::OSIS
|
|
50
50
|
attr_accessor buffer_options: Types::BufferOptions
|
51
51
|
attr_accessor encryption_at_rest_options: Types::EncryptionAtRestOptions
|
52
52
|
attr_accessor tags: ::Array[Types::Tag]
|
53
|
+
attr_accessor pipeline_role_arn: ::String
|
53
54
|
SENSITIVE: []
|
54
55
|
end
|
55
56
|
|
@@ -170,6 +171,7 @@ module Aws::OSIS
|
|
170
171
|
attr_accessor service_vpc_endpoints: ::Array[Types::ServiceVpcEndpoint]
|
171
172
|
attr_accessor destinations: ::Array[Types::PipelineDestination]
|
172
173
|
attr_accessor tags: ::Array[Types::Tag]
|
174
|
+
attr_accessor pipeline_role_arn: ::String
|
173
175
|
SENSITIVE: []
|
174
176
|
end
|
175
177
|
|
@@ -281,6 +283,7 @@ module Aws::OSIS
|
|
281
283
|
attr_accessor log_publishing_options: Types::LogPublishingOptions
|
282
284
|
attr_accessor buffer_options: Types::BufferOptions
|
283
285
|
attr_accessor encryption_at_rest_options: Types::EncryptionAtRestOptions
|
286
|
+
attr_accessor pipeline_role_arn: ::String
|
284
287
|
SENSITIVE: []
|
285
288
|
end
|
286
289
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-osis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.35.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|