aws-sdk-osis 1.14.0 → 1.15.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d215c77247ca3ccff36e0d2e992b68118edf7fa5becb9a1537f46778ea2a4f07
4
- data.tar.gz: cd8b3fa144109fdd7f0643070adf3652865f514ca461abc549406ad2b5508185
3
+ metadata.gz: 543ff10ce6938e68dc168273a796a266a6d7d065b89c03133dd8e66461393828
4
+ data.tar.gz: c4edfee3bcc09a231d45661c01e4302adf44a0cd64ae1e64584ac9d4bf20d5d7
5
5
  SHA512:
6
- metadata.gz: 3e00514a6f0b744760e1997c2dc3194367ca425bcb9aa63e1dcb0fd00315d0b44bcbaf6d47e884aa71410f38ad18461aa5d3856bfa2fe384214aa330c88432be
7
- data.tar.gz: 5834393e8d626c400019ece3aa921950fb463f7d52aa3b15bf5c238056a873ab74f08cfc27c9ff7b7e8e6179009ac1f42542a321364798b347c5a305bad359c1
6
+ metadata.gz: b59f4164912615fe42466b7e0801284e633814ef3368ff2e7a6f3a09f1e29e5ed53fe8cf45a0db39a368bfb620760f92733d2a5577be1be90f5b47ad1068178d
7
+ data.tar.gz: 242bbf457ae2bab82c9e28e93709d12b7cc5e375d86445998a2917e6086106fae18523318907196f75862aaad6666be88803f3949cd00b49f67c427f369e7414
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.15.0 (2024-05-20)
5
+ ------------------
6
+
7
+ * Feature - Add support for creating an OpenSearch Ingestion pipeline that is attached to a provided VPC. Add information about the destinations of an OpenSearch Ingestion pipeline to the GetPipeline and ListPipelines APIs.
8
+
4
9
  1.14.0 (2024-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.15.0
@@ -475,6 +475,10 @@ module Aws::OSIS
475
475
  # vpc_options: {
476
476
  # subnet_ids: ["SubnetId"], # required
477
477
  # security_group_ids: ["SecurityGroupId"],
478
+ # vpc_attachment_options: {
479
+ # attach_to_vpc: false, # required
480
+ # cidr_block: "CidrBlock",
481
+ # },
478
482
  # },
479
483
  # buffer_options: {
480
484
  # persistent_buffer_enabled: false, # required
@@ -512,11 +516,16 @@ module Aws::OSIS
512
516
  # resp.pipeline.vpc_endpoints[0].vpc_options.subnet_ids[0] #=> String
513
517
  # resp.pipeline.vpc_endpoints[0].vpc_options.security_group_ids #=> Array
514
518
  # resp.pipeline.vpc_endpoints[0].vpc_options.security_group_ids[0] #=> String
519
+ # resp.pipeline.vpc_endpoints[0].vpc_options.vpc_attachment_options.attach_to_vpc #=> Boolean
520
+ # resp.pipeline.vpc_endpoints[0].vpc_options.vpc_attachment_options.cidr_block #=> String
515
521
  # resp.pipeline.buffer_options.persistent_buffer_enabled #=> Boolean
516
522
  # resp.pipeline.encryption_at_rest_options.kms_key_arn #=> String
517
523
  # resp.pipeline.service_vpc_endpoints #=> Array
518
524
  # resp.pipeline.service_vpc_endpoints[0].service_name #=> String, one of "OPENSEARCH_SERVERLESS"
519
525
  # resp.pipeline.service_vpc_endpoints[0].vpc_endpoint_id #=> String
526
+ # resp.pipeline.destinations #=> Array
527
+ # resp.pipeline.destinations[0].service_name #=> String
528
+ # resp.pipeline.destinations[0].endpoint #=> String
520
529
  # resp.pipeline.tags #=> Array
521
530
  # resp.pipeline.tags[0].key #=> String
522
531
  # resp.pipeline.tags[0].value #=> String
@@ -560,7 +569,7 @@ module Aws::OSIS
560
569
  # Retrieves information about an OpenSearch Ingestion pipeline.
561
570
  #
562
571
  # @option params [required, String] :pipeline_name
563
- # The name of the pipeline to get information about.
572
+ # The name of the pipeline.
564
573
  #
565
574
  # @return [Types::GetPipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
566
575
  #
@@ -594,11 +603,16 @@ module Aws::OSIS
594
603
  # resp.pipeline.vpc_endpoints[0].vpc_options.subnet_ids[0] #=> String
595
604
  # resp.pipeline.vpc_endpoints[0].vpc_options.security_group_ids #=> Array
596
605
  # resp.pipeline.vpc_endpoints[0].vpc_options.security_group_ids[0] #=> String
606
+ # resp.pipeline.vpc_endpoints[0].vpc_options.vpc_attachment_options.attach_to_vpc #=> Boolean
607
+ # resp.pipeline.vpc_endpoints[0].vpc_options.vpc_attachment_options.cidr_block #=> String
597
608
  # resp.pipeline.buffer_options.persistent_buffer_enabled #=> Boolean
598
609
  # resp.pipeline.encryption_at_rest_options.kms_key_arn #=> String
599
610
  # resp.pipeline.service_vpc_endpoints #=> Array
600
611
  # resp.pipeline.service_vpc_endpoints[0].service_name #=> String, one of "OPENSEARCH_SERVERLESS"
601
612
  # resp.pipeline.service_vpc_endpoints[0].vpc_endpoint_id #=> String
613
+ # resp.pipeline.destinations #=> Array
614
+ # resp.pipeline.destinations[0].service_name #=> String
615
+ # resp.pipeline.destinations[0].endpoint #=> String
602
616
  # resp.pipeline.tags #=> Array
603
617
  # resp.pipeline.tags[0].key #=> String
604
618
  # resp.pipeline.tags[0].value #=> String
@@ -624,20 +638,30 @@ module Aws::OSIS
624
638
  # @option params [required, String] :blueprint_name
625
639
  # The name of the blueprint to retrieve.
626
640
  #
641
+ # @option params [String] :format
642
+ # The format format of the blueprint to retrieve.
643
+ #
627
644
  # @return [Types::GetPipelineBlueprintResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
628
645
  #
629
646
  # * {Types::GetPipelineBlueprintResponse#blueprint #blueprint} => Types::PipelineBlueprint
647
+ # * {Types::GetPipelineBlueprintResponse#format #format} => String
630
648
  #
631
649
  # @example Request syntax with placeholder values
632
650
  #
633
651
  # resp = client.get_pipeline_blueprint({
634
652
  # blueprint_name: "String", # required
653
+ # format: "BlueprintFormat",
635
654
  # })
636
655
  #
637
656
  # @example Response structure
638
657
  #
639
658
  # resp.blueprint.blueprint_name #=> String
640
659
  # resp.blueprint.pipeline_configuration_body #=> String
660
+ # resp.blueprint.display_name #=> String
661
+ # resp.blueprint.display_description #=> String
662
+ # resp.blueprint.service #=> String
663
+ # resp.blueprint.use_case #=> String
664
+ # resp.format #=> String
641
665
  #
642
666
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/GetPipelineBlueprint AWS API Documentation
643
667
  #
@@ -708,6 +732,10 @@ module Aws::OSIS
708
732
  #
709
733
  # resp.blueprints #=> Array
710
734
  # resp.blueprints[0].blueprint_name #=> String
735
+ # resp.blueprints[0].display_name #=> String
736
+ # resp.blueprints[0].display_description #=> String
737
+ # resp.blueprints[0].service #=> String
738
+ # resp.blueprints[0].use_case #=> String
711
739
  #
712
740
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/ListPipelineBlueprints AWS API Documentation
713
741
  #
@@ -761,6 +789,9 @@ module Aws::OSIS
761
789
  # resp.pipelines[0].max_units #=> Integer
762
790
  # resp.pipelines[0].created_at #=> Time
763
791
  # resp.pipelines[0].last_updated_at #=> Time
792
+ # resp.pipelines[0].destinations #=> Array
793
+ # resp.pipelines[0].destinations[0].service_name #=> String
794
+ # resp.pipelines[0].destinations[0].endpoint #=> String
764
795
  # resp.pipelines[0].tags #=> Array
765
796
  # resp.pipelines[0].tags[0].key #=> String
766
797
  # resp.pipelines[0].tags[0].value #=> String
@@ -852,11 +883,16 @@ module Aws::OSIS
852
883
  # resp.pipeline.vpc_endpoints[0].vpc_options.subnet_ids[0] #=> String
853
884
  # resp.pipeline.vpc_endpoints[0].vpc_options.security_group_ids #=> Array
854
885
  # resp.pipeline.vpc_endpoints[0].vpc_options.security_group_ids[0] #=> String
886
+ # resp.pipeline.vpc_endpoints[0].vpc_options.vpc_attachment_options.attach_to_vpc #=> Boolean
887
+ # resp.pipeline.vpc_endpoints[0].vpc_options.vpc_attachment_options.cidr_block #=> String
855
888
  # resp.pipeline.buffer_options.persistent_buffer_enabled #=> Boolean
856
889
  # resp.pipeline.encryption_at_rest_options.kms_key_arn #=> String
857
890
  # resp.pipeline.service_vpc_endpoints #=> Array
858
891
  # resp.pipeline.service_vpc_endpoints[0].service_name #=> String, one of "OPENSEARCH_SERVERLESS"
859
892
  # resp.pipeline.service_vpc_endpoints[0].vpc_endpoint_id #=> String
893
+ # resp.pipeline.destinations #=> Array
894
+ # resp.pipeline.destinations[0].service_name #=> String
895
+ # resp.pipeline.destinations[0].endpoint #=> String
860
896
  # resp.pipeline.tags #=> Array
861
897
  # resp.pipeline.tags[0].key #=> String
862
898
  # resp.pipeline.tags[0].value #=> String
@@ -912,11 +948,16 @@ module Aws::OSIS
912
948
  # resp.pipeline.vpc_endpoints[0].vpc_options.subnet_ids[0] #=> String
913
949
  # resp.pipeline.vpc_endpoints[0].vpc_options.security_group_ids #=> Array
914
950
  # resp.pipeline.vpc_endpoints[0].vpc_options.security_group_ids[0] #=> String
951
+ # resp.pipeline.vpc_endpoints[0].vpc_options.vpc_attachment_options.attach_to_vpc #=> Boolean
952
+ # resp.pipeline.vpc_endpoints[0].vpc_options.vpc_attachment_options.cidr_block #=> String
915
953
  # resp.pipeline.buffer_options.persistent_buffer_enabled #=> Boolean
916
954
  # resp.pipeline.encryption_at_rest_options.kms_key_arn #=> String
917
955
  # resp.pipeline.service_vpc_endpoints #=> Array
918
956
  # resp.pipeline.service_vpc_endpoints[0].service_name #=> String, one of "OPENSEARCH_SERVERLESS"
919
957
  # resp.pipeline.service_vpc_endpoints[0].vpc_endpoint_id #=> String
958
+ # resp.pipeline.destinations #=> Array
959
+ # resp.pipeline.destinations[0].service_name #=> String
960
+ # resp.pipeline.destinations[0].endpoint #=> String
920
961
  # resp.pipeline.tags #=> Array
921
962
  # resp.pipeline.tags[0].key #=> String
922
963
  # resp.pipeline.tags[0].value #=> String
@@ -1077,11 +1118,16 @@ module Aws::OSIS
1077
1118
  # resp.pipeline.vpc_endpoints[0].vpc_options.subnet_ids[0] #=> String
1078
1119
  # resp.pipeline.vpc_endpoints[0].vpc_options.security_group_ids #=> Array
1079
1120
  # resp.pipeline.vpc_endpoints[0].vpc_options.security_group_ids[0] #=> String
1121
+ # resp.pipeline.vpc_endpoints[0].vpc_options.vpc_attachment_options.attach_to_vpc #=> Boolean
1122
+ # resp.pipeline.vpc_endpoints[0].vpc_options.vpc_attachment_options.cidr_block #=> String
1080
1123
  # resp.pipeline.buffer_options.persistent_buffer_enabled #=> Boolean
1081
1124
  # resp.pipeline.encryption_at_rest_options.kms_key_arn #=> String
1082
1125
  # resp.pipeline.service_vpc_endpoints #=> Array
1083
1126
  # resp.pipeline.service_vpc_endpoints[0].service_name #=> String, one of "OPENSEARCH_SERVERLESS"
1084
1127
  # resp.pipeline.service_vpc_endpoints[0].vpc_endpoint_id #=> String
1128
+ # resp.pipeline.destinations #=> Array
1129
+ # resp.pipeline.destinations[0].service_name #=> String
1130
+ # resp.pipeline.destinations[0].endpoint #=> String
1085
1131
  # resp.pipeline.tags #=> Array
1086
1132
  # resp.pipeline.tags[0].key #=> String
1087
1133
  # resp.pipeline.tags[0].value #=> String
@@ -1148,7 +1194,7 @@ module Aws::OSIS
1148
1194
  params: params,
1149
1195
  config: config)
