aws-sdk-datazone 1.3.0 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -14,6 +14,10 @@ module Aws::DataZone
14
14
  # metadata) and the target (for example, a column name) that can be
15
15
  # accepted.
16
16
  #
17
+ # @!attribute [rw] edited_value
18
+ # The edit of the prediction.
19
+ # @return [String]
20
+ #
17
21
  # @!attribute [rw] prediction_choice
18
22
  # Specifies the prediction (aka, the automatically generated piece of
19
23
  # metadata) that can be accepted.
@@ -27,13 +31,17 @@ module Aws::DataZone
27
31
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AcceptChoice AWS API Documentation
28
32
  #
29
33
  class AcceptChoice < Struct.new(
34
+ :edited_value,
30
35
  :prediction_choice,
31
36
  :prediction_target)
32
- SENSITIVE = []
37
+ SENSITIVE = [:edited_value]
33
38
  include Aws::Structure
34
39
  end
35
40
 
36
41
  # @!attribute [rw] accept_choices
42
+ # Specifies the prediction (aka, the automatically generated piece of
43
+ # metadata) and the target (for example, a column name) that can be
44
+ # accepted.
37
45
  # @return [Array<Types::AcceptChoice>]
38
46
  #
39
47
  # @!attribute [rw] accept_rule
@@ -54,9 +62,11 @@ module Aws::DataZone
54
62
  # @return [String]
55
63
  #
56
64
  # @!attribute [rw] identifier
65
+ # The identifier of the asset.
57
66
  # @return [String]
58
67
  #
59
68
  # @!attribute [rw] revision
69
+ # The revision that is to be made to the asset.
60
70
  # @return [String]
61
71
  #
62
72
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AcceptPredictionsInput AWS API Documentation
@@ -73,12 +83,15 @@ module Aws::DataZone
73
83
  end
74
84
 
75
85
  # @!attribute [rw] asset_id
86
+ # The ID of the asset.
76
87
  # @return [String]
77
88
  #
78
89
  # @!attribute [rw] domain_id
90
+ # The identifier of the Amazon DataZone domain.
79
91
  # @return [String]
80
92
  #
81
93
  # @!attribute [rw] revision
94
+ # The revision that is to be made to the asset.
82
95
  # @return [String]
83
96
  #
84
97
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AcceptPredictionsOutput AWS API Documentation
@@ -316,6 +329,11 @@ module Aws::DataZone
316
329
  # asset.
317
330
  # @return [Array<Types::FormOutput>]
318
331
  #
332
+ # @!attribute [rw] latest_time_series_data_point_forms_output
333
+ # The latest time series data points forms included in the additional
334
+ # attributes of an asset.
335
+ # @return [Array<Types::TimeSeriesDataPointSummaryFormOutput>]
336
+ #
319
337
  # @!attribute [rw] read_only_forms_output
320
338
  # The read-only forms included in the additional attributes of an
321
339
  # inventory asset.
@@ -325,6 +343,7 @@ module Aws::DataZone
325
343
  #
326
344
  class AssetItemAdditionalAttributes < Struct.new(
327
345
  :forms_output,
346
+ :latest_time_series_data_point_forms_output,
328
347
  :read_only_forms_output)
329
348
  SENSITIVE = []
330
349
  include Aws::Structure
@@ -359,6 +378,11 @@ module Aws::DataZone
359
378
  # DataZone catalog.
360
379
  # @return [Array<Types::DetailedGlossaryTerm>]
361
380
  #
381
+ # @!attribute [rw] latest_time_series_data_point_forms
382
+ # The latest time series data points forms included in the additional
383
+ # attributes of an asset.
384
+ # @return [Array<Types::TimeSeriesDataPointSummaryFormOutput>]
385
+ #
362
386
  # @!attribute [rw] owning_project_id
363
387
  # The identifier of the project where an asset published in an Amazon
364
388
  # DataZone catalog exists.
@@ -373,6 +397,7 @@ module Aws::DataZone
373
397
  :created_at,
374
398
  :forms,
375
399
  :glossary_terms,
400
+ :latest_time_series_data_point_forms,
376
401
  :owning_project_id)
377
402
  SENSITIVE = []
378
403
  include Aws::Structure
@@ -482,10 +507,16 @@ module Aws::DataZone
482
507
  # asset.
483
508
  # @return [String]
484
509
  #
510
+ # @!attribute [rw] latest_time_series_data_point_forms
511
+ # The latest time series data points forms included in the additional
512
+ # attributes of an asset.
513
+ # @return [Array<Types::TimeSeriesDataPointSummaryFormOutput>]
514
+ #
485
515
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AssetListingItemAdditionalAttributes AWS API Documentation
486
516
  #
487
517
  class AssetListingItemAdditionalAttributes < Struct.new(
488
- :forms)
518
+ :forms,
519
+ :latest_time_series_data_point_forms)
489
520
  SENSITIVE = []
490
521
  include Aws::Structure
491
522
  end
@@ -524,6 +555,8 @@ module Aws::DataZone
524
555
  include Aws::Structure
525
556
  end
526
557
 
558
+ # The name map for assets.
559
+ #
527
560
  # @!attribute [rw] asset_id
528
561
  # The identifier of the inventory asset.
529
562
  # @return [String]
@@ -628,6 +661,28 @@ module Aws::DataZone
628
661
  include Aws::Structure
629
662
  end
630
663
 
664
+ # @!attribute [rw] domain_identifier
665
+ # The ID of the Amazon DataZone domain in which the metadata
666
+ # generation run is to be cancelled.
667
+ # @return [String]
668
+ #
669
+ # @!attribute [rw] identifier
670
+ # The ID of the metadata generation run.
671
+ # @return [String]
672
+ #
673
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CancelMetadataGenerationRunInput AWS API Documentation
674
+ #
675
+ class CancelMetadataGenerationRunInput < Struct.new(
676
+ :domain_identifier,
677
+ :identifier)
678
+ SENSITIVE = []
679
+ include Aws::Structure
680
+ end
681
+
682
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CancelMetadataGenerationRunOutput AWS API Documentation
683
+ #
684
+ class CancelMetadataGenerationRunOutput < Aws::EmptyStructure; end
685
+
631
686
  # @!attribute [rw] domain_identifier
632
687
  # The unique identifier of the Amazon DataZone domain where the
633
688
  # subscription request is being cancelled.
@@ -804,6 +859,7 @@ module Aws::DataZone
804
859
  # @return [String]
805
860
  #
806
861
  # @!attribute [rw] external_identifier
862
+ # The external identifier of the asset.
807
863
  # @return [String]
808
864
  #
809
865
  # @!attribute [rw] forms_input
@@ -870,6 +926,7 @@ module Aws::DataZone
870
926
  # @return [String]
871
927
  #
872
928
  # @!attribute [rw] external_identifier
929
+ # The external identifier of the asset.
873
930
  # @return [String]
874
931
  #
875
932
  # @!attribute [rw] first_revision_created_at
@@ -892,7 +949,13 @@ module Aws::DataZone
892
949
  # The unique identifier of the created asset.
893
950
  # @return [String]
894
951
  #
952
+ # @!attribute [rw] latest_time_series_data_point_forms_output
953
+ # The latest data point that was imported into the time series form
954
+ # for the asset.
955
+ # @return [Array<Types::TimeSeriesDataPointSummaryFormOutput>]
956
+ #
895
957
  # @!attribute [rw] listing
958
+ # The details of an asset published in an Amazon DataZone catalog.
896
959
  # @return [Types::AssetListingDetails]
897
960
  #
