aws-sdk-omics 1.64.0 → 1.66.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-omics/client.rb +225 -8
- data/lib/aws-sdk-omics/client_api.rb +200 -0
- data/lib/aws-sdk-omics/types.rb +378 -6
- data/lib/aws-sdk-omics.rb +1 -1
- data/sig/client.rbs +75 -5
- data/sig/types.rbs +107 -4
- metadata +1 -1
|
@@ -75,6 +75,17 @@ module Aws::Omics
|
|
|
75
75
|
CompleteReadSetUploadPartListItemChecksumString = Shapes::StringShape.new(name: 'CompleteReadSetUploadPartListItemChecksumString')
|
|
76
76
|
CompleteReadSetUploadPartListItemPartNumberInteger = Shapes::IntegerShape.new(name: 'CompleteReadSetUploadPartListItemPartNumberInteger')
|
|
77
77
|
CompletionTime = Shapes::TimestampShape.new(name: 'CompletionTime', timestampFormat: "iso8601")
|
|
78
|
+
ConfigurationArn = Shapes::StringShape.new(name: 'ConfigurationArn')
|
|
79
|
+
ConfigurationDescription = Shapes::StringShape.new(name: 'ConfigurationDescription')
|
|
80
|
+
ConfigurationDetails = Shapes::StructureShape.new(name: 'ConfigurationDetails')
|
|
81
|
+
ConfigurationList = Shapes::ListShape.new(name: 'ConfigurationList')
|
|
82
|
+
ConfigurationListItem = Shapes::StructureShape.new(name: 'ConfigurationListItem')
|
|
83
|
+
ConfigurationListToken = Shapes::StringShape.new(name: 'ConfigurationListToken')
|
|
84
|
+
ConfigurationName = Shapes::StringShape.new(name: 'ConfigurationName')
|
|
85
|
+
ConfigurationRequestId = Shapes::StringShape.new(name: 'ConfigurationRequestId')
|
|
86
|
+
ConfigurationStatus = Shapes::StringShape.new(name: 'ConfigurationStatus')
|
|
87
|
+
ConfigurationTimestamp = Shapes::TimestampShape.new(name: 'ConfigurationTimestamp', timestampFormat: "iso8601")
|
|
88
|
+
ConfigurationUuid = Shapes::StringShape.new(name: 'ConfigurationUuid')
|
|
78
89
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
79
90
|
ConnectionArn = Shapes::StringShape.new(name: 'ConnectionArn')
|
|
80
91
|
ContainerRegistryMap = Shapes::StructureShape.new(name: 'ContainerRegistryMap')
|
|
@@ -82,6 +93,8 @@ module Aws::Omics
|
|
|
82
93
|
CreateAnnotationStoreResponse = Shapes::StructureShape.new(name: 'CreateAnnotationStoreResponse')
|
|
83
94
|
CreateAnnotationStoreVersionRequest = Shapes::StructureShape.new(name: 'CreateAnnotationStoreVersionRequest')
|
|
84
95
|
CreateAnnotationStoreVersionResponse = Shapes::StructureShape.new(name: 'CreateAnnotationStoreVersionResponse')
|
|
96
|
+
CreateConfigurationRequest = Shapes::StructureShape.new(name: 'CreateConfigurationRequest')
|
|
97
|
+
CreateConfigurationResponse = Shapes::StructureShape.new(name: 'CreateConfigurationResponse')
|
|
85
98
|
CreateMultipartReadSetUploadRequest = Shapes::StructureShape.new(name: 'CreateMultipartReadSetUploadRequest')
|
|
86
99
|
CreateMultipartReadSetUploadResponse = Shapes::StructureShape.new(name: 'CreateMultipartReadSetUploadResponse')
|
|
87
100
|
CreateReferenceStoreRequest = Shapes::StructureShape.new(name: 'CreateReferenceStoreRequest')
|
|
@@ -119,6 +132,7 @@ module Aws::Omics
|
|
|
119
132
|
DeleteAnnotationStoreVersionsRequest = Shapes::StructureShape.new(name: 'DeleteAnnotationStoreVersionsRequest')
|
|
120
133
|
DeleteAnnotationStoreVersionsResponse = Shapes::StructureShape.new(name: 'DeleteAnnotationStoreVersionsResponse')
|
|
121
134
|
DeleteBatchRequest = Shapes::StructureShape.new(name: 'DeleteBatchRequest')
|
|
135
|
+
DeleteConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteConfigurationRequest')
|
|
122
136
|
DeleteReferenceRequest = Shapes::StructureShape.new(name: 'DeleteReferenceRequest')
|
|
123
137
|
DeleteReferenceResponse = Shapes::StructureShape.new(name: 'DeleteReferenceResponse')
|
|
124
138
|
DeleteReferenceStoreRequest = Shapes::StructureShape.new(name: 'DeleteReferenceStoreRequest')
|
|
@@ -178,6 +192,8 @@ module Aws::Omics
|
|
|
178
192
|
GetAnnotationStoreVersionResponse = Shapes::StructureShape.new(name: 'GetAnnotationStoreVersionResponse')
|
|
179
193
|
GetBatchRequest = Shapes::StructureShape.new(name: 'GetBatchRequest')
|
|
180
194
|
GetBatchResponse = Shapes::StructureShape.new(name: 'GetBatchResponse')
|
|
195
|
+
GetConfigurationRequest = Shapes::StructureShape.new(name: 'GetConfigurationRequest')
|
|
196
|
+
GetConfigurationResponse = Shapes::StructureShape.new(name: 'GetConfigurationResponse')
|
|
181
197
|
GetReadSetActivationJobRequest = Shapes::StructureShape.new(name: 'GetReadSetActivationJobRequest')
|
|
182
198
|
GetReadSetActivationJobResponse = Shapes::StructureShape.new(name: 'GetReadSetActivationJobResponse')
|
|
183
199
|
GetReadSetExportJobRequest = Shapes::StructureShape.new(name: 'GetReadSetExportJobRequest')
|
|
@@ -275,6 +291,9 @@ module Aws::Omics
|
|
|
275
291
|
ListBatchRequest = Shapes::StructureShape.new(name: 'ListBatchRequest')
|
|
276
292
|
ListBatchRequestMaxItemsInteger = Shapes::IntegerShape.new(name: 'ListBatchRequestMaxItemsInteger')
|
|
277
293
|
ListBatchResponse = Shapes::StructureShape.new(name: 'ListBatchResponse')
|
|
294
|
+
ListConfigurationsRequest = Shapes::StructureShape.new(name: 'ListConfigurationsRequest')
|
|
295
|
+
ListConfigurationsRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListConfigurationsRequestMaxResultsInteger')
|
|
296
|
+
ListConfigurationsResponse = Shapes::StructureShape.new(name: 'ListConfigurationsResponse')
|
|
278
297
|
ListMultipartReadSetUploadsRequest = Shapes::StructureShape.new(name: 'ListMultipartReadSetUploadsRequest')
|
|
279
298
|
ListMultipartReadSetUploadsRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListMultipartReadSetUploadsRequestMaxResultsInteger')
|
|
280
299
|
ListMultipartReadSetUploadsResponse = Shapes::StructureShape.new(name: 'ListMultipartReadSetUploadsResponse')
|
|
@@ -347,6 +366,7 @@ module Aws::Omics
|
|
|
347
366
|
Md5 = Shapes::StringShape.new(name: 'Md5')
|
|
348
367
|
MultipartReadSetUploadList = Shapes::ListShape.new(name: 'MultipartReadSetUploadList')
|
|
349
368
|
MultipartReadSetUploadListItem = Shapes::StructureShape.new(name: 'MultipartReadSetUploadListItem')
|
|
369
|
+
NetworkingMode = Shapes::StringShape.new(name: 'NetworkingMode')
|
|
350
370
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
|
351
371
|
NotSupportedOperationException = Shapes::StructureShape.new(name: 'NotSupportedOperationException')
|
|
352
372
|
NumericIdInArn = Shapes::StringShape.new(name: 'NumericIdInArn')
|
|
@@ -433,6 +453,8 @@ module Aws::Omics
|
|
|
433
453
|
RunCacheRequestId = Shapes::StringShape.new(name: 'RunCacheRequestId')
|
|
434
454
|
RunCacheStatus = Shapes::StringShape.new(name: 'RunCacheStatus')
|
|
435
455
|
RunCacheTimestamp = Shapes::TimestampShape.new(name: 'RunCacheTimestamp', timestampFormat: "iso8601")
|
|
456
|
+
RunConfigurations = Shapes::StructureShape.new(name: 'RunConfigurations')
|
|
457
|
+
RunConfigurationsResponse = Shapes::StructureShape.new(name: 'RunConfigurationsResponse')
|
|
436
458
|
RunExport = Shapes::StringShape.new(name: 'RunExport')
|
|
437
459
|
RunExportList = Shapes::ListShape.new(name: 'RunExportList')
|
|
438
460
|
RunFailureReason = Shapes::StringShape.new(name: 'RunFailureReason')
|
|
@@ -486,6 +508,8 @@ module Aws::Omics
|
|
|
486
508
|
SchemaItem = Shapes::MapShape.new(name: 'SchemaItem')
|
|
487
509
|
SchemaItemKeyString = Shapes::StringShape.new(name: 'SchemaItemKeyString')
|
|
488
510
|
SchemaValueType = Shapes::StringShape.new(name: 'SchemaValueType')
|
|
511
|
+
SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
|
|
512
|
+
SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
|
|
489
513
|
Separator = Shapes::StringShape.new(name: 'Separator')
|
|
490
514
|
SequenceInformation = Shapes::StructureShape.new(name: 'SequenceInformation')
|
|
491
515
|
SequenceStoreArn = Shapes::StringShape.new(name: 'SequenceStoreArn')
|
|
@@ -550,6 +574,8 @@ module Aws::Omics
|
|
|
550
574
|
SubmissionFailureReason = Shapes::StringShape.new(name: 'SubmissionFailureReason')
|
|
551
575
|
SubmissionStatus = Shapes::StringShape.new(name: 'SubmissionStatus')
|
|
552
576
|
SubmissionSummary = Shapes::StructureShape.new(name: 'SubmissionSummary')
|
|
577
|
+
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
|
578
|
+
SubnetIds = Shapes::ListShape.new(name: 'SubnetIds')
|
|
553
579
|
SyntheticTimestamp_date_time = Shapes::TimestampShape.new(name: 'SyntheticTimestamp_date_time', timestampFormat: "iso8601")
|
|
554
580
|
TagArn = Shapes::StringShape.new(name: 'TagArn')
|
|
555
581
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
|
@@ -626,6 +652,11 @@ module Aws::Omics
|
|
|
626
652
|
VersionName = Shapes::StringShape.new(name: 'VersionName')
|
|
627
653
|
VersionOptions = Shapes::UnionShape.new(name: 'VersionOptions')
|
|
628
654
|
VersionStatus = Shapes::StringShape.new(name: 'VersionStatus')
|
|
655
|
+
VpcConfig = Shapes::StructureShape.new(name: 'VpcConfig')
|
|
656
|
+
VpcConfigResponse = Shapes::StructureShape.new(name: 'VpcConfigResponse')
|
|
657
|
+
VpcConfigSecurityGroupIdsList = Shapes::ListShape.new(name: 'VpcConfigSecurityGroupIdsList')
|
|
658
|
+
VpcConfigSubnetIdsList = Shapes::ListShape.new(name: 'VpcConfigSubnetIdsList')
|
|
659
|
+
VpcId = Shapes::StringShape.new(name: 'VpcId')
|
|
629
660
|
WorkflowArn = Shapes::StringShape.new(name: 'WorkflowArn')
|
|
630
661
|
WorkflowBucketOwnerId = Shapes::StringShape.new(name: 'WorkflowBucketOwnerId')
|
|
631
662
|
WorkflowDefinition = Shapes::StringShape.new(name: 'WorkflowDefinition')
|
|
@@ -816,6 +847,20 @@ module Aws::Omics
|
|
|
816
847
|
CompleteReadSetUploadPartListItem.add_member(:checksum, Shapes::ShapeRef.new(shape: CompleteReadSetUploadPartListItemChecksumString, required: true, location_name: "checksum"))
|
|
817
848
|
CompleteReadSetUploadPartListItem.struct_class = Types::CompleteReadSetUploadPartListItem
|
|
818
849
|
|
|
850
|
+
ConfigurationDetails.add_member(:name, Shapes::ShapeRef.new(shape: ConfigurationName, location_name: "name"))
|
|
851
|
+
ConfigurationDetails.add_member(:arn, Shapes::ShapeRef.new(shape: ConfigurationArn, location_name: "arn"))
|
|
852
|
+
ConfigurationDetails.add_member(:uuid, Shapes::ShapeRef.new(shape: ConfigurationUuid, location_name: "uuid"))
|
|
853
|
+
ConfigurationDetails.struct_class = Types::ConfigurationDetails
|
|
854
|
+
|
|
855
|
+
ConfigurationList.member = Shapes::ShapeRef.new(shape: ConfigurationListItem)
|
|
856
|
+
|
|
857
|
+
ConfigurationListItem.add_member(:arn, Shapes::ShapeRef.new(shape: ConfigurationArn, location_name: "arn"))
|
|
858
|
+
ConfigurationListItem.add_member(:name, Shapes::ShapeRef.new(shape: ConfigurationName, location_name: "name"))
|
|
859
|
+
ConfigurationListItem.add_member(:description, Shapes::ShapeRef.new(shape: ConfigurationDescription, location_name: "description"))
|
|
860
|
+
ConfigurationListItem.add_member(:status, Shapes::ShapeRef.new(shape: ConfigurationStatus, location_name: "status"))
|
|
861
|
+
ConfigurationListItem.add_member(:creation_time, Shapes::ShapeRef.new(shape: ConfigurationTimestamp, location_name: "creationTime"))
|
|
862
|
+
ConfigurationListItem.struct_class = Types::ConfigurationListItem
|
|
863
|
+
|
|
819
864
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
820
865
|
ConflictException.struct_class = Types::ConflictException
|
|
821
866
|
|
|
@@ -859,6 +904,23 @@ module Aws::Omics
|
|
|
859
904
|
CreateAnnotationStoreVersionResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: CreationTime, required: true, location_name: "creationTime"))
|
|
860
905
|
CreateAnnotationStoreVersionResponse.struct_class = Types::CreateAnnotationStoreVersionResponse
|
|
861
906
|
|
|
907
|
+
CreateConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: ConfigurationName, required: true, location_name: "name"))
|
|
908
|
+
CreateConfigurationRequest.add_member(:description, Shapes::ShapeRef.new(shape: ConfigurationDescription, location_name: "description"))
|
|
909
|
+
CreateConfigurationRequest.add_member(:run_configurations, Shapes::ShapeRef.new(shape: RunConfigurations, required: true, location_name: "runConfigurations"))
|
|
910
|
+
CreateConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
911
|
+
CreateConfigurationRequest.add_member(:request_id, Shapes::ShapeRef.new(shape: ConfigurationRequestId, required: true, location_name: "requestId", metadata: {"idempotencyToken" => true}))
|
|
912
|
+
CreateConfigurationRequest.struct_class = Types::CreateConfigurationRequest
|
|
913
|
+
|
|
914
|
+
CreateConfigurationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: ConfigurationArn, location_name: "arn"))
|
|
915
|
+
CreateConfigurationResponse.add_member(:uuid, Shapes::ShapeRef.new(shape: ConfigurationUuid, location_name: "uuid"))
|
|
916
|
+
CreateConfigurationResponse.add_member(:name, Shapes::ShapeRef.new(shape: ConfigurationName, location_name: "name"))
|
|
917
|
+
CreateConfigurationResponse.add_member(:description, Shapes::ShapeRef.new(shape: ConfigurationDescription, location_name: "description"))
|
|
918
|
+
CreateConfigurationResponse.add_member(:run_configurations, Shapes::ShapeRef.new(shape: RunConfigurationsResponse, location_name: "runConfigurations"))
|
|
919
|
+
CreateConfigurationResponse.add_member(:status, Shapes::ShapeRef.new(shape: ConfigurationStatus, location_name: "status"))
|
|
920
|
+
CreateConfigurationResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: ConfigurationTimestamp, location_name: "creationTime"))
|
|
921
|
+
CreateConfigurationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
922
|
+
CreateConfigurationResponse.struct_class = Types::CreateConfigurationResponse
|
|
923
|
+
|
|
862
924
|
CreateMultipartReadSetUploadRequest.add_member(:sequence_store_id, Shapes::ShapeRef.new(shape: SequenceStoreId, required: true, location: "uri", location_name: "sequenceStoreId"))
|
|
863
925
|
CreateMultipartReadSetUploadRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken"))
|
|
864
926
|
CreateMultipartReadSetUploadRequest.add_member(:source_file_type, Shapes::ShapeRef.new(shape: FileType, required: true, location_name: "sourceFileType"))
|
|
@@ -1055,6 +1117,8 @@ module Aws::Omics
|
|
|
1055
1117
|
DefaultRunSetting.add_member(:workflow_owner_id, Shapes::ShapeRef.new(shape: WorkflowOwnerId, location_name: "workflowOwnerId"))
|
|
1056
1118
|
DefaultRunSetting.add_member(:output_bucket_owner_id, Shapes::ShapeRef.new(shape: AwsAccountId, location_name: "outputBucketOwnerId"))
|
|
1057
1119
|
DefaultRunSetting.add_member(:workflow_version_name, Shapes::ShapeRef.new(shape: WorkflowVersionName, location_name: "workflowVersionName"))
|
|
1120
|
+
DefaultRunSetting.add_member(:networking_mode, Shapes::ShapeRef.new(shape: NetworkingMode, location_name: "networkingMode"))
|
|
1121
|
+
DefaultRunSetting.add_member(:configuration_name, Shapes::ShapeRef.new(shape: ConfigurationName, location_name: "configurationName"))
|
|
1058
1122
|
DefaultRunSetting.struct_class = Types::DefaultRunSetting
|
|
1059
1123
|
|
|
1060
1124
|
DefinitionRepository.add_member(:connection_arn, Shapes::ShapeRef.new(shape: ConnectionArn, required: true, location_name: "connectionArn"))
|
|
@@ -1088,6 +1152,9 @@ module Aws::Omics
|
|
|
1088
1152
|
DeleteBatchRequest.add_member(:batch_id, Shapes::ShapeRef.new(shape: BatchId, required: true, location: "uri", location_name: "batchId"))
|
|
1089
1153
|
DeleteBatchRequest.struct_class = Types::DeleteBatchRequest
|
|
1090
1154
|
|
|
1155
|
+
DeleteConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: ConfigurationName, required: true, location: "uri", location_name: "name"))
|
|
1156
|
+
DeleteConfigurationRequest.struct_class = Types::DeleteConfigurationRequest
|
|
1157
|
+
|
|
1091
1158
|
DeleteReferenceRequest.add_member(:id, Shapes::ShapeRef.new(shape: ReferenceId, required: true, location: "uri", location_name: "id"))
|
|
1092
1159
|
DeleteReferenceRequest.add_member(:reference_store_id, Shapes::ShapeRef.new(shape: ReferenceStoreId, required: true, location: "uri", location_name: "referenceStoreId"))
|
|
1093
1160
|
DeleteReferenceRequest.struct_class = Types::DeleteReferenceRequest
|
|
@@ -1274,6 +1341,19 @@ module Aws::Omics
|
|
|
1274
1341
|
GetBatchResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "failureReason"))
|
|
1275
1342
|
GetBatchResponse.struct_class = Types::GetBatchResponse
|
|
1276
1343
|
|
|
1344
|
+
GetConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: ConfigurationName, required: true, location: "uri", location_name: "name"))
|
|
1345
|
+
GetConfigurationRequest.struct_class = Types::GetConfigurationRequest
|
|
1346
|
+
|
|
1347
|
+
GetConfigurationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: ConfigurationArn, location_name: "arn"))
|
|
1348
|
+
GetConfigurationResponse.add_member(:uuid, Shapes::ShapeRef.new(shape: ConfigurationUuid, location_name: "uuid"))
|
|
1349
|
+
GetConfigurationResponse.add_member(:name, Shapes::ShapeRef.new(shape: ConfigurationName, location_name: "name"))
|
|
1350
|
+
GetConfigurationResponse.add_member(:description, Shapes::ShapeRef.new(shape: ConfigurationDescription, location_name: "description"))
|
|
1351
|
+
GetConfigurationResponse.add_member(:run_configurations, Shapes::ShapeRef.new(shape: RunConfigurationsResponse, location_name: "runConfigurations"))
|
|
1352
|
+
GetConfigurationResponse.add_member(:status, Shapes::ShapeRef.new(shape: ConfigurationStatus, location_name: "status"))
|
|
1353
|
+
GetConfigurationResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: ConfigurationTimestamp, location_name: "creationTime"))
|
|
1354
|
+
GetConfigurationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
1355
|
+
GetConfigurationResponse.struct_class = Types::GetConfigurationResponse
|
|
1356
|
+
|
|
1277
1357
|
GetReadSetActivationJobRequest.add_member(:id, Shapes::ShapeRef.new(shape: ActivationJobId, required: true, location: "uri", location_name: "id"))
|
|
1278
1358
|
GetReadSetActivationJobRequest.add_member(:sequence_store_id, Shapes::ShapeRef.new(shape: SequenceStoreId, required: true, location: "uri", location_name: "sequenceStoreId"))
|
|
1279
1359
|
GetReadSetActivationJobRequest.struct_class = Types::GetReadSetActivationJobRequest
|
|
@@ -1474,6 +1554,9 @@ module Aws::Omics
|
|
|
1474
1554
|
GetRunResponse.add_member(:workflow_owner_id, Shapes::ShapeRef.new(shape: WorkflowOwnerId, location_name: "workflowOwnerId"))
|
|
1475
1555
|
GetRunResponse.add_member(:workflow_version_name, Shapes::ShapeRef.new(shape: WorkflowVersionName, location_name: "workflowVersionName"))
|
|
1476
1556
|
GetRunResponse.add_member(:workflow_uuid, Shapes::ShapeRef.new(shape: WorkflowUuid, location_name: "workflowUuid"))
|
|
1557
|
+
GetRunResponse.add_member(:networking_mode, Shapes::ShapeRef.new(shape: NetworkingMode, location_name: "networkingMode"))
|
|
1558
|
+
GetRunResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationDetails, location_name: "configuration"))
|
|
1559
|
+
GetRunResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfigResponse, location_name: "vpcConfig"))
|
|
1477
1560
|
GetRunResponse.struct_class = Types::GetRunResponse
|
|
1478
1561
|
|
|
1479
1562
|
GetRunTaskRequest.add_member(:id, Shapes::ShapeRef.new(shape: RunId, required: true, location: "uri", location_name: "id"))
|
|
@@ -1766,6 +1849,14 @@ module Aws::Omics
|
|
|
1766
1849
|
ListBatchResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: ListToken, location_name: "nextToken"))
|
|
1767
1850
|
ListBatchResponse.struct_class = Types::ListBatchResponse
|
|
1768
1851
|
|
|
1852
|
+
ListConfigurationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListConfigurationsRequestMaxResultsInteger, location: "querystring", location_name: "maxResults"))
|
|
1853
|
+
ListConfigurationsRequest.add_member(:starting_token, Shapes::ShapeRef.new(shape: ConfigurationListToken, location: "querystring", location_name: "startingToken"))
|
|
1854
|
+
ListConfigurationsRequest.struct_class = Types::ListConfigurationsRequest
|
|
1855
|
+
|
|
1856
|
+
ListConfigurationsResponse.add_member(:items, Shapes::ShapeRef.new(shape: ConfigurationList, location_name: "items"))
|
|
1857
|
+
ListConfigurationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: ConfigurationListToken, location_name: "nextToken"))
|
|
1858
|
+
ListConfigurationsResponse.struct_class = Types::ListConfigurationsResponse
|
|
1859
|
+
|
|
1769
1860
|
ListMultipartReadSetUploadsRequest.add_member(:sequence_store_id, Shapes::ShapeRef.new(shape: SequenceStoreId, required: true, location: "uri", location_name: "sequenceStoreId"))
|
|
1770
1861
|
ListMultipartReadSetUploadsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListMultipartReadSetUploadsRequestMaxResultsInteger, location: "querystring", location_name: "maxResults"))
|
|
1771
1862
|
ListMultipartReadSetUploadsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
@@ -2168,6 +2259,12 @@ module Aws::Omics
|
|
|
2168
2259
|
RunCacheListItem.add_member(:status, Shapes::ShapeRef.new(shape: RunCacheStatus, location_name: "status"))
|
|
2169
2260
|
RunCacheListItem.struct_class = Types::RunCacheListItem
|
|
2170
2261
|
|
|
2262
|
+
RunConfigurations.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "vpcConfig"))
|
|
2263
|
+
RunConfigurations.struct_class = Types::RunConfigurations
|
|
2264
|
+
|
|
2265
|
+
RunConfigurationsResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfigResponse, location_name: "vpcConfig"))
|
|
2266
|
+
RunConfigurationsResponse.struct_class = Types::RunConfigurationsResponse
|
|
2267
|
+
|
|
2171
2268
|
RunExportList.member = Shapes::ShapeRef.new(shape: RunExport)
|
|
2172
2269
|
|
|
2173
2270
|
RunGroupList.member = Shapes::ShapeRef.new(shape: RunGroupListItem)
|
|
@@ -2222,6 +2319,8 @@ module Aws::Omics
|
|
|
2222
2319
|
SchemaItem.key = Shapes::ShapeRef.new(shape: SchemaItemKeyString)
|
|
2223
2320
|
SchemaItem.value = Shapes::ShapeRef.new(shape: SchemaValueType)
|
|
2224
2321
|
|
|
2322
|
+
SecurityGroupIds.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
|
|
2323
|
+
|
|
2225
2324
|
SequenceInformation.add_member(:total_read_count, Shapes::ShapeRef.new(shape: Long, location_name: "totalReadCount"))
|
|
2226
2325
|
SequenceInformation.add_member(:total_base_count, Shapes::ShapeRef.new(shape: Long, location_name: "totalBaseCount"))
|
|
2227
2326
|
SequenceInformation.add_member(:generated_from, Shapes::ShapeRef.new(shape: GeneratedFrom, location_name: "generatedFrom"))
|
|
@@ -2409,6 +2508,8 @@ module Aws::Omics
|
|
|
2409
2508
|
StartRunRequest.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "storageType"))
|
|
2410
2509
|
StartRunRequest.add_member(:workflow_owner_id, Shapes::ShapeRef.new(shape: WorkflowOwnerId, location_name: "workflowOwnerId"))
|
|
2411
2510
|
StartRunRequest.add_member(:workflow_version_name, Shapes::ShapeRef.new(shape: WorkflowVersionName, location_name: "workflowVersionName"))
|
|
2511
|
+
StartRunRequest.add_member(:networking_mode, Shapes::ShapeRef.new(shape: NetworkingMode, location_name: "networkingMode"))
|
|
2512
|
+
StartRunRequest.add_member(:configuration_name, Shapes::ShapeRef.new(shape: ConfigurationName, location_name: "configurationName"))
|
|
2412
2513
|
StartRunRequest.struct_class = Types::StartRunRequest
|
|
2413
2514
|
|
|
2414
2515
|
StartRunResponse.add_member(:arn, Shapes::ShapeRef.new(shape: RunArn, location_name: "arn"))
|
|
@@ -2417,6 +2518,8 @@ module Aws::Omics
|
|
|
2417
2518
|
StartRunResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
2418
2519
|
StartRunResponse.add_member(:uuid, Shapes::ShapeRef.new(shape: RunUuid, location_name: "uuid"))
|
|
2419
2520
|
StartRunResponse.add_member(:run_output_uri, Shapes::ShapeRef.new(shape: RunOutputUri, location_name: "runOutputUri"))
|
|
2521
|
+
StartRunResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationDetails, location_name: "configuration"))
|
|
2522
|
+
StartRunResponse.add_member(:networking_mode, Shapes::ShapeRef.new(shape: String, location_name: "networkingMode"))
|
|
2420
2523
|
StartRunResponse.struct_class = Types::StartRunResponse
|
|
2421
2524
|
|
|
2422
2525
|
StartVariantImportRequest.add_member(:destination_name, Shapes::ShapeRef.new(shape: StoreName, required: true, location_name: "destinationName"))
|
|
@@ -2446,6 +2549,8 @@ module Aws::Omics
|
|
|
2446
2549
|
SubmissionSummary.add_member(:failed_delete_submission_count, Shapes::ShapeRef.new(shape: Integer, location_name: "failedDeleteSubmissionCount"))
|
|
2447
2550
|
SubmissionSummary.struct_class = Types::SubmissionSummary
|
|
2448
2551
|
|
|
2552
|
+
SubnetIds.member = Shapes::ShapeRef.new(shape: SubnetId)
|
|
2553
|
+
|
|
2449
2554
|
TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
|
2450
2555
|
|
|
2451
2556
|
TagMap.key = Shapes::ShapeRef.new(shape: TagKey)
|
|
@@ -2674,6 +2779,19 @@ module Aws::Omics
|
|
|
2674
2779
|
VersionOptions.add_member_subclass(:unknown, Types::VersionOptions::Unknown)
|
|
2675
2780
|
VersionOptions.struct_class = Types::VersionOptions
|
|
2676
2781
|
|
|
2782
|
+
VpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: VpcConfigSecurityGroupIdsList, location_name: "securityGroupIds"))
|
|
2783
|
+
VpcConfig.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: VpcConfigSubnetIdsList, location_name: "subnetIds"))
|
|
2784
|
+
VpcConfig.struct_class = Types::VpcConfig
|
|
2785
|
+
|
|
2786
|
+
VpcConfigResponse.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "securityGroupIds"))
|
|
2787
|
+
VpcConfigResponse.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "subnetIds"))
|
|
2788
|
+
VpcConfigResponse.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcId"))
|
|
2789
|
+
VpcConfigResponse.struct_class = Types::VpcConfigResponse
|
|
2790
|
+
|
|
2791
|
+
VpcConfigSecurityGroupIdsList.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
|
|
2792
|
+
|
|
2793
|
+
VpcConfigSubnetIdsList.member = Shapes::ShapeRef.new(shape: SubnetId)
|
|
2794
|
+
|
|
2677
2795
|
WorkflowExportList.member = Shapes::ShapeRef.new(shape: WorkflowExport)
|
|
2678
2796
|
|
|
2679
2797
|
WorkflowList.member = Shapes::ShapeRef.new(shape: WorkflowListItem)
|
|
@@ -2909,6 +3027,25 @@ module Aws::Omics
|
|
|
2909
3027
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2910
3028
|
end)
|
|
2911
3029
|
|
|
3030
|
+
api.add_operation(:create_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
3031
|
+
o.name = "CreateConfiguration"
|
|
3032
|
+
o.http_method = "POST"
|
|
3033
|
+
o.http_request_uri = "/configuration"
|
|
3034
|
+
o.endpoint_pattern = {
|
|
3035
|
+
"hostPrefix" => "workflows-",
|
|
3036
|
+
}
|
|
3037
|
+
o.input = Shapes::ShapeRef.new(shape: CreateConfigurationRequest)
|
|
3038
|
+
o.output = Shapes::ShapeRef.new(shape: CreateConfigurationResponse)
|
|
3039
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
3040
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
3041
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
3042
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
3043
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
3044
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
3045
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3046
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestTimeoutException)
|
|
3047
|
+
end)
|
|
3048
|
+
|
|
2912
3049
|
api.add_operation(:create_multipart_read_set_upload, Seahorse::Model::Operation.new.tap do |o|
|
|
2913
3050
|
o.name = "CreateMultipartReadSetUpload"
|
|
2914
3051
|
o.http_method = "POST"
|
|
@@ -3127,6 +3264,25 @@ module Aws::Omics
|
|
|
3127
3264
|
o.errors << Shapes::ShapeRef.new(shape: RequestTimeoutException)
|
|
3128
3265
|
end)
|
|
3129
3266
|
|
|
3267
|
+
api.add_operation(:delete_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
3268
|
+
o.name = "DeleteConfiguration"
|
|
3269
|
+
o.http_method = "DELETE"
|
|
3270
|
+
o.http_request_uri = "/configuration/{name}"
|
|
3271
|
+
o.endpoint_pattern = {
|
|
3272
|
+
"hostPrefix" => "workflows-",
|
|
3273
|
+
}
|
|
3274
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteConfigurationRequest)
|
|
3275
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
|
3276
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
3277
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
3278
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
3279
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
3280
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
3281
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
3282
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3283
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestTimeoutException)
|
|
3284
|
+
end)
|
|
3285
|
+
|
|
3130
3286
|
api.add_operation(:delete_reference, Seahorse::Model::Operation.new.tap do |o|
|
|
3131
3287
|
o.name = "DeleteReference"
|
|
3132
3288
|
o.http_method = "DELETE"
|
|
@@ -3413,6 +3569,25 @@ module Aws::Omics
|
|
|
3413
3569
|
o.errors << Shapes::ShapeRef.new(shape: RequestTimeoutException)
|
|
3414
3570
|
end)
|
|
3415
3571
|
|
|
3572
|
+
api.add_operation(:get_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
3573
|
+
o.name = "GetConfiguration"
|
|
3574
|
+
o.http_method = "GET"
|
|
3575
|
+
o.http_request_uri = "/configuration/{name}"
|
|
3576
|
+
o.endpoint_pattern = {
|
|
3577
|
+
"hostPrefix" => "workflows-",
|
|
3578
|
+
}
|
|
3579
|
+
o.input = Shapes::ShapeRef.new(shape: GetConfigurationRequest)
|
|
3580
|
+
o.output = Shapes::ShapeRef.new(shape: GetConfigurationResponse)
|
|
3581
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
3582
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
3583
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
3584
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
3585
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
3586
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
3587
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3588
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestTimeoutException)
|
|
3589
|
+
end)
|
|
3590
|
+
|
|
3416
3591
|
api.add_operation(:get_read_set, Seahorse::Model::Operation.new.tap do |o|
|
|
3417
3592
|
o.name = "GetReadSet"
|
|
3418
3593
|
o.http_method = "GET"
|
|
@@ -3857,6 +4032,31 @@ module Aws::Omics
|
|
|
3857
4032
|
)
|
|
3858
4033
|
end)
|
|
3859
4034
|
|
|
4035
|
+
api.add_operation(:list_configurations, Seahorse::Model::Operation.new.tap do |o|
|
|
4036
|
+
o.name = "ListConfigurations"
|
|
4037
|
+
o.http_method = "GET"
|
|
4038
|
+
o.http_request_uri = "/configuration"
|
|
4039
|
+
o.endpoint_pattern = {
|
|
4040
|
+
"hostPrefix" => "workflows-",
|
|
4041
|
+
}
|
|
4042
|
+
o.input = Shapes::ShapeRef.new(shape: ListConfigurationsRequest)
|
|
4043
|
+
o.output = Shapes::ShapeRef.new(shape: ListConfigurationsResponse)
|
|
4044
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
4045
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
4046
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
4047
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
4048
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
4049
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
4050
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
4051
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestTimeoutException)
|
|
4052
|
+
o[:pager] = Aws::Pager.new(
|
|
4053
|
+
limit_key: "max_results",
|
|
4054
|
+
tokens: {
|
|
4055
|
+
"next_token" => "starting_token"
|
|
4056
|
+
}
|
|
4057
|
+
)
|
|
4058
|
+
end)
|
|
4059
|
+
|
|
3860
4060
|
api.add_operation(:list_multipart_read_set_uploads, Seahorse::Model::Operation.new.tap do |o|
|
|
3861
4061
|
o.name = "ListMultipartReadSetUploads"
|
|
3862
4062
|
o.http_method = "POST"
|