1150
1196
  context[:gem_name] = 'aws-sdk-osis'
1151
- context[:gem_version] = '1.14.0'
1197
+ context[:gem_version] = '1.15.0'
1152
1198
  Seahorse::Client::Request.new(handlers, context)
1153
1199
  end
1154
1200
 
@@ -14,6 +14,7 @@ module Aws::OSIS
14
14
  include Seahorse::Model
15
15
 
16
16
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
17
+ BlueprintFormat = Shapes::StringShape.new(name: 'BlueprintFormat')
17
18
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
18
19
  BufferOptions = Shapes::StructureShape.new(name: 'BufferOptions')
19
20
  ChangeProgressStage = Shapes::StructureShape.new(name: 'ChangeProgressStage')
@@ -22,12 +23,14 @@ module Aws::OSIS
22
23
  ChangeProgressStatus = Shapes::StructureShape.new(name: 'ChangeProgressStatus')
23
24
  ChangeProgressStatusList = Shapes::ListShape.new(name: 'ChangeProgressStatusList')
24
25
  ChangeProgressStatuses = Shapes::StringShape.new(name: 'ChangeProgressStatuses')
26
+ CidrBlock = Shapes::StringShape.new(name: 'CidrBlock')
25
27
  CloudWatchLogDestination = Shapes::StructureShape.new(name: 'CloudWatchLogDestination')
