aws-sdk-osis 1.38.0 → 1.40.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.
@@ -121,6 +121,53 @@ module Aws::OSIS
121
121
  #
122
122
  class ConflictException < Aws::EmptyStructure; end
123
123
 
124
+ # @!attribute [rw] pipeline_arn
125
+ # The Amazon Resource Name (ARN) of the pipeline to create the
126
+ # endpoint for.
127
+ # @return [String]
128
+ #
129
+ # @!attribute [rw] vpc_options
130
+ # Container for the VPC configuration for the pipeline endpoint,
131
+ # including subnet IDs and security group IDs.
132
+ # @return [Types::PipelineEndpointVpcOptions]
133
+ #
134
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/CreatePipelineEndpointRequest AWS API Documentation
135
+ #
136
+ class CreatePipelineEndpointRequest < Struct.new(
137
+ :pipeline_arn,
138
+ :vpc_options)
139
+ SENSITIVE = []
140
+ include Aws::Structure
141
+ end
142
+
143
+ # @!attribute [rw] pipeline_arn
144
+ # The Amazon Resource Name (ARN) of the pipeline associated with the
145
+ # endpoint.
146
+ # @return [String]
147
+ #
148
+ # @!attribute [rw] endpoint_id
149
+ # The unique identifier of the pipeline endpoint.
150
+ # @return [String]
151
+ #
152
+ # @!attribute [rw] status
153
+ # The current status of the pipeline endpoint.
154
+ # @return [String]
155
+ #
156
+ # @!attribute [rw] vpc_id
157
+ # The ID of the VPC where the pipeline endpoint was created.
158
+ # @return [String]
159
+ #
160
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/CreatePipelineEndpointResponse AWS API Documentation
161
+ #
162
+ class CreatePipelineEndpointResponse < Struct.new(
163
+ :pipeline_arn,
164
+ :endpoint_id,
165
+ :status,
166
+ :vpc_id)
167
+ SENSITIVE = []
168
+ include Aws::Structure
169
+ end
170
+
124
171
  # @!attribute [rw] pipeline_name
125
172
  # The name of the OpenSearch Ingestion pipeline to create. Pipeline
126
173
  # names are unique across the pipelines owned by an account within an
@@ -166,14 +213,8 @@ module Aws::OSIS
166
213
  # @return [Array<Types::Tag>]
167
214
  #
168
215
  # @!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
216
+ # The Amazon Resource Name (ARN) of the IAM role that grants the
217
+ # pipeline permission to access Amazon Web Services resources.
177
218
  # @return [String]
178
219
  #
179
220
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/CreatePipelineRequest AWS API Documentation
@@ -205,6 +246,22 @@ module Aws::OSIS
205
246
  include Aws::Structure
206
247
  end
207
248
 
249
+ # @!attribute [rw] endpoint_id
250
+ # The unique identifier of the pipeline endpoint to delete.
251
+ # @return [String]
252
+ #
253
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/DeletePipelineEndpointRequest AWS API Documentation
254
+ #
255
+ class DeletePipelineEndpointRequest < Struct.new(
256
+ :endpoint_id)
257
+ SENSITIVE = []
258
+ include Aws::Structure
259
+ end
260
+
261
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/DeletePipelineEndpointResponse AWS API Documentation
262
+ #
263
+ class DeletePipelineEndpointResponse < Aws::EmptyStructure; end
264
+
208
265
  # @!attribute [rw] pipeline_name
209
266
  # The name of the pipeline to delete.
210
267
  # @return [String]
@@ -221,6 +278,23 @@ module Aws::OSIS
221
278
  #
222
279
  class DeletePipelineResponse < Aws::EmptyStructure; end
223
280
 
