aws-sdk-datazone 1.4.0 → 1.6.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.
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::DataZone
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::DataZone
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::DataZone
337
346
  # @option options [Aws::DataZone::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::DataZone::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
365
399
  #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
368
402
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
372
405
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
378
- #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -392,6 +416,9 @@ module Aws::DataZone
392
416
  # Amazon DataZone assets.
393
417
  #
394
418
  # @option params [Array<Types::AcceptChoice>] :accept_choices
419
+ # Specifies the prediction (aka, the automatically generated piece of
420
+ # metadata) and the target (for example, a column name) that can be
421
+ # accepted.
395
422
  #
396
423
  # @option params [Types::AcceptRule] :accept_rule
397
424
  # Specifies the rule (or the conditions) under which a prediction can be
@@ -408,8 +435,10 @@ module Aws::DataZone
408
435
  # The identifier of the Amazon DataZone domain.
409
436
  #
410
437
  # @option params [required, String] :identifier
438
+ # The identifier of the asset.
411
439
  #
412
440
  # @option params [String] :revision
441
+ # The revision that is to be made to the asset.
413
442
  #
414
443
  # @return [Types::AcceptPredictionsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
415
444
  #
@@ -422,8 +451,9 @@ module Aws::DataZone
422
451
  # resp = client.accept_predictions({
423
452
  # accept_choices: [
424
453
  # {
454
+ # edited_value: "EditedValue",
425
455
  # prediction_choice: 1,
426
- # prediction_target: "String",
456
+ # prediction_target: "String", # required
427
457
  # },
428
458
  # ],
429
459
  # accept_rule: {
@@ -527,6 +557,33 @@ module Aws::DataZone
527
557
  req.send_request(options)
528
558
  end
529
559
 
560
+ # Cancels the metadata generation run.
561
+ #
562
+ # @option params [required, String] :domain_identifier
563
+ # The ID of the Amazon DataZone domain in which the metadata generation
564
+ # run is to be cancelled.
565
+ #
566
+ # @option params [required, String] :identifier
567
+ # The ID of the metadata generation run.
568
+ #
569
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
570
+ #
571
+ # @example Request syntax with placeholder values
572
+ #
573
+ # resp = client.cancel_metadata_generation_run({
574
+ # domain_identifier: "DomainId", # required
575
+ # identifier: "MetadataGenerationRunIdentifier", # required
576
+ # })
577
+ #
578
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CancelMetadataGenerationRun AWS API Documentation
579
+ #
580
+ # @overload cancel_metadata_generation_run(params = {})
581
+ # @param [Hash] params ({})
582
+ def cancel_metadata_generation_run(params = {}, options = {})
583
+ req = build_request(:cancel_metadata_generation_run, params)
584
+ req.send_request(options)
585
+ end
586
+
530
587
  # Cancels the subscription to the specified asset.
531
588
  #
532
589
  # @option params [required, String] :domain_identifier
@@ -609,6 +666,7 @@ module Aws::DataZone
609
666
  # Amazon DataZone domain where the asset is created.
610
667
  #
611
668
  # @option params [String] :external_identifier
669
+ # The external identifier of the asset.
612
670
  #
613
671
  # @option params [Array<Types::FormInput>] :forms_input
614
672
  # Metadata forms attached to the asset.
@@ -644,6 +702,7 @@ module Aws::DataZone
644
702
  # * {Types::CreateAssetOutput#forms_output #forms_output} => Array&lt;Types::FormOutput&gt;
645
703
  # * {Types::CreateAssetOutput#glossary_terms #glossary_terms} => Array&lt;String&gt;
646
704
  # * {Types::CreateAssetOutput#id #id} => String
705
+ # * {Types::CreateAssetOutput#latest_time_series_data_point_forms_output #latest_time_series_data_point_forms_output} => Array&lt;Types::TimeSeriesDataPointSummaryFormOutput&gt;
647
706
  # * {Types::CreateAssetOutput#listing #listing} => Types::AssetListingDetails
648
707
  # * {Types::CreateAssetOutput#name #name} => String
649
708
  # * {Types::CreateAssetOutput#owning_project_id #owning_project_id} => String
@@ -697,6 +756,13 @@ module Aws::DataZone
697
756
  # resp.glossary_terms #=> Array
698
757
  # resp.glossary_terms[0] #=> String
699
758
  # resp.id #=> String
759
+ # resp.latest_time_series_data_point_forms_output #=> Array
760
+ # resp.latest_time_series_data_point_forms_output[0].content_summary #=> String
761
+ # resp.latest_time_series_data_point_forms_output[0].form_name #=> String
762
+ # resp.latest_time_series_data_point_forms_output[0].id #=> String
763
+ # resp.latest_time_series_data_point_forms_output[0].timestamp #=> Time
764
+ # resp.latest_time_series_data_point_forms_output[0].type_identifier #=> String
765
+ # resp.latest_time_series_data_point_forms_output[0].type_revision #=> String
700
766
  # resp.listing.listing_id #=> String
701
767
  # resp.listing.listing_status #=> String, one of "CREATING", "ACTIVE", "INACTIVE"
702
768
  # resp.name #=> String
@@ -768,6 +834,7 @@ module Aws::DataZone
768
834
  # * {Types::CreateAssetRevisionOutput#forms_output #forms_output} => Array&lt;Types::FormOutput&gt;
769
835
  # * {Types::CreateAssetRevisionOutput#glossary_terms #glossary_terms} => Array&lt;String&gt;
770
836
  # * {Types::CreateAssetRevisionOutput#id #id} => String
837
+ # * {Types::CreateAssetRevisionOutput#latest_time_series_data_point_forms_output #latest_time_series_data_point_forms_output} => Array&lt;Types::TimeSeriesDataPointSummaryFormOutput&gt;
771
838
  # * {Types::CreateAssetRevisionOutput#listing #listing} => Types::AssetListingDetails
772
839
  # * {Types::CreateAssetRevisionOutput#name #name} => String
773
840
  # * {Types::CreateAssetRevisionOutput#owning_project_id #owning_project_id} => String
@@ -819,6 +886,13 @@ module Aws::DataZone
819
886
  # resp.glossary_terms #=> Array