26
28
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
27
29
  CreatePipelineRequest = Shapes::StructureShape.new(name: 'CreatePipelineRequest')
28
30
  CreatePipelineResponse = Shapes::StructureShape.new(name: 'CreatePipelineResponse')
29
31
  DeletePipelineRequest = Shapes::StructureShape.new(name: 'DeletePipelineRequest')
30
32
  DeletePipelineResponse = Shapes::StructureShape.new(name: 'DeletePipelineResponse')
33
+ DisabledOperationException = Shapes::StructureShape.new(name: 'DisabledOperationException')
31
34
  EncryptionAtRestOptions = Shapes::StructureShape.new(name: 'EncryptionAtRestOptions')
32
35
  GetPipelineBlueprintRequest = Shapes::StructureShape.new(name: 'GetPipelineBlueprintRequest')
33
36
  GetPipelineBlueprintResponse = Shapes::StructureShape.new(name: 'GetPipelineBlueprintResponse')
@@ -57,6 +60,8 @@ module Aws::OSIS
57
60
  PipelineBlueprintSummary = Shapes::StructureShape.new(name: 'PipelineBlueprintSummary')
58
61
  PipelineBlueprintsSummaryList = Shapes::ListShape.new(name: 'PipelineBlueprintsSummaryList')
59
62
  PipelineConfigurationBody = Shapes::StringShape.new(name: 'PipelineConfigurationBody')
63
+ PipelineDestination = Shapes::StructureShape.new(name: 'PipelineDestination')
64
+ PipelineDestinationList = Shapes::ListShape.new(name: 'PipelineDestinationList')
60
65
  PipelineName = Shapes::StringShape.new(name: 'PipelineName')
61
66
  PipelineStatus = Shapes::StringShape.new(name: 'PipelineStatus')
62
67
  PipelineStatusReason = Shapes::StructureShape.new(name: 'PipelineStatusReason')
@@ -93,6 +98,7 @@ module Aws::OSIS
93
98
  ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
94
99
  ValidationMessage = Shapes::StructureShape.new(name: 'ValidationMessage')
95
100
  ValidationMessageList = Shapes::ListShape.new(name: 'ValidationMessageList')
101
+ VpcAttachmentOptions = Shapes::StructureShape.new(name: 'VpcAttachmentOptions')
96
102
  VpcEndpoint = Shapes::StructureShape.new(name: 'VpcEndpoint')
97
103
  VpcEndpointServiceName = Shapes::StringShape.new(name: 'VpcEndpointServiceName')
98
104
  VpcEndpointsList = Shapes::ListShape.new(name: 'VpcEndpointsList')
@@ -143,13 +149,17 @@ module Aws::OSIS
143
149
 
144
150
  DeletePipelineResponse.struct_class = Types::DeletePipelineResponse
145
151
 
152
+ DisabledOperationException.struct_class = Types::DisabledOperationException
153
+
146
154
  EncryptionAtRestOptions.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, required: true, location_name: "KmsKeyArn"))
147
155
  EncryptionAtRestOptions.struct_class = Types::EncryptionAtRestOptions
148
156
 
149
157
  GetPipelineBlueprintRequest.add_member(:blueprint_name, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "BlueprintName"))
158
+ GetPipelineBlueprintRequest.add_member(:format, Shapes::ShapeRef.new(shape: BlueprintFormat, location: "querystring", location_name: "format"))
150
159
  GetPipelineBlueprintRequest.struct_class = Types::GetPipelineBlueprintRequest