281
+ # @!attribute [rw] resource_arn
282
+ # The Amazon Resource Name (ARN) of the resource from which to delete
283
+ # the policy.
284
+ # @return [String]
285
+ #
286
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/DeleteResourcePolicyRequest AWS API Documentation
287
+ #
288
+ class DeleteResourcePolicyRequest < Struct.new(
289
+ :resource_arn)
290
+ SENSITIVE = []
291
+ include Aws::Structure
292
+ end
293
+
294
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/DeleteResourcePolicyResponse AWS API Documentation
295
+ #
296
+ class DeleteResourcePolicyResponse < Aws::EmptyStructure; end
297
+
224
298
  # Exception is thrown when an operation has been disabled.
225
299
  #
226
300
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/DisabledOperationException AWS API Documentation
@@ -324,6 +398,36 @@ module Aws::OSIS
324
398
  include Aws::Structure
325
399
  end
326
400
 
401
+ # @!attribute [rw] resource_arn
402
+ # The Amazon Resource Name (ARN) of the resource for which to retrieve
403
+ # the policy.
404
+ # @return [String]
405
+ #
406
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/GetResourcePolicyRequest AWS API Documentation
407
+ #
408
+ class GetResourcePolicyRequest < Struct.new(
409
+ :resource_arn)
410
+ SENSITIVE = []
411
+ include Aws::Structure
412
+ end
413
+
414
+ # @!attribute [rw] resource_arn
415
+ # The Amazon Resource Name (ARN) of the resource.
416
+ # @return [String]
417
+ #
418
+ # @!attribute [rw] policy
419
+ # The resource-based policy document in JSON format.
420
+ # @return [String]
421
+ #
422
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/GetResourcePolicyResponse AWS API Documentation
423
+ #
424
+ class GetResourcePolicyResponse < Struct.new(
425
+ :resource_arn,
426
+ :policy)
427
+ SENSITIVE = []
428
+ include Aws::Structure
429
+ end
430
+
327
431
  # The request failed because of an unknown error, exception, or failure
328
432
  # (the failure is internal to the service).
329
433
  #
@@ -361,6 +465,87 @@ module Aws::OSIS
361
465
  include Aws::Structure
362
466
  end
363
467
 
468
+ # @!attribute [rw] max_results
469
+ # The maximum number of pipeline endpoint connections to return in the
470
+ # response.
471
+ # @return [Integer]
472
+ #
473
+ # @!attribute [rw] next_token
474
+ # If your initial `ListPipelineEndpointConnections` operation returns
475
+ # a `nextToken`, you can include the returned `nextToken` in
476
+ # subsequent `ListPipelineEndpointConnections` operations, which
477
+ # returns results in the next page.
478
+ # @return [String]
479
+ #
480
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/ListPipelineEndpointConnectionsRequest AWS API Documentation
481
+ #
482
+ class ListPipelineEndpointConnectionsRequest < Struct.new(
483
+ :max_results,
484
+ :next_token)
485
+ SENSITIVE = []
486
+ include Aws::Structure
487
+ end
488
+
489
+ # @!attribute [rw] next_token
490
+ # When `nextToken` is returned, there are more results available. The
491
+ # value of `nextToken` is a unique pagination token for each page.
492
+ # Make the call again using the returned token to retrieve the next
493
+ # page.
494
+ # @return [String]
495
+ #
496
+ # @!attribute [rw] pipeline_endpoint_connections
497
+ # A list of pipeline endpoint connections.
498
+ # @return [Array<Types::PipelineEndpointConnection>]
499
+ #
500
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/ListPipelineEndpointConnectionsResponse AWS API Documentation
501
+ #
502
+ class ListPipelineEndpointConnectionsResponse < Struct.new(
503
+ :next_token,
504
+ :pipeline_endpoint_connections)
505
+ SENSITIVE = []
506
+ include Aws::Structure
507
+ end
508
+
509
+ # @!attribute [rw] max_results
510
+ # The maximum number of pipeline endpoints to return in the response.
511
+ # @return [Integer]
512
+ #
513
+ # @!attribute [rw] next_token
514
+ # If your initial `ListPipelineEndpoints` operation returns a
515
+ # `NextToken`, you can include the returned `NextToken` in subsequent
516
+ # `ListPipelineEndpoints` operations, which returns results in the
517
+ # next page.
518
+ # @return [String]
519
+ #
520
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/ListPipelineEndpointsRequest AWS API Documentation
521
+ #
522
+ class ListPipelineEndpointsRequest < Struct.new(
523
+ :max_results,
524
+ :next_token)
525
+ SENSITIVE = []
526
+ include Aws::Structure
527
+ end
528
+
529
+ # @!attribute [rw] next_token
530
+ # When `NextToken` is returned, there are more results available. The
531
+ # value of `NextToken` is a unique pagination token for each page.
532
+ # Make the call again using the returned token to retrieve the next
533
+ # page.
534
+ # @return [String]
535
+ #
536
+ # @!attribute [rw] pipeline_endpoints
537
+ # A list of pipeline endpoints.
538
+ # @return [Array<Types::PipelineEndpoint>]
539
+ #
540
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/ListPipelineEndpointsResponse AWS API Documentation
541
+ #
542
+ class ListPipelineEndpointsResponse < Struct.new(
543
+ :next_token,
544
+ :pipeline_endpoints)
545
+ SENSITIVE = []
546
+ include Aws::Structure
547
+ end
548
+
364
549
  # @!attribute [rw] max_results