820
887
  # resp.glossary_terms[0] #=> String
821
888
  # resp.id #=> String
889
+ # resp.latest_time_series_data_point_forms_output #=> Array
890
+ # resp.latest_time_series_data_point_forms_output[0].content_summary #=> String
891
+ # resp.latest_time_series_data_point_forms_output[0].form_name #=> String
892
+ # resp.latest_time_series_data_point_forms_output[0].id #=> String
893
+ # resp.latest_time_series_data_point_forms_output[0].timestamp #=> Time
894
+ # resp.latest_time_series_data_point_forms_output[0].type_identifier #=> String
895
+ # resp.latest_time_series_data_point_forms_output[0].type_revision #=> String
822
896
  # resp.listing.listing_id #=> String
823
897
  # resp.listing.listing_status #=> String, one of "CREATING", "ACTIVE", "INACTIVE"
824
898
  # resp.name #=> String
@@ -1007,6 +1081,7 @@ module Aws::DataZone
1007
1081
  # client_token: "String",
1008
1082
  # configuration: {
1009
1083
  # glue_run_configuration: {
1084
+ # auto_import_data_quality_result: false,
1010
1085
  # data_access_role: "GlueRunConfigurationInputDataAccessRoleString",
1011
1086
  # relational_filter_configurations: [ # required
1012
1087
  # {
@@ -1073,6 +1148,7 @@ module Aws::DataZone
1073
1148
  # resp.asset_forms_output[0].type_name #=> String
1074
1149
  # resp.asset_forms_output[0].type_revision #=> String
1075
1150
  # resp.configuration.glue_run_configuration.account_id #=> String
1151
+ # resp.configuration.glue_run_configuration.auto_import_data_quality_result #=> Boolean
1076
1152
  # resp.configuration.glue_run_configuration.data_access_role #=> String
1077
1153
  # resp.configuration.glue_run_configuration.region #=> String
1078
1154
  # resp.configuration.glue_run_configuration.relational_filter_configurations #=> Array
@@ -1683,19 +1759,30 @@ module Aws::DataZone
1683
1759
  req.send_request(options)
1684
1760
  end
1685
1761
 
1762
+ # Publishes a listing (a record of an asset at a given time) or removes
1763
+ # a listing from the catalog.
1764
+ #
1686
1765
  # @option params [required, String] :action
1766
+ # Specifies whether to publish or unpublish a listing.
1687
1767
  #
1688
1768
  # @option params [String] :client_token
1769
+ # A unique, case-sensitive identifier that is provided to ensure the
1770
+ # idempotency of the request.
1771
+ #
1689
1772
  # **A suitable default value is auto-generated.** You should normally
1690
1773
  # not need to pass this option.**
1691
1774
  #
1692
1775
  # @option params [required, String] :domain_identifier
1776
+ # The ID of the Amazon DataZone domain.
1693
1777
  #
1694
1778
  # @option params [required, String] :entity_identifier
1779
+ # The ID of the asset.
1695
1780
  #
1696
1781
  # @option params [String] :entity_revision
1782
+ # The revision of an asset.
1697
1783
  #
1698
1784
  # @option params [required, String] :entity_type
1785
+ # The type of an entity.
1699
1786
  #
1700
1787
  # @return [Types::CreateListingChangeSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1701
1788
  #
@@ -1709,7 +1796,7 @@ module Aws::DataZone
1709
1796
  # action: "PUBLISH", # required, accepts PUBLISH, UNPUBLISH
1710
1797
  # client_token: "ClientToken",
1711
1798
  # domain_identifier: "DomainId", # required
1712
- # entity_identifier: "EntityId", # required
1799
+ # entity_identifier: "EntityIdentifier", # required
1713
1800
  # entity_revision: "Revision",
1714
1801
  # entity_type: "ASSET", # required, accepts ASSET
1715
1802
  # })
@@ -1937,6 +2024,7 @@ module Aws::DataZone
1937
2024
  # The reason for the subscription request.
1938
2025
  #
1939
2026
  # @option params [required, Array<Types::SubscribedListingInput>] :subscribed_listings
2027
+ # The published asset for which the subscription grant is to be created.
1940
2028
  #
1941
2029
  # @option params [required, Array<Types::SubscribedPrincipalInput>] :subscribed_principals
1942
2030
  # The Amazon DataZone principals for whom the subscription request is
@@ -2285,6 +2373,7 @@ module Aws::DataZone
2285
2373
  # resp.asset_forms_output[0].type_name #=> String
2286
2374
  # resp.asset_forms_output[0].type_revision #=> String
2287
2375
  # resp.configuration.glue_run_configuration.account_id #=> String
2376
+ # resp.configuration.glue_run_configuration.auto_import_data_quality_result #=> Boolean
2288
2377
  # resp.configuration.glue_run_configuration.data_access_role #=> String
2289
2378
  # resp.configuration.glue_run_configuration.region #=> String
2290
2379
  # resp.configuration.glue_run_configuration.relational_filter_configurations #=> Array
@@ -2349,7 +2438,8 @@ module Aws::DataZone
2349
2438
  # deleted.
2350
2439
  #
2351
2440
  # @option params [Boolean] :skip_deletion_check
2352
- # Optional flag to delete all child entities within the domain
2441
+ # Specifies the optional flag to delete all child entities within the
2442
+ # domain.
2353
2443
  #
2354
2444
  # @return [Types::DeleteDomainOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2355
2445
  #
@@ -2538,9 +2628,13 @@ module Aws::DataZone
2538
2628
  req.send_request(options)
2539
2629
  end
2540
2630
 
2631
+ # Deletes a listing (a record of an asset at a given time).
2632
+ #
2541
2633
  # @option params [required, String] :domain_identifier
2634
+ # The ID of the Amazon DataZone domain.
2542
2635
  #
2543
2636
  # @option params [required, String] :identifier
2637
+ # The ID of the listing to be deleted.
2544
2638
  #
2545
2639
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2546
2640
  #
@@ -2569,8 +2663,8 @@ module Aws::DataZone
2569
2663
  # The identifier of the project that is to be deleted.
2570
2664
  #