151
160
 
152
161
  GetPipelineBlueprintResponse.add_member(:blueprint, Shapes::ShapeRef.new(shape: PipelineBlueprint, location_name: "Blueprint"))
162
+ GetPipelineBlueprintResponse.add_member(:format, Shapes::ShapeRef.new(shape: String, location_name: "Format"))
153
163
  GetPipelineBlueprintResponse.struct_class = Types::GetPipelineBlueprintResponse
154
164
 
155
165
  GetPipelineChangeProgressRequest.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: PipelineName, required: true, location: "uri", location_name: "PipelineName"))
@@ -210,18 +220,33 @@ module Aws::OSIS
210
220
  Pipeline.add_member(:buffer_options, Shapes::ShapeRef.new(shape: BufferOptions, location_name: "BufferOptions"))
211
221
  Pipeline.add_member(:encryption_at_rest_options, Shapes::ShapeRef.new(shape: EncryptionAtRestOptions, location_name: "EncryptionAtRestOptions"))
212
222
  Pipeline.add_member(:service_vpc_endpoints, Shapes::ShapeRef.new(shape: ServiceVpcEndpointsList, location_name: "ServiceVpcEndpoints"))
223
+ Pipeline.add_member(:destinations, Shapes::ShapeRef.new(shape: PipelineDestinationList, location_name: "Destinations"))
213
224
  Pipeline.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
214
225
  Pipeline.struct_class = Types::Pipeline
215
226
 
216
227
  PipelineBlueprint.add_member(:blueprint_name, Shapes::ShapeRef.new(shape: String, location_name: "BlueprintName"))
217
228
  PipelineBlueprint.add_member(:pipeline_configuration_body, Shapes::ShapeRef.new(shape: String, location_name: "PipelineConfigurationBody"))
229
+ PipelineBlueprint.add_member(:display_name, Shapes::ShapeRef.new(shape: String, location_name: "DisplayName"))
230
+ PipelineBlueprint.add_member(:display_description, Shapes::ShapeRef.new(shape: String, location_name: "DisplayDescription"))
231
+ PipelineBlueprint.add_member(:service, Shapes::ShapeRef.new(shape: String, location_name: "Service"))
232
+ PipelineBlueprint.add_member(:use_case, Shapes::ShapeRef.new(shape: String, location_name: "UseCase"))
218
233
  PipelineBlueprint.struct_class = Types::PipelineBlueprint
219
234
 
220
235
  PipelineBlueprintSummary.add_member(:blueprint_name, Shapes::ShapeRef.new(shape: String, location_name: "BlueprintName"))
236
+ PipelineBlueprintSummary.add_member(:display_name, Shapes::ShapeRef.new(shape: String, location_name: "DisplayName"))
237
+ PipelineBlueprintSummary.add_member(:display_description, Shapes::ShapeRef.new(shape: String, location_name: "DisplayDescription"))
238
+ PipelineBlueprintSummary.add_member(:service, Shapes::ShapeRef.new(shape: String, location_name: "Service"))
239
+ PipelineBlueprintSummary.add_member(:use_case, Shapes::ShapeRef.new(shape: String, location_name: "UseCase"))
221
240
  PipelineBlueprintSummary.struct_class = Types::PipelineBlueprintSummary
222
241
 
223
242
  PipelineBlueprintsSummaryList.member = Shapes::ShapeRef.new(shape: PipelineBlueprintSummary)
224
243
 
244
+ PipelineDestination.add_member(:service_name, Shapes::ShapeRef.new(shape: String, location_name: "ServiceName"))
245
+ PipelineDestination.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "Endpoint"))
246
+ PipelineDestination.struct_class = Types::PipelineDestination
247
+
248
+ PipelineDestinationList.member = Shapes::ShapeRef.new(shape: PipelineDestination)
249
+
225
250
  PipelineStatusReason.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
226
251
  PipelineStatusReason.struct_class = Types::PipelineStatusReason
227
252
 
@@ -233,6 +258,7 @@ module Aws::OSIS
233
258
  PipelineSummary.add_member(:max_units, Shapes::ShapeRef.new(shape: PipelineUnits, location_name: "MaxUnits"))
234
259
  PipelineSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
235
260
  PipelineSummary.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedAt"))
261
+ PipelineSummary.add_member(:destinations, Shapes::ShapeRef.new(shape: PipelineDestinationList, location_name: "Destinations"))
236
262
  PipelineSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
237
263
  PipelineSummary.struct_class = Types::PipelineSummary
238
264
 
@@ -310,6 +336,10 @@ module Aws::OSIS
310
336
 
311
337
  ValidationMessageList.member = Shapes::ShapeRef.new(shape: ValidationMessage)
312
338
 
339
+ VpcAttachmentOptions.add_member(:attach_to_vpc, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "AttachToVpc"))
340
+ VpcAttachmentOptions.add_member(:cidr_block, Shapes::ShapeRef.new(shape: CidrBlock, location_name: "CidrBlock"))
341
+ VpcAttachmentOptions.struct_class = Types::VpcAttachmentOptions
342
+
313
343
  VpcEndpoint.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcEndpointId"))
314
344
  VpcEndpoint.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
315
345
  VpcEndpoint.add_member(:vpc_options, Shapes::ShapeRef.new(shape: VpcOptions, location_name: "VpcOptions"))
@@ -319,6 +349,7 @@ module Aws::OSIS
319
349
 
320
350
  VpcOptions.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, required: true, location_name: "SubnetIds"))
321
351
  VpcOptions.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
352
+ VpcOptions.add_member(:vpc_attachment_options, Shapes::ShapeRef.new(shape: VpcAttachmentOptions, location_name: "VpcAttachmentOptions"))
322
353
  VpcOptions.struct_class = Types::VpcOptions
323
354
 
324
355
 
@@ -331,6 +362,7 @@ module Aws::OSIS
331
362
  "apiVersion" => "2022-01-01",
