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.
@@ -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&lt;String&gt;
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&lt;Types::ProvisioningConfiguration&gt;
6342
6710
  # * {Types::PutEnvironmentBlueprintConfigurationOutput#provisioning_role_arn #provisioning_role_arn} => String
6343
6711
  # * {Types::PutEnvironmentBlueprintConfigurationOutput#regional_parameters #regional_parameters} => Hash&lt;String,Hash&lt;String,String&gt;&gt;
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
@@ -6713,20 +7093,6 @@ module Aws::DataZone
6713
7093
  # resp.items[0].asset_item.owning_project_id #=> String
6714
7094
  # resp.items[0].asset_item.type_identifier #=> String
6715
7095
  # resp.items[0].asset_item.type_revision #=> String
6716
- # resp.items[0].data_product_item.created_at #=> Time
6717
- # resp.items[0].data_product_item.created_by #=> String
6718
- # resp.items[0].data_product_item.data_product_items #=> Array
6719
- # resp.items[0].data_product_item.data_product_items[0].domain_id #=> String
6720
- # resp.items[0].data_product_item.data_product_items[0].item_id #=> String
6721
- # resp.items[0].data_product_item.description #=> String
6722
- # resp.items[0].data_product_item.domain_id #=> String
6723
- # resp.items[0].data_product_item.glossary_terms #=> Array
6724
- # resp.items[0].data_product_item.glossary_terms[0] #=> String
6725
- # resp.items[0].data_product_item.id #=> String
6726
- # resp.items[0].data_product_item.name #=> String
6727
- # resp.items[0].data_product_item.owning_project_id #=> String
6728
- # resp.items[0].data_product_item.updated_at #=> Time
6729
- # resp.items[0].data_product_item.updated_by #=> String
6730
7096
  # resp.items[0].glossary_item.created_at #=> Time
6731
7097
  # resp.items[0].glossary_item.created_by #=> String
6732
7098
  # resp.items[0].glossary_item.description #=> String
@@ -7337,6 +7703,172 @@ module Aws::DataZone
7337
7703
  req.send_request(options)
7338
7704
  end
7339
7705
 