365
550
  # An optional parameter that specifies the maximum number of results
366
551
  # to return. You can use `nextToken` to get the next page of results.
@@ -532,9 +717,8 @@ module Aws::OSIS
532
717
  # @return [Array<Types::Tag>]
533
718
  #
534
719
  # @!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.
720
+ # The Amazon Resource Name (ARN) of the IAM role that the pipeline
721
+ # uses to access AWS resources.
538
722
  # @return [String]
539
723
  #
540
724
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/Pipeline AWS API Documentation
@@ -655,6 +839,103 @@ module Aws::OSIS
655
839
  include Aws::Structure
656
840
  end
657
841
 
842
+ # Represents a VPC endpoint for an OpenSearch Ingestion pipeline,
843
+ # enabling private connectivity between your VPC and the pipeline.
844
+ #
845
+ # @!attribute [rw] pipeline_arn
846
+ # The Amazon Resource Name (ARN) of the pipeline associated with this
847
+ # endpoint.
848
+ # @return [String]
849
+ #
850
+ # @!attribute [rw] endpoint_id
851
+ # The unique identifier for the pipeline endpoint.
852
+ # @return [String]
853
+ #
854
+ # @!attribute [rw] status
855
+ # The current status of the pipeline endpoint.
856
+ # @return [String]
857
+ #
858
+ # @!attribute [rw] vpc_id
859
+ # The ID of the VPC where the pipeline endpoint is created.
860
+ # @return [String]
861
+ #
862
+ # @!attribute [rw] vpc_options
863
+ # Configuration options for the VPC endpoint, including subnet and
864
+ # security group settings.
865
+ # @return [Types::PipelineEndpointVpcOptions]
866
+ #
867
+ # @!attribute [rw] ingest_endpoint_url
868
+ # The URL used to ingest data to the pipeline through the VPC
869
+ # endpoint.
870
+ # @return [String]
871
+ #
872
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/PipelineEndpoint AWS API Documentation
873
+ #
874
+ class PipelineEndpoint < Struct.new(
875
+ :pipeline_arn,
876
+ :endpoint_id,
877
+ :status,
878
+ :vpc_id,
879
+ :vpc_options,
880
+ :ingest_endpoint_url)
881
+ SENSITIVE = []
882
+ include Aws::Structure
883
+ end
884
+
885
+ # Represents a connection to a pipeline endpoint, containing details
886
+ # about the endpoint association.
887
+ #
888
+ # @!attribute [rw] pipeline_arn
889
+ # The Amazon Resource Name (ARN) of the pipeline in the endpoint
890
+ # connection.
891
+ # @return [String]
892
+ #
893
+ # @!attribute [rw] endpoint_id
894
+ # The unique identifier of the endpoint in the connection.
895
+ # @return [String]
896
+ #
897
+ # @!attribute [rw] status
898
+ # The current status of the pipeline endpoint connection.
899
+ # @return [String]
900
+ #
901
+ # @!attribute [rw] vpc_endpoint_owner
902
+ # The Amazon Web Services account ID that owns the VPC endpoint used
903
+ # in this connection.
904
+ # @return [String]
905
+ #
906
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/PipelineEndpointConnection AWS API Documentation
907
+ #
908
+ class PipelineEndpointConnection < Struct.new(
909
+ :pipeline_arn,
910
+ :endpoint_id,
911
+ :status,
912
+ :vpc_endpoint_owner)
913
+ SENSITIVE = []
914
+ include Aws::Structure
915
+ end
916
+
917
+ # Configuration settings for the VPC endpoint, specifying network access
918
+ # controls.
919
+ #
920
+ # @!attribute [rw] subnet_ids
921
+ # A list of subnet IDs where the pipeline endpoint network interfaces
922
+ # are created.
923
+ # @return [Array<String>]
924
+ #
925
+ # @!attribute [rw] security_group_ids
926
+ # A list of security group IDs that control network access to the
927
+ # pipeline endpoint.
928
+ # @return [Array<String>]
929
+ #
930
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/PipelineEndpointVpcOptions AWS API Documentation
931
+ #
932
+ class PipelineEndpointVpcOptions < Struct.new(
933
+ :subnet_ids,
934
+ :security_group_ids)
935
+ SENSITIVE = []
936
+ include Aws::Structure
937
+ end
938
+
658
939
  # Information about a pipeline's current status.