332
363
  "endpointPrefix" => "osis",
333
364
  "protocol" => "rest-json",
365
+ "protocols" => ["rest-json"],
334
366
  "serviceFullName" => "Amazon OpenSearch Ingestion",
335
367
  "serviceId" => "OSIS",
336
368
  "signatureVersion" => "v4",
@@ -343,6 +375,7 @@ module Aws::OSIS
343
375
  o.http_request_uri = "/2022-01-01/osis/createPipeline"
344
376
  o.input = Shapes::ShapeRef.new(shape: CreatePipelineRequest)
345
377
  o.output = Shapes::ShapeRef.new(shape: CreatePipelineResponse)
378
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
346
379
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
347
380
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
348
381
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
@@ -357,6 +390,7 @@ module Aws::OSIS
357
390
  o.http_request_uri = "/2022-01-01/osis/deletePipeline/{PipelineName}"
358
391
  o.input = Shapes::ShapeRef.new(shape: DeletePipelineRequest)
359
392
  o.output = Shapes::ShapeRef.new(shape: DeletePipelineResponse)
393
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
360
394
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
361
395
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
362
396
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -370,6 +404,7 @@ module Aws::OSIS
370
404
  o.http_request_uri = "/2022-01-01/osis/getPipeline/{PipelineName}"
371
405
  o.input = Shapes::ShapeRef.new(shape: GetPipelineRequest)
372
406
  o.output = Shapes::ShapeRef.new(shape: GetPipelineResponse)
407
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
373
408
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
374
409
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
375
410
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -382,6 +417,7 @@ module Aws::OSIS
382
417
  o.http_request_uri = "/2022-01-01/osis/getPipelineBlueprint/{BlueprintName}"
383
418
  o.input = Shapes::ShapeRef.new(shape: GetPipelineBlueprintRequest)
384
419
  o.output = Shapes::ShapeRef.new(shape: GetPipelineBlueprintResponse)
420
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
385
421
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
386
422
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
387
423
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -394,6 +430,7 @@ module Aws::OSIS
394
430
  o.http_request_uri = "/2022-01-01/osis/getPipelineChangeProgress/{PipelineName}"
395
431
  o.input = Shapes::ShapeRef.new(shape: GetPipelineChangeProgressRequest)
396
432
  o.output = Shapes::ShapeRef.new(shape: GetPipelineChangeProgressResponse)
433
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
397
434
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
398
435
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
399
436
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -406,6 +443,7 @@ module Aws::OSIS
406
443
  o.http_request_uri = "/2022-01-01/osis/listPipelineBlueprints"
407
444
  o.input = Shapes::ShapeRef.new(shape: ListPipelineBlueprintsRequest)
408
445
  o.output = Shapes::ShapeRef.new(shape: ListPipelineBlueprintsResponse)
446
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
409
447
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
410
448
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
411
449
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -418,6 +456,7 @@ module Aws::OSIS
418
456
  o.http_request_uri = "/2022-01-01/osis/listPipelines"
419
457
  o.input = Shapes::ShapeRef.new(shape: ListPipelinesRequest)
420
458
  o.output = Shapes::ShapeRef.new(shape: ListPipelinesResponse)
459
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
421
460
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
422
461
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
423
462
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -436,6 +475,7 @@ module Aws::OSIS
436
475
  o.http_request_uri = "/2022-01-01/osis/listTagsForResource/"
437
476
  o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
438
477
  o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
478
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
439
479
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
440
480
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
441
481
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
@@ -448,6 +488,7 @@ module Aws::OSIS
448
488
  o.http_request_uri = "/2022-01-01/osis/startPipeline/{PipelineName}"
449
489
  o.input = Shapes::ShapeRef.new(shape: StartPipelineRequest)
450
490
  o.output = Shapes::ShapeRef.new(shape: StartPipelineResponse)
491
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
451
492
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
452
493
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
453
494
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
@@ -461,6 +502,7 @@ module Aws::OSIS
461
502
  o.http_request_uri = "/2022-01-01/osis/stopPipeline/{PipelineName}"
462
503
  o.input = Shapes::ShapeRef.new(shape: StopPipelineRequest)
463
504
  o.output = Shapes::ShapeRef.new(shape: StopPipelineResponse)
505
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
464
506
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
465
507
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
466
508
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
@@ -474,6 +516,7 @@ module Aws::OSIS
474
516
  o.http_request_uri = "/2022-01-01/osis/tagResource/"
475
517
  o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
476
518
  o.output = Shapes::ShapeRef.new(shape: TagResourceResponse)
519
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
477
520
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
478
521
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
479
522
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
@@ -487,6 +530,7 @@ module Aws::OSIS
487
530
  o.http_request_uri = "/2022-01-01/osis/untagResource/"
488
531
  o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
489
532
  o.output = Shapes::ShapeRef.new(shape: UntagResourceResponse)
533
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
490
534
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
491
535
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
492
536
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
@@ -499,6 +543,7 @@ module Aws::OSIS
499
543
  o.http_request_uri = "/2022-01-01/osis/updatePipeline/{PipelineName}"
500
544
  o.input = Shapes::ShapeRef.new(shape: UpdatePipelineRequest)
501
545
  o.output = Shapes::ShapeRef.new(shape: UpdatePipelineResponse)
546
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
502
547
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
503
548
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
504
549
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -512,6 +557,7 @@ module Aws::OSIS
512
557
  o.http_request_uri = "/2022-01-01/osis/validatePipeline"
513
558
  o.input = Shapes::ShapeRef.new(shape: ValidatePipelineRequest)
514
559
  o.output = Shapes::ShapeRef.new(shape: ValidatePipelineResponse)
560
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
515
561
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
516
562
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
517
563
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -29,6 +29,7 @@ module Aws::OSIS
29
29
  # ## Error Classes
30
30
  # * {AccessDeniedException}
31
31
  # * {ConflictException}
32
+ # * {DisabledOperationException}
32
33
  # * {InternalException}
