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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa19f9cc73035f98bb4b5bcc40165c9275e54cfda850295d8faa92ecd6482491
|
4
|
+
data.tar.gz: 284ec444366192f4dc87ea4a997fb84a50b93f3758efd959ab82eea283a38684
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9abe648e2a0f010ce5b2b9d4f71fdb3f2babe19a5438b697154eccdfd53bbd243a3414593f13a06ad1248797c4ff981985e8f0ee315ea47793b3d2423614405c
|
7
|
+
data.tar.gz: 1687afa6d0ee266350a54a71cf2ab73107f589a84e8c66bea450511696973fd3d46bff158a94d89ef07bd4195841f34a5aa4f7bcd99394e2c1cacbf27b486684
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.15.0 (2024-07-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds 1/ support of register S3 locations of assets in AWS Lake Formation hybrid access mode for DefaultDataLake blueprint. 2/ support of CRUD operations for Asset Filters.
|
8
|
+
|
9
|
+
1.14.0 (2024-07-09)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release deprecates dataProductItem field from SearchInventoryResultItem, along with some unused DataProduct shapes
|
13
|
+
|
4
14
|
1.13.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.15.0
|
@@ -830,6 +830,176 @@ module Aws::DataZone
|
|
830
830
|
req.send_request(options)
|
831
831
|
end
|
832
832
|
|
833
|
+
# Creates a data asset filter.
|
834
|
+
#
|
835
|
+
# @option params [required, String] :asset_identifier
|
836
|
+
# The ID of the data asset.
|
837
|
+
#
|
838
|
+
# @option params [String] :client_token
|
839
|
+
# A unique, case-sensitive identifier that is provided to ensure the
|
840
|
+
# idempotency of the request.
|
841
|
+
#
|
842
|
+
# **A suitable default value is auto-generated.** You should normally
|
843
|
+
# not need to pass this option.**
|
844
|
+
#
|
845
|
+
# @option params [required, Types::AssetFilterConfiguration] :configuration
|
846
|
+
# The configuration of the asset filter.
|
847
|
+
#
|
848
|
+
# @option params [String] :description
|
849
|
+
# The description of the asset filter.
|
850
|
+
#
|
851
|
+
# @option params [required, String] :domain_identifier
|
852
|
+
# The ID of the domain in which you want to create an asset filter.
|
853
|
+
#
|
854
|
+
# @option params [required, String] :name
|
855
|
+
# The name of the asset filter.
|
856
|
+
#
|
857
|
+
# @return [Types::CreateAssetFilterOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
858
|
+
#
|
859
|
+
# * {Types::CreateAssetFilterOutput#asset_id #asset_id} => String
|
860
|
+
# * {Types::CreateAssetFilterOutput#configuration #configuration} => Types::AssetFilterConfiguration
|
861
|
+
# * {Types::CreateAssetFilterOutput#created_at #created_at} => Time
|
862
|
+
# * {Types::CreateAssetFilterOutput#description #description} => String
|
863
|
+
# * {Types::CreateAssetFilterOutput#domain_id #domain_id} => String
|
864
|
+
# * {Types::CreateAssetFilterOutput#effective_column_names #effective_column_names} => Array<String>
|
865
|
+
# * {Types::CreateAssetFilterOutput#effective_row_filter #effective_row_filter} => String
|
866
|
+
# * {Types::CreateAssetFilterOutput#error_message #error_message} => String
|
867
|
+
# * {Types::CreateAssetFilterOutput#id #id} => String
|
868
|
+
# * {Types::CreateAssetFilterOutput#name #name} => String
|
869
|
+
# * {Types::CreateAssetFilterOutput#status #status} => String
|
870
|
+
#
|
871
|
+
# @example Request syntax with placeholder values
|
872
|
+
#
|
873
|
+
# resp = client.create_asset_filter({
|
874
|
+
# asset_identifier: "AssetId", # required
|
875
|
+
# client_token: "String",
|
876
|
+
# configuration: { # required
|
877
|
+
# column_configuration: {
|
878
|
+
# included_column_names: ["String"],
|
879
|
+
# },
|
880
|
+
# row_configuration: {
|
881
|
+
# row_filter: { # required
|
882
|
+
# and: [
|
883
|
+
# {
|
884
|
+
# # recursive RowFilter
|
885
|
+
# },
|
886
|
+
# ],
|
887
|
+
# expression: {
|
888
|
+
# equal_to: {
|
889
|
+
# column_name: "String", # required
|
890
|
+
# value: "String", # required
|
891
|
+
# },
|
892
|
+
# greater_than: {
|
893
|
+
# column_name: "String", # required
|
894
|
+
# value: "String", # required
|
895
|
+
# },
|
896
|
+
# greater_than_or_equal_to: {
|
897
|
+
# column_name: "String", # required
|
898
|
+
# value: "String", # required
|
899
|
+
# },
|
900
|
+
# in: {
|
901
|
+
# column_name: "String", # required
|
902
|
+
# values: ["String"], # required
|
903
|
+
# },
|
904
|
+
# is_not_null: {
|
905
|
+
# column_name: "String", # required
|
906
|
+
# },
|
907
|
+
# is_null: {
|
908
|
+
# column_name: "String", # required
|
909
|
+
# },
|
910
|
+
# less_than: {
|
911
|
+
# column_name: "String", # required
|
912
|
+
# value: "String", # required
|
913
|
+
# },
|
914
|
+
# less_than_or_equal_to: {
|
915
|
+
# column_name: "String", # required
|
916
|
+
# value: "String", # required
|
917
|
+
# },
|
918
|
+
# like: {
|
919
|
+
# column_name: "String", # required
|
920
|
+
# value: "String", # required
|
921
|
+
# },
|
922
|
+
# not_equal_to: {
|
923
|
+
# column_name: "String", # required
|
924
|
+
# value: "String", # required
|
925
|
+
# },
|
926
|
+
# not_in: {
|
927
|
+
# column_name: "String", # required
|
928
|
+
# values: ["String"], # required
|
929
|
+
# },
|
930
|
+
# not_like: {
|
931
|
+
# column_name: "String", # required
|
932
|
+
# value: "String", # required
|
933
|
+
# },
|
934
|
+
# },
|
935
|
+
# or: [
|
936
|
+
# {
|
937
|
+
# # recursive RowFilter
|
938
|
+
# },
|
939
|
+
# ],
|
940
|
+
# },
|
941
|
+
# sensitive: false,
|
942
|
+
# },
|
943
|
+
# },
|
944
|
+
# description: "Description",
|
945
|
+
# domain_identifier: "DomainId", # required
|
946
|
+
# name: "FilterName", # required
|
947
|
+
# })
|
948
|
+
#
|
949
|
+
# @example Response structure
|
950
|
+
#
|
951
|
+
# resp.asset_id #=> String
|
952
|
+
# resp.configuration.column_configuration.included_column_names #=> Array
|
953
|
+
# resp.configuration.column_configuration.included_column_names[0] #=> String
|
954
|
+
# resp.configuration.row_configuration.row_filter.and #=> Array
|
955
|
+
# resp.configuration.row_configuration.row_filter.and[0] #=> Types::RowFilter
|
956
|
+
# resp.configuration.row_configuration.row_filter.expression.equal_to.column_name #=> String
|
957
|
+
# resp.configuration.row_configuration.row_filter.expression.equal_to.value #=> String
|
958
|
+
# resp.configuration.row_configuration.row_filter.expression.greater_than.column_name #=> String
|
959
|
+
# resp.configuration.row_configuration.row_filter.expression.greater_than.value #=> String
|
960
|
+
# resp.configuration.row_configuration.row_filter.expression.greater_than_or_equal_to.column_name #=> String
|
961
|
+
# resp.configuration.row_configuration.row_filter.expression.greater_than_or_equal_to.value #=> String
|
962
|
+
# resp.configuration.row_configuration.row_filter.expression.in.column_name #=> String
|
963
|
+
# resp.configuration.row_configuration.row_filter.expression.in.values #=> Array
|
964
|
+
# resp.configuration.row_configuration.row_filter.expression.in.values[0] #=> String
|
965
|
+
# resp.configuration.row_configuration.row_filter.expression.is_not_null.column_name #=> String
|
966
|
+
# resp.configuration.row_configuration.row_filter.expression.is_null.column_name #=> String
|
967
|
+
# resp.configuration.row_configuration.row_filter.expression.less_than.column_name #=> String
|
968
|
+
# resp.configuration.row_configuration.row_filter.expression.less_than.value #=> String
|
969
|
+
# resp.configuration.row_configuration.row_filter.expression.less_than_or_equal_to.column_name #=> String
|
970
|
+
# resp.configuration.row_configuration.row_filter.expression.less_than_or_equal_to.value #=> String
|
971
|
+
# resp.configuration.row_configuration.row_filter.expression.like.column_name #=> String
|
972
|
+
# resp.configuration.row_configuration.row_filter.expression.like.value #=> String
|
973
|
+
# resp.configuration.row_configuration.row_filter.expression.not_equal_to.column_name #=> String
|
974
|
+
# resp.configuration.row_configuration.row_filter.expression.not_equal_to.value #=> String
|
975
|
+
# resp.configuration.row_configuration.row_filter.expression.not_in.column_name #=> String
|
976
|
+
# resp.configuration.row_configuration.row_filter.expression.not_in.values #=> Array
|
977
|
+
# resp.configuration.row_configuration.row_filter.expression.not_in.values[0] #=> String
|
978
|
+
# resp.configuration.row_configuration.row_filter.expression.not_like.column_name #=> String
|
979
|
+
# resp.configuration.row_configuration.row_filter.expression.not_like.value #=> String
|
980
|
+
# resp.configuration.row_configuration.row_filter.or #=> Array
|
981
|
+
# resp.configuration.row_configuration.row_filter.or[0] #=> Types::RowFilter
|
982
|
+
# resp.configuration.row_configuration.sensitive #=> Boolean
|
983
|
+
# resp.created_at #=> Time
|
984
|
+
# resp.description #=> String
|
985
|
+
# resp.domain_id #=> String
|
986
|
+
# resp.effective_column_names #=> Array
|
987
|
+
# resp.effective_column_names[0] #=> String
|
988
|
+
# resp.effective_row_filter #=> String
|
989
|
+
# resp.error_message #=> String
|
990
|
+
# resp.id #=> String
|
991
|
+
# resp.name #=> String
|
992
|
+
# resp.status #=> String, one of "VALID", "INVALID"
|
993
|
+
#
|
994
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateAssetFilter AWS API Documentation
|
995
|
+
#
|
996
|
+
# @overload create_asset_filter(params = {})
|
997
|
+
# @param [Hash] params ({})
|
998
|
+
def create_asset_filter(params = {}, options = {})
|
999
|
+
req = build_request(:create_asset_filter, params)
|
1000
|
+
req.send_request(options)
|
1001
|
+
end
|
1002
|
+
|
833
1003
|
# Creates a revision of the asset.
|
834
1004
|
#
|
835
1005
|
# @option params [String] :client_token
|
@@ -2409,6 +2579,36 @@ module Aws::DataZone
|
|
2409
2579
|
req.send_request(options)
|
2410
2580
|
end
|
2411
2581
|
|
2582
|
+
# Deletes an asset filter.
|
2583
|
+
#
|
2584
|
+
# @option params [required, String] :asset_identifier
|
2585
|
+
# The ID of the data asset.
|
2586
|
+
#
|
2587
|
+
# @option params [required, String] :domain_identifier
|
2588
|
+
# The ID of the domain where you want to delete an asset filter.
|
2589
|
+
#
|
2590
|
+
# @option params [required, String] :identifier
|
2591
|
+
# The ID of the asset filter that you want to delete.
|
2592
|
+
#
|
2593
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2594
|
+
#
|
2595
|
+
# @example Request syntax with placeholder values
|
2596
|
+
#
|
2597
|
+
# resp = client.delete_asset_filter({
|
2598
|
+
# asset_identifier: "AssetId", # required
|
2599
|
+
# domain_identifier: "DomainId", # required
|
2600
|
+
# identifier: "FilterId", # required
|
2601
|
+
# })
|
2602
|
+
#
|
2603
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteAssetFilter AWS API Documentation
|
2604
|
+
#
|
2605
|
+
# @overload delete_asset_filter(params = {})
|
2606
|
+
# @param [Hash] params ({})
|
2607
|
+
def delete_asset_filter(params = {}, options = {})
|
2608
|
+
req = build_request(:delete_asset_filter, params)
|
2609
|
+
req.send_request(options)
|
2610
|
+
end
|
2611
|
+
|
2412
2612
|
# Deletes an asset type in Amazon DataZone.
|
2413
2613
|
#
|
2414
2614
|
# @option params [required, String] :domain_identifier
|
@@ -3167,6 +3367,93 @@ module Aws::DataZone
|
|
3167
3367
|
req.send_request(options)
|
3168
3368
|
end
|
3169
3369
|
|
3370
|
+
# Gets an asset filter.
|
3371
|
+
#
|
3372
|
+
# @option params [required, String] :asset_identifier
|
3373
|
+
# The ID of the data asset.
|
3374
|
+
#
|
3375
|
+
# @option params [required, String] :domain_identifier
|
3376
|
+
# The ID of the domain where you want to get an asset filter.
|
3377
|
+
#
|
3378
|
+
# @option params [required, String] :identifier
|
3379
|
+
# The ID of the asset filter.
|
3380
|
+
#
|
3381
|
+
# @return [Types::GetAssetFilterOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3382
|
+
#
|
3383
|
+
# * {Types::GetAssetFilterOutput#asset_id #asset_id} => String
|
3384
|
+
# * {Types::GetAssetFilterOutput#configuration #configuration} => Types::AssetFilterConfiguration
|
3385
|
+
# * {Types::GetAssetFilterOutput#created_at #created_at} => Time
|
3386
|
+
# * {Types::GetAssetFilterOutput#description #description} => String
|
3387
|
+
# * {Types::GetAssetFilterOutput#domain_id #domain_id} => String
|
3388
|
+
# * {Types::GetAssetFilterOutput#effective_column_names #effective_column_names} => Array<String>
|
3389
|
+
# * {Types::GetAssetFilterOutput#effective_row_filter #effective_row_filter} => String
|
3390
|
+
# * {Types::GetAssetFilterOutput#error_message #error_message} => String
|
3391
|
+
# * {Types::GetAssetFilterOutput#id #id} => String
|
3392
|
+
# * {Types::GetAssetFilterOutput#name #name} => String
|
3393
|
+
# * {Types::GetAssetFilterOutput#status #status} => String
|
3394
|
+
#
|
3395
|
+
# @example Request syntax with placeholder values
|
3396
|
+
#
|
3397
|
+
# resp = client.get_asset_filter({
|
3398
|
+
# asset_identifier: "AssetId", # required
|
3399
|
+
# domain_identifier: "DomainId", # required
|
3400
|
+
# identifier: "FilterId", # required
|
3401
|
+
# })
|
3402
|
+
#
|
3403
|
+
# @example Response structure
|
3404
|
+
#
|
3405
|
+
# resp.asset_id #=> String
|
3406
|
+
# resp.configuration.column_configuration.included_column_names #=> Array
|
3407
|
+
# resp.configuration.column_configuration.included_column_names[0] #=> String
|
3408
|
+
# resp.configuration.row_configuration.row_filter.and #=> Array
|
3409
|
+
# resp.configuration.row_configuration.row_filter.and[0] #=> Types::RowFilter
|
3410
|
+
# resp.configuration.row_configuration.row_filter.expression.equal_to.column_name #=> String
|
3411
|
+
# resp.configuration.row_configuration.row_filter.expression.equal_to.value #=> String
|
3412
|
+
# resp.configuration.row_configuration.row_filter.expression.greater_than.column_name #=> String
|
3413
|
+
# resp.configuration.row_configuration.row_filter.expression.greater_than.value #=> String
|
3414
|
+
# resp.configuration.row_configuration.row_filter.expression.greater_than_or_equal_to.column_name #=> String
|
3415
|
+
# resp.configuration.row_configuration.row_filter.expression.greater_than_or_equal_to.value #=> String
|
3416
|
+
# resp.configuration.row_configuration.row_filter.expression.in.column_name #=> String
|
3417
|
+
# resp.configuration.row_configuration.row_filter.expression.in.values #=> Array
|
3418
|
+
# resp.configuration.row_configuration.row_filter.expression.in.values[0] #=> String
|
3419
|
+
# resp.configuration.row_configuration.row_filter.expression.is_not_null.column_name #=> String
|
3420
|
+
# resp.configuration.row_configuration.row_filter.expression.is_null.column_name #=> String
|
3421
|
+
# resp.configuration.row_configuration.row_filter.expression.less_than.column_name #=> String
|
3422
|
+
# resp.configuration.row_configuration.row_filter.expression.less_than.value #=> String
|
3423
|
+
# resp.configuration.row_configuration.row_filter.expression.less_than_or_equal_to.column_name #=> String
|
3424
|
+
# resp.configuration.row_configuration.row_filter.expression.less_than_or_equal_to.value #=> String
|
3425
|
+
# resp.configuration.row_configuration.row_filter.expression.like.column_name #=> String
|
3426
|
+
# resp.configuration.row_configuration.row_filter.expression.like.value #=> String
|
3427
|
+
# resp.configuration.row_configuration.row_filter.expression.not_equal_to.column_name #=> String
|
3428
|
+
# resp.configuration.row_configuration.row_filter.expression.not_equal_to.value #=> String
|
3429
|
+
# resp.configuration.row_configuration.row_filter.expression.not_in.column_name #=> String
|
3430
|
+
# resp.configuration.row_configuration.row_filter.expression.not_in.values #=> Array
|
3431
|
+
# resp.configuration.row_configuration.row_filter.expression.not_in.values[0] #=> String
|
3432
|
+
# resp.configuration.row_configuration.row_filter.expression.not_like.column_name #=> String
|
3433
|
+
# resp.configuration.row_configuration.row_filter.expression.not_like.value #=> String
|
3434
|
+
# resp.configuration.row_configuration.row_filter.or #=> Array
|
3435
|
+
# resp.configuration.row_configuration.row_filter.or[0] #=> Types::RowFilter
|
3436
|
+
# resp.configuration.row_configuration.sensitive #=> Boolean
|
3437
|
+
# resp.created_at #=> Time
|
3438
|
+
# resp.description #=> String
|
3439
|
+
# resp.domain_id #=> String
|
3440
|
+
# resp.effective_column_names #=> Array
|
3441
|
+
# resp.effective_column_names[0] #=> String
|
3442
|
+
# resp.effective_row_filter #=> String
|
3443
|
+
# resp.error_message #=> String
|
3444
|
+
# resp.id #=> String
|
3445
|
+
# resp.name #=> String
|
3446
|
+
# resp.status #=> String, one of "VALID", "INVALID"
|
3447
|
+
#
|
3448
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetAssetFilter AWS API Documentation
|
3449
|
+
#
|
3450
|
+
# @overload get_asset_filter(params = {})
|
3451
|
+
# @param [Hash] params ({})
|
3452
|
+
def get_asset_filter(params = {}, options = {})
|
3453
|
+
req = build_request(:get_asset_filter, params)
|
3454
|
+
req.send_request(options)
|
3455
|
+
end
|
3456
|
+
|
3170
3457
|
# Gets an Amazon DataZone asset type.
|
3171
3458
|
#
|
3172
3459
|
# @option params [required, String] :domain_identifier
|
@@ -3668,6 +3955,7 @@ module Aws::DataZone
|
|
3668
3955
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#enabled_regions #enabled_regions} => Array<String>
|
3669
3956
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#environment_blueprint_id #environment_blueprint_id} => String
|
3670
3957
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#manage_access_role_arn #manage_access_role_arn} => String
|
3958
|
+
# * {Types::GetEnvironmentBlueprintConfigurationOutput#provisioning_configurations #provisioning_configurations} => Array<Types::ProvisioningConfiguration>
|
3671
3959
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#provisioning_role_arn #provisioning_role_arn} => String
|
3672
3960
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#regional_parameters #regional_parameters} => Hash<String,Hash<String,String>>
|
3673
3961
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#updated_at #updated_at} => Time
|
@@ -3687,6 +3975,10 @@ module Aws::DataZone
|
|
3687
3975
|
# resp.enabled_regions[0] #=> String
|
3688
3976
|
# resp.environment_blueprint_id #=> String
|
3689
3977
|
# resp.manage_access_role_arn #=> String
|
3978
|
+
# resp.provisioning_configurations #=> Array
|
3979
|
+
# resp.provisioning_configurations[0].lake_formation_configuration.location_registration_exclude_s3_locations #=> Array
|
3980
|
+
# resp.provisioning_configurations[0].lake_formation_configuration.location_registration_exclude_s3_locations[0] #=> String
|
3981
|
+
# resp.provisioning_configurations[0].lake_formation_configuration.location_registration_role #=> String
|
3690
3982
|
# resp.provisioning_role_arn #=> String
|
3691
3983
|
# resp.regional_parameters #=> Hash
|
3692
3984
|
# resp.regional_parameters["RegionName"] #=> Hash
|
@@ -4627,6 +4919,74 @@ module Aws::DataZone
|
|
4627
4919
|
req.send_request(options)
|
4628
4920
|
end
|
4629
4921
|
|
4922
|
+
# Lists asset filters.
|
4923
|
+
#
|
4924
|
+
# @option params [required, String] :asset_identifier
|
4925
|
+
# The ID of the data asset.
|
4926
|
+
#
|
4927
|
+
# @option params [required, String] :domain_identifier
|
4928
|
+
# The ID of the domain where you want to list asset filters.
|
4929
|
+
#
|
4930
|
+
# @option params [Integer] :max_results
|
4931
|
+
# The maximum number of asset filters to return in a single call to
|
4932
|
+
# `ListAssetFilters`. When the number of asset filters to be listed is
|
4933
|
+
# greater than the value of `MaxResults`, the response contains a
|
4934
|
+
# `NextToken` value that you can use in a subsequent call to
|
4935
|
+
# `ListAssetFilters` to list the next set of asset filters.
|
4936
|
+
#
|
4937
|
+
# @option params [String] :next_token
|
4938
|
+
# When the number of asset filters is greater than the default value for
|
4939
|
+
# the `MaxResults` parameter, or if you explicitly specify a value for
|
4940
|
+
# `MaxResults` that is less than the number of asset filters, the
|
4941
|
+
# response includes a pagination token named `NextToken`. You can
|
4942
|
+
# specify this `NextToken` value in a subsequent call to
|
4943
|
+
# `ListAssetFilters` to list the next set of asset filters.
|
4944
|
+
#
|
4945
|
+
# @option params [String] :status
|
4946
|
+
# The status of the asset filter.
|
4947
|
+
#
|
4948
|
+
# @return [Types::ListAssetFiltersOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4949
|
+
#
|
4950
|
+
# * {Types::ListAssetFiltersOutput#items #items} => Array<Types::AssetFilterSummary>
|
4951
|
+
# * {Types::ListAssetFiltersOutput#next_token #next_token} => String
|
4952
|
+
#
|
4953
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4954
|
+
#
|
4955
|
+
# @example Request syntax with placeholder values
|
4956
|
+
#
|
4957
|
+
# resp = client.list_asset_filters({
|
4958
|
+
# asset_identifier: "AssetId", # required
|
4959
|
+
# domain_identifier: "DomainId", # required
|
4960
|
+
# max_results: 1,
|
4961
|
+
# next_token: "PaginationToken",
|
4962
|
+
# status: "VALID", # accepts VALID, INVALID
|
4963
|
+
# })
|
4964
|
+
#
|
4965
|
+
# @example Response structure
|
4966
|
+
#
|
4967
|
+
# resp.items #=> Array
|
4968
|
+
# resp.items[0].asset_id #=> String
|
4969
|
+
# resp.items[0].created_at #=> Time
|
4970
|
+
# resp.items[0].description #=> String
|
4971
|
+
# resp.items[0].domain_id #=> String
|
4972
|
+
# resp.items[0].effective_column_names #=> Array
|
4973
|
+
# resp.items[0].effective_column_names[0] #=> String
|
4974
|
+
# resp.items[0].effective_row_filter #=> String
|
4975
|
+
# resp.items[0].error_message #=> String
|
4976
|
+
# resp.items[0].id #=> String
|
4977
|
+
# resp.items[0].name #=> String
|
4978
|
+
# resp.items[0].status #=> String, one of "VALID", "INVALID"
|
4979
|
+
# resp.next_token #=> String
|
4980
|
+
#
|
4981
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListAssetFilters AWS API Documentation
|
4982
|
+
#
|
4983
|
+
# @overload list_asset_filters(params = {})
|
4984
|
+
# @param [Hash] params ({})
|
4985
|
+
def list_asset_filters(params = {}, options = {})
|
4986
|
+
req = build_request(:list_asset_filters, params)
|
4987
|
+
req.send_request(options)
|
4988
|
+
end
|
4989
|
+
|
4630
4990
|
# Lists the revisions for the asset.
|
4631
4991
|
#
|
4632
4992
|
# @option params [required, String] :domain_identifier
|
@@ -5078,6 +5438,10 @@ module Aws::DataZone
|
|
5078
5438
|
# resp.items[0].enabled_regions[0] #=> String
|
5079
5439
|
# resp.items[0].environment_blueprint_id #=> String
|
5080
5440
|
# resp.items[0].manage_access_role_arn #=> String
|
5441
|
+
# resp.items[0].provisioning_configurations #=> Array
|
5442
|
+
# resp.items[0].provisioning_configurations[0].lake_formation_configuration.location_registration_exclude_s3_locations #=> Array
|
5443
|
+
# resp.items[0].provisioning_configurations[0].lake_formation_configuration.location_registration_exclude_s3_locations[0] #=> String
|
5444
|
+
# resp.items[0].provisioning_configurations[0].lake_formation_configuration.location_registration_role #=> String
|
5081
5445
|
# resp.items[0].provisioning_role_arn #=> String
|
5082
5446
|
# resp.items[0].regional_parameters #=> Hash
|
5083
5447
|
# resp.items[0].regional_parameters["RegionName"] #=> Hash
|
@@ -6326,6 +6690,9 @@ module Aws::DataZone
|
|
6326
6690
|
# @option params [String] :manage_access_role_arn
|
6327
6691
|
# The ARN of the manage access role.
|
6328
6692
|
#
|
6693
|
+
# @option params [Array<Types::ProvisioningConfiguration>] :provisioning_configurations
|
6694
|
+
# The provisioning configuration of a blueprint.
|
6695
|
+
#
|
6329
6696
|
# @option params [String] :provisioning_role_arn
|
6330
6697
|
# The ARN of the provisioning role.
|
6331
6698
|
#
|
@@ -6339,6 +6706,7 @@ module Aws::DataZone
|
|
6339
6706
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#enabled_regions #enabled_regions} => Array<String>
|
6340
6707
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#environment_blueprint_id #environment_blueprint_id} => String
|
6341
6708
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#manage_access_role_arn #manage_access_role_arn} => String
|
6709
|
+
# * {Types::PutEnvironmentBlueprintConfigurationOutput#provisioning_configurations #provisioning_configurations} => Array<Types::ProvisioningConfiguration>
|
6342
6710
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#provisioning_role_arn #provisioning_role_arn} => String
|
6343
6711
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#regional_parameters #regional_parameters} => Hash<String,Hash<String,String>>
|
6344
6712
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#updated_at #updated_at} => Time
|
@@ -6350,6 +6718,14 @@ module Aws::DataZone
|
|
6350
6718
|
# enabled_regions: ["RegionName"], # required
|
6351
6719
|
# environment_blueprint_identifier: "EnvironmentBlueprintId", # required
|
6352
6720
|
# manage_access_role_arn: "RoleArn",
|
6721
|
+
# provisioning_configurations: [
|
6722
|
+
# {
|
6723
|
+
# lake_formation_configuration: {
|
6724
|
+
# location_registration_exclude_s3_locations: ["S3Location"],
|
6725
|
+
# location_registration_role: "RoleArn",
|
6726
|
+
# },
|
6727
|
+
# },
|
6728
|
+
# ],
|
6353
6729
|
# provisioning_role_arn: "RoleArn",
|
6354
6730
|
# regional_parameters: {
|
6355
6731
|
# "RegionName" => {
|
@@ -6366,6 +6742,10 @@ module Aws::DataZone
|
|
6366
6742
|
# resp.enabled_regions[0] #=> String
|
6367
6743
|
# resp.environment_blueprint_id #=> String
|
6368
6744
|
# resp.manage_access_role_arn #=> String
|
6745
|
+
# resp.provisioning_configurations #=> Array
|
6746
|
+
# resp.provisioning_configurations[0].lake_formation_configuration.location_registration_exclude_s3_locations #=> Array
|
6747
|
+
# resp.provisioning_configurations[0].lake_formation_configuration.location_registration_exclude_s3_locations[0] #=> String
|
6748
|
+
# resp.provisioning_configurations[0].lake_formation_configuration.location_registration_role #=> String
|
6369
6749
|
# resp.provisioning_role_arn #=> String
|
6370
6750
|
# resp.regional_parameters #=> Hash
|
6371
6751
|
# resp.regional_parameters["RegionName"] #=> Hash
|
@@ -7337,6 +7717,172 @@ module Aws::DataZone
|
|
7337
7717
|
req.send_request(options)
|
7338
7718
|
end
|
7339
7719
|
|
7720
|
+
# Updates an asset filter.
|
7721
|
+
#
|
7722
|
+
# @option params [required, String] :asset_identifier
|
7723
|
+
# The ID of the data asset.
|
7724
|
+
#
|
7725
|
+
# @option params [Types::AssetFilterConfiguration] :configuration
|
7726
|
+
# The configuration of the asset filter.
|
7727
|
+
#
|
7728
|
+
# @option params [String] :description
|
7729
|
+
# The description of the asset filter.
|
7730
|
+
#
|
7731
|
+
# @option params [required, String] :domain_identifier
|
7732
|
+
# The ID of the domain where you want to update an asset filter.
|
7733
|
+
#
|
7734
|
+
# @option params [required, String] :identifier
|
7735
|
+
# The ID of the asset filter.
|
7736
|
+
#
|
7737
|
+
# @option params [String] :name
|
7738
|
+
# The name of the asset filter.
|
7739
|
+
#
|
7740
|
+
# @return [Types::UpdateAssetFilterOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7741
|
+
#
|
7742
|
+
# * {Types::UpdateAssetFilterOutput#asset_id #asset_id} => String
|
7743
|
+
# * {Types::UpdateAssetFilterOutput#configuration #configuration} => Types::AssetFilterConfiguration
|
7744
|
+
# * {Types::UpdateAssetFilterOutput#created_at #created_at} => Time
|
7745
|
+
# * {Types::UpdateAssetFilterOutput#description #description} => String
|
7746
|
+
# * {Types::UpdateAssetFilterOutput#domain_id #domain_id} => String
|
7747
|
+
# * {Types::UpdateAssetFilterOutput#effective_column_names #effective_column_names} => Array<String>
|
7748
|
+
# * {Types::UpdateAssetFilterOutput#effective_row_filter #effective_row_filter} => String
|
7749
|
+
# * {Types::UpdateAssetFilterOutput#error_message #error_message} => String
|
7750
|
+
# * {Types::UpdateAssetFilterOutput#id #id} => String
|
7751
|
+
# * {Types::UpdateAssetFilterOutput#name #name} => String
|
7752
|
+
# * {Types::UpdateAssetFilterOutput#status #status} => String
|
7753
|
+
#
|
7754
|
+
# @example Request syntax with placeholder values
|
7755
|
+
#
|
7756
|
+
# resp = client.update_asset_filter({
|
7757
|
+
# asset_identifier: "AssetId", # required
|
7758
|
+
# configuration: {
|
7759
|
+
# column_configuration: {
|
7760
|
+
# included_column_names: ["String"],
|
7761
|
+
# },
|
7762
|
+
# row_configuration: {
|
7763
|
+
# row_filter: { # required
|
7764
|
+
# and: [
|
7765
|
+
# {
|
7766
|
+
# # recursive RowFilter
|
7767
|
+
# },
|
7768
|
+
# ],
|
7769
|
+
# expression: {
|
7770
|
+
# equal_to: {
|
7771
|
+
# column_name: "String", # required
|
7772
|
+
# value: "String", # required
|
7773
|
+
# },
|
7774
|
+
# greater_than: {
|
7775
|
+
# column_name: "String", # required
|
7776
|
+
# value: "String", # required
|
7777
|
+
# },
|
7778
|
+
# greater_than_or_equal_to: {
|
7779
|
+
# column_name: "String", # required
|
7780
|
+
# value: "String", # required
|
7781
|
+
# },
|
7782
|
+
# in: {
|
7783
|
+
# column_name: "String", # required
|
7784
|
+
# values: ["String"], # required
|
7785
|
+
# },
|
7786
|
+
# is_not_null: {
|
7787
|
+
# column_name: "String", # required
|
7788
|
+
# },
|
7789
|
+
# is_null: {
|
7790
|
+
# column_name: "String", # required
|
7791
|
+
# },
|
7792
|
+
# less_than: {
|
7793
|
+
# column_name: "String", # required
|
7794
|
+
# value: "String", # required
|
7795
|
+
# },
|
7796
|
+
# less_than_or_equal_to: {
|
7797
|
+
# column_name: "String", # required
|
7798
|
+
# value: "String", # required
|
7799
|
+
# },
|
7800
|
+
# like: {
|
7801
|
+
# column_name: "String", # required
|
7802
|
+
# value: "String", # required
|
7803
|
+
# },
|
7804
|
+
# not_equal_to: {
|
7805
|
+
# column_name: "String", # required
|
7806
|
+
# value: "String", # required
|
7807
|
+
# },
|
7808
|
+
# not_in: {
|
7809
|
+
# column_name: "String", # required
|
7810
|
+
# values: ["String"], # required
|
7811
|
+
# },
|
7812
|
+
# not_like: {
|
7813
|
+
# column_name: "String", # required
|
7814
|
+
# value: "String", # required
|
7815
|
+
# },
|
7816
|
+
# },
|
7817
|
+
# or: [
|
7818
|
+
# {
|
7819
|
+
# # recursive RowFilter
|
7820
|
+
# },
|
7821
|
+
# ],
|
7822
|
+
# },
|
7823
|
+
# sensitive: false,
|
7824
|
+
# },
|
7825
|
+
# },
|
7826
|
+
# description: "Description",
|
7827
|
+
# domain_identifier: "DomainId", # required
|
7828
|
+
# identifier: "FilterId", # required
|
7829
|
+
# name: "String",
|
7830
|
+
# })
|
7831
|
+
#
|
7832
|
+
# @example Response structure
|
7833
|
+
#
|
7834
|
+
# resp.asset_id #=> String
|
7835
|
+
# resp.configuration.column_configuration.included_column_names #=> Array
|
7836
|
+
# resp.configuration.column_configuration.included_column_names[0] #=> String
|
7837
|
+
# resp.configuration.row_configuration.row_filter.and #=> Array
|
7838
|
+
# resp.configuration.row_configuration.row_filter.and[0] #=> Types::RowFilter
|
7839
|
+
# resp.configuration.row_configuration.row_filter.expression.equal_to.column_name #=> String
|
7840
|
+
# resp.configuration.row_configuration.row_filter.expression.equal_to.value #=> String
|
7841
|
+
# resp.configuration.row_configuration.row_filter.expression.greater_than.column_name #=> String
|
7842
|
+
# resp.configuration.row_configuration.row_filter.expression.greater_than.value #=> String
|
7843
|
+
# resp.configuration.row_configuration.row_filter.expression.greater_than_or_equal_to.column_name #=> String
|
7844
|
+
# resp.configuration.row_configuration.row_filter.expression.greater_than_or_equal_to.value #=> String
|
7845
|
+
# resp.configuration.row_configuration.row_filter.expression.in.column_name #=> String
|
7846
|
+
# resp.configuration.row_configuration.row_filter.expression.in.values #=> Array
|
7847
|
+
# resp.configuration.row_configuration.row_filter.expression.in.values[0] #=> String
|
7848
|
+
# resp.configuration.row_configuration.row_filter.expression.is_not_null.column_name #=> String
|
7849
|
+
# resp.configuration.row_configuration.row_filter.expression.is_null.column_name #=> String
|
7850
|
+
# resp.configuration.row_configuration.row_filter.expression.less_than.column_name #=> String
|
7851
|
+
# resp.configuration.row_configuration.row_filter.expression.less_than.value #=> String
|
7852
|
+
# resp.configuration.row_configuration.row_filter.expression.less_than_or_equal_to.column_name #=> String
|
7853
|
+
# resp.configuration.row_configuration.row_filter.expression.less_than_or_equal_to.value #=> String
|
7854
|
+
# resp.configuration.row_configuration.row_filter.expression.like.column_name #=> String
|
7855
|
+
# resp.configuration.row_configuration.row_filter.expression.like.value #=> String
|
7856
|
+
# resp.configuration.row_configuration.row_filter.expression.not_equal_to.column_name #=> String
|
7857
|
+
# resp.configuration.row_configuration.row_filter.expression.not_equal_to.value #=> String
|
7858
|
+
# resp.configuration.row_configuration.row_filter.expression.not_in.column_name #=> String
|
7859
|
+
# resp.configuration.row_configuration.row_filter.expression.not_in.values #=> Array
|
7860
|
+
# resp.configuration.row_configuration.row_filter.expression.not_in.values[0] #=> String
|
7861
|
+
# resp.configuration.row_configuration.row_filter.expression.not_like.column_name #=> String
|
7862
|
+
# resp.configuration.row_configuration.row_filter.expression.not_like.value #=> String
|
7863
|
+
# resp.configuration.row_configuration.row_filter.or #=> Array
|
7864
|
+
# resp.configuration.row_configuration.row_filter.or[0] #=> Types::RowFilter
|
7865
|
+
# resp.configuration.row_configuration.sensitive #=> Boolean
|
7866
|
+
# resp.created_at #=> Time
|
7867
|
+
# resp.description #=> String
|
7868
|
+
# resp.domain_id #=> String
|
7869
|
+
# resp.effective_column_names #=> Array
|
7870
|
+
# resp.effective_column_names[0] #=> String
|
7871
|
+
# resp.effective_row_filter #=> String
|
7872
|
+
# resp.error_message #=> String
|
7873
|
+
# resp.id #=> String
|
7874
|
+
# resp.name #=> String
|
7875
|
+
# resp.status #=> String, one of "VALID", "INVALID"
|
7876
|
+
#
|
7877
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateAssetFilter AWS API Documentation
|
7878
|
+
#
|
7879
|
+
# @overload update_asset_filter(params = {})
|
7880
|
+
# @param [Hash] params ({})
|
7881
|
+
def update_asset_filter(params = {}, options = {})
|
7882
|
+
req = build_request(:update_asset_filter, params)
|
7883
|
+
req.send_request(options)
|
7884
|
+
end
|
7885
|
+
|
7340
7886
|
# Updates the specified data source in Amazon DataZone.
|
7341
7887
|
#
|
7342
7888
|
# @option params [Array<Types::FormInput>] :asset_forms_input
|
@@ -8461,7 +9007,7 @@ module Aws::DataZone
|
|
8461
9007
|
params: params,
|
8462
9008
|
config: config)
|
8463
9009
|
context[:gem_name] = 'aws-sdk-datazone'
|
8464
|
-
context[:gem_version] = '1.
|
9010
|
+
context[:gem_version] = '1.15.0'
|
8465
9011
|
Seahorse::Client::Request.new(handlers, context)
|
8466
9012
|
end
|
8467
9013
|
|