7706
+ # Updates an asset filter.
7707
+ #
7708
+ # @option params [required, String] :asset_identifier
7709
+ # The ID of the data asset.
7710
+ #
7711
+ # @option params [Types::AssetFilterConfiguration] :configuration
7712
+ # The configuration of the asset filter.
7713
+ #
7714
+ # @option params [String] :description
7715
+ # The description of the asset filter.
7716
+ #
7717
+ # @option params [required, String] :domain_identifier
7718
+ # The ID of the domain where you want to update an asset filter.
7719
+ #
7720
+ # @option params [required, String] :identifier
7721
+ # The ID of the asset filter.
7722
+ #
7723
+ # @option params [String] :name
7724
+ # The name of the asset filter.
7725
+ #
7726
+ # @return [Types::UpdateAssetFilterOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7727
+ #
7728
+ # * {Types::UpdateAssetFilterOutput#asset_id #asset_id} => String
7729
+ # * {Types::UpdateAssetFilterOutput#configuration #configuration} => Types::AssetFilterConfiguration
7730
+ # * {Types::UpdateAssetFilterOutput#created_at #created_at} => Time
7731
+ # * {Types::UpdateAssetFilterOutput#description #description} => String
7732
+ # * {Types::UpdateAssetFilterOutput#domain_id #domain_id} => String
7733
+ # * {Types::UpdateAssetFilterOutput#effective_column_names #effective_column_names} => Array&lt;String&gt;
7734
+ # * {Types::UpdateAssetFilterOutput#effective_row_filter #effective_row_filter} => String
7735
+ # * {Types::UpdateAssetFilterOutput#error_message #error_message} => String
7736
+ # * {Types::UpdateAssetFilterOutput#id #id} => String
7737
+ # * {Types::UpdateAssetFilterOutput#name #name} => String
7738
+ # * {Types::UpdateAssetFilterOutput#status #status} => String
7739
+ #
7740
+ # @example Request syntax with placeholder values
7741
+ #
7742
+ # resp = client.update_asset_filter({
7743
+ # asset_identifier: "AssetId", # required
7744
+ # configuration: {
7745
+ # column_configuration: {
7746
+ # included_column_names: ["String"],
7747
+ # },
7748
+ # row_configuration: {
7749
+ # row_filter: { # required
7750
+ # and: [
7751
+ # {
7752
+ # # recursive RowFilter
7753
+ # },
7754
+ # ],
7755
+ # expression: {
7756
+ # equal_to: {
7757
+ # column_name: "String", # required
7758
+ # value: "String", # required
7759
+ # },
7760
+ # greater_than: {
7761
+ # column_name: "String", # required
7762
+ # value: "String", # required
7763
+ # },
7764
+ # greater_than_or_equal_to: {
7765
+ # column_name: "String", # required
7766
+ # value: "String", # required
7767
+ # },
7768
+ # in: {
7769
+ # column_name: "String", # required
7770
+ # values: ["String"], # required
7771
+ # },
7772
+ # is_not_null: {
7773
+ # column_name: "String", # required
7774
+ # },
7775
+ # is_null: {
7776
+ # column_name: "String", # required
7777
+ # },
7778
+ # less_than: {
7779
+ # column_name: "String", # required
7780
+ # value: "String", # required
7781
+ # },
7782
+ # less_than_or_equal_to: {
7783
+ # column_name: "String", # required
7784
+ # value: "String", # required
7785
+ # },
7786
+ # like: {
7787
+ # column_name: "String", # required
7788
+ # value: "String", # required
7789
+ # },
7790
+ # not_equal_to: {
7791
+ # column_name: "String", # required
7792
+ # value: "String", # required
7793
+ # },
7794
+ # not_in: {
7795
+ # column_name: "String", # required
7796
+ # values: ["String"], # required
7797
+ # },
7798
+ # not_like: {
7799
+ # column_name: "String", # required
7800
+ # value: "String", # required
7801
+ # },
7802
+ # },
7803
+ # or: [
7804
+ # {
7805
+ # # recursive RowFilter
7806
+ # },
7807
+ # ],
7808
+ # },
7809
+ # sensitive: false,
7810
+ # },
7811
+ # },
7812
+ # description: "Description",
7813
+ # domain_identifier: "DomainId", # required
7814
+ # identifier: "FilterId", # required
7815
+ # name: "String",
7816
+ # })
7817
+ #
7818
+ # @example Response structure
7819
+ #
7820
+ # resp.asset_id #=> String
7821
+ # resp.configuration.column_configuration.included_column_names #=> Array
7822
+ # resp.configuration.column_configuration.included_column_names[0] #=> String
7823
+ # resp.configuration.row_configuration.row_filter.and #=> Array
7824
+ # resp.configuration.row_configuration.row_filter.and[0] #=> Types::RowFilter
7825
+ # resp.configuration.row_configuration.row_filter.expression.equal_to.column_name #=> String
7826
+ # resp.configuration.row_configuration.row_filter.expression.equal_to.value #=> String
7827
+ # resp.configuration.row_configuration.row_filter.expression.greater_than.column_name #=> String
7828
+ # resp.configuration.row_configuration.row_filter.expression.greater_than.value #=> String
7829
+ # resp.configuration.row_configuration.row_filter.expression.greater_than_or_equal_to.column_name #=> String
7830
+ # resp.configuration.row_configuration.row_filter.expression.greater_than_or_equal_to.value #=> String
7831
+ # resp.configuration.row_configuration.row_filter.expression.in.column_name #=> String
7832
+ # resp.configuration.row_configuration.row_filter.expression.in.values #=> Array
7833
+ # resp.configuration.row_configuration.row_filter.expression.in.values[0] #=> String
7834
+ # resp.configuration.row_configuration.row_filter.expression.is_not_null.column_name #=> String
7835
+ # resp.configuration.row_configuration.row_filter.expression.is_null.column_name #=> String
7836
+ # resp.configuration.row_configuration.row_filter.expression.less_than.column_name #=> String
7837
+ # resp.configuration.row_configuration.row_filter.expression.less_than.value #=> String
7838
+ # resp.configuration.row_configuration.row_filter.expression.less_than_or_equal_to.column_name #=> String
7839
+ # resp.configuration.row_configuration.row_filter.expression.less_than_or_equal_to.value #=> String
7840
+ # resp.configuration.row_configuration.row_filter.expression.like.column_name #=> String
7841
+ # resp.configuration.row_configuration.row_filter.expression.like.value #=> String
7842
+ # resp.configuration.row_configuration.row_filter.expression.not_equal_to.column_name #=> String
7843
+ # resp.configuration.row_configuration.row_filter.expression.not_equal_to.value #=> String
7844
+ # resp.configuration.row_configuration.row_filter.expression.not_in.column_name #=> String
7845
+ # resp.configuration.row_configuration.row_filter.expression.not_in.values #=> Array
7846
+ # resp.configuration.row_configuration.row_filter.expression.not_in.values[0] #=> String
7847
+ # resp.configuration.row_configuration.row_filter.expression.not_like.column_name #=> String
7848
+ # resp.configuration.row_configuration.row_filter.expression.not_like.value #=> String
7849
+ # resp.configuration.row_configuration.row_filter.or #=> Array
7850
+ # resp.configuration.row_configuration.row_filter.or[0] #=> Types::RowFilter
7851
+ # resp.configuration.row_configuration.sensitive #=> Boolean
7852
+ # resp.created_at #=> Time
7853
+ # resp.description #=> String
7854
+ # resp.domain_id #=> String
7855
+ # resp.effective_column_names #=> Array
7856
+ # resp.effective_column_names[0] #=> String
7857
+ # resp.effective_row_filter #=> String
7858
+ # resp.error_message #=> String
7859
+ # resp.id #=> String
7860
+ # resp.name #=> String
7861
+ # resp.status #=> String, one of "VALID", "INVALID"
7862
+ #
7863
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateAssetFilter AWS API Documentation
7864
+ #
7865
+ # @overload update_asset_filter(params = {})
7866
+ # @param [Hash] params ({})
7867
+ def update_asset_filter(params = {}, options = {})
7868
+ req = build_request(:update_asset_filter, params)
7869
+ req.send_request(options)
7870
+ end
7871
+
7340
7872
  # Updates the specified data source in Amazon DataZone.
7341
7873
  #
7342
7874
  # @option params [Array<Types::FormInput>] :asset_forms_input
@@ -8461,7 +8993,7 @@ module Aws::DataZone
8461
8993
  params: params,
8462
8994
  config: config)
8463
8995
  context[:gem_name] = 'aws-sdk-datazone'
8464
- context[:gem_version] = '1.14.0'
8996
+ context[:gem_version] = '1.16.0'
8465
8997
  Seahorse::Client::Request.new(handlers, context)
8466
8998
  end
8467
8999