898
961
  # @!attribute [rw] name
@@ -937,6 +1000,7 @@ module Aws::DataZone
937
1000
  :forms_output,
938
1001
  :glossary_terms,
939
1002
  :id,
1003
+ :latest_time_series_data_point_forms_output,
940
1004
  :listing,
941
1005
  :name,
942
1006
  :owning_project_id,
@@ -1027,6 +1091,7 @@ module Aws::DataZone
1027
1091
  # @return [String]
1028
1092
  #
1029
1093
  # @!attribute [rw] external_identifier
1094
+ # The external identifier of the asset.
1030
1095
  # @return [String]
1031
1096
  #
1032
1097
  # @!attribute [rw] first_revision_created_at
@@ -1051,7 +1116,13 @@ module Aws::DataZone
1051
1116
  # The unique identifier of the asset revision.
1052
1117
  # @return [String]
1053
1118
  #
1119
+ # @!attribute [rw] latest_time_series_data_point_forms_output
1120
+ # The latest data point that was imported into the time series form
1121
+ # for the asset.
1122
+ # @return [Array<Types::TimeSeriesDataPointSummaryFormOutput>]
1123
+ #
1054
1124
  # @!attribute [rw] listing
1125
+ # The details of an asset published in an Amazon DataZone catalog.
1055
1126
  # @return [Types::AssetListingDetails]
1056
1127
  #
1057
1128
  # @!attribute [rw] name
@@ -1097,6 +1168,7 @@ module Aws::DataZone
1097
1168
  :forms_output,
1098
1169
  :glossary_terms,
1099
1170
  :id,
1171
+ :latest_time_series_data_point_forms_output,
1100
1172
  :listing,
1101
1173
  :name,
1102
1174
  :owning_project_id,
@@ -2135,23 +2207,31 @@ module Aws::DataZone
2135
2207
  end
2136
2208
 
2137
2209
  # @!attribute [rw] action
2210
+ # Specifies whether to publish or unpublish a listing.
2138
2211
  # @return [String]
2139
2212
  #
2140
2213
  # @!attribute [rw] client_token
2214
+ # A unique, case-sensitive identifier that is provided to ensure the
2215
+ # idempotency of the request.
2216
+ #
2141
2217
  # **A suitable default value is auto-generated.** You should normally
2142
2218
  # not need to pass this option.
2143
2219
  # @return [String]
2144
2220
  #
2145
2221
  # @!attribute [rw] domain_identifier
2222
+ # The ID of the Amazon DataZone domain.
2146
2223
  # @return [String]
2147
2224
  #
2148
2225
  # @!attribute [rw] entity_identifier
2226
+ # The ID of the asset.
2149
2227
  # @return [String]
2150
2228
  #
2151
2229
  # @!attribute [rw] entity_revision
2230
+ # The revision of an asset.
2152
2231
  # @return [String]
2153
2232
  #
2154
2233
  # @!attribute [rw] entity_type
2234
+ # The type of an entity.
2155
2235
  # @return [String]
2156
2236
  #
2157
2237
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateListingChangeSetInput AWS API Documentation
@@ -2168,12 +2248,15 @@ module Aws::DataZone
2168
2248
  end
2169
2249
 
2170
2250
  # @!attribute [rw] listing_id
2251
+ # The ID of the listing (a record of an asset at a given time).
2171
2252
  # @return [String]
2172
2253
  #
2173
2254
  # @!attribute [rw] listing_revision
2255
+ # The revision of a listing.
2174
2256
  # @return [String]
2175
2257
  #
2176
2258
  # @!attribute [rw] status
2259
+ # Specifies the status of the listing.
2177
2260
  # @return [String]
2178
2261
  #
2179
2262
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateListingChangeSetOutput AWS API Documentation
@@ -2263,6 +2346,11 @@ module Aws::DataZone
2263
2346
  # was created.
2264
2347
  # @return [String]
2265
2348
  #
2349
+ # @!attribute [rw] failure_reasons
2350
+ # Specifies the error message that is returned if the operation cannot
2351
+ # be successfully completed.
2352
+ # @return [Array<Types::ProjectDeletionError>]
2353
+ #
2266
2354
  # @!attribute [rw] glossary_terms
2267
2355
  # The glossary terms that can be used in the project.
2268
2356
  # @return [Array<String>]
@@ -2279,6 +2367,10 @@ module Aws::DataZone
2279
2367
  # The name of the project.
2280
2368
  # @return [String]
2281
2369
  #
2370
+ # @!attribute [rw] project_status
2371
+ # The status of the Amazon DataZone project that was created.
2372
+ # @return [String]
2373
+ #
2282
2374
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectOutput AWS API Documentation
2283
2375
  #
2284
2376
  class CreateProjectOutput < Struct.new(
@@ -2286,10 +2378,12 @@ module Aws::DataZone
2286
2378
  :created_by,
2287
2379
  :description,
2288
2380
  :domain_id,
2381
+ :failure_reasons,
2289
2382
  :glossary_terms,
2290
2383
  :id,
2291
2384
  :last_updated_at,
2292
- :name)
2385
+ :name,
2386
+ :project_status)
2293
2387
  SENSITIVE = [:description, :name]
2294
2388
  include Aws::Structure
2295
2389
  end
@@ -2420,6 +2514,8 @@ module Aws::DataZone
2420
2514
  # @return [String]
2421
2515
  #
2422
2516
  # @!attribute [rw] subscribed_listings
2517
+ # The published asset for which the subscription grant is to be
2518
+ # created.
2423
2519
  # @return [Array<Types::SubscribedListingInput>]
2424
2520
  #
2425
2521
  # @!attribute [rw] subscribed_principals
@@ -2473,6 +2569,8 @@ module Aws::DataZone
2473
2569
  # @return [String]
2474
2570
  #
2475
2571
  # @!attribute [rw] subscribed_listings
2572
+ # The published asset for which the subscription grant is to be
2573
+ # created.
2476
2574
  # @return [Array<Types::SubscribedListing>]
2477
2575
  #
2478
2576
  # @!attribute [rw] subscribed_principals
@@ -3298,11 +3396,17 @@ module Aws::DataZone
3298
3396
  # deleted.
3299
3397
  # @return [String]
3300
3398
  #
3399
+ # @!attribute [rw] skip_deletion_check
3400
+ # Specifies the optional flag to delete all child entities within the
3401
+ # domain.
3402
+ # @return [Boolean]
3403
+ #
3301
3404
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteDomainInput AWS API Documentation
3302
3405
  #
3303
3406
  class DeleteDomainInput < Struct.new(
3304
3407
  :client_token,
3305
- :identifier)
3408
+ :identifier,
3409
+ :skip_deletion_check)
3306
3410
  SENSITIVE = []
3307
3411
  include Aws::Structure
3308
3412
  end
@@ -3444,9 +3548,11 @@ module Aws::DataZone
3444
3548
  class DeleteGlossaryTermOutput < Aws::EmptyStructure; end
3445
3549
 
3446
3550
  # @!attribute [rw] domain_identifier
3551
+ # The ID of the Amazon DataZone domain.
3447
3552
  # @return [String]
3448
3553
  #
3449
3554
  # @!attribute [rw] identifier
3555
+ # The ID of the listing to be deleted.
3450
3556
  # @return [String]
3451
3557
  #
3452
3558
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteListingInput AWS API Documentation
@@ -3471,11 +3577,17 @@ module Aws::DataZone
3471
3577
  # The identifier of the project that is to be deleted.
3472
3578
  # @return [String]
3473
3579
  #