33
34
  # * {InvalidPaginationTokenException}
34
35
  # * {LimitExceededException}
@@ -62,6 +63,16 @@ module Aws::OSIS
62
63
  end
63
64
  end
64
65
 
66
+ class DisabledOperationException < ServiceError
67
+
68
+ # @param [Seahorse::Client::RequestContext] context
69
+ # @param [String] message
70
+ # @param [Aws::OSIS::Types::DisabledOperationException] data
71
+ def initialize(context, message, data = Aws::EmptyStructure.new)
72
+ super(context, message, data)
73
+ end
74
+ end
75
+
65
76
  class InternalException < ServiceError
66
77
 
67
78
  # @param [Seahorse::Client::RequestContext] context
@@ -18,7 +18,12 @@ module Aws::OSIS
18
18
 
19
19
  # Options that specify the configuration of a persistent buffer. To
20
20
  # configure how OpenSearch Ingestion encrypts this data, set the
21
- # EncryptionAtRestOptions.
21
+ # `EncryptionAtRestOptions`. For more information, see [Persistent
22
+ # buffering][1].
23
+ #
24
+ #
25
+ #
26
+ # [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/osis-features-overview.html#persistent-buffering
22
27
  #
23
28
  # @!attribute [rw] persistent_buffer_enabled
24
29
  # Whether persistent buffering should be enabled.
@@ -99,7 +104,7 @@ module Aws::OSIS
99
104
  # @!attribute [rw] log_group
100
105
  # The name of the CloudWatch Logs group to send pipeline logs to. You
101
106
  # can specify an existing log group or create a new one. For example,
102
- # `/aws/OpenSearchService/IngestionService/my-pipeline`.
107
+ # `/aws/vendedlogs/OpenSearchService/pipelines`.
103
108
  # @return [String]
104
109
  #
105
110
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/CloudWatchLogDestination AWS API Documentation
@@ -204,11 +209,17 @@ module Aws::OSIS
204
209
  #
205
210
  class DeletePipelineResponse < Aws::EmptyStructure; end
206
211
 
207
- # Options to control how OpenSearch encrypts all data-at-rest.
212
+ # Exception is thrown when an operation has been disabled.
213
+ #
214
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/DisabledOperationException AWS API Documentation
215
+ #
216
+ class DisabledOperationException < Aws::EmptyStructure; end
217
+
218
+ # Options to control how OpenSearch encrypts buffer data.
208
219
  #
209
220
  # @!attribute [rw] kms_key_arn
210
- # The ARN of the KMS key used to encrypt data-at-rest in OpenSearch
211
- # Ingestion. By default, data is encrypted using an AWS owned key.
221
+ # The ARN of the KMS key used to encrypt buffer data. By default, data
222
+ # is encrypted using an Amazon Web Services owned key.
212
223
  # @return [String]
213
224
  #
214
225
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/EncryptionAtRestOptions AWS API Documentation
@@ -223,10 +234,15 @@ module Aws::OSIS
223
234
  # The name of the blueprint to retrieve.
224
235
  # @return [String]
225
236
  #
237
+ # @!attribute [rw] format
238
+ # The format format of the blueprint to retrieve.
239
+ # @return [String]
240
+ #
226
241
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/GetPipelineBlueprintRequest AWS API Documentation
227
242
  #
228
243
  class GetPipelineBlueprintRequest < Struct.new(
229
- :blueprint_name)
244
+ :blueprint_name,
245
+ :format)
230
246
  SENSITIVE = []
231
247
  include Aws::Structure
232
248
  end
@@ -235,10 +251,15 @@ module Aws::OSIS
235
251
  # The requested blueprint in YAML format.
236
252
  # @return [Types::PipelineBlueprint]
237
253
  #
254
+ # @!attribute [rw] format
255
+ # The format of the blueprint.
256
+ # @return [String]
257
+ #
238
258
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/GetPipelineBlueprintResponse AWS API Documentation
239
259
  #
240
260
  class GetPipelineBlueprintResponse < Struct.new(
241
- :blueprint)
261
+ :blueprint,
262
+ :format)
242
263
  SENSITIVE = []
243
264
  include Aws::Structure
244
265
  end
@@ -268,7 +289,7 @@ module Aws::OSIS
268
289
  end
269
290
 
270
291
  # @!attribute [rw] pipeline_name
271
- # The name of the pipeline to get information about.
292
+ # The name of the pipeline.
272
293
  # @return [String]
273
294
  #
274
295
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/GetPipelineRequest AWS API Documentation
@@ -469,18 +490,27 @@ module Aws::OSIS
469
490
  # @!attribute [rw] buffer_options
470
491
  # Options that specify the configuration of a persistent buffer. To
471
492
  # configure how OpenSearch Ingestion encrypts this data, set the
472
- # EncryptionAtRestOptions.
493
+ # `EncryptionAtRestOptions`. For more information, see [Persistent
494
+ # buffering][1].
495
+ #
496
+ #
497
+ #
498
+ # [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/osis-features-overview.html#persistent-buffering
473
499
  # @return [Types::BufferOptions]
474
500
  #
475
501
  # @!attribute [rw] encryption_at_rest_options
476
- # Options to control how OpenSearch encrypts all data-at-rest.
502
+ # Options to control how OpenSearch encrypts buffer data.
477
503
  # @return [Types::EncryptionAtRestOptions]
478
504
  #
479
505
  # @!attribute [rw] service_vpc_endpoints
480
506
  # A list of VPC endpoints that OpenSearch Ingestion has created to
481
- # other AWS services.
507
+ # other Amazon Web Services services.
482
508
  # @return [Array<Types::ServiceVpcEndpoint>]
483
509
  #
510
+ # @!attribute [rw] destinations
511
+ # Destinations to which the pipeline writes data.
512
+ # @return [Array<Types::PipelineDestination>]
513
+ #
484
514
  # @!attribute [rw] tags
485
515
  # A list of tags associated with the given pipeline.
486
516
  # @return [Array<Types::Tag>]