2571
2665
  # @option params [Boolean] :skip_deletion_check
2572
- # Optional flag to asynchronously delete child entities within the
2573
- # project
2666
+ # Specifies the optional flag to delete all child entities within the
2667
+ # project.
2574
2668
  #
2575
2669
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2576
2670
  #
@@ -2746,6 +2840,49 @@ module Aws::DataZone
2746
2840
  req.send_request(options)
2747
2841
  end
2748
2842
 
2843
+ # Deletes the specified time series form for the specified asset.
2844
+ #
2845
+ # @option params [String] :client_token
2846
+ # A unique, case-sensitive identifier to ensure idempotency of the
2847
+ # request. This field is automatically populated if not provided.
2848
+ #
2849
+ # **A suitable default value is auto-generated.** You should normally
2850
+ # not need to pass this option.**
2851
+ #
2852
+ # @option params [required, String] :domain_identifier
2853
+ # The ID of the Amazon DataZone domain that houses the asset for which
2854
+ # you want to delete a time series form.
2855
+ #
2856
+ # @option params [required, String] :entity_identifier
2857
+ # The ID of the asset for which you want to delete a time series form.
2858
+ #
2859
+ # @option params [required, String] :entity_type
2860
+ # The type of the asset for which you want to delete a time series form.
2861
+ #
2862
+ # @option params [required, String] :form_name
2863
+ # The name of the time series form that you want to delete.
2864
+ #
2865
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2866
+ #
2867
+ # @example Request syntax with placeholder values
2868
+ #
2869
+ # resp = client.delete_time_series_data_points({
2870
+ # client_token: "ClientToken",
2871
+ # domain_identifier: "DomainId", # required
2872
+ # entity_identifier: "EntityIdentifier", # required
2873
+ # entity_type: "ASSET", # required, accepts ASSET, LISTING
2874
+ # form_name: "TimeSeriesFormName", # required
2875
+ # })
2876
+ #
2877
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteTimeSeriesDataPoints AWS API Documentation
2878
+ #
2879
+ # @overload delete_time_series_data_points(params = {})
2880
+ # @param [Hash] params ({})
2881
+ def delete_time_series_data_points(params = {}, options = {})
2882
+ req = build_request(:delete_time_series_data_points, params)
2883
+ req.send_request(options)
2884
+ end
2885
+
2749
2886
  # Gets an Amazon DataZone asset.
2750
2887
  #
2751
2888
  # @option params [required, String] :domain_identifier
@@ -2769,6 +2906,7 @@ module Aws::DataZone
2769
2906
  # * {Types::GetAssetOutput#forms_output #forms_output} => Array&lt;Types::FormOutput&gt;
2770
2907
  # * {Types::GetAssetOutput#glossary_terms #glossary_terms} => Array&lt;String&gt;
2771
2908
  # * {Types::GetAssetOutput#id #id} => String
2909
+ # * {Types::GetAssetOutput#latest_time_series_data_point_forms_output #latest_time_series_data_point_forms_output} => Array&lt;Types::TimeSeriesDataPointSummaryFormOutput&gt;
2772
2910
  # * {Types::GetAssetOutput#listing #listing} => Types::AssetListingDetails
2773
2911
  # * {Types::GetAssetOutput#name #name} => String
2774
2912
  # * {Types::GetAssetOutput#owning_project_id #owning_project_id} => String
@@ -2802,6 +2940,13 @@ module Aws::DataZone
2802
2940
  # resp.glossary_terms #=> Array
2803
2941
  # resp.glossary_terms[0] #=> String
2804
2942
  # resp.id #=> String
2943
+ # resp.latest_time_series_data_point_forms_output #=> Array
2944
+ # resp.latest_time_series_data_point_forms_output[0].content_summary #=> String
2945
+ # resp.latest_time_series_data_point_forms_output[0].form_name #=> String
2946
+ # resp.latest_time_series_data_point_forms_output[0].id #=> String
2947
+ # resp.latest_time_series_data_point_forms_output[0].timestamp #=> Time
2948
+ # resp.latest_time_series_data_point_forms_output[0].type_identifier #=> String
2949
+ # resp.latest_time_series_data_point_forms_output[0].type_revision #=> String
2805
2950
  # resp.listing.listing_id #=> String
2806
2951
  # resp.listing.listing_status #=> String, one of "CREATING", "ACTIVE", "INACTIVE"
2807
2952
  # resp.name #=> String
@@ -2932,6 +3077,7 @@ module Aws::DataZone
2932
3077
  # resp.asset_forms_output[0].type_name #=> String
2933
3078
  # resp.asset_forms_output[0].type_revision #=> String
2934
3079
  # resp.configuration.glue_run_configuration.account_id #=> String
3080
+ # resp.configuration.glue_run_configuration.auto_import_data_quality_result #=> Boolean
2935
3081
  # resp.configuration.glue_run_configuration.data_access_role #=> String
2936
3082
  # resp.configuration.glue_run_configuration.region #=> String
2937
3083
  # resp.configuration.glue_run_configuration.relational_filter_configurations #=> Array
@@ -3601,11 +3747,16 @@ module Aws::DataZone
3601
3747
  req.send_request(options)
3602
3748
  end
3603
3749
 
3750
+ # Gets a listing (a record of an asset at a given time).
3751
+ #
3604
3752
  # @option params [required, String] :domain_identifier
3753
+ # The ID of the Amazon DataZone domain.
3605
3754
  #
3606
3755
  # @option params [required, String] :identifier
3756
+ # The ID of the listing.
3607
3757
  #
3608
3758
  # @option params [String] :listing_revision
3759
+ # The revision of the listing.
3609
3760
  #
3610
3761
  # @return [Types::GetListingOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3611
3762
  #
@@ -3644,6 +3795,13 @@ module Aws::DataZone
3644
3795
  # resp.item.asset_listing.glossary_terms #=> Array
3645
3796
  # resp.item.asset_listing.glossary_terms[0].name #=> String
3646
3797
  # resp.item.asset_listing.glossary_terms[0].short_description #=> String