3580
+ # @!attribute [rw] skip_deletion_check
3581
+ # Specifies the optional flag to delete all child entities within the
3582
+ # project.
3583
+ # @return [Boolean]
3584
+ #
3474
3585
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteProjectInput AWS API Documentation
3475
3586
  #
3476
3587
  class DeleteProjectInput < Struct.new(
3477
3588
  :domain_identifier,
3478
- :identifier)
3589
+ :identifier,
3590
+ :skip_deletion_check)
3479
3591
  SENSITIVE = []
3480
3592
  include Aws::Structure
3481
3593
  end
@@ -3642,6 +3754,48 @@ module Aws::DataZone
3642
3754
  include Aws::Structure
3643
3755
  end
3644
3756
 
3757
+ # @!attribute [rw] client_token
3758
+ # A unique, case-sensitive identifier to ensure idempotency of the
3759
+ # request. This field is automatically populated if not provided.
3760
+ #
3761
+ # **A suitable default value is auto-generated.** You should normally
3762
+ # not need to pass this option.
3763
+ # @return [String]
3764
+ #
3765
+ # @!attribute [rw] domain_identifier
3766
+ # The ID of the Amazon DataZone domain that houses the asset for which
3767
+ # you want to delete a time series form.
3768
+ # @return [String]
3769
+ #
3770
+ # @!attribute [rw] entity_identifier
3771
+ # The ID of the asset for which you want to delete a time series form.
3772
+ # @return [String]
3773
+ #
3774
+ # @!attribute [rw] entity_type
3775
+ # The type of the asset for which you want to delete a time series
3776
+ # form.
3777
+ # @return [String]
3778
+ #
3779
+ # @!attribute [rw] form_name
3780
+ # The name of the time series form that you want to delete.
3781
+ # @return [String]
3782
+ #
3783
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteTimeSeriesDataPointsInput AWS API Documentation
3784
+ #
3785
+ class DeleteTimeSeriesDataPointsInput < Struct.new(
3786
+ :client_token,
3787
+ :domain_identifier,
3788
+ :entity_identifier,
3789
+ :entity_type,
3790
+ :form_name)
3791
+ SENSITIVE = []
3792
+ include Aws::Structure
3793
+ end
3794
+
3795
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteTimeSeriesDataPointsOutput AWS API Documentation
3796
+ #
3797
+ class DeleteTimeSeriesDataPointsOutput < Aws::EmptyStructure; end
3798
+
3645
3799
  # The details of the last deployment of the environment.
3646
3800
  #
3647
3801
  # @!attribute [rw] deployment_id
@@ -4361,6 +4515,7 @@ module Aws::DataZone
4361
4515
  # @return [String]
4362
4516
  #
4363
4517
  # @!attribute [rw] external_identifier
4518
+ # The external ID of the asset.
4364
4519
  # @return [String]
4365
4520
  #
4366
4521
  # @!attribute [rw] first_revision_created_at
@@ -4384,7 +4539,13 @@ module Aws::DataZone
4384
4539
  # The ID of the asset.
4385
4540
  # @return [String]
4386
4541
  #
4542
+ # @!attribute [rw] latest_time_series_data_point_forms_output
4543
+ # The latest data point that was imported into the time series form
4544
+ # for the asset.
4545
+ # @return [Array<Types::TimeSeriesDataPointSummaryFormOutput>]
4546
+ #
4387
4547
  # @!attribute [rw] listing
4548
+ # The listing of the asset.
4388
4549
  # @return [Types::AssetListingDetails]
4389
4550
  #
4390
4551
  # @!attribute [rw] name
@@ -4424,6 +4585,7 @@ module Aws::DataZone
4424
4585
  :forms_output,
4425
4586
  :glossary_terms,
4426
4587
  :id,
4588
+ :latest_time_series_data_point_forms_output,
4427
4589
  :listing,
4428
4590
  :name,
4429
4591
  :owning_project_id,
@@ -4616,6 +4778,7 @@ module Aws::DataZone
4616
4778
  # @return [Boolean]
4617
4779
  #
4618
4780
  # @!attribute [rw] recommendation
4781
+ # The recommendation configuration of the data source.
4619
4782
  # @return [Types::RecommendationConfiguration]
4620
4783
  #
4621
4784
  # @!attribute [rw] schedule
@@ -5528,12 +5691,15 @@ module Aws::DataZone
5528
5691
  end
5529
5692
 
5530
5693
  # @!attribute [rw] domain_identifier
5694
+ # The ID of the Amazon DataZone domain.
5531
5695
  # @return [String]
5532
5696
  #
5533
5697
  # @!attribute [rw] identifier
5698
+ # The ID of the listing.
5534
5699
  # @return [String]
5535
5700
  #
5536
5701
  # @!attribute [rw] listing_revision
5702
+ # The revision of the listing.
5537
5703
  # @return [String]
5538
5704
  #
5539
5705
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetListingInput AWS API Documentation
@@ -5547,6 +5713,7 @@ module Aws::DataZone
5547
5713
  end
5548
5714
 
5549
5715
  # @!attribute [rw] created_at
5716
+ # The timestamp of when the listing was created.
5550
5717
  # @return [Time]
5551
5718
  #
5552
5719
  # @!attribute [rw] created_by
@@ -5554,24 +5721,31 @@ module Aws::DataZone
5554
5721
  # @return [String]
5555
5722
  #
5556
5723
  # @!attribute [rw] description
5724
+ # The description of the listing.
5557
5725
  # @return [String]
5558
5726
  #
5559
5727
  # @!attribute [rw] domain_id
5728
+ # The ID of the Amazon DataZone domain.
5560
5729
  # @return [String]
5561
5730
  #
5562
5731
  # @!attribute [rw] id
5732
+ # The ID of the listing.
5563
5733
  # @return [String]
5564
5734
  #
5565
5735
  # @!attribute [rw] item
5736
+ # The details of a listing.
5566
5737
  # @return [Types::ListingItem]
5567
5738
  #
5568
5739
  # @!attribute [rw] listing_revision
5740
+ # The revision of a listing.
5569
5741
  # @return [String]
5570
5742
  #
5571
5743
  # @!attribute [rw] name
5744
+ # The name of the listing.
5572
5745
  # @return [String]
5573
5746
  #
5574
5747
  # @!attribute [rw] status
5748
+ # The status of the listing.
5575
5749
  # @return [String]
5576
5750
  #
5577
5751
  # @!attribute [rw] updated_at
@@ -5600,6 +5774,73 @@ module Aws::DataZone
5600
5774
  include Aws::Structure
5601
5775
  end
5602
5776
 