659
940
  #
660
941
  # @!attribute [rw] description
@@ -728,6 +1009,42 @@ module Aws::OSIS
728
1009
  include Aws::Structure
729
1010
  end
730
1011
 
1012
+ # @!attribute [rw] resource_arn
1013
+ # The Amazon Resource Name (ARN) of the resource to attach the policy
1014
+ # to.
1015
+ # @return [String]
1016
+ #
1017
+ # @!attribute [rw] policy
1018
+ # The resource-based policy document in JSON format.
1019
+ # @return [String]
1020
+ #
1021
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/PutResourcePolicyRequest AWS API Documentation
1022
+ #
1023
+ class PutResourcePolicyRequest < Struct.new(
1024
+ :resource_arn,
1025
+ :policy)
1026
+ SENSITIVE = []
1027
+ include Aws::Structure
1028
+ end
1029
+
1030
+ # @!attribute [rw] resource_arn
1031
+ # The Amazon Resource Name (ARN) of the resource.
1032
+ # @return [String]
1033
+ #
1034
+ # @!attribute [rw] policy
1035
+ # The resource-based policy document that was attached to the
1036
+ # resource.
1037
+ # @return [String]
1038
+ #
1039
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/PutResourcePolicyResponse AWS API Documentation
1040
+ #
1041
+ class PutResourcePolicyResponse < Struct.new(
1042
+ :resource_arn,
1043
+ :policy)
1044
+ SENSITIVE = []
1045
+ include Aws::Structure
1046
+ end
1047
+
731
1048
  # You attempted to create a resource that already exists.
732
1049
  #
733
1050
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/ResourceAlreadyExistsException AWS API Documentation
@@ -740,6 +1057,37 @@ module Aws::OSIS
740
1057
  #
741
1058
  class ResourceNotFoundException < Aws::EmptyStructure; end
742
1059
 
