aws-sdk-osis 1.34.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec8097aad74245d331f1e6e40e521f05e6d5b898e77939f75af9b9e27314dc3f
4
- data.tar.gz: 48b6fed4df5b9ade5f219e91b5cb1af21ceb3ebe15c01ec01dc3dfff0fc92cea
3
+ metadata.gz: 95777e4b1b560652302040bdd780c8cd6e9b63e554801fd7f43f52d921a983b4
4
+ data.tar.gz: dc52e52eb440d23c615b0a88309abe18aff9a2a237dfc6217a3a73a109de283a
5
5
  SHA512:
6
- metadata.gz: '0965c32746fbf5d8b4d10b6c632284a8e9612b5ac095506602285306beffa234527ca5a3a218b204dcc2e3251d6198ca54b3cd792fce129f7370e39203b93a54'
7
- data.tar.gz: 4f554172c4ab7ff3960f5e8ec71c8f0c1e9b3572ba0d8e72b1b5c2710aaa9af193e23d96afe3309d70034148084a8e011b6b86fdc4049282b571fb7e6f13a27e
6
+ metadata.gz: cd65f03ed01083d204d62e75268f9e034d322ec97a56b1eaec9e4025690f90b022d7cabe7eeadb30b593197dc1a107c132c92cd4a9405cc8af2f0a2b83dd596d
7
+ data.tar.gz: 7ce1b7105a683ea4d79aa93b048a501ea6e0c9fd11701cfe65337a9afd13ad8f72416dd6c57a4ba6ca2dc5eaf2eea0981107ddf08bfb35c666984cfb3fbf6e88
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.34.0 (2025-07-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.34.0
1
+ 1.35.0
@@ -521,6 +521,16 @@ module Aws::OSIS
521
521
  # @option params [Array<Types::Tag>] :tags
522
522
  # List of tags to add to the pipeline upon creation.
523
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
+ #
524
534
  # @return [Types::CreatePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
525
535
  #
526
536
  # * {Types::CreatePipelineResponse#pipeline #pipeline} => Types::Pipeline
@@ -559,6 +569,7 @@ module Aws::OSIS
559
569
  # value: "TagValue", # required
560
570
  # },
561
571
  # ],
572
+ # pipeline_role_arn: "PipelineRoleArn",
562
573
  # })
563
574
  #
564
575
  # @example Response structure
@@ -598,6 +609,7 @@ module Aws::OSIS
598
609
  # resp.pipeline.tags #=> Array
599
610
  # resp.pipeline.tags[0].key #=> String
600
611
  # resp.pipeline.tags[0].value #=> String
612
+ # resp.pipeline.pipeline_role_arn #=> String
601
613
  #
602
614
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/CreatePipeline AWS API Documentation
603
615
  #
@@ -687,6 +699,7 @@ module Aws::OSIS
687
699
  # resp.pipeline.tags #=> Array
688
700
  # resp.pipeline.tags[0].key #=> String
689
701
  # resp.pipeline.tags[0].value #=> String
702
+ # resp.pipeline.pipeline_role_arn #=> String
690
703
  #
691
704
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/GetPipeline AWS API Documentation
692
705
  #
@@ -969,6 +982,7 @@ module Aws::OSIS
969
982
  # resp.pipeline.tags #=> Array
970
983
  # resp.pipeline.tags[0].key #=> String
971
984
  # resp.pipeline.tags[0].value #=> String
985
+ # resp.pipeline.pipeline_role_arn #=> String
972
986
  #
973
987
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/StartPipeline AWS API Documentation
974
988
  #
@@ -1036,6 +1050,7 @@ module Aws::OSIS
1036
1050
  # resp.pipeline.tags #=> Array
1037
1051
  # resp.pipeline.tags[0].key #=> String
1038
1052
  # resp.pipeline.tags[0].value #=> String
1053
+ # resp.pipeline.pipeline_role_arn #=> String
1039
1054
  #
1040
1055
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/StopPipeline AWS API Documentation
1041
1056
  #
@@ -1146,6 +1161,16 @@ module Aws::OSIS
1146
1161
  # Key-value pairs to configure encryption for data that is written to a
1147
1162
  # persistent buffer.
1148
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
+ #
1149
1174
  # @return [Types::UpdatePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1150
1175
  #
1151
1176
  # * {Types::UpdatePipelineResponse#pipeline #pipeline} => Types::Pipeline
@@ -1169,6 +1194,7 @@ module Aws::OSIS
1169
1194
  # encryption_at_rest_options: {
1170
1195
  # kms_key_arn: "KmsKeyArn", # required
1171
1196
  # },
1197
+ # pipeline_role_arn: "PipelineRoleArn",
1172
1198
  # })
1173
1199
  #
1174
1200
  # @example Response structure
@@ -1208,6 +1234,7 @@ module Aws::OSIS
1208
1234
  # resp.pipeline.tags #=> Array
1209
1235
  # resp.pipeline.tags[0].key #=> String
1210
1236
  # resp.pipeline.tags[0].value #=> String
1237
+ # resp.pipeline.pipeline_role_arn #=> String
1211
1238
  #
1212
1239
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/UpdatePipeline AWS API Documentation
1213
1240
  #
@@ -1276,7 +1303,7 @@ module Aws::OSIS
1276
1303
  tracer: tracer
1277
1304
  )
1278
1305
  context[:gem_name] = 'aws-sdk-osis'
1279
- context[:gem_version] = '1.34.0'
1306
+ context[:gem_version] = '1.35.0'
1280
1307
  Seahorse::Client::Request.new(handlers, context)
1281
1308
  end
1282
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"))
@@ -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
@@ -54,7 +54,7 @@ module Aws::OSIS
54
54
  autoload :EndpointProvider, 'aws-sdk-osis/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-osis/endpoints'
56
56
 
57
- GEM_VERSION = '1.34.0'
57
+ GEM_VERSION = '1.35.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -114,7 +114,8 @@ module Aws
114
114
  key: ::String,
115
115
  value: ::String
116
116
  },
117
- ]
117
+ ],
118
+ ?pipeline_role_arn: ::String
118
119
  ) -> _CreatePipelineResponseSuccess
119
120
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePipelineResponseSuccess
120
121
 
@@ -256,7 +257,8 @@ module Aws
256
257
  },
257
258
  ?encryption_at_rest_options: {
258
259
  kms_key_arn: ::String
259
- }
260
+ },
261
+ ?pipeline_role_arn: ::String
260
262
  ) -> _UpdatePipelineResponseSuccess
261
263
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePipelineResponseSuccess
262
264
 
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.34.0
4
+ version: 1.35.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services