5777
+ # @!attribute [rw] domain_identifier
5778
+ # The ID of the Amazon DataZone domain the metadata generation run of
5779
+ # which you want to get.
5780
+ # @return [String]
5781
+ #
5782
+ # @!attribute [rw] identifier
5783
+ # The identifier of the metadata generation run.
5784
+ # @return [String]
5785
+ #
5786
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetMetadataGenerationRunInput AWS API Documentation
5787
+ #
5788
+ class GetMetadataGenerationRunInput < Struct.new(
5789
+ :domain_identifier,
5790
+ :identifier)
5791
+ SENSITIVE = []
5792
+ include Aws::Structure
5793
+ end
5794
+
5795
+ # @!attribute [rw] created_at
5796
+ # The timestamp of when the metadata generation run was start.
5797
+ # @return [Time]
5798
+ #
5799
+ # @!attribute [rw] created_by
5800
+ # The Amazon DataZone user who started the metadata generation run.
5801
+ # @return [String]
5802
+ #
5803
+ # @!attribute [rw] domain_id
5804
+ # The ID of the Amazon DataZone domain the metadata generation run of
5805
+ # which you want to get.
5806
+ # @return [String]
5807
+ #
5808
+ # @!attribute [rw] id
5809
+ # The ID of the metadata generation run.
5810
+ # @return [String]
5811
+ #
5812
+ # @!attribute [rw] owning_project_id
5813
+ # The ID of the project that owns the assets for which you're running
5814
+ # metadata generation.
5815
+ # @return [String]
5816
+ #
5817
+ # @!attribute [rw] status
5818
+ # The status of the metadata generation run.
5819
+ # @return [String]
5820
+ #
5821
+ # @!attribute [rw] target
5822
+ # The asset for which you're generating metadata.
5823
+ # @return [Types::MetadataGenerationRunTarget]
5824
+ #
5825
+ # @!attribute [rw] type
5826
+ # The type of metadata generation run.
5827
+ # @return [String]
5828
+ #
5829
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetMetadataGenerationRunOutput AWS API Documentation
5830
+ #
5831
+ class GetMetadataGenerationRunOutput < Struct.new(
5832
+ :created_at,
5833
+ :created_by,
5834
+ :domain_id,
5835
+ :id,
5836
+ :owning_project_id,
5837
+ :status,
5838
+ :target,
5839
+ :type)
5840
+ SENSITIVE = []
5841
+ include Aws::Structure
5842
+ end
5843
+
5603
5844
  # @!attribute [rw] domain_identifier
5604
5845
  # The ID of the Amazon DataZone domain in which the project exists.
5605
5846
  # @return [String]
@@ -5633,6 +5874,11 @@ module Aws::DataZone
5633
5874
  # The ID of the Amazon DataZone domain in which the project exists.
5634
5875
  # @return [String]
5635
5876
  #
5877
+ # @!attribute [rw] failure_reasons
5878
+ # Specifies the error message that is returned if the operation cannot
5879
+ # be successfully completed.
5880
+ # @return [Array<Types::ProjectDeletionError>]
5881
+ #
5636
5882
  # @!attribute [rw] glossary_terms
5637
5883
  # The business glossary terms that can be used in the project.
5638
5884
  # @return [Array<String>]
@@ -5649,6 +5895,10 @@ module Aws::DataZone
5649
5895
  # The name of the project.
5650
5896
  # @return [String]
5651
5897
  #
5898
+ # @!attribute [rw] project_status
5899
+ # The status of the project.
5900
+ # @return [String]
5901
+ #
5652
5902
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetProjectOutput AWS API Documentation
5653
5903
  #
5654
5904
  class GetProjectOutput < Struct.new(
@@ -5656,10 +5906,12 @@ module Aws::DataZone
5656
5906
  :created_by,
5657
5907
  :description,
5658
5908
  :domain_id,
5909
+ :failure_reasons,
5659
5910
  :glossary_terms,
5660
5911
  :id,
5661
5912
  :last_updated_at,
5662
- :name)
5913
+ :name,
5914
+ :project_status)
5663
5915
  SENSITIVE = [:description, :name]
5664
5916
  include Aws::Structure
5665
5917
  end
@@ -5789,6 +6041,8 @@ module Aws::DataZone
5789
6041
  # @return [String]
5790
6042
  #
5791
6043
  # @!attribute [rw] subscribed_listing
6044
+ # The details of the published asset for which the subscription grant
6045
+ # is created.
5792
6046
  # @return [Types::SubscribedListing]
5793
6047
  #
5794
6048
  # @!attribute [rw] subscribed_principal
@@ -6020,6 +6274,75 @@ module Aws::DataZone
6020
6274
  include Aws::Structure
6021
6275
  end
6022
6276
 
6277
+ # @!attribute [rw] domain_identifier
6278
+ # The ID of the Amazon DataZone domain that houses the asset for which
6279
+ # you want to get the data point.
6280
+ # @return [String]
6281
+ #
6282
+ # @!attribute [rw] entity_identifier
6283
+ # The ID of the asset for which you want to get the data point.
6284
+ # @return [String]
6285
+ #
6286
+ # @!attribute [rw] entity_type
6287
+ # The type of the asset for which you want to get the data point.
6288
+ # @return [String]
6289
+ #
6290
+ # @!attribute [rw] form_name
6291
+ # The name of the time series form that houses the data point that you
6292
+ # want to get.
6293
+ # @return [String]
6294
+ #
6295
+ # @!attribute [rw] identifier
6296
+ # The ID of the data point that you want to get.
6297
+ # @return [String]
6298
+ #
6299
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetTimeSeriesDataPointInput AWS API Documentation
6300
+ #
6301
+ class GetTimeSeriesDataPointInput < Struct.new(
6302
+ :domain_identifier,
6303
+ :entity_identifier,
6304
+ :entity_type,
6305
+ :form_name,
6306
+ :identifier)
6307
+ SENSITIVE = []
6308
+ include Aws::Structure
6309
+ end
6310
+
6311
+ # @!attribute [rw] domain_id
6312
+ # The ID of the Amazon DataZone domain that houses the asset data
6313
+ # point that you want to get.
6314
+ # @return [String]
6315
+ #
6316
+ # @!attribute [rw] entity_id
6317
+ # The ID of the asset for which you want to get the data point.
6318
+ # @return [String]
6319
+ #
6320
+ # @!attribute [rw] entity_type
6321
+ # The type of the asset for which you want to get the data point.
6322
+ # @return [String]
6323
+ #
6324
+ # @!attribute [rw] form
6325
+ # The time series form that houses the data point that you want to
6326
+ # get.
6327
+ # @return [Types::TimeSeriesDataPointFormOutput]
6328
+ #
6329
+ # @!attribute [rw] form_name
6330
+ # The name of the time series form that houses the data point that you
6331
+ # want to get.
6332
+ # @return [String]
6333
+ #
6334
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetTimeSeriesDataPointOutput AWS API Documentation
6335
+ #
6336
+ class GetTimeSeriesDataPointOutput < Struct.new(
6337
+ :domain_id,
6338
+ :entity_id,
6339
+ :entity_type,
6340
+ :form,
6341
+ :form_name)
6342
+ SENSITIVE = []
6343
+ include Aws::Structure
6344
+ end
6345
+
6023
6346
  # @!attribute [rw] domain_identifier
6024
6347
  # the ID of the Amazon DataZone domain the data portal of which you
6025
6348
  # want to get.
@@ -6209,6 +6532,11 @@ module Aws::DataZone
6209
6532
 
6210
6533
  # The configuration details of the Amazon Web Services Glue data source.
6211
6534
  #
6535
+ # @!attribute [rw] auto_import_data_quality_result
6536
+ # Specifies whether to automatically import data quality metrics as
6537
+ # part of the data source run.
6538
+ # @return [Boolean]
6539
+ #
6212
6540
  # @!attribute [rw] data_access_role
6213
6541
  # The data access role included in the configuration details of the
6214
6542
  # Amazon Web Services Glue data source.
@@ -6222,6 +6550,7 @@ module Aws::DataZone
6222
6550
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GlueRunConfigurationInput AWS API Documentation
6223
6551
  #
6224
6552
  class GlueRunConfigurationInput < Struct.new(
6553
+ :auto_import_data_quality_result,
6225
6554
  :data_access_role,
6226
6555
  :relational_filter_configurations)
6227
6556
  SENSITIVE = []
@@ -6235,6 +6564,11 @@ module Aws::DataZone
6235
6564
  # details of the Amazon Web Services Glue data source.