3798
+ # resp.item.asset_listing.latest_time_series_data_point_forms #=> Array
3799
+ # resp.item.asset_listing.latest_time_series_data_point_forms[0].content_summary #=> String
3800
+ # resp.item.asset_listing.latest_time_series_data_point_forms[0].form_name #=> String
3801
+ # resp.item.asset_listing.latest_time_series_data_point_forms[0].id #=> String
3802
+ # resp.item.asset_listing.latest_time_series_data_point_forms[0].timestamp #=> Time
3803
+ # resp.item.asset_listing.latest_time_series_data_point_forms[0].type_identifier #=> String
3804
+ # resp.item.asset_listing.latest_time_series_data_point_forms[0].type_revision #=> String
3647
3805
  # resp.item.asset_listing.owning_project_id #=> String
3648
3806
  # resp.listing_revision #=> String
3649
3807
  # resp.name #=> String
@@ -3660,6 +3818,55 @@ module Aws::DataZone
3660
3818
  req.send_request(options)
3661
3819
  end
3662
3820
 
3821
+ # Gets a metadata generation run in Amazon DataZone.
3822
+ #
3823
+ # @option params [required, String] :domain_identifier
3824
+ # The ID of the Amazon DataZone domain the metadata generation run of
3825
+ # which you want to get.
3826
+ #
3827
+ # @option params [required, String] :identifier
3828
+ # The identifier of the metadata generation run.
3829
+ #
3830
+ # @return [Types::GetMetadataGenerationRunOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3831
+ #
3832
+ # * {Types::GetMetadataGenerationRunOutput#created_at #created_at} => Time
3833
+ # * {Types::GetMetadataGenerationRunOutput#created_by #created_by} => String
3834
+ # * {Types::GetMetadataGenerationRunOutput#domain_id #domain_id} => String
3835
+ # * {Types::GetMetadataGenerationRunOutput#id #id} => String
3836
+ # * {Types::GetMetadataGenerationRunOutput#owning_project_id #owning_project_id} => String
3837
+ # * {Types::GetMetadataGenerationRunOutput#status #status} => String
3838
+ # * {Types::GetMetadataGenerationRunOutput#target #target} => Types::MetadataGenerationRunTarget
3839
+ # * {Types::GetMetadataGenerationRunOutput#type #type} => String
3840
+ #
3841
+ # @example Request syntax with placeholder values
3842
+ #
3843
+ # resp = client.get_metadata_generation_run({
3844
+ # domain_identifier: "DomainId", # required
3845
+ # identifier: "MetadataGenerationRunIdentifier", # required
3846
+ # })
3847
+ #
3848
+ # @example Response structure
3849
+ #
3850
+ # resp.created_at #=> Time
3851
+ # resp.created_by #=> String
3852
+ # resp.domain_id #=> String
3853
+ # resp.id #=> String
3854
+ # resp.owning_project_id #=> String
3855
+ # resp.status #=> String, one of "SUBMITTED", "IN_PROGRESS", "CANCELED", "SUCCEEDED", "FAILED"
3856
+ # resp.target.identifier #=> String
3857
+ # resp.target.revision #=> String
3858
+ # resp.target.type #=> String, one of "ASSET"
3859
+ # resp.type #=> String, one of "BUSINESS_DESCRIPTIONS"
3860
+ #
3861
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetMetadataGenerationRun AWS API Documentation
3862
+ #
3863
+ # @overload get_metadata_generation_run(params = {})
3864
+ # @param [Hash] params ({})
3865
+ def get_metadata_generation_run(params = {}, options = {})
3866
+ req = build_request(:get_metadata_generation_run, params)
3867
+ req.send_request(options)
3868
+ end
3869
+
3663
3870
  # Gets a project in Amazon DataZone.
3664
3871
  #
3665
3872
  # @option params [required, String] :domain_identifier
@@ -3979,6 +4186,65 @@ module Aws::DataZone
3979
4186
  req.send_request(options)
3980
4187
  end
3981
4188
 
4189
+ # Gets the existing data point for the asset.
4190
+ #
4191
+ # @option params [required, String] :domain_identifier
4192
+ # The ID of the Amazon DataZone domain that houses the asset for which
4193
+ # you want to get the data point.
4194
+ #
4195
+ # @option params [required, String] :entity_identifier
4196
+ # The ID of the asset for which you want to get the data point.
4197
+ #
4198
+ # @option params [required, String] :entity_type
4199
+ # The type of the asset for which you want to get the data point.
4200
+ #
4201
+ # @option params [required, String] :form_name
4202
+ # The name of the time series form that houses the data point that you
4203
+ # want to get.
4204
+ #
4205
+ # @option params [required, String] :identifier
4206
+ # The ID of the data point that you want to get.
4207
+ #
4208
+ # @return [Types::GetTimeSeriesDataPointOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4209
+ #
4210
+ # * {Types::GetTimeSeriesDataPointOutput#domain_id #domain_id} => String
4211
+ # * {Types::GetTimeSeriesDataPointOutput#entity_id #entity_id} => String
4212
+ # * {Types::GetTimeSeriesDataPointOutput#entity_type #entity_type} => String
4213
+ # * {Types::GetTimeSeriesDataPointOutput#form #form} => Types::TimeSeriesDataPointFormOutput
4214
+ # * {Types::GetTimeSeriesDataPointOutput#form_name #form_name} => String
4215
+ #
4216
+ # @example Request syntax with placeholder values
4217
+ #
4218
+ # resp = client.get_time_series_data_point({
4219
+ # domain_identifier: "DomainId", # required
4220
+ # entity_identifier: "EntityIdentifier", # required
4221
+ # entity_type: "ASSET", # required, accepts ASSET, LISTING
4222
+ # form_name: "TimeSeriesFormName", # required
4223
+ # identifier: "TimeSeriesDataPointIdentifier", # required
4224
+ # })
4225
+ #
4226
+ # @example Response structure
4227
+ #
4228
+ # resp.domain_id #=> String
4229
+ # resp.entity_id #=> String
4230
+ # resp.entity_type #=> String, one of "ASSET", "LISTING"
4231
+ # resp.form.content #=> String
4232
+ # resp.form.form_name #=> String
4233
+ # resp.form.id #=> String
4234
+ # resp.form.timestamp #=> Time
4235
+ # resp.form.type_identifier #=> String
4236
+ # resp.form.type_revision #=> String
4237
+ # resp.form_name #=> String
4238
+ #
4239
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetTimeSeriesDataPoint AWS API Documentation
4240
+ #
4241
+ # @overload get_time_series_data_point(params = {})
4242
+ # @param [Hash] params ({})
4243
+ def get_time_series_data_point(params = {}, options = {})
4244
+ req = build_request(:get_time_series_data_point, params)
4245
+ req.send_request(options)
4246
+ end
4247
+
3982
4248
  # Gets a user profile in Amazon DataZone.