1060
+ # @!attribute [rw] pipeline_arn
1061
+ # The Amazon Resource Name (ARN) of the pipeline from which to revoke
1062
+ # endpoint connections.
1063
+ # @return [String]
1064
+ #
1065
+ # @!attribute [rw] endpoint_ids
1066
+ # A list of endpoint IDs for which to revoke access to the pipeline.
1067
+ # @return [Array<String>]
1068
+ #
1069
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/RevokePipelineEndpointConnectionsRequest AWS API Documentation
1070
+ #
1071
+ class RevokePipelineEndpointConnectionsRequest < Struct.new(
1072
+ :pipeline_arn,
1073
+ :endpoint_ids)
1074
+ SENSITIVE = []
1075
+ include Aws::Structure
1076
+ end
1077
+
1078
+ # @!attribute [rw] pipeline_arn
1079
+ # The Amazon Resource Name (ARN) of the pipeline from which endpoint
1080
+ # connections were revoked.
1081
+ # @return [String]
1082
+ #
1083
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/RevokePipelineEndpointConnectionsResponse AWS API Documentation
1084
+ #
1085
+ class RevokePipelineEndpointConnectionsResponse < Struct.new(
1086
+ :pipeline_arn)
1087
+ SENSITIVE = []
1088
+ include Aws::Structure
1089
+ end
1090
+
743
1091
  # A container for information about VPC endpoints that were created to
744
1092
  # other services
745
1093
  #
@@ -906,14 +1254,8 @@ module Aws::OSIS
906
1254
  # @return [Types::EncryptionAtRestOptions]
907
1255
  #
908
1256
  # @!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
1257
+ # The Amazon Resource Name (ARN) of the IAM role that grants the
1258
+ # pipeline permission to access Amazon Web Services resources.
917
1259
  # @return [String]
918
1260
  #
919
1261
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/UpdatePipelineRequest AWS API Documentation
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.38.0'
57
+ GEM_VERSION = '1.40.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -119,6 +119,23 @@ module Aws
119
119
  ) -> _CreatePipelineResponseSuccess
120
120
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePipelineResponseSuccess
121
121
 
122
+ interface _CreatePipelineEndpointResponseSuccess
123
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePipelineEndpointResponse]
124
+ def pipeline_arn: () -> ::String
125
+ def endpoint_id: () -> ::String
126
+ def status: () -> ("CREATING" | "ACTIVE" | "CREATE_FAILED" | "DELETING" | "REVOKING" | "REVOKED")
127
+ def vpc_id: () -> ::String
128
+ end
129
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OSIS/Client.html#create_pipeline_endpoint-instance_method
130
+ def create_pipeline_endpoint: (
131
+ pipeline_arn: ::String,
132
+ vpc_options: {
133
+ subnet_ids: Array[::String]?,
134
+ security_group_ids: Array[::String]?
135
+ }
136
+ ) -> _CreatePipelineEndpointResponseSuccess
137
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePipelineEndpointResponseSuccess
138
+
122
139
  interface _DeletePipelineResponseSuccess
123
140
  include ::Seahorse::Client::_ResponseSuccess[Types::DeletePipelineResponse]
124
141
  end
@@ -128,6 +145,24 @@ module Aws
128
145
  ) -> _DeletePipelineResponseSuccess
129
146
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePipelineResponseSuccess
130
147
 
148
+ interface _DeletePipelineEndpointResponseSuccess
149
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePipelineEndpointResponse]
150
+ end
151
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OSIS/Client.html#delete_pipeline_endpoint-instance_method
152
+ def delete_pipeline_endpoint: (
153
+ endpoint_id: ::String
154
+ ) -> _DeletePipelineEndpointResponseSuccess
155
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePipelineEndpointResponseSuccess
156
+
157
+ interface _DeleteResourcePolicyResponseSuccess
158
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteResourcePolicyResponse]
159
+ end
160
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OSIS/Client.html#delete_resource_policy-instance_method
161
+ def delete_resource_policy: (
162
+ resource_arn: ::String
163
+ ) -> _DeleteResourcePolicyResponseSuccess
164
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteResourcePolicyResponseSuccess
165
+
131
166
  interface _GetPipelineResponseSuccess
132
167
  include ::Seahorse::Client::_ResponseSuccess[Types::GetPipelineResponse]
133
168
  def pipeline: () -> Types::Pipeline
@@ -160,6 +195,17 @@ module Aws
160
195
  ) -> _GetPipelineChangeProgressResponseSuccess