6236
6565
  # @return [String]
6237
6566
  #
6567
+ # @!attribute [rw] auto_import_data_quality_result
6568
+ # Specifies whether to automatically import data quality metrics as
6569
+ # part of the data source run.
6570
+ # @return [Boolean]
6571
+ #
6238
6572
  # @!attribute [rw] data_access_role
6239
6573
  # The data access role included in the configuration details of the
6240
6574
  # Amazon Web Services Glue data source.
@@ -6254,6 +6588,7 @@ module Aws::DataZone
6254
6588
  #
6255
6589
  class GlueRunConfigurationOutput < Struct.new(
6256
6590
  :account_id,
6591
+ :auto_import_data_quality_result,
6257
6592
  :data_access_role,
6258
6593
  :region,
6259
6594
  :relational_filter_configurations)
@@ -6946,6 +7281,7 @@ module Aws::DataZone
6946
7281
  # @return [Integer]
6947
7282
  #
6948
7283
  # @!attribute [rw] name
7284
+ # The name of the environment.
6949
7285
  # @return [String]
6950
7286
  #
6951
7287
  # @!attribute [rw] next_token
@@ -7009,6 +7345,73 @@ module Aws::DataZone
7009
7345
  include Aws::Structure
7010
7346
  end
7011
7347
 
7348
+ # @!attribute [rw] domain_identifier
7349
+ # The ID of the Amazon DataZone domain where you want to list metadata
7350
+ # generation runs.
7351
+ # @return [String]
7352
+ #
7353
+ # @!attribute [rw] max_results
7354
+ # The maximum number of metadata generation runs to return in a single
7355
+ # call to ListMetadataGenerationRuns. When the number of metadata
7356
+ # generation runs to be listed is greater than the value of
7357
+ # MaxResults, the response contains a NextToken value that you can use
7358
+ # in a subsequent call to ListMetadataGenerationRuns to list the next
7359
+ # set of revisions.
7360
+ # @return [Integer]
7361
+ #
7362
+ # @!attribute [rw] next_token
7363
+ # When the number of metadata generation runs is greater than the
7364
+ # default value for the MaxResults parameter, or if you explicitly
7365
+ # specify a value for MaxResults that is less than the number of
7366
+ # metadata generation runs, the response includes a pagination token
7367
+ # named NextToken. You can specify this NextToken value in a
7368
+ # subsequent call to ListMetadataGenerationRuns to list the next set
7369
+ # of revisions.
7370
+ # @return [String]
7371
+ #
7372
+ # @!attribute [rw] status
7373
+ # The status of the metadata generation runs.
7374
+ # @return [String]
7375
+ #
7376
+ # @!attribute [rw] type
7377
+ # The type of the metadata generation runs.
7378
+ # @return [String]
7379
+ #
7380
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListMetadataGenerationRunsInput AWS API Documentation
7381
+ #
7382
+ class ListMetadataGenerationRunsInput < Struct.new(
7383
+ :domain_identifier,
7384
+ :max_results,
7385
+ :next_token,
7386
+ :status,
7387
+ :type)
7388
+ SENSITIVE = []
7389
+ include Aws::Structure
7390
+ end
7391
+
7392
+ # @!attribute [rw] items
7393
+ # The results of the ListMetadataGenerationRuns action.
7394
+ # @return [Array<Types::MetadataGenerationRunItem>]
7395
+ #
7396
+ # @!attribute [rw] next_token
7397
+ # When the number of metadata generation runs is greater than the
7398
+ # default value for the MaxResults parameter, or if you explicitly
7399
+ # specify a value for MaxResults that is less than the number of
7400
+ # metadata generation runs, the response includes a pagination token
7401
+ # named NextToken. You can specify this NextToken value in a
7402
+ # subsequent call to ListMetadataGenerationRuns to list the next set
7403
+ # of revisions.
7404
+ # @return [String]
7405
+ #
7406
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListMetadataGenerationRunsOutput AWS API Documentation
7407
+ #
7408
+ class ListMetadataGenerationRunsOutput < Struct.new(
7409
+ :items,
7410
+ :next_token)
7411
+ SENSITIVE = []
7412
+ include Aws::Structure
7413
+ end
7414
+
7012
7415
  # @!attribute [rw] after_timestamp
7013
7416
  # The time after which you want to list notifications.
7014
7417
  # @return [Time]
@@ -7173,6 +7576,7 @@ module Aws::DataZone
7173
7576
  # @return [Integer]
7174
7577
  #
7175
7578
  # @!attribute [rw] name
7579
+ # The name of the project.
7176
7580
  # @return [String]
7177
7581
  #
7178
7582
  # @!attribute [rw] next_token
@@ -7584,21 +7988,102 @@ module Aws::DataZone
7584
7988
  include Aws::Structure
7585
7989
  end
7586
7990
 
7587
- # The details of a listing (aka asset published in a Amazon DataZone
7588
- # catalog).
7991
+ # @!attribute [rw] domain_identifier
7992
+ # The ID of the Amazon DataZone domain that houses the assets for
7993
+ # which you want to list time series data points.
7994
+ # @return [String]
7589
7995
  #
7590
- # @note ListingItem is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ListingItem corresponding to the set member.
7996
+ # @!attribute [rw] ended_at
7997
+ # The timestamp at which the data points that you wanted to list
7998
+ # ended.
7999
+ # @return [Time]
7591
8000
  #
7592
- # @!attribute [rw] asset_listing
7593
- # An asset published in an Amazon DataZone catalog.
7594
- # @return [Types::AssetListing]
8001
+ # @!attribute [rw] entity_identifier
8002
+ # The ID of the asset for which you want to list data points.
8003
+ # @return [String]
7595
8004
  #
7596
- # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListingItem AWS API Documentation
8005
+ # @!attribute [rw] entity_type
8006
+ # The type of the asset for which you want to list data points.
8007
+ # @return [String]
7597
8008
  #