3983
4249
  #
3984
4250
  # @option params [required, String] :domain_identifier
@@ -4610,6 +4876,7 @@ module Aws::DataZone
4610
4876
  # `ListEnvironments` to list the next set of environments.
4611
4877
  #
4612
4878
  # @option params [String] :name
4879
+ # The name of the environment.
4613
4880
  #
4614
4881
  # @option params [String] :next_token
4615
4882
  # When the number of environments is greater than the default value for
@@ -4678,6 +4945,75 @@ module Aws::DataZone
4678
4945
  req.send_request(options)
4679
4946
  end
4680
4947
 
4948
+ # Lists all metadata generation runs.
4949
+ #
4950
+ # @option params [required, String] :domain_identifier
4951
+ # The ID of the Amazon DataZone domain where you want to list metadata
4952
+ # generation runs.
4953
+ #
4954
+ # @option params [Integer] :max_results
4955
+ # The maximum number of metadata generation runs to return in a single
4956
+ # call to ListMetadataGenerationRuns. When the number of metadata
4957
+ # generation runs to be listed is greater than the value of MaxResults,
4958
+ # the response contains a NextToken value that you can use in a
4959
+ # subsequent call to ListMetadataGenerationRuns to list the next set of
4960
+ # revisions.
4961
+ #
4962
+ # @option params [String] :next_token
4963
+ # When the number of metadata generation runs is greater than the
4964
+ # default value for the MaxResults parameter, or if you explicitly
4965
+ # specify a value for MaxResults that is less than the number of
4966
+ # metadata generation runs, the response includes a pagination token
4967
+ # named NextToken. You can specify this NextToken value in a subsequent
4968
+ # call to ListMetadataGenerationRuns to list the next set of revisions.
4969
+ #
4970
+ # @option params [String] :status
4971
+ # The status of the metadata generation runs.
4972
+ #
4973
+ # @option params [String] :type
4974
+ # The type of the metadata generation runs.
4975
+ #
4976
+ # @return [Types::ListMetadataGenerationRunsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4977
+ #
4978
+ # * {Types::ListMetadataGenerationRunsOutput#items #items} => Array&lt;Types::MetadataGenerationRunItem&gt;
4979
+ # * {Types::ListMetadataGenerationRunsOutput#next_token #next_token} => String
4980
+ #
4981
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4982
+ #
4983
+ # @example Request syntax with placeholder values
4984
+ #
4985
+ # resp = client.list_metadata_generation_runs({
4986
+ # domain_identifier: "DomainId", # required
4987
+ # max_results: 1,
4988
+ # next_token: "PaginationToken",
4989
+ # status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, CANCELED, SUCCEEDED, FAILED
4990
+ # type: "BUSINESS_DESCRIPTIONS", # accepts BUSINESS_DESCRIPTIONS
4991
+ # })
4992
+ #
4993
+ # @example Response structure
4994
+ #
4995
+ # resp.items #=> Array
4996
+ # resp.items[0].created_at #=> Time
4997
+ # resp.items[0].created_by #=> String
4998
+ # resp.items[0].domain_id #=> String
4999
+ # resp.items[0].id #=> String
5000
+ # resp.items[0].owning_project_id #=> String
5001
+ # resp.items[0].status #=> String, one of "SUBMITTED", "IN_PROGRESS", "CANCELED", "SUCCEEDED", "FAILED"
5002
+ # resp.items[0].target.identifier #=> String
5003
+ # resp.items[0].target.revision #=> String
5004
+ # resp.items[0].target.type #=> String, one of "ASSET"
5005
+ # resp.items[0].type #=> String, one of "BUSINESS_DESCRIPTIONS"
5006
+ # resp.next_token #=> String
5007
+ #
5008
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListMetadataGenerationRuns AWS API Documentation
5009
+ #
5010
+ # @overload list_metadata_generation_runs(params = {})
5011
+ # @param [Hash] params ({})
5012
+ def list_metadata_generation_runs(params = {}, options = {})
5013
+ req = build_request(:list_metadata_generation_runs, params)
5014
+ req.send_request(options)
5015
+ end
5016
+
4681
5017
  # Lists all Amazon DataZone notifications.
4682
5018
  #
4683
5019
  # @option params [Time,DateTime,Date,Integer,String] :after_timestamp
@@ -4844,6 +5180,7 @@ module Aws::DataZone
4844
5180
  # the next set of projects.
4845
5181
  #
4846
5182
  # @option params [String] :name
5183
+ # The name of the project.
4847
5184
  #
4848
5185
  # @option params [String] :next_token
4849
5186
  # When the number of projects is greater than the default value for the
@@ -5311,6 +5648,153 @@ module Aws::DataZone
5311
5648
  req.send_request(options)
5312
5649
  end
5313
5650
 