161
196
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPipelineChangeProgressResponseSuccess
162
197
 
198
+ interface _GetResourcePolicyResponseSuccess
199
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetResourcePolicyResponse]
200
+ def resource_arn: () -> ::String
201
+ def policy: () -> ::String
202
+ end
203
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OSIS/Client.html#get_resource_policy-instance_method
204
+ def get_resource_policy: (
205
+ resource_arn: ::String
206
+ ) -> _GetResourcePolicyResponseSuccess
207
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetResourcePolicyResponseSuccess
208
+
163
209
  interface _ListPipelineBlueprintsResponseSuccess
164
210
  include ::Seahorse::Client::_ResponseSuccess[Types::ListPipelineBlueprintsResponse]
165
211
  def blueprints: () -> ::Array[Types::PipelineBlueprintSummary]
@@ -169,6 +215,30 @@ module Aws
169
215
  ) -> _ListPipelineBlueprintsResponseSuccess
170
216
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPipelineBlueprintsResponseSuccess
171
217
 
218
+ interface _ListPipelineEndpointConnectionsResponseSuccess
219
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPipelineEndpointConnectionsResponse]
220
+ def next_token: () -> ::String
221
+ def pipeline_endpoint_connections: () -> ::Array[Types::PipelineEndpointConnection]
222
+ end
223
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OSIS/Client.html#list_pipeline_endpoint_connections-instance_method
224
+ def list_pipeline_endpoint_connections: (
225
+ ?max_results: ::Integer,
226
+ ?next_token: ::String
227
+ ) -> _ListPipelineEndpointConnectionsResponseSuccess
228
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPipelineEndpointConnectionsResponseSuccess
229
+
230
+ interface _ListPipelineEndpointsResponseSuccess
231
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPipelineEndpointsResponse]
232
+ def next_token: () -> ::String
233
+ def pipeline_endpoints: () -> ::Array[Types::PipelineEndpoint]
234
+ end
235
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OSIS/Client.html#list_pipeline_endpoints-instance_method
236
+ def list_pipeline_endpoints: (
237
+ ?max_results: ::Integer,
238
+ ?next_token: ::String
239
+ ) -> _ListPipelineEndpointsResponseSuccess
240
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPipelineEndpointsResponseSuccess
241
+
172
242
  interface _ListPipelinesResponseSuccess
173
243
  include ::Seahorse::Client::_ResponseSuccess[Types::ListPipelinesResponse]
174
244
  def next_token: () -> ::String
@@ -191,6 +261,29 @@ module Aws
191
261
  ) -> _ListTagsForResourceResponseSuccess
192
262
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
193
263
 
264
+ interface _PutResourcePolicyResponseSuccess
265
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutResourcePolicyResponse]
266
+ def resource_arn: () -> ::String
267
+ def policy: () -> ::String
268
+ end
269
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OSIS/Client.html#put_resource_policy-instance_method
270
+ def put_resource_policy: (
271
+ resource_arn: ::String,
272
+ policy: ::String
273
+ ) -> _PutResourcePolicyResponseSuccess
274
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutResourcePolicyResponseSuccess
275
+
276
+ interface _RevokePipelineEndpointConnectionsResponseSuccess
277
+ include ::Seahorse::Client::_ResponseSuccess[Types::RevokePipelineEndpointConnectionsResponse]
278
+ def pipeline_arn: () -> ::String
279
+ end
280
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OSIS/Client.html#revoke_pipeline_endpoint_connections-instance_method
281
+ def revoke_pipeline_endpoint_connections: (
282
+ pipeline_arn: ::String,
283
+ endpoint_ids: Array[::String]
284
+ ) -> _RevokePipelineEndpointConnectionsResponseSuccess
285
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RevokePipelineEndpointConnectionsResponseSuccess
286
+
194
287
  interface _StartPipelineResponseSuccess
195
288
  include ::Seahorse::Client::_ResponseSuccess[Types::StartPipelineResponse]
196
289
  def pipeline: () -> Types::Pipeline