7598
- class ListingItem < Struct.new(
7599
- :asset_listing,
7600
- :unknown)
7601
- SENSITIVE = []
8009
+ # @!attribute [rw] form_name
8010
+ # The name of the time series data points form.
8011
+ # @return [String]
8012
+ #
8013
+ # @!attribute [rw] max_results
8014
+ # The maximum number of data points to return in a single call to
8015
+ # ListTimeSeriesDataPoints. When the number of data points to be
8016
+ # listed is greater than the value of MaxResults, the response
8017
+ # contains a NextToken value that you can use in a subsequent call to
8018
+ # ListTimeSeriesDataPoints to list the next set of data points.
8019
+ # @return [Integer]
8020
+ #
8021
+ # @!attribute [rw] next_token
8022
+ # When the number of data points is greater than the default value for
8023
+ # the MaxResults parameter, or if you explicitly specify a value for
8024
+ # MaxResults that is less than the number of data points, the response
8025
+ # includes a pagination token named NextToken. You can specify this
8026
+ # NextToken value in a subsequent call to ListTimeSeriesDataPoints to
8027
+ # list the next set of data points.
8028
+ # @return [String]
8029
+ #
8030
+ # @!attribute [rw] started_at
8031
+ # The timestamp at which the data points that you want to list
8032
+ # started.
8033
+ # @return [Time]
8034
+ #
8035
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListTimeSeriesDataPointsInput AWS API Documentation
8036
+ #
8037
+ class ListTimeSeriesDataPointsInput < Struct.new(
8038
+ :domain_identifier,
8039
+ :ended_at,
8040
+ :entity_identifier,
8041
+ :entity_type,
8042
+ :form_name,
8043
+ :max_results,
8044
+ :next_token,
8045
+ :started_at)
8046
+ SENSITIVE = []
8047
+ include Aws::Structure
8048
+ end
8049
+
8050
+ # @!attribute [rw] items
8051
+ # The results of the ListTimeSeriesDataPoints action.
8052
+ # @return [Array<Types::TimeSeriesDataPointSummaryFormOutput>]
8053
+ #
8054
+ # @!attribute [rw] next_token
8055
+ # When the number of data points is greater than the default value for
8056
+ # the MaxResults parameter, or if you explicitly specify a value for
8057
+ # MaxResults that is less than the number of data points, the response
8058
+ # includes a pagination token named NextToken. You can specify this
8059
+ # NextToken value in a subsequent call to ListTimeSeriesDataPoints to
8060
+ # list the next set of data points.
8061
+ # @return [String]
8062
+ #
8063
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListTimeSeriesDataPointsOutput AWS API Documentation
8064
+ #
8065
+ class ListTimeSeriesDataPointsOutput < Struct.new(
8066
+ :items,
8067
+ :next_token)
8068
+ SENSITIVE = []
8069
+ include Aws::Structure
8070
+ end
8071
+
8072
+ # The details of a listing (aka asset published in a Amazon DataZone
8073
+ # catalog).
8074
+ #
8075
+ # @note ListingItem is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ListingItem corresponding to the set member.
8076
+ #
8077
+ # @!attribute [rw] asset_listing
8078
+ # An asset published in an Amazon DataZone catalog.
8079
+ # @return [Types::AssetListing]
8080
+ #
8081
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListingItem AWS API Documentation
8082
+ #
8083
+ class ListingItem < Struct.new(
8084
+ :asset_listing,
8085
+ :unknown)
8086
+ SENSITIVE = []
7602
8087
  include Aws::Structure
7603
8088
  include Aws::Structure::Union
7604
8089
 
@@ -7703,11 +8188,89 @@ module Aws::DataZone
7703
8188
  class Unknown < MemberDetails; end
7704
8189
  end
7705
8190
 
8191
+ # The metadata generation run.
8192
+ #
8193
+ # @!attribute [rw] created_at
8194
+ # The timestamp at which the metadata generation run was created.
8195
+ # @return [Time]
8196
+ #
8197
+ # @!attribute [rw] created_by
8198
+ # The user who created the metadata generation run.
8199
+ # @return [String]
8200
+ #
8201
+ # @!attribute [rw] domain_id
8202
+ # The ID of the Amazon DataZone domain in which the metadata
8203
+ # generation run was created.
8204
+ # @return [String]
8205
+ #
8206
+ # @!attribute [rw] id
8207
+ # The ID of the metadata generation run.
8208
+ # @return [String]
8209
+ #
8210
+ # @!attribute [rw] owning_project_id
8211
+ # The ID of the project that owns the asset for which the metadata
8212
+ # generation was ran.
8213
+ # @return [String]
8214
+ #
8215
+ # @!attribute [rw] status
8216
+ # The status of the metadata generation run.
8217
+ # @return [String]
8218
+ #
8219
+ # @!attribute [rw] target
8220
+ # The asset for which metadata was generated.
8221
+ # @return [Types::MetadataGenerationRunTarget]
8222
+ #
8223
+ # @!attribute [rw] type
8224
+ # The type of the metadata generation run.
8225
+ # @return [String]
8226
+ #
8227
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/MetadataGenerationRunItem AWS API Documentation
8228
+ #
8229
+ class MetadataGenerationRunItem < Struct.new(
8230
+ :created_at,
8231
+ :created_by,
8232
+ :domain_id,
8233
+ :id,
8234
+ :owning_project_id,
8235
+ :status,
8236
+ :target,
8237
+ :type)
8238
+ SENSITIVE = []
8239
+ include Aws::Structure
8240
+ end
8241
+
8242
+ # The asset for which metadata was generated.
8243
+ #
8244
+ # @!attribute [rw] identifier
8245
+ # The ID of the metadata generation run's target.
8246
+ # @return [String]
8247
+ #
8248
+ # @!attribute [rw] revision
8249
+ # The revision of the asset for which metadata was generated.
8250
+ # @return [String]
8251
+ #
8252
+ # @!attribute [rw] type
8253
+ # The type of the asset for which metadata was generated.
8254
+ # @return [String]
8255
+ #
8256
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/MetadataGenerationRunTarget AWS API Documentation
8257
+ #
8258
+ class MetadataGenerationRunTarget < Struct.new(
8259
+ :identifier,
8260
+ :revision,
8261
+ :type)
8262
+ SENSITIVE = []
8263
+ include Aws::Structure
8264
+ end
8265
+
8266
+ # The model of the API.
8267
+ #
7706
8268
  # @note Model is a union - when making an API calls you must set exactly one of the members.
7707
8269
  #
7708
8270
  # @note Model is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Model corresponding to the set member.
7709
8271
  #
7710
8272
  # @!attribute [rw] smithy
8273
+ # Indicates the smithy model of the API.
7711
8274
  # @return [String]
7712
8275
  #
7713
8276
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/Model AWS API Documentation
@@ -7812,6 +8375,73 @@ module Aws::DataZone
7812
8375
  include Aws::Structure
7813
8376
  end
7814
8377
 
8378
+ # @!attribute [rw] client_token
8379
+ # A unique, case-sensitive identifier that is provided to ensure the
8380
+ # idempotency of the request.
8381
+ #
8382
+ # **A suitable default value is auto-generated.** You should normally
8383
+ # not need to pass this option.
8384
+ # @return [String]
8385
+ #
8386
+ # @!attribute [rw] domain_identifier
8387
+ # The ID of the Amazon DataZone domain in which you want to post time
8388
+ # series data points.
8389
+ # @return [String]
8390
+ #
8391
+ # @!attribute [rw] entity_identifier
8392
+ # The ID of the asset for which you want to post time series data
8393
+ # points.
8394
+ # @return [String]
8395
+ #
8396
+ # @!attribute [rw] entity_type
8397
+ # The type of the asset for which you want to post data points.
8398
+ # @return [String]
8399
+ #
8400
+ # @!attribute [rw] forms
8401
+ # The forms that contain the data points that you want to post.
8402
+ # @return [Array<Types::TimeSeriesDataPointFormInput>]
8403
+ #
8404
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PostTimeSeriesDataPointsInput AWS API Documentation
8405
+ #
8406
+ class PostTimeSeriesDataPointsInput < Struct.new(
8407
+ :client_token,
8408
+ :domain_identifier,
8409
+ :entity_identifier,
8410
+ :entity_type,
8411
+ :forms)
8412
+ SENSITIVE = []
8413
+ include Aws::Structure
8414
+ end
8415
+
8416
+ # @!attribute [rw] domain_id
8417
+ # The ID of the Amazon DataZone domain in which you want to post time
8418
+ # series data points.
8419
+ # @return [String]
8420
+ #
8421
+ # @!attribute [rw] entity_id
8422
+ # The ID of the asset for which you want to post time series data
8423
+ # points.
8424
+ # @return [String]
8425
+ #
8426
+ # @!attribute [rw] entity_type
8427
+ # The type of the asset for which you want to post data points.
8428
+ # @return [String]
8429
+ #
8430
+ # @!attribute [rw] forms
8431
+ # The forms that contain the data points that you have posted.
8432
+ # @return [Array<Types::TimeSeriesDataPointFormOutput>]
8433
+ #
8434
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PostTimeSeriesDataPointsOutput AWS API Documentation
8435
+ #
8436
+ class PostTimeSeriesDataPointsOutput < Struct.new(
8437
+ :domain_id,
8438
+ :entity_id,
8439
+ :entity_type,
8440
+ :forms)
8441
+ SENSITIVE = []
8442
+ include Aws::Structure
8443
+ end
8444
+
7815
8445
  # The configuration of the prediction.