5651
+ # Lists time series data points.
5652
+ #
5653
+ # @option params [required, String] :domain_identifier
5654
+ # The ID of the Amazon DataZone domain that houses the assets for which
5655
+ # you want to list time series data points.
5656
+ #
5657
+ # @option params [Time,DateTime,Date,Integer,String] :ended_at
5658
+ # The timestamp at which the data points that you wanted to list ended.
5659
+ #
5660
+ # @option params [required, String] :entity_identifier
5661
+ # The ID of the asset for which you want to list data points.
5662
+ #
5663
+ # @option params [required, String] :entity_type
5664
+ # The type of the asset for which you want to list data points.
5665
+ #
5666
+ # @option params [required, String] :form_name
5667
+ # The name of the time series data points form.
5668
+ #
5669
+ # @option params [Integer] :max_results
5670
+ # The maximum number of data points to return in a single call to
5671
+ # ListTimeSeriesDataPoints. When the number of data points to be listed
5672
+ # is greater than the value of MaxResults, the response contains a
5673
+ # NextToken value that you can use in a subsequent call to
5674
+ # ListTimeSeriesDataPoints to list the next set of data points.
5675
+ #
5676
+ # @option params [String] :next_token
5677
+ # When the number of data points is greater than the default value for
5678
+ # the MaxResults parameter, or if you explicitly specify a value for
5679
+ # MaxResults that is less than the number of data points, the response
5680
+ # includes a pagination token named NextToken. You can specify this
5681
+ # NextToken value in a subsequent call to ListTimeSeriesDataPoints to
5682
+ # list the next set of data points.
5683
+ #
5684
+ # @option params [Time,DateTime,Date,Integer,String] :started_at
5685
+ # The timestamp at which the data points that you want to list started.
5686
+ #
5687
+ # @return [Types::ListTimeSeriesDataPointsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5688
+ #
5689
+ # * {Types::ListTimeSeriesDataPointsOutput#items #items} => Array&lt;Types::TimeSeriesDataPointSummaryFormOutput&gt;
5690
+ # * {Types::ListTimeSeriesDataPointsOutput#next_token #next_token} => String
5691
+ #
5692
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
5693
+ #
5694
+ # @example Request syntax with placeholder values
5695
+ #
5696
+ # resp = client.list_time_series_data_points({
5697
+ # domain_identifier: "DomainId", # required
5698
+ # ended_at: Time.now,
5699
+ # entity_identifier: "EntityIdentifier", # required
5700
+ # entity_type: "ASSET", # required, accepts ASSET, LISTING
5701
+ # form_name: "TimeSeriesFormName", # required
5702
+ # max_results: 1,
5703
+ # next_token: "PaginationToken",
5704
+ # started_at: Time.now,
5705
+ # })
5706
+ #
5707
+ # @example Response structure
5708
+ #
5709
+ # resp.items #=> Array
5710
+ # resp.items[0].content_summary #=> String
5711
+ # resp.items[0].form_name #=> String
5712
+ # resp.items[0].id #=> String
5713
+ # resp.items[0].timestamp #=> Time
5714
+ # resp.items[0].type_identifier #=> String
5715
+ # resp.items[0].type_revision #=> String
5716
+ # resp.next_token #=> String
5717
+ #
5718
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListTimeSeriesDataPoints AWS API Documentation
5719
+ #
5720
+ # @overload list_time_series_data_points(params = {})
5721
+ # @param [Hash] params ({})
5722
+ def list_time_series_data_points(params = {}, options = {})
5723
+ req = build_request(:list_time_series_data_points, params)
5724
+ req.send_request(options)
5725
+ end
5726
+
5727
+ # Posts time series data points to Amazon DataZone for the specified
5728
+ # asset.
5729
+ #
5730
+ # @option params [String] :client_token
5731
+ # A unique, case-sensitive identifier that is provided to ensure the
5732
+ # idempotency of the request.
5733
+ #
5734
+ # **A suitable default value is auto-generated.** You should normally
5735
+ # not need to pass this option.**
5736
+ #
5737
+ # @option params [required, String] :domain_identifier
5738
+ # The ID of the Amazon DataZone domain in which you want to post time
5739
+ # series data points.
5740
+ #
5741
+ # @option params [required, String] :entity_identifier
5742
+ # The ID of the asset for which you want to post time series data
5743
+ # points.
5744
+ #
5745
+ # @option params [required, String] :entity_type
5746
+ # The type of the asset for which you want to post data points.
5747
+ #
5748
+ # @option params [required, Array<Types::TimeSeriesDataPointFormInput>] :forms
5749
+ # The forms that contain the data points that you want to post.
5750
+ #
5751
+ # @return [Types::PostTimeSeriesDataPointsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5752
+ #
5753
+ # * {Types::PostTimeSeriesDataPointsOutput#domain_id #domain_id} => String
5754
+ # * {Types::PostTimeSeriesDataPointsOutput#entity_id #entity_id} => String
5755
+ # * {Types::PostTimeSeriesDataPointsOutput#entity_type #entity_type} => String
5756
+ # * {Types::PostTimeSeriesDataPointsOutput#forms #forms} => Array&lt;Types::TimeSeriesDataPointFormOutput&gt;
5757
+ #
5758
+ # @example Request syntax with placeholder values
5759
+ #
5760
+ # resp = client.post_time_series_data_points({
5761
+ # client_token: "ClientToken",
5762
+ # domain_identifier: "DomainId", # required
5763
+ # entity_identifier: "EntityIdentifier", # required
5764
+ # entity_type: "ASSET", # required, accepts ASSET, LISTING
5765
+ # forms: [ # required
5766
+ # {
5767
+ # content: "TimeSeriesDataPointFormInputContentString",
5768
+ # form_name: "TimeSeriesFormName", # required
5769
+ # timestamp: Time.now, # required
5770
+ # type_identifier: "FormTypeIdentifier", # required
5771
+ # type_revision: "Revision",
5772
+ # },
5773
+ # ],
5774
+ # })
5775
+ #
5776
+ # @example Response structure
5777
+ #
5778
+ # resp.domain_id #=> String
5779
+ # resp.entity_id #=> String
5780
+ # resp.entity_type #=> String, one of "ASSET", "LISTING"
5781
+ # resp.forms #=> Array
5782
+ # resp.forms[0].content #=> String
5783
+ # resp.forms[0].form_name #=> String
5784
+ # resp.forms[0].id #=> String
5785
+ # resp.forms[0].timestamp #=> Time
5786
+ # resp.forms[0].type_identifier #=> String
5787
+ # resp.forms[0].type_revision #=> String
5788
+ #
5789
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PostTimeSeriesDataPoints AWS API Documentation
5790
+ #
5791
+ # @overload post_time_series_data_points(params = {})
5792
+ # @param [Hash] params ({})
5793
+ def post_time_series_data_points(params = {}, options = {})
5794
+ req = build_request(:post_time_series_data_points, params)
5795
+ req.send_request(options)
5796
+ end
5797
+
5314
5798
  # Writes the configuration for the specified environment blueprint in
