aws-sdk-omics 1.16.0 → 1.18.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 +17 -2
- data/lib/aws-sdk-omics/client_api.rb +17 -0
- data/lib/aws-sdk-omics/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-omics/types.rb +58 -4
- data/lib/aws-sdk-omics.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cfdb3d0d7ce867e287479d0931ae03f53ac402e8e96651baaf187f07bf20d4a5
|
|
4
|
+
data.tar.gz: bbd751af393a0998fa9cfd3777a0bee837c103c9b74bedb11d24ea3701921faa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c19f3054a116ef6cf204339d9accba0af5521749b4501fe93f8c2bb8b53bc4a8427b55e07c38c24aeee2873bc85732b6f8923e861692a77ceee092b58944bb8f
|
|
7
|
+
data.tar.gz: 7c01c8465fb9a7fe68f3d926c99f90b2ec395628a3637cd0c952001cb16598abdab4666db94ca9f7a84ead033482987031cd83c1612ee6984fca70226fff5d73
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.18.0 (2023-11-08)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adding Run UUID and Run Output URI: GetRun and StartRun API response has two new fields "uuid" and "runOutputUri".
|
|
8
|
+
|
|
9
|
+
1.17.0 (2023-10-19)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This change enables customers to retrieve failure reasons with detailed status messages for their failed runs
|
|
13
|
+
|
|
4
14
|
1.16.0 (2023-10-05)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.18.0
|
data/lib/aws-sdk-omics/client.rb
CHANGED
|
@@ -2220,6 +2220,10 @@ module Aws::Omics
|
|
|
2220
2220
|
# * {Types::GetRunResponse#tags #tags} => Hash<String,String>
|
|
2221
2221
|
# * {Types::GetRunResponse#accelerators #accelerators} => String
|
|
2222
2222
|
# * {Types::GetRunResponse#retention_mode #retention_mode} => String
|
|
2223
|
+
# * {Types::GetRunResponse#failure_reason #failure_reason} => String
|
|
2224
|
+
# * {Types::GetRunResponse#log_location #log_location} => Types::RunLogLocation
|
|
2225
|
+
# * {Types::GetRunResponse#uuid #uuid} => String
|
|
2226
|
+
# * {Types::GetRunResponse#run_output_uri #run_output_uri} => String
|
|
2223
2227
|
#
|
|
2224
2228
|
# @example Request syntax with placeholder values
|
|
2225
2229
|
#
|
|
@@ -2256,6 +2260,11 @@ module Aws::Omics
|
|
|
2256
2260
|
# resp.tags["TagKey"] #=> String
|
|
2257
2261
|
# resp.accelerators #=> String, one of "GPU"
|
|
2258
2262
|
# resp.retention_mode #=> String, one of "RETAIN", "REMOVE"
|
|
2263
|
+
# resp.failure_reason #=> String
|
|
2264
|
+
# resp.log_location.engine_log_stream #=> String
|
|
2265
|
+
# resp.log_location.run_log_stream #=> String
|
|
2266
|
+
# resp.uuid #=> String
|
|
2267
|
+
# resp.run_output_uri #=> String
|
|
2259
2268
|
#
|
|
2260
2269
|
#
|
|
2261
2270
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -2320,7 +2329,7 @@ module Aws::Omics
|
|
|
2320
2329
|
# Gets information about a workflow run task.
|
|
2321
2330
|
#
|
|
2322
2331
|
# @option params [required, String] :id
|
|
2323
|
-
# The
|
|
2332
|
+
# The workflow run ID.
|
|
2324
2333
|
#
|
|
2325
2334
|
# @option params [required, String] :task_id
|
|
2326
2335
|
# The task's ID.
|
|
@@ -2339,6 +2348,7 @@ module Aws::Omics
|
|
|
2339
2348
|
# * {Types::GetRunTaskResponse#log_stream #log_stream} => String
|
|
2340
2349
|
# * {Types::GetRunTaskResponse#gpus #gpus} => Integer
|
|
2341
2350
|
# * {Types::GetRunTaskResponse#instance_type #instance_type} => String
|
|
2351
|
+
# * {Types::GetRunTaskResponse#failure_reason #failure_reason} => String
|
|
2342
2352
|
#
|
|
2343
2353
|
# @example Request syntax with placeholder values
|
|
2344
2354
|
#
|
|
@@ -2361,6 +2371,7 @@ module Aws::Omics
|
|
|
2361
2371
|
# resp.log_stream #=> String
|
|
2362
2372
|
# resp.gpus #=> Integer
|
|
2363
2373
|
# resp.instance_type #=> String
|
|
2374
|
+
# resp.failure_reason #=> String
|
|
2364
2375
|
#
|
|
2365
2376
|
#
|
|
2366
2377
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -4193,6 +4204,8 @@ module Aws::Omics
|
|
|
4193
4204
|
# * {Types::StartRunResponse#id #id} => String
|
|
4194
4205
|
# * {Types::StartRunResponse#status #status} => String
|
|
4195
4206
|
# * {Types::StartRunResponse#tags #tags} => Hash<String,String>
|
|
4207
|
+
# * {Types::StartRunResponse#uuid #uuid} => String
|
|
4208
|
+
# * {Types::StartRunResponse#run_output_uri #run_output_uri} => String
|
|
4196
4209
|
#
|
|
4197
4210
|
# @example Request syntax with placeholder values
|
|
4198
4211
|
#
|
|
@@ -4223,6 +4236,8 @@ module Aws::Omics
|
|
|
4223
4236
|
# resp.status #=> String, one of "PENDING", "STARTING", "RUNNING", "STOPPING", "COMPLETED", "DELETED", "CANCELLED", "FAILED"
|
|
4224
4237
|
# resp.tags #=> Hash
|
|
4225
4238
|
# resp.tags["TagKey"] #=> String
|
|
4239
|
+
# resp.uuid #=> String
|
|
4240
|
+
# resp.run_output_uri #=> String
|
|
4226
4241
|
#
|
|
4227
4242
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/StartRun AWS API Documentation
|
|
4228
4243
|
#
|
|
@@ -4615,7 +4630,7 @@ module Aws::Omics
|
|
|
4615
4630
|
params: params,
|
|
4616
4631
|
config: config)
|
|
4617
4632
|
context[:gem_name] = 'aws-sdk-omics'
|
|
4618
|
-
context[:gem_version] = '1.
|
|
4633
|
+
context[:gem_version] = '1.18.0'
|
|
4619
4634
|
Seahorse::Client::Request.new(handlers, context)
|
|
4620
4635
|
end
|
|
4621
4636
|
|
|
@@ -106,6 +106,7 @@ module Aws::Omics
|
|
|
106
106
|
ETagAlgorithm = Shapes::StringShape.new(name: 'ETagAlgorithm')
|
|
107
107
|
Encoding = Shapes::StringShape.new(name: 'Encoding')
|
|
108
108
|
EncryptionType = Shapes::StringShape.new(name: 'EncryptionType')
|
|
109
|
+
EngineLogStream = Shapes::StringShape.new(name: 'EngineLogStream')
|
|
109
110
|
EscapeChar = Shapes::StringShape.new(name: 'EscapeChar')
|
|
110
111
|
EscapeQuotes = Shapes::BooleanShape.new(name: 'EscapeQuotes')
|
|
111
112
|
ExportJobId = Shapes::StringShape.new(name: 'ExportJobId')
|
|
@@ -341,6 +342,7 @@ module Aws::Omics
|
|
|
341
342
|
RunArn = Shapes::StringShape.new(name: 'RunArn')
|
|
342
343
|
RunExport = Shapes::StringShape.new(name: 'RunExport')
|
|
343
344
|
RunExportList = Shapes::ListShape.new(name: 'RunExportList')
|
|
345
|
+
RunFailureReason = Shapes::StringShape.new(name: 'RunFailureReason')
|
|
344
346
|
RunGroupArn = Shapes::StringShape.new(name: 'RunGroupArn')
|
|
345
347
|
RunGroupId = Shapes::StringShape.new(name: 'RunGroupId')
|
|
346
348
|
RunGroupList = Shapes::ListShape.new(name: 'RunGroupList')
|
|
@@ -361,6 +363,8 @@ module Aws::Omics
|
|
|
361
363
|
RunListItemStorageCapacityInteger = Shapes::IntegerShape.new(name: 'RunListItemStorageCapacityInteger')
|
|
362
364
|
RunListToken = Shapes::StringShape.new(name: 'RunListToken')
|
|
363
365
|
RunLogLevel = Shapes::StringShape.new(name: 'RunLogLevel')
|
|
366
|
+
RunLogLocation = Shapes::StructureShape.new(name: 'RunLogLocation')
|
|
367
|
+
RunLogStream = Shapes::StringShape.new(name: 'RunLogStream')
|
|
364
368
|
RunName = Shapes::StringShape.new(name: 'RunName')
|
|
365
369
|
RunOutputUri = Shapes::StringShape.new(name: 'RunOutputUri')
|
|
366
370
|
RunParameters = Shapes::DocumentShape.new(name: 'RunParameters', document: true)
|
|
@@ -374,6 +378,7 @@ module Aws::Omics
|
|
|
374
378
|
RunStatus = Shapes::StringShape.new(name: 'RunStatus')
|
|
375
379
|
RunStatusMessage = Shapes::StringShape.new(name: 'RunStatusMessage')
|
|
376
380
|
RunTimestamp = Shapes::TimestampShape.new(name: 'RunTimestamp', timestampFormat: "iso8601")
|
|
381
|
+
RunUuid = Shapes::StringShape.new(name: 'RunUuid')
|
|
377
382
|
S3Destination = Shapes::StringShape.new(name: 'S3Destination')
|
|
378
383
|
S3Uri = Shapes::StringShape.new(name: 'S3Uri')
|
|
379
384
|
SampleId = Shapes::StringShape.new(name: 'SampleId')
|
|
@@ -437,6 +442,7 @@ module Aws::Omics
|
|
|
437
442
|
TagResourceRequestTagsMap = Shapes::MapShape.new(name: 'TagResourceRequestTagsMap')
|
|
438
443
|
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
|
439
444
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
|
445
|
+
TaskFailureReason = Shapes::StringShape.new(name: 'TaskFailureReason')
|
|
440
446
|
TaskId = Shapes::StringShape.new(name: 'TaskId')
|
|
441
447
|
TaskInstanceType = Shapes::StringShape.new(name: 'TaskInstanceType')
|
|
442
448
|
TaskList = Shapes::ListShape.new(name: 'TaskList')
|
|
@@ -1132,6 +1138,10 @@ module Aws::Omics
|
|
|
1132
1138
|
GetRunResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
1133
1139
|
GetRunResponse.add_member(:accelerators, Shapes::ShapeRef.new(shape: Accelerators, location_name: "accelerators"))
|
|
1134
1140
|
GetRunResponse.add_member(:retention_mode, Shapes::ShapeRef.new(shape: RunRetentionMode, location_name: "retentionMode"))
|
|
1141
|
+
GetRunResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: RunFailureReason, location_name: "failureReason"))
|
|
1142
|
+
GetRunResponse.add_member(:log_location, Shapes::ShapeRef.new(shape: RunLogLocation, location_name: "logLocation"))
|
|
1143
|
+
GetRunResponse.add_member(:uuid, Shapes::ShapeRef.new(shape: RunUuid, location_name: "uuid"))
|
|
1144
|
+
GetRunResponse.add_member(:run_output_uri, Shapes::ShapeRef.new(shape: RunOutputUri, location_name: "runOutputUri"))
|
|
1135
1145
|
GetRunResponse.struct_class = Types::GetRunResponse
|
|
1136
1146
|
|
|
1137
1147
|
GetRunTaskRequest.add_member(:id, Shapes::ShapeRef.new(shape: RunId, required: true, location: "uri", location_name: "id"))
|
|
@@ -1150,6 +1160,7 @@ module Aws::Omics
|
|
|
1150
1160
|
GetRunTaskResponse.add_member(:log_stream, Shapes::ShapeRef.new(shape: TaskLogStream, location_name: "logStream"))
|
|
1151
1161
|
GetRunTaskResponse.add_member(:gpus, Shapes::ShapeRef.new(shape: GetRunTaskResponseGpusInteger, location_name: "gpus"))
|
|
1152
1162
|
GetRunTaskResponse.add_member(:instance_type, Shapes::ShapeRef.new(shape: TaskInstanceType, location_name: "instanceType"))
|
|
1163
|
+
GetRunTaskResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: TaskFailureReason, location_name: "failureReason"))
|
|
1153
1164
|
GetRunTaskResponse.struct_class = Types::GetRunTaskResponse
|
|
1154
1165
|
|
|
1155
1166
|
GetSequenceStoreRequest.add_member(:id, Shapes::ShapeRef.new(shape: SequenceStoreId, required: true, location: "uri", location_name: "id"))
|
|
@@ -1683,6 +1694,10 @@ module Aws::Omics
|
|
|
1683
1694
|
RunListItem.add_member(:stop_time, Shapes::ShapeRef.new(shape: RunTimestamp, location_name: "stopTime"))
|
|
1684
1695
|
RunListItem.struct_class = Types::RunListItem
|
|
1685
1696
|
|
|
1697
|
+
RunLogLocation.add_member(:engine_log_stream, Shapes::ShapeRef.new(shape: EngineLogStream, location_name: "engineLogStream"))
|
|
1698
|
+
RunLogLocation.add_member(:run_log_stream, Shapes::ShapeRef.new(shape: RunLogStream, location_name: "runLogStream"))
|
|
1699
|
+
RunLogLocation.struct_class = Types::RunLogLocation
|
|
1700
|
+
|
|
1686
1701
|
RunResourceDigests.key = Shapes::ShapeRef.new(shape: RunResourceDigestKey)
|
|
1687
1702
|
RunResourceDigests.value = Shapes::ShapeRef.new(shape: RunResourceDigest)
|
|
1688
1703
|
|
|
@@ -1846,6 +1861,8 @@ module Aws::Omics
|
|
|
1846
1861
|
StartRunResponse.add_member(:id, Shapes::ShapeRef.new(shape: RunId, location_name: "id"))
|
|
1847
1862
|
StartRunResponse.add_member(:status, Shapes::ShapeRef.new(shape: RunStatus, location_name: "status"))
|
|
1848
1863
|
StartRunResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
1864
|
+
StartRunResponse.add_member(:uuid, Shapes::ShapeRef.new(shape: RunUuid, location_name: "uuid"))
|
|
1865
|
+
StartRunResponse.add_member(:run_output_uri, Shapes::ShapeRef.new(shape: RunOutputUri, location_name: "runOutputUri"))
|
|
1849
1866
|
StartRunResponse.struct_class = Types::StartRunResponse
|
|
1850
1867
|
|
|
1851
1868
|
StartVariantImportRequest.add_member(:destination_name, Shapes::ShapeRef.new(shape: StoreName, required: true, location_name: "destinationName"))
|
|
@@ -32,7 +32,7 @@ module Aws::Omics
|
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
33
33
|
end
|
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://omics-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
37
37
|
end
|
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
data/lib/aws-sdk-omics/types.rb
CHANGED
|
@@ -2667,6 +2667,22 @@ module Aws::Omics
|
|
|
2667
2667
|
# The run's retention mode.
|
|
2668
2668
|
# @return [String]
|
|
2669
2669
|
#
|
|
2670
|
+
# @!attribute [rw] failure_reason
|
|
2671
|
+
# The reason a run has failed.
|
|
2672
|
+
# @return [String]
|
|
2673
|
+
#
|
|
2674
|
+
# @!attribute [rw] log_location
|
|
2675
|
+
# The location of the run log.
|
|
2676
|
+
# @return [Types::RunLogLocation]
|
|
2677
|
+
#
|
|
2678
|
+
# @!attribute [rw] uuid
|
|
2679
|
+
# The universally unique identifier for a run.
|
|
2680
|
+
# @return [String]
|
|
2681
|
+
#
|
|
2682
|
+
# @!attribute [rw] run_output_uri
|
|
2683
|
+
# The destination for workflow outputs.
|
|
2684
|
+
# @return [String]
|
|
2685
|
+
#
|
|
2670
2686
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunResponse AWS API Documentation
|
|
2671
2687
|
#
|
|
2672
2688
|
class GetRunResponse < Struct.new(
|
|
@@ -2694,13 +2710,17 @@ module Aws::Omics
|
|
|
2694
2710
|
:status_message,
|
|
2695
2711
|
:tags,
|
|
2696
2712
|
:accelerators,
|
|
2697
|
-
:retention_mode
|
|
2713
|
+
:retention_mode,
|
|
2714
|
+
:failure_reason,
|
|
2715
|
+
:log_location,
|
|
2716
|
+
:uuid,
|
|
2717
|
+
:run_output_uri)
|
|
2698
2718
|
SENSITIVE = []
|
|
2699
2719
|
include Aws::Structure
|
|
2700
2720
|
end
|
|
2701
2721
|
|
|
2702
2722
|
# @!attribute [rw] id
|
|
2703
|
-
# The
|
|
2723
|
+
# The workflow run ID.
|
|
2704
2724
|
# @return [String]
|
|
2705
2725
|
#
|
|
2706
2726
|
# @!attribute [rw] task_id
|
|
@@ -2764,6 +2784,10 @@ module Aws::Omics
|
|
|
2764
2784
|
# The instance type for a task.
|
|
2765
2785
|
# @return [String]
|
|
2766
2786
|
#
|
|
2787
|
+
# @!attribute [rw] failure_reason
|
|
2788
|
+
# The reason a task has failed.
|
|
2789
|
+
# @return [String]
|
|
2790
|
+
#
|
|
2767
2791
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunTaskResponse AWS API Documentation
|
|
2768
2792
|
#
|
|
2769
2793
|
class GetRunTaskResponse < Struct.new(
|
|
@@ -2778,7 +2802,8 @@ module Aws::Omics
|
|
|
2778
2802
|
:status_message,
|
|
2779
2803
|
:log_stream,
|
|
2780
2804
|
:gpus,
|
|
2781
|
-
:instance_type
|
|
2805
|
+
:instance_type,
|
|
2806
|
+
:failure_reason)
|
|
2782
2807
|
SENSITIVE = []
|
|
2783
2808
|
include Aws::Structure
|
|
2784
2809
|
end
|
|
@@ -5102,6 +5127,25 @@ module Aws::Omics
|
|
|
5102
5127
|
include Aws::Structure
|
|
5103
5128
|
end
|
|
5104
5129
|
|
|
5130
|
+
# The URI for the run log.
|
|
5131
|
+
#
|
|
5132
|
+
# @!attribute [rw] engine_log_stream
|
|
5133
|
+
# The log stream ARN for the engine log.
|
|
5134
|
+
# @return [String]
|
|
5135
|
+
#
|
|
5136
|
+
# @!attribute [rw] run_log_stream
|
|
5137
|
+
# The log stream ARN for the run log.
|
|
5138
|
+
# @return [String]
|
|
5139
|
+
#
|
|
5140
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/RunLogLocation AWS API Documentation
|
|
5141
|
+
#
|
|
5142
|
+
class RunLogLocation < Struct.new(
|
|
5143
|
+
:engine_log_stream,
|
|
5144
|
+
:run_log_stream)
|
|
5145
|
+
SENSITIVE = []
|
|
5146
|
+
include Aws::Structure
|
|
5147
|
+
end
|
|
5148
|
+
|
|
5105
5149
|
# Details about a sequence.
|
|
5106
5150
|
#
|
|
5107
5151
|
# @!attribute [rw] total_read_count
|
|
@@ -5791,13 +5835,23 @@ module Aws::Omics
|
|
|
5791
5835
|
# The run's tags.
|
|
5792
5836
|
# @return [Hash<String,String>]
|
|
5793
5837
|
#
|
|
5838
|
+
# @!attribute [rw] uuid
|
|
5839
|
+
# The universally unique identifier for a run.
|
|
5840
|
+
# @return [String]
|
|
5841
|
+
#
|
|
5842
|
+
# @!attribute [rw] run_output_uri
|
|
5843
|
+
# The destination for workflow outputs.
|
|
5844
|
+
# @return [String]
|
|
5845
|
+
#
|
|
5794
5846
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/StartRunResponse AWS API Documentation
|
|
5795
5847
|
#
|
|
5796
5848
|
class StartRunResponse < Struct.new(
|
|
5797
5849
|
:arn,
|
|
5798
5850
|
:id,
|
|
5799
5851
|
:status,
|
|
5800
|
-
:tags
|
|
5852
|
+
:tags,
|
|
5853
|
+
:uuid,
|
|
5854
|
+
:run_output_uri)
|
|
5801
5855
|
SENSITIVE = []
|
|
5802
5856
|
include Aws::Structure
|
|
5803
5857
|
end
|
data/lib/aws-sdk-omics.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-omics
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.18.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: 2023-
|
|
11
|
+
date: 2023-11-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|