@@ -503,6 +533,7 @@ module Aws::OSIS
503
533
  :buffer_options,
504
534
  :encryption_at_rest_options,
505
535
  :service_vpc_endpoints,
536
+ :destinations,
506
537
  :tags)
507
538
  SENSITIVE = []
508
539
  include Aws::Structure
@@ -518,11 +549,31 @@ module Aws::OSIS
518
549
  # The YAML configuration of the blueprint.
519
550
  # @return [String]
520
551
  #
552
+ # @!attribute [rw] display_name
553
+ # The display name of the blueprint.
554
+ # @return [String]
555
+ #
556
+ # @!attribute [rw] display_description
557
+ # A description of the blueprint.
558
+ # @return [String]
559
+ #
560
+ # @!attribute [rw] service
561
+ # The name of the service that the blueprint is associated with.
562
+ # @return [String]
563
+ #
564
+ # @!attribute [rw] use_case
565
+ # The use case that the blueprint relates to.
566
+ # @return [String]
567
+ #
521
568
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/PipelineBlueprint AWS API Documentation
522
569
  #
523
570
  class PipelineBlueprint < Struct.new(
524
571
  :blueprint_name,
525
- :pipeline_configuration_body)
572
+ :pipeline_configuration_body,
573
+ :display_name,
574
+ :display_description,
575
+ :service,
576
+ :use_case)
526
577
  SENSITIVE = []
527
578
  include Aws::Structure
528
579
  end
@@ -533,10 +584,49 @@ module Aws::OSIS
533
584
  # The name of the blueprint.
534
585
  # @return [String]
535
586
  #
587
+ # @!attribute [rw] display_name
588
+ # The display name of the blueprint.
589
+ # @return [String]
590
+ #
591
+ # @!attribute [rw] display_description
592
+ # A description of the blueprint.
593
+ # @return [String]
594
+ #
595
+ # @!attribute [rw] service
596
+ # The name of the service that the blueprint is associated with.
597
+ # @return [String]
598
+ #
599
+ # @!attribute [rw] use_case
600
+ # The use case that the blueprint relates to.
601
+ # @return [String]
602
+ #
536
603
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/PipelineBlueprintSummary AWS API Documentation
537
604
  #
538
605
  class PipelineBlueprintSummary < Struct.new(
539
- :blueprint_name)
606
+ :blueprint_name,
607
+ :display_name,
608
+ :display_description,
609
+ :service,
610
+ :use_case)
611
+ SENSITIVE = []
612
+ include Aws::Structure
613
+ end
614
+
615
+ # An object representing the destination of a pipeline.
616
+ #
617
+ # @!attribute [rw] service_name
618
+ # The name of the service receiving data from the pipeline.
619
+ # @return [String]
620
+ #
621
+ # @!attribute [rw] endpoint
622
+ # The endpoint receiving data from the pipeline.
623
+ # @return [String]
624
+ #
625
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/PipelineDestination AWS API Documentation
626
+ #
627
+ class PipelineDestination < Struct.new(
628
+ :service_name,
629
+ :endpoint)
540
630
  SENSITIVE = []
541
631
  include Aws::Structure
542
632
  end
@@ -589,6 +679,10 @@ module Aws::OSIS
589
679
  # The date and time when the pipeline was last updated.
590
680
  # @return [Time]
591
681
  #
682
+ # @!attribute [rw] destinations
683
+ # A list of destinations to which the pipeline writes data.
684
+ # @return [Array<Types::PipelineDestination>]
685
+ #
592
686
  # @!attribute [rw] tags
593
687
  # A list of tags associated with the given pipeline.
594
688
  # @return [Array<Types::Tag>]
@@ -604,6 +698,7 @@ module Aws::OSIS
604
698
  :max_units,
605
699
  :created_at,
606
700
  :last_updated_at,
701
+ :destinations,
607
702
  :tags)
608
703
  SENSITIVE = []
609
704
  include Aws::Structure
@@ -629,7 +724,7 @@ module Aws::OSIS
629
724
  # @return [String]
630
725
  #
631
726
  # @!attribute [rw] vpc_endpoint_id
632
- # The ID of the VPC endpoint that was created.
727
+ # The unique identifier of the VPC endpoint that was created.
633
728
  # @return [String]
634
729
  #
635
730
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/ServiceVpcEndpoint AWS API Documentation
@@ -866,6 +961,26 @@ module Aws::OSIS
866
961
  include Aws::Structure
867
962
  end
868
963
 
964
+ # Options for attaching a VPC to pipeline.
965
+ #
966
+ # @!attribute [rw] attach_to_vpc
967
+ # Whether a VPC is attached to the pipeline.
968
+ # @return [Boolean]
969
+ #
970
+ # @!attribute [rw] cidr_block
971
+ # The CIDR block to be reserved for OpenSearch Ingestion to create
972
+ # elastic network interfaces (ENIs).
973
+ # @return [String]
974
+ #
975
+ # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/VpcAttachmentOptions AWS API Documentation
976
+ #
977
+ class VpcAttachmentOptions < Struct.new(
978
+ :attach_to_vpc,
979
+ :cidr_block)
980
+ SENSITIVE = []
981
+ include Aws::Structure
982
+ end
983
+
869
984
  # An OpenSearch Ingestion-managed VPC endpoint that will access one or
870
985
  # more pipelines.
871
986
  #
@@ -904,11 +1019,16 @@ module Aws::OSIS
904
1019
  # A list of security groups associated with the VPC endpoint.
905
1020
  # @return [Array<String>]
906
1021
  #
1022
+ # @!attribute [rw] vpc_attachment_options
1023
+ # Options for attaching a VPC to a pipeline.
1024
+ # @return [Types::VpcAttachmentOptions]
1025
+ #
907
1026
  # @see http://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/VpcOptions AWS API Documentation
908
1027
  #
909
1028
  class VpcOptions < Struct.new(
910
1029
  :subnet_ids,
911
- :security_group_ids)
1030
+ :security_group_ids,
1031
+ :vpc_attachment_options)
912
1032
  SENSITIVE = []