5315
5799
  # Amazon DataZone.
5316
5800
  #
@@ -5398,10 +5882,16 @@ module Aws::DataZone
5398
5882
  # The identifier of the prediction.
5399
5883
  #
5400
5884
  # @option params [Array<Types::RejectChoice>] :reject_choices
5885
+ # Specifies the prediction (aka, the automatically generated piece of
5886
+ # metadata) and the target (for example, a column name) that can be
5887
+ # rejected.
5401
5888
  #
5402
5889
  # @option params [Types::RejectRule] :reject_rule
5890
+ # Specifies the rule (or the conditions) under which a prediction can be
5891
+ # rejected.
5403
5892
  #
5404
5893
  # @option params [String] :revision
5894
+ # The revision that is to be made to the asset.
5405
5895
  #
5406
5896
  # @return [Types::RejectPredictionsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5407
5897
  #
@@ -5418,7 +5908,7 @@ module Aws::DataZone
5418
5908
  # reject_choices: [
5419
5909
  # {
5420
5910
  # prediction_choices: [1],
5421
- # prediction_target: "String",
5911
+ # prediction_target: "String", # required
5422
5912
  # },
5423
5913
  # ],
5424
5914
  # reject_rule: {
@@ -5617,6 +6107,7 @@ module Aws::DataZone
5617
6107
  # The identifier of the owning project specified for the search.
5618
6108
  #
5619
6109
  # @option params [Array<Types::SearchInItem>] :search_in
6110
+ # The details of the search.
5620
6111
  #
5621
6112
  # @option params [required, String] :search_scope
5622
6113
  # The scope of the search.
@@ -5638,7 +6129,7 @@ module Aws::DataZone
5638
6129
  # @example Request syntax with placeholder values
5639
6130
  #
5640
6131
  # resp = client.search({
5641
- # additional_attributes: ["FORMS"], # accepts FORMS
6132
+ # additional_attributes: ["FORMS"], # accepts FORMS, TIME_SERIES_DATA_POINT_FORMS
5642
6133
  # domain_identifier: "DomainId", # required
5643
6134
  # filters: {
5644
6135
  # and: [
@@ -5680,6 +6171,13 @@ module Aws::DataZone
5680
6171
  # resp.items[0].asset_item.additional_attributes.forms_output[0].form_name #=> String
5681
6172
  # resp.items[0].asset_item.additional_attributes.forms_output[0].type_name #=> String
5682
6173
  # resp.items[0].asset_item.additional_attributes.forms_output[0].type_revision #=> String
6174
+ # resp.items[0].asset_item.additional_attributes.latest_time_series_data_point_forms_output #=> Array
6175
+ # resp.items[0].asset_item.additional_attributes.latest_time_series_data_point_forms_output[0].content_summary #=> String
6176
+ # resp.items[0].asset_item.additional_attributes.latest_time_series_data_point_forms_output[0].form_name #=> String
6177
+ # resp.items[0].asset_item.additional_attributes.latest_time_series_data_point_forms_output[0].id #=> String
6178
+ # resp.items[0].asset_item.additional_attributes.latest_time_series_data_point_forms_output[0].timestamp #=> Time
6179
+ # resp.items[0].asset_item.additional_attributes.latest_time_series_data_point_forms_output[0].type_identifier #=> String
6180
+ # resp.items[0].asset_item.additional_attributes.latest_time_series_data_point_forms_output[0].type_revision #=> String
5683
6181
  # resp.items[0].asset_item.additional_attributes.read_only_forms_output #=> Array
5684
6182
  # resp.items[0].asset_item.additional_attributes.read_only_forms_output[0].content #=> String
5685
6183
  # resp.items[0].asset_item.additional_attributes.read_only_forms_output[0].form_name #=> String
@@ -5812,7 +6310,8 @@ module Aws::DataZone
5812
6310
  req.send_request(options)
5813
6311
  end
5814
6312
 
5815
- # Searches listings in Amazon DataZone.
6313
+ # Searches listings (records of an asset at a given time) in Amazon
6314
+ # DataZone.
5816
6315
  #
5817
6316
  # @option params [Array<String>] :additional_attributes
5818
6317
  # Specifies additional attributes for the search.
@@ -5839,6 +6338,7 @@ module Aws::DataZone
5839
6338
  # next set of results.
5840
6339
  #
5841
6340
  # @option params [Array<Types::SearchInItem>] :search_in
6341
+ # The details of the search.
5842
6342
  #
5843
6343
  # @option params [String] :search_text
5844
6344
  # Specifies the text for which to search.
@@ -5857,7 +6357,7 @@ module Aws::DataZone
5857
6357
  # @example Request syntax with placeholder values
5858
6358
  #
5859
6359
  # resp = client.search_listings({
5860
- # additional_attributes: ["FORMS"], # accepts FORMS
6360
+ # additional_attributes: ["FORMS"], # accepts FORMS, TIME_SERIES_DATA_POINT_FORMS
5861
6361
  # domain_identifier: "DomainId", # required
5862
6362
  # filters: {
5863
6363
  # and: [
@@ -5893,6 +6393,13 @@ module Aws::DataZone
5893
6393
  #
5894
6394
  # resp.items #=> Array
5895
6395
  # resp.items[0].asset_listing.additional_attributes.forms #=> String
6396
+ # resp.items[0].asset_listing.additional_attributes.latest_time_series_data_point_forms #=> Array
6397
+ # resp.items[0].asset_listing.additional_attributes.latest_time_series_data_point_forms[0].content_summary #=> String
6398
+ # resp.items[0].asset_listing.additional_attributes.latest_time_series_data_point_forms[0].form_name #=> String
6399
+ # resp.items[0].asset_listing.additional_attributes.latest_time_series_data_point_forms[0].id #=> String
6400
+ # resp.items[0].asset_listing.additional_attributes.latest_time_series_data_point_forms[0].timestamp #=> Time
6401
+ # resp.items[0].asset_listing.additional_attributes.latest_time_series_data_point_forms[0].type_identifier #=> String
6402
+ # resp.items[0].asset_listing.additional_attributes.latest_time_series_data_point_forms[0].type_revision #=> String
5896
6403
  # resp.items[0].asset_listing.created_at #=> Time