7816
8446
  #
7817
8447
  # @!attribute [rw] business_name_generation
@@ -7826,6 +8456,26 @@ module Aws::DataZone
7826
8456
  include Aws::Structure
7827
8457
  end
7828
8458
 
8459
+ # Specifies the error message that is returned if the operation cannot
8460
+ # be successfully completed.
8461
+ #
8462
+ # @!attribute [rw] code
8463
+ # The code of the project deletion error.
8464
+ # @return [String]
8465
+ #
8466
+ # @!attribute [rw] message
8467
+ # The message of the project deletion error.
8468
+ # @return [String]
8469
+ #
8470
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ProjectDeletionError AWS API Documentation
8471
+ #
8472
+ class ProjectDeletionError < Struct.new(
8473
+ :code,
8474
+ :message)
8475
+ SENSITIVE = []
8476
+ include Aws::Structure
8477
+ end
8478
+
7829
8479
  # The details of a project member.
7830
8480
  #
7831
8481
  # @!attribute [rw] designation
@@ -7863,6 +8513,11 @@ module Aws::DataZone
7863
8513
  # The identifier of a Amazon DataZone domain where the project exists.
7864
8514
  # @return [String]
7865
8515
  #
8516
+ # @!attribute [rw] failure_reasons
8517
+ # Specifies the error message that is returned if the operation cannot
8518
+ # be successfully completed.
8519
+ # @return [Array<Types::ProjectDeletionError>]
8520
+ #
7866
8521
  # @!attribute [rw] id
7867
8522
  # The identifier of a project.
7868
8523
  # @return [String]
@@ -7871,6 +8526,10 @@ module Aws::DataZone
7871
8526
  # The name of a project.
7872
8527
  # @return [String]
7873
8528
  #
8529
+ # @!attribute [rw] project_status
8530
+ # The status of the project.
8531
+ # @return [String]
8532
+ #
7874
8533
  # @!attribute [rw] updated_at
7875
8534
  # The timestamp of when the project was updated.
7876
8535
  # @return [Time]
@@ -7882,8 +8541,10 @@ module Aws::DataZone
7882
8541
  :created_by,
7883
8542
  :description,
7884
8543
  :domain_id,
8544
+ :failure_reasons,
7885
8545
  :id,
7886
8546
  :name,
8547
+ :project_status,
7887
8548
  :updated_at)
7888
8549
  SENSITIVE = [:description, :name]
7889
8550
  include Aws::Structure
@@ -8201,12 +8862,18 @@ module Aws::DataZone
8201
8862
  # @return [String]
8202
8863
  #
8203
8864
  # @!attribute [rw] reject_choices
8865
+ # Specifies the prediction (aka, the automatically generated piece of
8866
+ # metadata) and the target (for example, a column name) that can be
8867
+ # rejected.
8204
8868
  # @return [Array<Types::RejectChoice>]
8205
8869
  #
8206
8870
  # @!attribute [rw] reject_rule
8871
+ # Specifies the rule (or the conditions) under which a prediction can
8872
+ # be rejected.
8207
8873
  # @return [Types::RejectRule]
8208
8874
  #
8209
8875
  # @!attribute [rw] revision
8876
+ # The revision that is to be made to the asset.
8210
8877
  # @return [String]
8211
8878
  #
8212
8879
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RejectPredictionsInput AWS API Documentation
@@ -8223,12 +8890,15 @@ module Aws::DataZone
8223
8890
  end
8224
8891
 
8225
8892
  # @!attribute [rw] asset_id
8893
+ # The ID of the asset.
8226
8894
  # @return [String]
8227
8895
  #
8228
8896
  # @!attribute [rw] asset_revision
8897
+ # The revision that is to be made to the asset.
8229
8898
  # @return [String]
8230
8899
  #
8231
8900
  # @!attribute [rw] domain_id
8901
+ # The ID of the Amazon DataZone domain.
8232
8902
  # @return [String]
8233
8903
  #
8234
8904
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RejectPredictionsOutput AWS API Documentation
@@ -8682,6 +9352,7 @@ module Aws::DataZone
8682
9352
  # @return [String]
8683
9353
  #
8684
9354
  # @!attribute [rw] search_in
9355
+ # The details of the search.
8685
9356
  # @return [Array<Types::SearchInItem>]
8686
9357
  #
8687
9358
  # @!attribute [rw] search_scope
@@ -8782,6 +9453,7 @@ module Aws::DataZone
8782
9453
  # @return [String]
8783
9454
  #
8784
9455
  # @!attribute [rw] search_in
9456
+ # The details of the search.
8785
9457
  # @return [Array<Types::SearchInItem>]
8786
9458
  #
8787
9459
  # @!attribute [rw] search_text
@@ -8912,6 +9584,7 @@ module Aws::DataZone
8912
9584
  # @return [Types::FilterClause]
8913
9585
  #
8914
9586
  # @!attribute [rw] managed
9587
+ # Specifies whether the search is managed.
8915
9588
  # @return [Boolean]
8916
9589
  #
8917
9590
  # @!attribute [rw] max_results
@@ -8932,6 +9605,7 @@ module Aws::DataZone
8932
9605
  # @return [String]
8933
9606
  #
8934
9607
  # @!attribute [rw] search_in
9608
+ # The details of the search.
8935
9609
  # @return [Array<Types::SearchInItem>]
8936
9610
  #
8937
9611
  # @!attribute [rw] search_scope
@@ -9240,6 +9914,88 @@ module Aws::DataZone
9240
9914
  include Aws::Structure
9241
9915
  end
9242
9916
 
9917
+ # @!attribute [rw] client_token
9918
+ # A unique, case-sensitive identifier to ensure idempotency of the
9919
+ # request. This field is automatically populated if not provided.
9920
+ #
9921
+ # **A suitable default value is auto-generated.** You should normally
9922
+ # not need to pass this option.
9923
+ # @return [String]
9924
+ #
9925
+ # @!attribute [rw] domain_identifier
9926
+ # The ID of the Amazon DataZone domain where you want to start a
9927
+ # metadata generation run.
9928
+ # @return [String]
9929
+ #
9930
+ # @!attribute [rw] owning_project_identifier
9931
+ # The ID of the project that owns the asset for which you want to
9932
+ # start a metadata generation run.
9933
+ # @return [String]
9934
+ #
9935
+ # @!attribute [rw] target
9936
+ # The asset for which you want to start a metadata generation run.
9937
+ # @return [Types::MetadataGenerationRunTarget]
9938
+ #
9939
+ # @!attribute [rw] type
9940
+ # The type of the metadata generation run.
9941
+ # @return [String]
9942
+ #
9943
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StartMetadataGenerationRunInput AWS API Documentation
9944
+ #
9945
+ class StartMetadataGenerationRunInput < Struct.new(
9946
+ :client_token,
9947
+ :domain_identifier,
9948
+ :owning_project_identifier,
9949
+ :target,
9950
+ :type)
9951
+ SENSITIVE = []
9952
+ include Aws::Structure
9953
+ end
9954
+
9955
+ # @!attribute [rw] created_at
9956
+ # The timestamp at which the metadata generation run was started.
9957
+ # @return [Time]
9958
+ #
9959
+ # @!attribute [rw] created_by
9960
+ # The ID of the user who started the metadata generation run.
9961
+ # @return [String]
9962
+ #
9963
+ # @!attribute [rw] domain_id
9964
+ # The ID of the Amazon DataZone domain in which the metadata
9965
+ # generation run was started.
9966
+ # @return [String]
9967
+ #
9968
+ # @!attribute [rw] id
9969
+ # The ID of the metadata generation run.
9970
+ # @return [String]
9971
+ #
9972
+ # @!attribute [rw] owning_project_id
9973
+ # The ID of the project that owns the asset for which the metadata
9974
+ # generation run was started.
9975
+ # @return [String]
9976
+ #
9977
+ # @!attribute [rw] status
9978
+ # The status of the metadata generation run.
9979
+ # @return [String]
9980
+ #
9981
+ # @!attribute [rw] type
9982
+ # The type of the metadata generation run.
9983
+ # @return [String]
9984
+ #
9985
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StartMetadataGenerationRunOutput AWS API Documentation
9986
+ #
9987
+ class StartMetadataGenerationRunOutput < Struct.new(
9988
+ :created_at,
9989
+ :created_by,
9990
+ :domain_id,
9991
+ :id,
9992
+ :owning_project_id,
9993
+ :status,
9994
+ :type)
9995
+ SENSITIVE = []
9996
+ include Aws::Structure
9997
+ end
9998
+
9243
9999
  # The details of the asset for which the subscription grant is created.