913
1033
  include Aws::Structure
914
1034
  end
data/lib/aws-sdk-osis.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-osis/customizations'
52
52
  # @!group service
53
53
  module Aws::OSIS
54
54
 
55
- GEM_VERSION = '1.14.0'
55
+ GEM_VERSION = '1.15.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -90,7 +90,11 @@ module Aws
90
90
  },
91
91
  ?vpc_options: {
92
92
  subnet_ids: Array[::String],
93
- security_group_ids: Array[::String]?
93
+ security_group_ids: Array[::String]?,
94
+ vpc_attachment_options: {
95
+ attach_to_vpc: bool,
96
+ cidr_block: ::String?
97
+ }?
94
98
  },
95
99
  ?buffer_options: {
96
100
  persistent_buffer_enabled: bool
@@ -129,10 +133,12 @@ module Aws
129
133
  interface _GetPipelineBlueprintResponseSuccess
130
134
  include ::Seahorse::Client::_ResponseSuccess[Types::GetPipelineBlueprintResponse]
131
135
  def blueprint: () -> Types::PipelineBlueprint
136
+ def format: () -> ::String
132
137
  end
133
138
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OSIS/Client.html#get_pipeline_blueprint-instance_method
134
139
  def get_pipeline_blueprint: (
135
- blueprint_name: ::String
140
+ blueprint_name: ::String,
141
+ ?format: ::String
136
142
  ) -> _GetPipelineBlueprintResponseSuccess
137
143
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPipelineBlueprintResponseSuccess
138
144
 
data/sig/errors.rbs CHANGED
@@ -15,6 +15,8 @@ module Aws
15
15
  end
16
16
  class ConflictException < ::Aws::Errors::ServiceError
17
17
  end
18
+ class DisabledOperationException < ::Aws::Errors::ServiceError
19
+ end
18
20
  class InternalException < ::Aws::Errors::ServiceError
19
21
  end
20
22
  class InvalidPaginationTokenException < ::Aws::Errors::ServiceError
data/sig/types.rbs CHANGED
@@ -66,6 +66,9 @@ module Aws::OSIS
66
66
  class DeletePipelineResponse < Aws::EmptyStructure
67
67
  end
68
68
 
69
+ class DisabledOperationException < Aws::EmptyStructure
70
+ end
71
+
69
72
  class EncryptionAtRestOptions
70
73
  attr_accessor kms_key_arn: ::String
71
74
  SENSITIVE: []
@@ -73,11 +76,13 @@ module Aws::OSIS
73
76
 
74
77
  class GetPipelineBlueprintRequest
75
78
  attr_accessor blueprint_name: ::String
79
+ attr_accessor format: ::String
76
80
  SENSITIVE: []
77
81
  end
78
82
 
79
83
  class GetPipelineBlueprintResponse
80
84
  attr_accessor blueprint: Types::PipelineBlueprint
85
+ attr_accessor format: ::String
81
86
  SENSITIVE: []
82
87
  end
83
88
 
@@ -162,6 +167,7 @@ module Aws::OSIS
162
167
  attr_accessor buffer_options: Types::BufferOptions
163
168
  attr_accessor encryption_at_rest_options: Types::EncryptionAtRestOptions
164
169
  attr_accessor service_vpc_endpoints: ::Array[Types::ServiceVpcEndpoint]
170
+ attr_accessor destinations: ::Array[Types::PipelineDestination]
165
171
  attr_accessor tags: ::Array[Types::Tag]
166
172
  SENSITIVE: []
167
173
  end
@@ -169,11 +175,25 @@ module Aws::OSIS
169
175
  class PipelineBlueprint
170
176
  attr_accessor blueprint_name: ::String
171
177
  attr_accessor pipeline_configuration_body: ::String
178
+ attr_accessor display_name: ::String
179
+ attr_accessor display_description: ::String
180
+ attr_accessor service: ::String
181
+ attr_accessor use_case: ::String
172
182
  SENSITIVE: []
173
183
  end
174
184
 
175
185
  class PipelineBlueprintSummary
176
186
  attr_accessor blueprint_name: ::String
187
+ attr_accessor display_name: ::String
188
+ attr_accessor display_description: ::String
189
+ attr_accessor service: ::String
190
+ attr_accessor use_case: ::String
191
+ SENSITIVE: []
192
+ end
193
+
194
+ class PipelineDestination
195
+ attr_accessor service_name: ::String
196
+ attr_accessor endpoint: ::String
177
197
  SENSITIVE: []
178
198
  end
179
199
 
@@ -191,6 +211,7 @@ module Aws::OSIS
191
211
  attr_accessor max_units: ::Integer
192
212
  attr_accessor created_at: ::Time
193
213
  attr_accessor last_updated_at: ::Time
214
+ attr_accessor destinations: ::Array[Types::PipelineDestination]
194
215
  attr_accessor tags: ::Array[Types::Tag]
195
216
  SENSITIVE: []
196
217
  end
@@ -286,6 +307,12 @@ module Aws::OSIS
286
307
  SENSITIVE: []
287
308
  end
288
309
 
310
+ class VpcAttachmentOptions
311
+ attr_accessor attach_to_vpc: bool
312
+ attr_accessor cidr_block: ::String
313
+ SENSITIVE: []
314
+ end
315
+
289
316
  class VpcEndpoint
290
317
  attr_accessor vpc_endpoint_id: ::String
291
318
  attr_accessor vpc_id: ::String
@@ -296,6 +323,7 @@ module Aws::OSIS
296
323
  class VpcOptions
297
324
  attr_accessor subnet_ids: ::Array[::String]
298
325
  attr_accessor security_group_ids: ::Array[::String]
326
+ attr_accessor vpc_attachment_options: Types::VpcAttachmentOptions
299
327
  SENSITIVE: []
300
328
  end
301
329
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-osis
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.15.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-05-13 00:00:00.000000000 Z
11
+ date: 2024-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core