5897
6404
  # resp.items[0].asset_listing.description #=> String
5898
6405
  # resp.items[0].asset_listing.entity_id #=> String
@@ -5929,6 +6436,7 @@ module Aws::DataZone
5929
6436
  # The filters for the `SearchTypes` action.
5930
6437
  #
5931
6438
  # @option params [required, Boolean] :managed
6439
+ # Specifies whether the search is managed.
5932
6440
  #
5933
6441
  # @option params [Integer] :max_results
5934
6442
  # The maximum number of results to return in a single call to
@@ -5946,6 +6454,7 @@ module Aws::DataZone
5946
6454
  # next set of results.
5947
6455
  #
5948
6456
  # @option params [Array<Types::SearchInItem>] :search_in
6457
+ # The details of the search.
5949
6458
  #
5950
6459
  # @option params [required, String] :search_scope
5951
6460
  # Specifies the scope of the search for types.
@@ -6180,6 +6689,72 @@ module Aws::DataZone
6180
6689
  req.send_request(options)
6181
6690
  end
6182
6691
 
6692
+ # Starts the metadata generation run.
6693
+ #
6694
+ # @option params [String] :client_token
6695
+ # A unique, case-sensitive identifier to ensure idempotency of the
6696
+ # request. This field is automatically populated if not provided.
6697
+ #
6698
+ # **A suitable default value is auto-generated.** You should normally
6699
+ # not need to pass this option.**
6700
+ #
6701
+ # @option params [required, String] :domain_identifier
6702
+ # The ID of the Amazon DataZone domain where you want to start a
6703
+ # metadata generation run.
6704
+ #
6705
+ # @option params [required, String] :owning_project_identifier
6706
+ # The ID of the project that owns the asset for which you want to start
6707
+ # a metadata generation run.
6708
+ #
6709
+ # @option params [required, Types::MetadataGenerationRunTarget] :target
6710
+ # The asset for which you want to start a metadata generation run.
6711
+ #
6712
+ # @option params [required, String] :type
6713
+ # The type of the metadata generation run.
6714
+ #
6715
+ # @return [Types::StartMetadataGenerationRunOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6716
+ #
6717
+ # * {Types::StartMetadataGenerationRunOutput#created_at #created_at} => Time
6718
+ # * {Types::StartMetadataGenerationRunOutput#created_by #created_by} => String
6719
+ # * {Types::StartMetadataGenerationRunOutput#domain_id #domain_id} => String
6720
+ # * {Types::StartMetadataGenerationRunOutput#id #id} => String
6721
+ # * {Types::StartMetadataGenerationRunOutput#owning_project_id #owning_project_id} => String
6722
+ # * {Types::StartMetadataGenerationRunOutput#status #status} => String
6723
+ # * {Types::StartMetadataGenerationRunOutput#type #type} => String
6724
+ #
6725
+ # @example Request syntax with placeholder values
6726
+ #
6727
+ # resp = client.start_metadata_generation_run({
6728
+ # client_token: "ClientToken",
6729
+ # domain_identifier: "DomainId", # required
6730
+ # owning_project_identifier: "ProjectId", # required
6731
+ # target: { # required
6732
+ # identifier: "String", # required
6733
+ # revision: "Revision",
6734
+ # type: "ASSET", # required, accepts ASSET
6735
+ # },
6736
+ # type: "BUSINESS_DESCRIPTIONS", # required, accepts BUSINESS_DESCRIPTIONS
6737
+ # })
6738
+ #
6739
+ # @example Response structure
6740
+ #
6741
+ # resp.created_at #=> Time
6742
+ # resp.created_by #=> String
6743
+ # resp.domain_id #=> String
6744
+ # resp.id #=> String
6745
+ # resp.owning_project_id #=> String
6746
+ # resp.status #=> String, one of "SUBMITTED", "IN_PROGRESS", "CANCELED", "SUCCEEDED", "FAILED"
6747
+ # resp.type #=> String, one of "BUSINESS_DESCRIPTIONS"
6748
+ #
6749
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StartMetadataGenerationRun AWS API Documentation
6750
+ #
6751
+ # @overload start_metadata_generation_run(params = {})
6752
+ # @param [Hash] params ({})
6753
+ def start_metadata_generation_run(params = {}, options = {})
6754
+ req = build_request(:start_metadata_generation_run, params)
6755
+ req.send_request(options)
6756
+ end
6757
+
6183
6758
  # Tags a resource in Amazon DataZone.
6184
6759
  #
6185
6760
  # @option params [required, String] :resource_arn
@@ -6308,6 +6883,7 @@ module Aws::DataZone
6308
6883
  # ],
6309
6884
  # configuration: {
6310
6885
  # glue_run_configuration: {
6886
+ # auto_import_data_quality_result: false,
6311
6887
  # data_access_role: "GlueRunConfigurationInputDataAccessRoleString",
6312
6888
  # relational_filter_configurations: [ # required
6313
6889
  # {
@@ -6372,6 +6948,7 @@ module Aws::DataZone
6372
6948
  # resp.asset_forms_output[0].type_name #=> String
6373
6949
  # resp.asset_forms_output[0].type_revision #=> String
6374
6950
  # resp.configuration.glue_run_configuration.account_id #=> String
6951
+ # resp.configuration.glue_run_configuration.auto_import_data_quality_result #=> Boolean
6375
6952
  # resp.configuration.glue_run_configuration.data_access_role #=> String
6376
6953
  # resp.configuration.glue_run_configuration.region #=> String
6377
6954
  # resp.configuration.glue_run_configuration.relational_filter_configurations #=> Array
@@ -7276,7 +7853,7 @@ module Aws::DataZone
7276
7853
  params: params,
7277
7854
  config: config)
7278
7855
  context[:gem_name] = 'aws-sdk-datazone'
7279
- context[:gem_version] = '1.4.0'
7856
+ context[:gem_version] = '1.6.0'
7280
7857
  Seahorse::Client::Request.new(handlers, context)
7281
7858
  end
7282
7859