aws-sdk-datazone 1.14.0 → 1.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +547 -15
- data/lib/aws-sdk-datazone/client_api.rb +332 -27
- data/lib/aws-sdk-datazone/endpoints.rb +65 -0
- data/lib/aws-sdk-datazone/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-datazone/types.rb +924 -94
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +231 -0
- data/sig/types.rbs +285 -24
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -77,6 +77,34 @@ module Aws::DataZone
|
|
77
77
|
end
|
78
78
|
end
|
79
79
|
|
80
|
+
class AssetFilterConfiguration
|
81
|
+
attr_accessor column_configuration: Types::ColumnFilterConfiguration
|
82
|
+
attr_accessor row_configuration: Types::RowFilterConfiguration
|
83
|
+
attr_accessor unknown: untyped
|
84
|
+
SENSITIVE: []
|
85
|
+
|
86
|
+
class ColumnConfiguration < AssetFilterConfiguration
|
87
|
+
end
|
88
|
+
class RowConfiguration < AssetFilterConfiguration
|
89
|
+
end
|
90
|
+
class Unknown < AssetFilterConfiguration
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
class AssetFilterSummary
|
95
|
+
attr_accessor asset_id: ::String
|
96
|
+
attr_accessor created_at: ::Time
|
97
|
+
attr_accessor description: ::String
|
98
|
+
attr_accessor domain_id: ::String
|
99
|
+
attr_accessor effective_column_names: ::Array[::String]
|
100
|
+
attr_accessor effective_row_filter: ::String
|
101
|
+
attr_accessor error_message: ::String
|
102
|
+
attr_accessor id: ::String
|
103
|
+
attr_accessor name: ::String
|
104
|
+
attr_accessor status: ("VALID" | "INVALID")
|
105
|
+
SENSITIVE: [:description, :name]
|
106
|
+
end
|
107
|
+
|
80
108
|
class AssetItem
|
81
109
|
attr_accessor additional_attributes: Types::AssetItemAdditionalAttributes
|
82
110
|
attr_accessor created_at: ::Time
|
@@ -229,6 +257,11 @@ module Aws::DataZone
|
|
229
257
|
SENSITIVE: []
|
230
258
|
end
|
231
259
|
|
260
|
+
class ColumnFilterConfiguration
|
261
|
+
attr_accessor included_column_names: ::Array[::String]
|
262
|
+
SENSITIVE: []
|
263
|
+
end
|
264
|
+
|
232
265
|
class ConfigurableActionParameter
|
233
266
|
attr_accessor key: ::String
|
234
267
|
attr_accessor value: ::String
|
@@ -247,6 +280,31 @@ module Aws::DataZone
|
|
247
280
|
SENSITIVE: []
|
248
281
|
end
|
249
282
|
|
283
|
+
class CreateAssetFilterInput
|
284
|
+
attr_accessor asset_identifier: ::String
|
285
|
+
attr_accessor client_token: ::String
|
286
|
+
attr_accessor configuration: Types::AssetFilterConfiguration
|
287
|
+
attr_accessor description: ::String
|
288
|
+
attr_accessor domain_identifier: ::String
|
289
|
+
attr_accessor name: ::String
|
290
|
+
SENSITIVE: [:description, :name]
|
291
|
+
end
|
292
|
+
|
293
|
+
class CreateAssetFilterOutput
|
294
|
+
attr_accessor asset_id: ::String
|
295
|
+
attr_accessor configuration: Types::AssetFilterConfiguration
|
296
|
+
attr_accessor created_at: ::Time
|
297
|
+
attr_accessor description: ::String
|
298
|
+
attr_accessor domain_id: ::String
|
299
|
+
attr_accessor effective_column_names: ::Array[::String]
|
300
|
+
attr_accessor effective_row_filter: ::String
|
301
|
+
attr_accessor error_message: ::String
|
302
|
+
attr_accessor id: ::String
|
303
|
+
attr_accessor name: ::String
|
304
|
+
attr_accessor status: ("VALID" | "INVALID")
|
305
|
+
SENSITIVE: [:description, :name]
|
306
|
+
end
|
307
|
+
|
250
308
|
class CreateAssetInput
|
251
309
|
attr_accessor client_token: ::String
|
252
310
|
attr_accessor description: ::String
|
@@ -738,27 +796,6 @@ module Aws::DataZone
|
|
738
796
|
SENSITIVE: [:description]
|
739
797
|
end
|
740
798
|
|
741
|
-
class DataProductItem
|
742
|
-
attr_accessor domain_id: ::String
|
743
|
-
attr_accessor item_id: ::String
|
744
|
-
SENSITIVE: []
|
745
|
-
end
|
746
|
-
|
747
|
-
class DataProductSummary
|
748
|
-
attr_accessor created_at: ::Time
|
749
|
-
attr_accessor created_by: ::String
|
750
|
-
attr_accessor data_product_items: ::Array[Types::DataProductItem]
|
751
|
-
attr_accessor description: ::String
|
752
|
-
attr_accessor domain_id: ::String
|
753
|
-
attr_accessor glossary_terms: ::Array[::String]
|
754
|
-
attr_accessor id: ::String
|
755
|
-
attr_accessor name: ::String
|
756
|
-
attr_accessor owning_project_id: ::String
|
757
|
-
attr_accessor updated_at: ::Time
|
758
|
-
attr_accessor updated_by: ::String
|
759
|
-
SENSITIVE: [:description, :name]
|
760
|
-
end
|
761
|
-
|
762
799
|
class DataSourceConfigurationInput
|
763
800
|
attr_accessor glue_run_configuration: Types::GlueRunConfigurationInput
|
764
801
|
attr_accessor redshift_run_configuration: Types::RedshiftRunConfigurationInput
|
@@ -840,6 +877,13 @@ module Aws::DataZone
|
|
840
877
|
SENSITIVE: [:name, :schedule]
|
841
878
|
end
|
842
879
|
|
880
|
+
class DeleteAssetFilterInput
|
881
|
+
attr_accessor asset_identifier: ::String
|
882
|
+
attr_accessor domain_identifier: ::String
|
883
|
+
attr_accessor identifier: ::String
|
884
|
+
SENSITIVE: []
|
885
|
+
end
|
886
|
+
|
843
887
|
class DeleteAssetInput
|
844
888
|
attr_accessor domain_identifier: ::String
|
845
889
|
attr_accessor identifier: ::String
|
@@ -1094,6 +1138,7 @@ module Aws::DataZone
|
|
1094
1138
|
attr_accessor enabled_regions: ::Array[::String]
|
1095
1139
|
attr_accessor environment_blueprint_id: ::String
|
1096
1140
|
attr_accessor manage_access_role_arn: ::String
|
1141
|
+
attr_accessor provisioning_configurations: ::Array[Types::ProvisioningConfiguration]
|
1097
1142
|
attr_accessor provisioning_role_arn: ::String
|
1098
1143
|
attr_accessor regional_parameters: ::Hash[::String, ::Hash[::String, ::String]]
|
1099
1144
|
attr_accessor updated_at: ::Time
|
@@ -1155,6 +1200,12 @@ module Aws::DataZone
|
|
1155
1200
|
SENSITIVE: [:description, :name]
|
1156
1201
|
end
|
1157
1202
|
|
1203
|
+
class EqualToExpression
|
1204
|
+
attr_accessor column_name: ::String
|
1205
|
+
attr_accessor value: ::String
|
1206
|
+
SENSITIVE: []
|
1207
|
+
end
|
1208
|
+
|
1158
1209
|
class FailureCause
|
1159
1210
|
attr_accessor message: ::String
|
1160
1211
|
SENSITIVE: []
|
@@ -1235,6 +1286,28 @@ module Aws::DataZone
|
|
1235
1286
|
SENSITIVE: [:description, :model, :name]
|
1236
1287
|
end
|
1237
1288
|
|
1289
|
+
class GetAssetFilterInput
|
1290
|
+
attr_accessor asset_identifier: ::String
|
1291
|
+
attr_accessor domain_identifier: ::String
|
1292
|
+
attr_accessor identifier: ::String
|
1293
|
+
SENSITIVE: []
|
1294
|
+
end
|
1295
|
+
|
1296
|
+
class GetAssetFilterOutput
|
1297
|
+
attr_accessor asset_id: ::String
|
1298
|
+
attr_accessor configuration: Types::AssetFilterConfiguration
|
1299
|
+
attr_accessor created_at: ::Time
|
1300
|
+
attr_accessor description: ::String
|
1301
|
+
attr_accessor domain_id: ::String
|
1302
|
+
attr_accessor effective_column_names: ::Array[::String]
|
1303
|
+
attr_accessor effective_row_filter: ::String
|
1304
|
+
attr_accessor error_message: ::String
|
1305
|
+
attr_accessor id: ::String
|
1306
|
+
attr_accessor name: ::String
|
1307
|
+
attr_accessor status: ("VALID" | "INVALID")
|
1308
|
+
SENSITIVE: [:description, :name]
|
1309
|
+
end
|
1310
|
+
|
1238
1311
|
class GetAssetInput
|
1239
1312
|
attr_accessor domain_identifier: ::String
|
1240
1313
|
attr_accessor identifier: ::String
|
@@ -1392,6 +1465,7 @@ module Aws::DataZone
|
|
1392
1465
|
attr_accessor enabled_regions: ::Array[::String]
|
1393
1466
|
attr_accessor environment_blueprint_id: ::String
|
1394
1467
|
attr_accessor manage_access_role_arn: ::String
|
1468
|
+
attr_accessor provisioning_configurations: ::Array[Types::ProvisioningConfiguration]
|
1395
1469
|
attr_accessor provisioning_role_arn: ::String
|
1396
1470
|
attr_accessor regional_parameters: ::Hash[::String, ::Hash[::String, ::String]]
|
1397
1471
|
attr_accessor updated_at: ::Time
|
@@ -1844,6 +1918,18 @@ module Aws::DataZone
|
|
1844
1918
|
end
|
1845
1919
|
end
|
1846
1920
|
|
1921
|
+
class GreaterThanExpression
|
1922
|
+
attr_accessor column_name: ::String
|
1923
|
+
attr_accessor value: ::String
|
1924
|
+
SENSITIVE: []
|
1925
|
+
end
|
1926
|
+
|
1927
|
+
class GreaterThanOrEqualToExpression
|
1928
|
+
attr_accessor column_name: ::String
|
1929
|
+
attr_accessor value: ::String
|
1930
|
+
SENSITIVE: []
|
1931
|
+
end
|
1932
|
+
|
1847
1933
|
class GroupDetails
|
1848
1934
|
attr_accessor group_id: ::String
|
1849
1935
|
SENSITIVE: []
|
@@ -1868,11 +1954,51 @@ module Aws::DataZone
|
|
1868
1954
|
SENSITIVE: [:name]
|
1869
1955
|
end
|
1870
1956
|
|
1957
|
+
class InExpression
|
1958
|
+
attr_accessor column_name: ::String
|
1959
|
+
attr_accessor values: ::Array[::String]
|
1960
|
+
SENSITIVE: []
|
1961
|
+
end
|
1962
|
+
|
1871
1963
|
class InternalServerException
|
1872
1964
|
attr_accessor message: ::String
|
1873
1965
|
SENSITIVE: []
|
1874
1966
|
end
|
1875
1967
|
|
1968
|
+
class IsNotNullExpression
|
1969
|
+
attr_accessor column_name: ::String
|
1970
|
+
SENSITIVE: []
|
1971
|
+
end
|
1972
|
+
|
1973
|
+
class IsNullExpression
|
1974
|
+
attr_accessor column_name: ::String
|
1975
|
+
SENSITIVE: []
|
1976
|
+
end
|
1977
|
+
|
1978
|
+
class LakeFormationConfiguration
|
1979
|
+
attr_accessor location_registration_exclude_s3_locations: ::Array[::String]
|
1980
|
+
attr_accessor location_registration_role: ::String
|
1981
|
+
SENSITIVE: []
|
1982
|
+
end
|
1983
|
+
|
1984
|
+
class LessThanExpression
|
1985
|
+
attr_accessor column_name: ::String
|
1986
|
+
attr_accessor value: ::String
|
1987
|
+
SENSITIVE: []
|
1988
|
+
end
|
1989
|
+
|
1990
|
+
class LessThanOrEqualToExpression
|
1991
|
+
attr_accessor column_name: ::String
|
1992
|
+
attr_accessor value: ::String
|
1993
|
+
SENSITIVE: []
|
1994
|
+
end
|
1995
|
+
|
1996
|
+
class LikeExpression
|
1997
|
+
attr_accessor column_name: ::String
|
1998
|
+
attr_accessor value: ::String
|
1999
|
+
SENSITIVE: []
|
2000
|
+
end
|
2001
|
+
|
1876
2002
|
class LineageNodeReference
|
1877
2003
|
attr_accessor event_timestamp: ::Time
|
1878
2004
|
attr_accessor id: ::String
|
@@ -1908,6 +2034,21 @@ module Aws::DataZone
|
|
1908
2034
|
SENSITIVE: []
|
1909
2035
|
end
|
1910
2036
|
|
2037
|
+
class ListAssetFiltersInput
|
2038
|
+
attr_accessor asset_identifier: ::String
|
2039
|
+
attr_accessor domain_identifier: ::String
|
2040
|
+
attr_accessor max_results: ::Integer
|
2041
|
+
attr_accessor next_token: ::String
|
2042
|
+
attr_accessor status: ("VALID" | "INVALID")
|
2043
|
+
SENSITIVE: []
|
2044
|
+
end
|
2045
|
+
|
2046
|
+
class ListAssetFiltersOutput
|
2047
|
+
attr_accessor items: ::Array[Types::AssetFilterSummary]
|
2048
|
+
attr_accessor next_token: ::String
|
2049
|
+
SENSITIVE: []
|
2050
|
+
end
|
2051
|
+
|
1911
2052
|
class ListAssetRevisionsInput
|
1912
2053
|
attr_accessor domain_identifier: ::String
|
1913
2054
|
attr_accessor identifier: ::String
|
@@ -2330,6 +2471,24 @@ module Aws::DataZone
|
|
2330
2471
|
end
|
2331
2472
|
end
|
2332
2473
|
|
2474
|
+
class NotEqualToExpression
|
2475
|
+
attr_accessor column_name: ::String
|
2476
|
+
attr_accessor value: ::String
|
2477
|
+
SENSITIVE: []
|
2478
|
+
end
|
2479
|
+
|
2480
|
+
class NotInExpression
|
2481
|
+
attr_accessor column_name: ::String
|
2482
|
+
attr_accessor values: ::Array[::String]
|
2483
|
+
SENSITIVE: []
|
2484
|
+
end
|
2485
|
+
|
2486
|
+
class NotLikeExpression
|
2487
|
+
attr_accessor column_name: ::String
|
2488
|
+
attr_accessor value: ::String
|
2489
|
+
SENSITIVE: []
|
2490
|
+
end
|
2491
|
+
|
2333
2492
|
class NotificationOutput
|
2334
2493
|
attr_accessor action_link: ::String
|
2335
2494
|
attr_accessor creation_timestamp: ::Time
|
@@ -2409,6 +2568,17 @@ module Aws::DataZone
|
|
2409
2568
|
SENSITIVE: [:description, :name]
|
2410
2569
|
end
|
2411
2570
|
|
2571
|
+
class ProvisioningConfiguration
|
2572
|
+
attr_accessor lake_formation_configuration: Types::LakeFormationConfiguration
|
2573
|
+
attr_accessor unknown: untyped
|
2574
|
+
SENSITIVE: []
|
2575
|
+
|
2576
|
+
class LakeFormationConfiguration < ProvisioningConfiguration
|
2577
|
+
end
|
2578
|
+
class Unknown < ProvisioningConfiguration
|
2579
|
+
end
|
2580
|
+
end
|
2581
|
+
|
2412
2582
|
class ProvisioningProperties
|
2413
2583
|
attr_accessor cloud_formation: Types::CloudFormationProperties
|
2414
2584
|
attr_accessor unknown: untyped
|
@@ -2425,6 +2595,7 @@ module Aws::DataZone
|
|
2425
2595
|
attr_accessor enabled_regions: ::Array[::String]
|
2426
2596
|
attr_accessor environment_blueprint_identifier: ::String
|
2427
2597
|
attr_accessor manage_access_role_arn: ::String
|
2598
|
+
attr_accessor provisioning_configurations: ::Array[Types::ProvisioningConfiguration]
|
2428
2599
|
attr_accessor provisioning_role_arn: ::String
|
2429
2600
|
attr_accessor regional_parameters: ::Hash[::String, ::Hash[::String, ::String]]
|
2430
2601
|
SENSITIVE: []
|
@@ -2436,6 +2607,7 @@ module Aws::DataZone
|
|
2436
2607
|
attr_accessor enabled_regions: ::Array[::String]
|
2437
2608
|
attr_accessor environment_blueprint_id: ::String
|
2438
2609
|
attr_accessor manage_access_role_arn: ::String
|
2610
|
+
attr_accessor provisioning_configurations: ::Array[Types::ProvisioningConfiguration]
|
2439
2611
|
attr_accessor provisioning_role_arn: ::String
|
2440
2612
|
attr_accessor regional_parameters: ::Hash[::String, ::Hash[::String, ::String]]
|
2441
2613
|
attr_accessor updated_at: ::Time
|
@@ -2593,6 +2765,73 @@ module Aws::DataZone
|
|
2593
2765
|
SENSITIVE: []
|
2594
2766
|
end
|
2595
2767
|
|
2768
|
+
class RowFilter
|
2769
|
+
attr_accessor and: ::Array[Types::RowFilter]
|
2770
|
+
attr_accessor expression: Types::RowFilterExpression
|
2771
|
+
attr_accessor or: ::Array[Types::RowFilter]
|
2772
|
+
attr_accessor unknown: untyped
|
2773
|
+
SENSITIVE: []
|
2774
|
+
|
2775
|
+
class And < RowFilter
|
2776
|
+
end
|
2777
|
+
class Expression < RowFilter
|
2778
|
+
end
|
2779
|
+
class Or < RowFilter
|
2780
|
+
end
|
2781
|
+
class Unknown < RowFilter
|
2782
|
+
end
|
2783
|
+
end
|
2784
|
+
|
2785
|
+
class RowFilterConfiguration
|
2786
|
+
attr_accessor row_filter: Types::RowFilter
|
2787
|
+
attr_accessor sensitive: bool
|
2788
|
+
SENSITIVE: []
|
2789
|
+
end
|
2790
|
+
|
2791
|
+
class RowFilterExpression
|
2792
|
+
attr_accessor equal_to: Types::EqualToExpression
|
2793
|
+
attr_accessor greater_than: Types::GreaterThanExpression
|
2794
|
+
attr_accessor greater_than_or_equal_to: Types::GreaterThanOrEqualToExpression
|
2795
|
+
attr_accessor in: Types::InExpression
|
2796
|
+
attr_accessor is_not_null: Types::IsNotNullExpression
|
2797
|
+
attr_accessor is_null: Types::IsNullExpression
|
2798
|
+
attr_accessor less_than: Types::LessThanExpression
|
2799
|
+
attr_accessor less_than_or_equal_to: Types::LessThanOrEqualToExpression
|
2800
|
+
attr_accessor like: Types::LikeExpression
|
2801
|
+
attr_accessor not_equal_to: Types::NotEqualToExpression
|
2802
|
+
attr_accessor not_in: Types::NotInExpression
|
2803
|
+
attr_accessor not_like: Types::NotLikeExpression
|
2804
|
+
attr_accessor unknown: untyped
|
2805
|
+
SENSITIVE: []
|
2806
|
+
|
2807
|
+
class EqualTo < RowFilterExpression
|
2808
|
+
end
|
2809
|
+
class GreaterThan < RowFilterExpression
|
2810
|
+
end
|
2811
|
+
class GreaterThanOrEqualTo < RowFilterExpression
|
2812
|
+
end
|
2813
|
+
class In < RowFilterExpression
|
2814
|
+
end
|
2815
|
+
class IsNotNull < RowFilterExpression
|
2816
|
+
end
|
2817
|
+
class IsNull < RowFilterExpression
|
2818
|
+
end
|
2819
|
+
class LessThan < RowFilterExpression
|
2820
|
+
end
|
2821
|
+
class LessThanOrEqualTo < RowFilterExpression
|
2822
|
+
end
|
2823
|
+
class Like < RowFilterExpression
|
2824
|
+
end
|
2825
|
+
class NotEqualTo < RowFilterExpression
|
2826
|
+
end
|
2827
|
+
class NotIn < RowFilterExpression
|
2828
|
+
end
|
2829
|
+
class NotLike < RowFilterExpression
|
2830
|
+
end
|
2831
|
+
class Unknown < RowFilterExpression
|
2832
|
+
end
|
2833
|
+
end
|
2834
|
+
|
2596
2835
|
class RunStatisticsForAssets
|
2597
2836
|
attr_accessor added: ::Integer
|
2598
2837
|
attr_accessor failed: ::Integer
|
@@ -2644,7 +2883,6 @@ module Aws::DataZone
|
|
2644
2883
|
|
2645
2884
|
class SearchInventoryResultItem
|
2646
2885
|
attr_accessor asset_item: Types::AssetItem
|
2647
|
-
attr_accessor data_product_item: Types::DataProductSummary
|
2648
2886
|
attr_accessor glossary_item: Types::GlossaryItem
|
2649
2887
|
attr_accessor glossary_term_item: Types::GlossaryTermItem
|
2650
2888
|
attr_accessor unknown: untyped
|
@@ -2652,8 +2890,6 @@ module Aws::DataZone
|
|
2652
2890
|
|
2653
2891
|
class AssetItem < SearchInventoryResultItem
|
2654
2892
|
end
|
2655
|
-
class DataProductItem < SearchInventoryResultItem
|
2656
|
-
end
|
2657
2893
|
class GlossaryItem < SearchInventoryResultItem
|
2658
2894
|
end
|
2659
2895
|
class GlossaryTermItem < SearchInventoryResultItem
|
@@ -3062,6 +3298,31 @@ module Aws::DataZone
|
|
3062
3298
|
class UntagResourceResponse < Aws::EmptyStructure
|
3063
3299
|
end
|
3064
3300
|
|
3301
|
+
class UpdateAssetFilterInput
|
3302
|
+
attr_accessor asset_identifier: ::String
|
3303
|
+
attr_accessor configuration: Types::AssetFilterConfiguration
|
3304
|
+
attr_accessor description: ::String
|
3305
|
+
attr_accessor domain_identifier: ::String
|
3306
|
+
attr_accessor identifier: ::String
|
3307
|
+
attr_accessor name: ::String
|
3308
|
+
SENSITIVE: [:description]
|
3309
|
+
end
|
3310
|
+
|
3311
|
+
class UpdateAssetFilterOutput
|
3312
|
+
attr_accessor asset_id: ::String
|
3313
|
+
attr_accessor configuration: Types::AssetFilterConfiguration
|
3314
|
+
attr_accessor created_at: ::Time
|
3315
|
+
attr_accessor description: ::String
|
3316
|
+
attr_accessor domain_id: ::String
|
3317
|
+
attr_accessor effective_column_names: ::Array[::String]
|
3318
|
+
attr_accessor effective_row_filter: ::String
|
3319
|
+
attr_accessor error_message: ::String
|
3320
|
+
attr_accessor id: ::String
|
3321
|
+
attr_accessor name: ::String
|
3322
|
+
attr_accessor status: ("VALID" | "INVALID")
|
3323
|
+
SENSITIVE: [:description, :name]
|
3324
|
+
end
|
3325
|
+
|
3065
3326
|
class UpdateDataSourceInput
|
3066
3327
|
attr_accessor asset_forms_input: ::Array[Types::FormInput]
|
3067
3328
|
attr_accessor configuration: Types::DataSourceConfigurationInput
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-datazone
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.16.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-07-
|
11
|
+
date: 2024-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|