aws-sdk-datazone 1.14.0 → 1.16.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-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/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -213,6 +213,94 @@ module Aws
|
|
213
213
|
) -> _CreateAssetResponseSuccess
|
214
214
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAssetResponseSuccess
|
215
215
|
|
216
|
+
interface _CreateAssetFilterResponseSuccess
|
217
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAssetFilterOutput]
|
218
|
+
def asset_id: () -> ::String
|
219
|
+
def configuration: () -> Types::AssetFilterConfiguration
|
220
|
+
def created_at: () -> ::Time
|
221
|
+
def description: () -> ::String
|
222
|
+
def domain_id: () -> ::String
|
223
|
+
def effective_column_names: () -> ::Array[::String]
|
224
|
+
def effective_row_filter: () -> ::String
|
225
|
+
def error_message: () -> ::String
|
226
|
+
def id: () -> ::String
|
227
|
+
def name: () -> ::String
|
228
|
+
def status: () -> ("VALID" | "INVALID")
|
229
|
+
end
|
230
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_asset_filter-instance_method
|
231
|
+
def create_asset_filter: (
|
232
|
+
asset_identifier: ::String,
|
233
|
+
?client_token: ::String,
|
234
|
+
configuration: {
|
235
|
+
column_configuration: {
|
236
|
+
included_column_names: Array[::String]?
|
237
|
+
}?,
|
238
|
+
row_configuration: {
|
239
|
+
row_filter: {
|
240
|
+
and: Array[
|
241
|
+
untyped,
|
242
|
+
]?,
|
243
|
+
expression: {
|
244
|
+
equal_to: {
|
245
|
+
column_name: ::String,
|
246
|
+
value: ::String
|
247
|
+
}?,
|
248
|
+
greater_than: {
|
249
|
+
column_name: ::String,
|
250
|
+
value: ::String
|
251
|
+
}?,
|
252
|
+
greater_than_or_equal_to: {
|
253
|
+
column_name: ::String,
|
254
|
+
value: ::String
|
255
|
+
}?,
|
256
|
+
in: {
|
257
|
+
column_name: ::String,
|
258
|
+
values: Array[::String]
|
259
|
+
}?,
|
260
|
+
is_not_null: {
|
261
|
+
column_name: ::String
|
262
|
+
}?,
|
263
|
+
is_null: {
|
264
|
+
column_name: ::String
|
265
|
+
}?,
|
266
|
+
less_than: {
|
267
|
+
column_name: ::String,
|
268
|
+
value: ::String
|
269
|
+
}?,
|
270
|
+
less_than_or_equal_to: {
|
271
|
+
column_name: ::String,
|
272
|
+
value: ::String
|
273
|
+
}?,
|
274
|
+
like: {
|
275
|
+
column_name: ::String,
|
276
|
+
value: ::String
|
277
|
+
}?,
|
278
|
+
not_equal_to: {
|
279
|
+
column_name: ::String,
|
280
|
+
value: ::String
|
281
|
+
}?,
|
282
|
+
not_in: {
|
283
|
+
column_name: ::String,
|
284
|
+
values: Array[::String]
|
285
|
+
}?,
|
286
|
+
not_like: {
|
287
|
+
column_name: ::String,
|
288
|
+
value: ::String
|
289
|
+
}?
|
290
|
+
}?,
|
291
|
+
or: Array[
|
292
|
+
untyped,
|
293
|
+
]?
|
294
|
+
},
|
295
|
+
sensitive: bool?
|
296
|
+
}?
|
297
|
+
},
|
298
|
+
?description: ::String,
|
299
|
+
domain_identifier: ::String,
|
300
|
+
name: ::String
|
301
|
+
) -> _CreateAssetFilterResponseSuccess
|
302
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAssetFilterResponseSuccess
|
303
|
+
|
216
304
|
interface _CreateAssetRevisionResponseSuccess
|
217
305
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAssetRevisionOutput]
|
218
306
|
def created_at: () -> ::Time
|
@@ -787,6 +875,14 @@ module Aws
|
|
787
875
|
) -> _DeleteAssetResponseSuccess
|
788
876
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAssetResponseSuccess
|
789
877
|
|
878
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_asset_filter-instance_method
|
879
|
+
def delete_asset_filter: (
|
880
|
+
asset_identifier: ::String,
|
881
|
+
domain_identifier: ::String,
|
882
|
+
identifier: ::String
|
883
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
884
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
885
|
+
|
790
886
|
interface _DeleteAssetTypeResponseSuccess
|
791
887
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAssetTypeOutput]
|
792
888
|
end
|
@@ -1028,6 +1124,28 @@ module Aws
|
|
1028
1124
|
) -> _GetAssetResponseSuccess
|
1029
1125
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssetResponseSuccess
|
1030
1126
|
|
1127
|
+
interface _GetAssetFilterResponseSuccess
|
1128
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAssetFilterOutput]
|
1129
|
+
def asset_id: () -> ::String
|
1130
|
+
def configuration: () -> Types::AssetFilterConfiguration
|
1131
|
+
def created_at: () -> ::Time
|
1132
|
+
def description: () -> ::String
|
1133
|
+
def domain_id: () -> ::String
|
1134
|
+
def effective_column_names: () -> ::Array[::String]
|
1135
|
+
def effective_row_filter: () -> ::String
|
1136
|
+
def error_message: () -> ::String
|
1137
|
+
def id: () -> ::String
|
1138
|
+
def name: () -> ::String
|
1139
|
+
def status: () -> ("VALID" | "INVALID")
|
1140
|
+
end
|
1141
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_asset_filter-instance_method
|
1142
|
+
def get_asset_filter: (
|
1143
|
+
asset_identifier: ::String,
|
1144
|
+
domain_identifier: ::String,
|
1145
|
+
identifier: ::String
|
1146
|
+
) -> _GetAssetFilterResponseSuccess
|
1147
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssetFilterResponseSuccess
|
1148
|
+
|
1031
1149
|
interface _GetAssetTypeResponseSuccess
|
1032
1150
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetAssetTypeOutput]
|
1033
1151
|
def created_at: () -> ::Time
|
@@ -1202,6 +1320,7 @@ module Aws
|
|
1202
1320
|
def enabled_regions: () -> ::Array[::String]
|
1203
1321
|
def environment_blueprint_id: () -> ::String
|
1204
1322
|
def manage_access_role_arn: () -> ::String
|
1323
|
+
def provisioning_configurations: () -> ::Array[Types::ProvisioningConfiguration]
|
1205
1324
|
def provisioning_role_arn: () -> ::String
|
1206
1325
|
def regional_parameters: () -> ::Hash[::String, ::Hash[::String, ::String]]
|
1207
1326
|
def updated_at: () -> ::Time
|
@@ -1535,6 +1654,21 @@ module Aws
|
|
1535
1654
|
) -> _GetUserProfileResponseSuccess
|
1536
1655
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUserProfileResponseSuccess
|
1537
1656
|
|
1657
|
+
interface _ListAssetFiltersResponseSuccess
|
1658
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAssetFiltersOutput]
|
1659
|
+
def items: () -> ::Array[Types::AssetFilterSummary]
|
1660
|
+
def next_token: () -> ::String
|
1661
|
+
end
|
1662
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_asset_filters-instance_method
|
1663
|
+
def list_asset_filters: (
|
1664
|
+
asset_identifier: ::String,
|
1665
|
+
domain_identifier: ::String,
|
1666
|
+
?max_results: ::Integer,
|
1667
|
+
?next_token: ::String,
|
1668
|
+
?status: ("VALID" | "INVALID")
|
1669
|
+
) -> _ListAssetFiltersResponseSuccess
|
1670
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetFiltersResponseSuccess
|
1671
|
+
|
1538
1672
|
interface _ListAssetRevisionsResponseSuccess
|
1539
1673
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListAssetRevisionsOutput]
|
1540
1674
|
def items: () -> ::Array[Types::AssetRevision]
|
@@ -1919,6 +2053,7 @@ module Aws
|
|
1919
2053
|
def enabled_regions: () -> ::Array[::String]
|
1920
2054
|
def environment_blueprint_id: () -> ::String
|
1921
2055
|
def manage_access_role_arn: () -> ::String
|
2056
|
+
def provisioning_configurations: () -> ::Array[Types::ProvisioningConfiguration]
|
1922
2057
|
def provisioning_role_arn: () -> ::String
|
1923
2058
|
def regional_parameters: () -> ::Hash[::String, ::Hash[::String, ::String]]
|
1924
2059
|
def updated_at: () -> ::Time
|
@@ -1929,6 +2064,14 @@ module Aws
|
|
1929
2064
|
enabled_regions: Array[::String],
|
1930
2065
|
environment_blueprint_identifier: ::String,
|
1931
2066
|
?manage_access_role_arn: ::String,
|
2067
|
+
?provisioning_configurations: Array[
|
2068
|
+
{
|
2069
|
+
lake_formation_configuration: {
|
2070
|
+
location_registration_exclude_s3_locations: Array[::String]?,
|
2071
|
+
location_registration_role: ::String?
|
2072
|
+
}?
|
2073
|
+
},
|
2074
|
+
],
|
1932
2075
|
?provisioning_role_arn: ::String,
|
1933
2076
|
?regional_parameters: Hash[::String, Hash[::String, ::String]]
|
1934
2077
|
) -> _PutEnvironmentBlueprintConfigurationResponseSuccess
|
@@ -2216,6 +2359,94 @@ module Aws
|
|
2216
2359
|
) -> _UntagResourceResponseSuccess
|
2217
2360
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
2218
2361
|
|
2362
|
+
interface _UpdateAssetFilterResponseSuccess
|
2363
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAssetFilterOutput]
|
2364
|
+
def asset_id: () -> ::String
|
2365
|
+
def configuration: () -> Types::AssetFilterConfiguration
|
2366
|
+
def created_at: () -> ::Time
|
2367
|
+
def description: () -> ::String
|
2368
|
+
def domain_id: () -> ::String
|
2369
|
+
def effective_column_names: () -> ::Array[::String]
|
2370
|
+
def effective_row_filter: () -> ::String
|
2371
|
+
def error_message: () -> ::String
|
2372
|
+
def id: () -> ::String
|
2373
|
+
def name: () -> ::String
|
2374
|
+
def status: () -> ("VALID" | "INVALID")
|
2375
|
+
end
|
2376
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_asset_filter-instance_method
|
2377
|
+
def update_asset_filter: (
|
2378
|
+
asset_identifier: ::String,
|
2379
|
+
?configuration: {
|
2380
|
+
column_configuration: {
|
2381
|
+
included_column_names: Array[::String]?
|
2382
|
+
}?,
|
2383
|
+
row_configuration: {
|
2384
|
+
row_filter: {
|
2385
|
+
and: Array[
|
2386
|
+
untyped,
|
2387
|
+
]?,
|
2388
|
+
expression: {
|
2389
|
+
equal_to: {
|
2390
|
+
column_name: ::String,
|
2391
|
+
value: ::String
|
2392
|
+
}?,
|
2393
|
+
greater_than: {
|
2394
|
+
column_name: ::String,
|
2395
|
+
value: ::String
|
2396
|
+
}?,
|
2397
|
+
greater_than_or_equal_to: {
|
2398
|
+
column_name: ::String,
|
2399
|
+
value: ::String
|
2400
|
+
}?,
|
2401
|
+
in: {
|
2402
|
+
column_name: ::String,
|
2403
|
+
values: Array[::String]
|
2404
|
+
}?,
|
2405
|
+
is_not_null: {
|
2406
|
+
column_name: ::String
|
2407
|
+
}?,
|
2408
|
+
is_null: {
|
2409
|
+
column_name: ::String
|
2410
|
+
}?,
|
2411
|
+
less_than: {
|
2412
|
+
column_name: ::String,
|
2413
|
+
value: ::String
|
2414
|
+
}?,
|
2415
|
+
less_than_or_equal_to: {
|
2416
|
+
column_name: ::String,
|
2417
|
+
value: ::String
|
2418
|
+
}?,
|
2419
|
+
like: {
|
2420
|
+
column_name: ::String,
|
2421
|
+
value: ::String
|
2422
|
+
}?,
|
2423
|
+
not_equal_to: {
|
2424
|
+
column_name: ::String,
|
2425
|
+
value: ::String
|
2426
|
+
}?,
|
2427
|
+
not_in: {
|
2428
|
+
column_name: ::String,
|
2429
|
+
values: Array[::String]
|
2430
|
+
}?,
|
2431
|
+
not_like: {
|
2432
|
+
column_name: ::String,
|
2433
|
+
value: ::String
|
2434
|
+
}?
|
2435
|
+
}?,
|
2436
|
+
or: Array[
|
2437
|
+
untyped,
|
2438
|
+
]?
|
2439
|
+
},
|
2440
|
+
sensitive: bool?
|
2441
|
+
}?
|
2442
|
+
},
|
2443
|
+
?description: ::String,
|
2444
|
+
domain_identifier: ::String,
|
2445
|
+
identifier: ::String,
|
2446
|
+
?name: ::String
|
2447
|
+
) -> _UpdateAssetFilterResponseSuccess
|
2448
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAssetFilterResponseSuccess
|
2449
|
+
|
2219
2450
|
interface _UpdateDataSourceResponseSuccess
|
2220
2451
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataSourceOutput]
|
2221
2452
|
def asset_forms_output: () -> ::Array[Types::FormOutput]
|