aws-sdk-datazone 1.13.0 → 1.15.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 -1
- data/lib/aws-sdk-datazone/client_api.rb +335 -3
- 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 +920 -18
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +231 -0
- data/sig/types.rbs +285 -0
- 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]
|
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
|
@@ -840,6 +898,13 @@ module Aws::DataZone
|
|
840
898
|
SENSITIVE: [:name, :schedule]
|
841
899
|
end
|
842
900
|
|
901
|
+
class DeleteAssetFilterInput
|
902
|
+
attr_accessor asset_identifier: ::String
|
903
|
+
attr_accessor domain_identifier: ::String
|
904
|
+
attr_accessor identifier: ::String
|
905
|
+
SENSITIVE: []
|
906
|
+
end
|
907
|
+
|
843
908
|
class DeleteAssetInput
|
844
909
|
attr_accessor domain_identifier: ::String
|
845
910
|
attr_accessor identifier: ::String
|
@@ -1094,6 +1159,7 @@ module Aws::DataZone
|
|
1094
1159
|
attr_accessor enabled_regions: ::Array[::String]
|
1095
1160
|
attr_accessor environment_blueprint_id: ::String
|
1096
1161
|
attr_accessor manage_access_role_arn: ::String
|
1162
|
+
attr_accessor provisioning_configurations: ::Array[Types::ProvisioningConfiguration]
|
1097
1163
|
attr_accessor provisioning_role_arn: ::String
|
1098
1164
|
attr_accessor regional_parameters: ::Hash[::String, ::Hash[::String, ::String]]
|
1099
1165
|
attr_accessor updated_at: ::Time
|
@@ -1155,6 +1221,12 @@ module Aws::DataZone
|
|
1155
1221
|
SENSITIVE: [:description, :name]
|
1156
1222
|
end
|
1157
1223
|
|
1224
|
+
class EqualToExpression
|
1225
|
+
attr_accessor column_name: ::String
|
1226
|
+
attr_accessor value: ::String
|
1227
|
+
SENSITIVE: []
|
1228
|
+
end
|
1229
|
+
|
1158
1230
|
class FailureCause
|
1159
1231
|
attr_accessor message: ::String
|
1160
1232
|
SENSITIVE: []
|
@@ -1235,6 +1307,28 @@ module Aws::DataZone
|
|
1235
1307
|
SENSITIVE: [:description, :model, :name]
|
1236
1308
|
end
|
1237
1309
|
|
1310
|
+
class GetAssetFilterInput
|
1311
|
+
attr_accessor asset_identifier: ::String
|
1312
|
+
attr_accessor domain_identifier: ::String
|
1313
|
+
attr_accessor identifier: ::String
|
1314
|
+
SENSITIVE: []
|
1315
|
+
end
|
1316
|
+
|
1317
|
+
class GetAssetFilterOutput
|
1318
|
+
attr_accessor asset_id: ::String
|
1319
|
+
attr_accessor configuration: Types::AssetFilterConfiguration
|
1320
|
+
attr_accessor created_at: ::Time
|
1321
|
+
attr_accessor description: ::String
|
1322
|
+
attr_accessor domain_id: ::String
|
1323
|
+
attr_accessor effective_column_names: ::Array[::String]
|
1324
|
+
attr_accessor effective_row_filter: ::String
|
1325
|
+
attr_accessor error_message: ::String
|
1326
|
+
attr_accessor id: ::String
|
1327
|
+
attr_accessor name: ::String
|
1328
|
+
attr_accessor status: ("VALID" | "INVALID")
|
1329
|
+
SENSITIVE: [:description, :name]
|
1330
|
+
end
|
1331
|
+
|
1238
1332
|
class GetAssetInput
|
1239
1333
|
attr_accessor domain_identifier: ::String
|
1240
1334
|
attr_accessor identifier: ::String
|
@@ -1392,6 +1486,7 @@ module Aws::DataZone
|
|
1392
1486
|
attr_accessor enabled_regions: ::Array[::String]
|
1393
1487
|
attr_accessor environment_blueprint_id: ::String
|
1394
1488
|
attr_accessor manage_access_role_arn: ::String
|
1489
|
+
attr_accessor provisioning_configurations: ::Array[Types::ProvisioningConfiguration]
|
1395
1490
|
attr_accessor provisioning_role_arn: ::String
|
1396
1491
|
attr_accessor regional_parameters: ::Hash[::String, ::Hash[::String, ::String]]
|
1397
1492
|
attr_accessor updated_at: ::Time
|
@@ -1844,6 +1939,18 @@ module Aws::DataZone
|
|
1844
1939
|
end
|
1845
1940
|
end
|
1846
1941
|
|
1942
|
+
class GreaterThanExpression
|
1943
|
+
attr_accessor column_name: ::String
|
1944
|
+
attr_accessor value: ::String
|
1945
|
+
SENSITIVE: []
|
1946
|
+
end
|
1947
|
+
|
1948
|
+
class GreaterThanOrEqualToExpression
|
1949
|
+
attr_accessor column_name: ::String
|
1950
|
+
attr_accessor value: ::String
|
1951
|
+
SENSITIVE: []
|
1952
|
+
end
|
1953
|
+
|
1847
1954
|
class GroupDetails
|
1848
1955
|
attr_accessor group_id: ::String
|
1849
1956
|
SENSITIVE: []
|
@@ -1868,11 +1975,51 @@ module Aws::DataZone
|
|
1868
1975
|
SENSITIVE: [:name]
|
1869
1976
|
end
|
1870
1977
|
|
1978
|
+
class InExpression
|
1979
|
+
attr_accessor column_name: ::String
|
1980
|
+
attr_accessor values: ::Array[::String]
|
1981
|
+
SENSITIVE: []
|
1982
|
+
end
|
1983
|
+
|
1871
1984
|
class InternalServerException
|
1872
1985
|
attr_accessor message: ::String
|
1873
1986
|
SENSITIVE: []
|
1874
1987
|
end
|
1875
1988
|
|
1989
|
+
class IsNotNullExpression
|
1990
|
+
attr_accessor column_name: ::String
|
1991
|
+
SENSITIVE: []
|
1992
|
+
end
|
1993
|
+
|
1994
|
+
class IsNullExpression
|
1995
|
+
attr_accessor column_name: ::String
|
1996
|
+
SENSITIVE: []
|
1997
|
+
end
|
1998
|
+
|
1999
|
+
class LakeFormationConfiguration
|
2000
|
+
attr_accessor location_registration_exclude_s3_locations: ::Array[::String]
|
2001
|
+
attr_accessor location_registration_role: ::String
|
2002
|
+
SENSITIVE: []
|
2003
|
+
end
|
2004
|
+
|
2005
|
+
class LessThanExpression
|
2006
|
+
attr_accessor column_name: ::String
|
2007
|
+
attr_accessor value: ::String
|
2008
|
+
SENSITIVE: []
|
2009
|
+
end
|
2010
|
+
|
2011
|
+
class LessThanOrEqualToExpression
|
2012
|
+
attr_accessor column_name: ::String
|
2013
|
+
attr_accessor value: ::String
|
2014
|
+
SENSITIVE: []
|
2015
|
+
end
|
2016
|
+
|
2017
|
+
class LikeExpression
|
2018
|
+
attr_accessor column_name: ::String
|
2019
|
+
attr_accessor value: ::String
|
2020
|
+
SENSITIVE: []
|
2021
|
+
end
|
2022
|
+
|
1876
2023
|
class LineageNodeReference
|
1877
2024
|
attr_accessor event_timestamp: ::Time
|
1878
2025
|
attr_accessor id: ::String
|
@@ -1908,6 +2055,21 @@ module Aws::DataZone
|
|
1908
2055
|
SENSITIVE: []
|
1909
2056
|
end
|
1910
2057
|
|
2058
|
+
class ListAssetFiltersInput
|
2059
|
+
attr_accessor asset_identifier: ::String
|
2060
|
+
attr_accessor domain_identifier: ::String
|
2061
|
+
attr_accessor max_results: ::Integer
|
2062
|
+
attr_accessor next_token: ::String
|
2063
|
+
attr_accessor status: ("VALID" | "INVALID")
|
2064
|
+
SENSITIVE: []
|
2065
|
+
end
|
2066
|
+
|
2067
|
+
class ListAssetFiltersOutput
|
2068
|
+
attr_accessor items: ::Array[Types::AssetFilterSummary]
|
2069
|
+
attr_accessor next_token: ::String
|
2070
|
+
SENSITIVE: []
|
2071
|
+
end
|
2072
|
+
|
1911
2073
|
class ListAssetRevisionsInput
|
1912
2074
|
attr_accessor domain_identifier: ::String
|
1913
2075
|
attr_accessor identifier: ::String
|
@@ -2330,6 +2492,24 @@ module Aws::DataZone
|
|
2330
2492
|
end
|
2331
2493
|
end
|
2332
2494
|
|
2495
|
+
class NotEqualToExpression
|
2496
|
+
attr_accessor column_name: ::String
|
2497
|
+
attr_accessor value: ::String
|
2498
|
+
SENSITIVE: []
|
2499
|
+
end
|
2500
|
+
|
2501
|
+
class NotInExpression
|
2502
|
+
attr_accessor column_name: ::String
|
2503
|
+
attr_accessor values: ::Array[::String]
|
2504
|
+
SENSITIVE: []
|
2505
|
+
end
|
2506
|
+
|
2507
|
+
class NotLikeExpression
|
2508
|
+
attr_accessor column_name: ::String
|
2509
|
+
attr_accessor value: ::String
|
2510
|
+
SENSITIVE: []
|
2511
|
+
end
|
2512
|
+
|
2333
2513
|
class NotificationOutput
|
2334
2514
|
attr_accessor action_link: ::String
|
2335
2515
|
attr_accessor creation_timestamp: ::Time
|
@@ -2409,6 +2589,17 @@ module Aws::DataZone
|
|
2409
2589
|
SENSITIVE: [:description, :name]
|
2410
2590
|
end
|
2411
2591
|
|
2592
|
+
class ProvisioningConfiguration
|
2593
|
+
attr_accessor lake_formation_configuration: Types::LakeFormationConfiguration
|
2594
|
+
attr_accessor unknown: untyped
|
2595
|
+
SENSITIVE: []
|
2596
|
+
|
2597
|
+
class LakeFormationConfiguration < ProvisioningConfiguration
|
2598
|
+
end
|
2599
|
+
class Unknown < ProvisioningConfiguration
|
2600
|
+
end
|
2601
|
+
end
|
2602
|
+
|
2412
2603
|
class ProvisioningProperties
|
2413
2604
|
attr_accessor cloud_formation: Types::CloudFormationProperties
|
2414
2605
|
attr_accessor unknown: untyped
|
@@ -2425,6 +2616,7 @@ module Aws::DataZone
|
|
2425
2616
|
attr_accessor enabled_regions: ::Array[::String]
|
2426
2617
|
attr_accessor environment_blueprint_identifier: ::String
|
2427
2618
|
attr_accessor manage_access_role_arn: ::String
|
2619
|
+
attr_accessor provisioning_configurations: ::Array[Types::ProvisioningConfiguration]
|
2428
2620
|
attr_accessor provisioning_role_arn: ::String
|
2429
2621
|
attr_accessor regional_parameters: ::Hash[::String, ::Hash[::String, ::String]]
|
2430
2622
|
SENSITIVE: []
|
@@ -2436,6 +2628,7 @@ module Aws::DataZone
|
|
2436
2628
|
attr_accessor enabled_regions: ::Array[::String]
|
2437
2629
|
attr_accessor environment_blueprint_id: ::String
|
2438
2630
|
attr_accessor manage_access_role_arn: ::String
|
2631
|
+
attr_accessor provisioning_configurations: ::Array[Types::ProvisioningConfiguration]
|
2439
2632
|
attr_accessor provisioning_role_arn: ::String
|
2440
2633
|
attr_accessor regional_parameters: ::Hash[::String, ::Hash[::String, ::String]]
|
2441
2634
|
attr_accessor updated_at: ::Time
|
@@ -2593,6 +2786,73 @@ module Aws::DataZone
|
|
2593
2786
|
SENSITIVE: []
|
2594
2787
|
end
|
2595
2788
|
|
2789
|
+
class RowFilter
|
2790
|
+
attr_accessor and: ::Array[Types::RowFilter]
|
2791
|
+
attr_accessor expression: Types::RowFilterExpression
|
2792
|
+
attr_accessor or: ::Array[Types::RowFilter]
|
2793
|
+
attr_accessor unknown: untyped
|
2794
|
+
SENSITIVE: []
|
2795
|
+
|
2796
|
+
class And < RowFilter
|
2797
|
+
end
|
2798
|
+
class Expression < RowFilter
|
2799
|
+
end
|
2800
|
+
class Or < RowFilter
|
2801
|
+
end
|
2802
|
+
class Unknown < RowFilter
|
2803
|
+
end
|
2804
|
+
end
|
2805
|
+
|
2806
|
+
class RowFilterConfiguration
|
2807
|
+
attr_accessor row_filter: Types::RowFilter
|
2808
|
+
attr_accessor sensitive: bool
|
2809
|
+
SENSITIVE: []
|
2810
|
+
end
|
2811
|
+
|
2812
|
+
class RowFilterExpression
|
2813
|
+
attr_accessor equal_to: Types::EqualToExpression
|
2814
|
+
attr_accessor greater_than: Types::GreaterThanExpression
|
2815
|
+
attr_accessor greater_than_or_equal_to: Types::GreaterThanOrEqualToExpression
|
2816
|
+
attr_accessor in: Types::InExpression
|
2817
|
+
attr_accessor is_not_null: Types::IsNotNullExpression
|
2818
|
+
attr_accessor is_null: Types::IsNullExpression
|
2819
|
+
attr_accessor less_than: Types::LessThanExpression
|
2820
|
+
attr_accessor less_than_or_equal_to: Types::LessThanOrEqualToExpression
|
2821
|
+
attr_accessor like: Types::LikeExpression
|
2822
|
+
attr_accessor not_equal_to: Types::NotEqualToExpression
|
2823
|
+
attr_accessor not_in: Types::NotInExpression
|
2824
|
+
attr_accessor not_like: Types::NotLikeExpression
|
2825
|
+
attr_accessor unknown: untyped
|
2826
|
+
SENSITIVE: []
|
2827
|
+
|
2828
|
+
class EqualTo < RowFilterExpression
|
2829
|
+
end
|
2830
|
+
class GreaterThan < RowFilterExpression
|
2831
|
+
end
|
2832
|
+
class GreaterThanOrEqualTo < RowFilterExpression
|
2833
|
+
end
|
2834
|
+
class In < RowFilterExpression
|
2835
|
+
end
|
2836
|
+
class IsNotNull < RowFilterExpression
|
2837
|
+
end
|
2838
|
+
class IsNull < RowFilterExpression
|
2839
|
+
end
|
2840
|
+
class LessThan < RowFilterExpression
|
2841
|
+
end
|
2842
|
+
class LessThanOrEqualTo < RowFilterExpression
|
2843
|
+
end
|
2844
|
+
class Like < RowFilterExpression
|
2845
|
+
end
|
2846
|
+
class NotEqualTo < RowFilterExpression
|
2847
|
+
end
|
2848
|
+
class NotIn < RowFilterExpression
|
2849
|
+
end
|
2850
|
+
class NotLike < RowFilterExpression
|
2851
|
+
end
|
2852
|
+
class Unknown < RowFilterExpression
|
2853
|
+
end
|
2854
|
+
end
|
2855
|
+
|
2596
2856
|
class RunStatisticsForAssets
|
2597
2857
|
attr_accessor added: ::Integer
|
2598
2858
|
attr_accessor failed: ::Integer
|
@@ -3062,6 +3322,31 @@ module Aws::DataZone
|
|
3062
3322
|
class UntagResourceResponse < Aws::EmptyStructure
|
3063
3323
|
end
|
3064
3324
|
|
3325
|
+
class UpdateAssetFilterInput
|
3326
|
+
attr_accessor asset_identifier: ::String
|
3327
|
+
attr_accessor configuration: Types::AssetFilterConfiguration
|
3328
|
+
attr_accessor description: ::String
|
3329
|
+
attr_accessor domain_identifier: ::String
|
3330
|
+
attr_accessor identifier: ::String
|
3331
|
+
attr_accessor name: ::String
|
3332
|
+
SENSITIVE: [:description]
|
3333
|
+
end
|
3334
|
+
|
3335
|
+
class UpdateAssetFilterOutput
|
3336
|
+
attr_accessor asset_id: ::String
|
3337
|
+
attr_accessor configuration: Types::AssetFilterConfiguration
|
3338
|
+
attr_accessor created_at: ::Time
|
3339
|
+
attr_accessor description: ::String
|
3340
|
+
attr_accessor domain_id: ::String
|
3341
|
+
attr_accessor effective_column_names: ::Array[::String]
|
3342
|
+
attr_accessor effective_row_filter: ::String
|
3343
|
+
attr_accessor error_message: ::String
|
3344
|
+
attr_accessor id: ::String
|
3345
|
+
attr_accessor name: ::String
|
3346
|
+
attr_accessor status: ("VALID" | "INVALID")
|
3347
|
+
SENSITIVE: [:description, :name]
|
3348
|
+
end
|
3349
|
+
|
3065
3350
|
class UpdateDataSourceInput
|
3066
3351
|
attr_accessor asset_forms_input: ::Array[Types::FormInput]
|
3067
3352
|
attr_accessor configuration: Types::DataSourceConfigurationInput
|