9244
10000
  #
9245
10001
  # @!attribute [rw] asset_id
@@ -9851,6 +10607,118 @@ module Aws::DataZone
9851
10607
  include Aws::Structure
9852
10608
  end
9853
10609
 
10610
+ # The time series data points form.
10611
+ #
10612
+ # @!attribute [rw] content
10613
+ # The content of the time series data points form.
10614
+ # @return [String]
10615
+ #
10616
+ # @!attribute [rw] form_name
10617
+ # The name of the time series data points form.
10618
+ # @return [String]
10619
+ #
10620
+ # @!attribute [rw] timestamp
10621
+ # The timestamp of the time series data points form.
10622
+ # @return [Time]
10623
+ #
10624
+ # @!attribute [rw] type_identifier
10625
+ # The ID of the type of the time series data points form.
10626
+ # @return [String]
10627
+ #
10628
+ # @!attribute [rw] type_revision
10629
+ # The revision type of the time series data points form.
10630
+ # @return [String]
10631
+ #
10632
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/TimeSeriesDataPointFormInput AWS API Documentation
10633
+ #
10634
+ class TimeSeriesDataPointFormInput < Struct.new(
10635
+ :content,
10636
+ :form_name,
10637
+ :timestamp,
10638
+ :type_identifier,
10639
+ :type_revision)
10640
+ SENSITIVE = []
10641
+ include Aws::Structure
10642
+ end
10643
+
10644
+ # The time series data points form.
10645
+ #
10646
+ # @!attribute [rw] content
10647
+ # The content of the time series data points form.
10648
+ # @return [String]
10649
+ #
10650
+ # @!attribute [rw] form_name
10651
+ # The name of the time series data points form.
10652
+ # @return [String]
10653
+ #
10654
+ # @!attribute [rw] id
10655
+ # The ID of the time series data points form.
10656
+ # @return [String]
10657
+ #
10658
+ # @!attribute [rw] timestamp
10659
+ # The timestamp of the time series data points form.
10660
+ # @return [Time]
10661
+ #
10662
+ # @!attribute [rw] type_identifier
10663
+ # The ID of the type of the time series data points form.
10664
+ # @return [String]
10665
+ #
10666
+ # @!attribute [rw] type_revision
10667
+ # The revision type of the time series data points form.
10668
+ # @return [String]
10669
+ #
10670
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/TimeSeriesDataPointFormOutput AWS API Documentation
10671
+ #
10672
+ class TimeSeriesDataPointFormOutput < Struct.new(
10673
+ :content,
10674
+ :form_name,
10675
+ :id,
10676
+ :timestamp,
10677
+ :type_identifier,
10678
+ :type_revision)
10679
+ SENSITIVE = []
10680
+ include Aws::Structure
10681
+ end
10682
+
10683
+ # The summary of the time series data points form.
10684
+ #
10685
+ # @!attribute [rw] content_summary
10686
+ # The content of the summary of the time series data points form.
10687
+ # @return [String]
10688
+ #
10689
+ # @!attribute [rw] form_name
10690
+ # The name of the time series data points summary form.
10691
+ # @return [String]
10692
+ #
10693
+ # @!attribute [rw] id
10694
+ # The ID of the time series data points summary form.
10695
+ # @return [String]
10696
+ #
10697
+ # @!attribute [rw] timestamp
10698
+ # The timestamp of the time series data points summary form.
10699
+ # @return [Time]
10700
+ #
10701
+ # @!attribute [rw] type_identifier
10702
+ # The type ID of the time series data points summary form.
10703
+ # @return [String]
10704
+ #
10705
+ # @!attribute [rw] type_revision
10706
+ # The type revision of the time series data points summary form.
10707
+ # @return [String]
10708
+ #
10709
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/TimeSeriesDataPointSummaryFormOutput AWS API Documentation
10710
+ #
10711
+ class TimeSeriesDataPointSummaryFormOutput < Struct.new(
10712
+ :content_summary,
10713
+ :form_name,
10714
+ :id,
10715
+ :timestamp,
10716
+ :type_identifier,
10717
+ :type_revision)
10718
+ SENSITIVE = []
10719
+ include Aws::Structure
10720
+ end
10721
+
9854
10722
  # The topic of the notification.
9855
10723
  #
9856
10724
  # @!attribute [rw] resource
@@ -10737,6 +11605,11 @@ module Aws::DataZone
10737
11605
  # updated.
10738
11606
  # @return [String]
10739
11607
  #
11608
+ # @!attribute [rw] failure_reasons
11609
+ # Specifies the error message that is returned if the operation cannot
11610
+ # be successfully completed.
11611
+ # @return [Array<Types::ProjectDeletionError>]
11612
+ #
10740
11613
  # @!attribute [rw] glossary_terms
10741
11614
  # The glossary terms of the project that are to be updated.
10742
11615
  # @return [Array<String>]
@@ -10753,6 +11626,10 @@ module Aws::DataZone
10753
11626
  # The name of the project that is to be updated.
10754
11627
  # @return [String]
10755
11628
  #
11629
+ # @!attribute [rw] project_status
11630
+ # The status of the project.
11631
+ # @return [String]
11632
+ #
10756
11633
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProjectOutput AWS API Documentation
10757
11634
  #
10758
11635
  class UpdateProjectOutput < Struct.new(
@@ -10760,10 +11637,12 @@ module Aws::DataZone
10760
11637
  :created_by,
10761
11638
  :description,
10762
11639
  :domain_id,
11640
+ :failure_reasons,
10763
11641
  :glossary_terms,
10764
11642
  :id,
10765
11643
  :last_updated_at,
10766
- :name)
11644
+ :name,
11645
+ :project_status)
10767
11646
  SENSITIVE = [:description, :name]
10768
11647
  include Aws::Structure
10769
11648
  end
@@ -10812,6 +11691,8 @@ module Aws::DataZone
10812
11691
  end
10813
11692
 
10814
11693
  # @!attribute [rw] assets
11694
+ # The details of the asset for which the subscription grant is
11695
+ # created.
10815
11696
  # @return [Array<Types::SubscribedAsset>]
10816
11697
  #
10817
11698
  # @!attribute [rw] created_at