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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +632 -55
- data/lib/aws-sdk-datazone/client_api.rb +323 -3
- data/lib/aws-sdk-datazone/endpoints.rb +104 -0
- data/lib/aws-sdk-datazone/plugins/endpoints.rb +16 -0
- data/lib/aws-sdk-datazone/types.rb +856 -45
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +151 -4
- data/sig/types.rbs +187 -3
- metadata +4 -4
@@ -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
|
@@ -2264,7 +2347,8 @@ module Aws::DataZone
|
|
2264
2347
|
# @return [String]
|
2265
2348
|
#
|
2266
2349
|
# @!attribute [rw] failure_reasons
|
2267
|
-
#
|
2350
|
+
# Specifies the error message that is returned if the operation cannot
|
2351
|
+
# be successfully completed.
|
2268
2352
|
# @return [Array<Types::ProjectDeletionError>]
|
2269
2353
|
#
|
2270
2354
|
# @!attribute [rw] glossary_terms
|
@@ -2284,7 +2368,7 @@ module Aws::DataZone
|
|
2284
2368
|
# @return [String]
|
2285
2369
|
#
|
2286
2370
|
# @!attribute [rw] project_status
|
2287
|
-
#
|
2371
|
+
# The status of the Amazon DataZone project that was created.
|
2288
2372
|
# @return [String]
|
2289
2373
|
#
|
2290
2374
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectOutput AWS API Documentation
|
@@ -2430,6 +2514,8 @@ module Aws::DataZone
|
|
2430
2514
|
# @return [String]
|
2431
2515
|
#
|
2432
2516
|
# @!attribute [rw] subscribed_listings
|
2517
|
+
# The published asset for which the subscription grant is to be
|
2518
|
+
# created.
|
2433
2519
|
# @return [Array<Types::SubscribedListingInput>]
|
2434
2520
|
#
|
2435
2521
|
# @!attribute [rw] subscribed_principals
|
@@ -2483,6 +2569,8 @@ module Aws::DataZone
|
|
2483
2569
|
# @return [String]
|
2484
2570
|
#
|
2485
2571
|
# @!attribute [rw] subscribed_listings
|
2572
|
+
# The published asset for which the subscription grant is to be
|
2573
|
+
# created.
|
2486
2574
|
# @return [Array<Types::SubscribedListing>]
|
2487
2575
|
#
|
2488
2576
|
# @!attribute [rw] subscribed_principals
|
@@ -3309,7 +3397,8 @@ module Aws::DataZone
|
|
3309
3397
|
# @return [String]
|
3310
3398
|
#
|
3311
3399
|
# @!attribute [rw] skip_deletion_check
|
3312
|
-
#
|
3400
|
+
# Specifies the optional flag to delete all child entities within the
|
3401
|
+
# domain.
|
3313
3402
|
# @return [Boolean]
|
3314
3403
|
#
|
3315
3404
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteDomainInput AWS API Documentation
|
@@ -3459,9 +3548,11 @@ module Aws::DataZone
|
|
3459
3548
|
class DeleteGlossaryTermOutput < Aws::EmptyStructure; end
|
3460
3549
|
|
3461
3550
|
# @!attribute [rw] domain_identifier
|
3551
|
+
# The ID of the Amazon DataZone domain.
|
3462
3552
|
# @return [String]
|
3463
3553
|
#
|
3464
3554
|
# @!attribute [rw] identifier
|
3555
|
+
# The ID of the listing to be deleted.
|
3465
3556
|
# @return [String]
|
3466
3557
|
#
|
3467
3558
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteListingInput AWS API Documentation
|
@@ -3487,8 +3578,8 @@ module Aws::DataZone
|
|
3487
3578
|
# @return [String]
|
3488
3579
|
#
|
3489
3580
|
# @!attribute [rw] skip_deletion_check
|
3490
|
-
#
|
3491
|
-
# project
|
3581
|
+
# Specifies the optional flag to delete all child entities within the
|
3582
|
+
# project.
|
3492
3583
|
# @return [Boolean]
|
3493
3584
|
#
|
3494
3585
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteProjectInput AWS API Documentation
|
@@ -3663,6 +3754,48 @@ module Aws::DataZone
|
|
3663
3754
|
include Aws::Structure
|
3664
3755
|
end
|
3665
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
|
+
|
3666
3799
|
# The details of the last deployment of the environment.
|
3667
3800
|
#
|
3668
3801
|
# @!attribute [rw] deployment_id
|
@@ -4382,6 +4515,7 @@ module Aws::DataZone
|
|
4382
4515
|
# @return [String]
|
4383
4516
|
#
|
4384
4517
|
# @!attribute [rw] external_identifier
|
4518
|
+
# The external ID of the asset.
|
4385
4519
|
# @return [String]
|
4386
4520
|
#
|
4387
4521
|
# @!attribute [rw] first_revision_created_at
|
@@ -4405,7 +4539,13 @@ module Aws::DataZone
|
|
4405
4539
|
# The ID of the asset.
|
4406
4540
|
# @return [String]
|
4407
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
|
+
#
|
4408
4547
|
# @!attribute [rw] listing
|
4548
|
+
# The listing of the asset.
|
4409
4549
|
# @return [Types::AssetListingDetails]
|
4410
4550
|
#
|
4411
4551
|
# @!attribute [rw] name
|
@@ -4445,6 +4585,7 @@ module Aws::DataZone
|
|
4445
4585
|
:forms_output,
|
4446
4586
|
:glossary_terms,
|
4447
4587
|
:id,
|
4588
|
+
:latest_time_series_data_point_forms_output,
|
4448
4589
|
:listing,
|
4449
4590
|
:name,
|
4450
4591
|
:owning_project_id,
|
@@ -4637,6 +4778,7 @@ module Aws::DataZone
|
|
4637
4778
|
# @return [Boolean]
|
4638
4779
|
#
|
4639
4780
|
# @!attribute [rw] recommendation
|
4781
|
+
# The recommendation configuration of the data source.
|
4640
4782
|
# @return [Types::RecommendationConfiguration]
|
4641
4783
|
#
|
4642
4784
|
# @!attribute [rw] schedule
|
@@ -5549,12 +5691,15 @@ module Aws::DataZone
|
|
5549
5691
|
end
|
5550
5692
|
|
5551
5693
|
# @!attribute [rw] domain_identifier
|
5694
|
+
# The ID of the Amazon DataZone domain.
|
5552
5695
|
# @return [String]
|
5553
5696
|
#
|
5554
5697
|
# @!attribute [rw] identifier
|
5698
|
+
# The ID of the listing.
|
5555
5699
|
# @return [String]
|
5556
5700
|
#
|
5557
5701
|
# @!attribute [rw] listing_revision
|
5702
|
+
# The revision of the listing.
|
5558
5703
|
# @return [String]
|
5559
5704
|
#
|
5560
5705
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetListingInput AWS API Documentation
|
@@ -5568,6 +5713,7 @@ module Aws::DataZone
|
|
5568
5713
|
end
|
5569
5714
|
|
5570
5715
|
# @!attribute [rw] created_at
|
5716
|
+
# The timestamp of when the listing was created.
|
5571
5717
|
# @return [Time]
|
5572
5718
|
#
|
5573
5719
|
# @!attribute [rw] created_by
|
@@ -5575,24 +5721,31 @@ module Aws::DataZone
|
|
5575
5721
|
# @return [String]
|
5576
5722
|
#
|
5577
5723
|
# @!attribute [rw] description
|
5724
|
+
# The description of the listing.
|
5578
5725
|
# @return [String]
|
5579
5726
|
#
|
5580
5727
|
# @!attribute [rw] domain_id
|
5728
|
+
# The ID of the Amazon DataZone domain.
|
5581
5729
|
# @return [String]
|
5582
5730
|
#
|
5583
5731
|
# @!attribute [rw] id
|
5732
|
+
# The ID of the listing.
|
5584
5733
|
# @return [String]
|
5585
5734
|
#
|
5586
5735
|
# @!attribute [rw] item
|
5736
|
+
# The details of a listing.
|
5587
5737
|
# @return [Types::ListingItem]
|
5588
5738
|
#
|
5589
5739
|
# @!attribute [rw] listing_revision
|
5740
|
+
# The revision of a listing.
|
5590
5741
|
# @return [String]
|
5591
5742
|
#
|
5592
5743
|
# @!attribute [rw] name
|
5744
|
+
# The name of the listing.
|
5593
5745
|
# @return [String]
|
5594
5746
|
#
|
5595
5747
|
# @!attribute [rw] status
|
5748
|
+
# The status of the listing.
|
5596
5749
|
# @return [String]
|
5597
5750
|
#
|
5598
5751
|
# @!attribute [rw] updated_at
|
@@ -5621,6 +5774,73 @@ module Aws::DataZone
|
|
5621
5774
|
include Aws::Structure
|
5622
5775
|
end
|
5623
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
|
+
|
5624
5844
|
# @!attribute [rw] domain_identifier
|
5625
5845
|
# The ID of the Amazon DataZone domain in which the project exists.
|
5626
5846
|
# @return [String]
|
@@ -5655,7 +5875,8 @@ module Aws::DataZone
|
|
5655
5875
|
# @return [String]
|
5656
5876
|
#
|
5657
5877
|
# @!attribute [rw] failure_reasons
|
5658
|
-
#
|
5878
|
+
# Specifies the error message that is returned if the operation cannot
|
5879
|
+
# be successfully completed.
|
5659
5880
|
# @return [Array<Types::ProjectDeletionError>]
|
5660
5881
|
#
|
5661
5882
|
# @!attribute [rw] glossary_terms
|
@@ -5675,7 +5896,7 @@ module Aws::DataZone
|
|
5675
5896
|
# @return [String]
|
5676
5897
|
#
|
5677
5898
|
# @!attribute [rw] project_status
|
5678
|
-
#
|
5899
|
+
# The status of the project.
|
5679
5900
|
# @return [String]
|
5680
5901
|
#
|
5681
5902
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetProjectOutput AWS API Documentation
|
@@ -5820,6 +6041,8 @@ module Aws::DataZone
|
|
5820
6041
|
# @return [String]
|
5821
6042
|
#
|
5822
6043
|
# @!attribute [rw] subscribed_listing
|
6044
|
+
# The details of the published asset for which the subscription grant
|
6045
|
+
# is created.
|
5823
6046
|
# @return [Types::SubscribedListing]
|
5824
6047
|
#
|
5825
6048
|
# @!attribute [rw] subscribed_principal
|
@@ -6051,6 +6274,75 @@ module Aws::DataZone
|
|
6051
6274
|
include Aws::Structure
|
6052
6275
|
end
|
6053
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
|
+
|
6054
6346
|
# @!attribute [rw] domain_identifier
|
6055
6347
|
# the ID of the Amazon DataZone domain the data portal of which you
|
6056
6348
|
# want to get.
|
@@ -6240,6 +6532,11 @@ module Aws::DataZone
|
|
6240
6532
|
|
6241
6533
|
# The configuration details of the Amazon Web Services Glue data source.
|
6242
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
|
+
#
|
6243
6540
|
# @!attribute [rw] data_access_role
|
6244
6541
|
# The data access role included in the configuration details of the
|
6245
6542
|
# Amazon Web Services Glue data source.
|
@@ -6253,6 +6550,7 @@ module Aws::DataZone
|
|
6253
6550
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GlueRunConfigurationInput AWS API Documentation
|
6254
6551
|
#
|
6255
6552
|
class GlueRunConfigurationInput < Struct.new(
|
6553
|
+
:auto_import_data_quality_result,
|
6256
6554
|
:data_access_role,
|
6257
6555
|
:relational_filter_configurations)
|
6258
6556
|
SENSITIVE = []
|
@@ -6266,6 +6564,11 @@ module Aws::DataZone
|
|
6266
6564
|
# details of the Amazon Web Services Glue data source.
|
6267
6565
|
# @return [String]
|
6268
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
|
+
#
|
6269
6572
|
# @!attribute [rw] data_access_role
|
6270
6573
|
# The data access role included in the configuration details of the
|
6271
6574
|
# Amazon Web Services Glue data source.
|
@@ -6285,6 +6588,7 @@ module Aws::DataZone
|
|
6285
6588
|
#
|
6286
6589
|
class GlueRunConfigurationOutput < Struct.new(
|
6287
6590
|
:account_id,
|
6591
|
+
:auto_import_data_quality_result,
|
6288
6592
|
:data_access_role,
|
6289
6593
|
:region,
|
6290
6594
|
:relational_filter_configurations)
|
@@ -6977,6 +7281,7 @@ module Aws::DataZone
|
|
6977
7281
|
# @return [Integer]
|
6978
7282
|
#
|
6979
7283
|
# @!attribute [rw] name
|
7284
|
+
# The name of the environment.
|
6980
7285
|
# @return [String]
|
6981
7286
|
#
|
6982
7287
|
# @!attribute [rw] next_token
|
@@ -7040,6 +7345,73 @@ module Aws::DataZone
|
|
7040
7345
|
include Aws::Structure
|
7041
7346
|
end
|
7042
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
|
+
|
7043
7415
|
# @!attribute [rw] after_timestamp
|
7044
7416
|
# The time after which you want to list notifications.
|
7045
7417
|
# @return [Time]
|
@@ -7204,6 +7576,7 @@ module Aws::DataZone
|
|
7204
7576
|
# @return [Integer]
|
7205
7577
|
#
|
7206
7578
|
# @!attribute [rw] name
|
7579
|
+
# The name of the project.
|
7207
7580
|
# @return [String]
|
7208
7581
|
#
|
7209
7582
|
# @!attribute [rw] next_token
|
@@ -7615,41 +7988,122 @@ module Aws::DataZone
|
|
7615
7988
|
include Aws::Structure
|
7616
7989
|
end
|
7617
7990
|
|
7618
|
-
#
|
7619
|
-
#
|
7620
|
-
#
|
7621
|
-
#
|
7622
|
-
#
|
7623
|
-
# @!attribute [rw] asset_listing
|
7624
|
-
# An asset published in an Amazon DataZone catalog.
|
7625
|
-
# @return [Types::AssetListing]
|
7626
|
-
#
|
7627
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListingItem AWS API Documentation
|
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]
|
7628
7995
|
#
|
7629
|
-
|
7630
|
-
|
7631
|
-
|
7632
|
-
|
7633
|
-
include Aws::Structure
|
7634
|
-
include Aws::Structure::Union
|
7635
|
-
|
7636
|
-
class AssetListing < ListingItem; end
|
7637
|
-
class Unknown < ListingItem; end
|
7638
|
-
end
|
7639
|
-
|
7640
|
-
# A revision of an asset published in a Amazon DataZone catalog.
|
7996
|
+
# @!attribute [rw] ended_at
|
7997
|
+
# The timestamp at which the data points that you wanted to list
|
7998
|
+
# ended.
|
7999
|
+
# @return [Time]
|
7641
8000
|
#
|
7642
|
-
# @!attribute [rw]
|
7643
|
-
#
|
7644
|
-
# DataZone catalog.
|
8001
|
+
# @!attribute [rw] entity_identifier
|
8002
|
+
# The ID of the asset for which you want to list data points.
|
7645
8003
|
# @return [String]
|
7646
8004
|
#
|
7647
|
-
# @!attribute [rw]
|
7648
|
-
# The
|
7649
|
-
# catalog.
|
8005
|
+
# @!attribute [rw] entity_type
|
8006
|
+
# The type of the asset for which you want to list data points.
|
7650
8007
|
# @return [String]
|
7651
8008
|
#
|
7652
|
-
#
|
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 = []
|
8087
|
+
include Aws::Structure
|
8088
|
+
include Aws::Structure::Union
|
8089
|
+
|
8090
|
+
class AssetListing < ListingItem; end
|
8091
|
+
class Unknown < ListingItem; end
|
8092
|
+
end
|
8093
|
+
|
8094
|
+
# A revision of an asset published in a Amazon DataZone catalog.
|
8095
|
+
#
|
8096
|
+
# @!attribute [rw] id
|
8097
|
+
# An identifier of a revision of an asset published in a Amazon
|
8098
|
+
# DataZone catalog.
|
8099
|
+
# @return [String]
|
8100
|
+
#
|
8101
|
+
# @!attribute [rw] revision
|
8102
|
+
# The details of a revision of an asset published in a Amazon DataZone
|
8103
|
+
# catalog.
|
8104
|
+
# @return [String]
|
8105
|
+
#
|
8106
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListingRevision AWS API Documentation
|
7653
8107
|
#
|
7654
8108
|
class ListingRevision < Struct.new(
|
7655
8109
|
:id,
|
@@ -7734,11 +8188,89 @@ module Aws::DataZone
|
|
7734
8188
|
class Unknown < MemberDetails; end
|
7735
8189
|
end
|
7736
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
|
+
#
|
7737
8268
|
# @note Model is a union - when making an API calls you must set exactly one of the members.
|
7738
8269
|
#
|
7739
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.
|
7740
8271
|
#
|
7741
8272
|
# @!attribute [rw] smithy
|
8273
|
+
# Indicates the smithy model of the API.
|
7742
8274
|
# @return [String]
|
7743
8275
|
#
|
7744
8276
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/Model AWS API Documentation
|
@@ -7843,6 +8375,73 @@ module Aws::DataZone
|
|
7843
8375
|
include Aws::Structure
|
7844
8376
|
end
|
7845
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
|
+
|
7846
8445
|
# The configuration of the prediction.
|
7847
8446
|
#
|
7848
8447
|
# @!attribute [rw] business_name_generation
|
@@ -7857,14 +8456,15 @@ module Aws::DataZone
|
|
7857
8456
|
include Aws::Structure
|
7858
8457
|
end
|
7859
8458
|
|
7860
|
-
#
|
8459
|
+
# Specifies the error message that is returned if the operation cannot
|
8460
|
+
# be successfully completed.
|
7861
8461
|
#
|
7862
8462
|
# @!attribute [rw] code
|
7863
|
-
#
|
8463
|
+
# The code of the project deletion error.
|
7864
8464
|
# @return [String]
|
7865
8465
|
#
|
7866
8466
|
# @!attribute [rw] message
|
7867
|
-
#
|
8467
|
+
# The message of the project deletion error.
|
7868
8468
|
# @return [String]
|
7869
8469
|
#
|
7870
8470
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ProjectDeletionError AWS API Documentation
|
@@ -7914,7 +8514,8 @@ module Aws::DataZone
|
|
7914
8514
|
# @return [String]
|
7915
8515
|
#
|
7916
8516
|
# @!attribute [rw] failure_reasons
|
7917
|
-
#
|
8517
|
+
# Specifies the error message that is returned if the operation cannot
|
8518
|
+
# be successfully completed.
|
7918
8519
|
# @return [Array<Types::ProjectDeletionError>]
|
7919
8520
|
#
|
7920
8521
|
# @!attribute [rw] id
|
@@ -7926,7 +8527,7 @@ module Aws::DataZone
|
|
7926
8527
|
# @return [String]
|
7927
8528
|
#
|
7928
8529
|
# @!attribute [rw] project_status
|
7929
|
-
#
|
8530
|
+
# The status of the project.
|
7930
8531
|
# @return [String]
|
7931
8532
|
#
|
7932
8533
|
# @!attribute [rw] updated_at
|
@@ -8261,12 +8862,18 @@ module Aws::DataZone
|
|
8261
8862
|
# @return [String]
|
8262
8863
|
#
|
8263
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.
|
8264
8868
|
# @return [Array<Types::RejectChoice>]
|
8265
8869
|
#
|
8266
8870
|
# @!attribute [rw] reject_rule
|
8871
|
+
# Specifies the rule (or the conditions) under which a prediction can
|
8872
|
+
# be rejected.
|
8267
8873
|
# @return [Types::RejectRule]
|
8268
8874
|
#
|
8269
8875
|
# @!attribute [rw] revision
|
8876
|
+
# The revision that is to be made to the asset.
|
8270
8877
|
# @return [String]
|
8271
8878
|
#
|
8272
8879
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RejectPredictionsInput AWS API Documentation
|
@@ -8283,12 +8890,15 @@ module Aws::DataZone
|
|
8283
8890
|
end
|
8284
8891
|
|
8285
8892
|
# @!attribute [rw] asset_id
|
8893
|
+
# The ID of the asset.
|
8286
8894
|
# @return [String]
|
8287
8895
|
#
|
8288
8896
|
# @!attribute [rw] asset_revision
|
8897
|
+
# The revision that is to be made to the asset.
|
8289
8898
|
# @return [String]
|
8290
8899
|
#
|
8291
8900
|
# @!attribute [rw] domain_id
|
8901
|
+
# The ID of the Amazon DataZone domain.
|
8292
8902
|
# @return [String]
|
8293
8903
|
#
|
8294
8904
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RejectPredictionsOutput AWS API Documentation
|
@@ -8742,6 +9352,7 @@ module Aws::DataZone
|
|
8742
9352
|
# @return [String]
|
8743
9353
|
#
|
8744
9354
|
# @!attribute [rw] search_in
|
9355
|
+
# The details of the search.
|
8745
9356
|
# @return [Array<Types::SearchInItem>]
|
8746
9357
|
#
|
8747
9358
|
# @!attribute [rw] search_scope
|
@@ -8842,6 +9453,7 @@ module Aws::DataZone
|
|
8842
9453
|
# @return [String]
|
8843
9454
|
#
|
8844
9455
|
# @!attribute [rw] search_in
|
9456
|
+
# The details of the search.
|
8845
9457
|
# @return [Array<Types::SearchInItem>]
|
8846
9458
|
#
|
8847
9459
|
# @!attribute [rw] search_text
|
@@ -8972,6 +9584,7 @@ module Aws::DataZone
|
|
8972
9584
|
# @return [Types::FilterClause]
|
8973
9585
|
#
|
8974
9586
|
# @!attribute [rw] managed
|
9587
|
+
# Specifies whether the search is managed.
|
8975
9588
|
# @return [Boolean]
|
8976
9589
|
#
|
8977
9590
|
# @!attribute [rw] max_results
|
@@ -8992,6 +9605,7 @@ module Aws::DataZone
|
|
8992
9605
|
# @return [String]
|
8993
9606
|
#
|
8994
9607
|
# @!attribute [rw] search_in
|
9608
|
+
# The details of the search.
|
8995
9609
|
# @return [Array<Types::SearchInItem>]
|
8996
9610
|
#
|
8997
9611
|
# @!attribute [rw] search_scope
|
@@ -9300,6 +9914,88 @@ module Aws::DataZone
|
|
9300
9914
|
include Aws::Structure
|
9301
9915
|
end
|
9302
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
|
+
|
9303
9999
|
# The details of the asset for which the subscription grant is created.
|
9304
10000
|
#
|
9305
10001
|
# @!attribute [rw] asset_id
|
@@ -9911,6 +10607,118 @@ module Aws::DataZone
|
|
9911
10607
|
include Aws::Structure
|
9912
10608
|
end
|
9913
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
|
+
|
9914
10722
|
# The topic of the notification.
|
9915
10723
|
#
|
9916
10724
|
# @!attribute [rw] resource
|
@@ -10798,7 +11606,8 @@ module Aws::DataZone
|
|
10798
11606
|
# @return [String]
|
10799
11607
|
#
|
10800
11608
|
# @!attribute [rw] failure_reasons
|
10801
|
-
#
|
11609
|
+
# Specifies the error message that is returned if the operation cannot
|
11610
|
+
# be successfully completed.
|
10802
11611
|
# @return [Array<Types::ProjectDeletionError>]
|
10803
11612
|
#
|
10804
11613
|
# @!attribute [rw] glossary_terms
|
@@ -10818,7 +11627,7 @@ module Aws::DataZone
|
|
10818
11627
|
# @return [String]
|
10819
11628
|
#
|
10820
11629
|
# @!attribute [rw] project_status
|
10821
|
-
#
|
11630
|
+
# The status of the project.
|
10822
11631
|
# @return [String]
|
10823
11632
|
#
|
10824
11633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProjectOutput AWS API Documentation
|
@@ -10882,6 +11691,8 @@ module Aws::DataZone
|
|
10882
11691
|
end
|
10883
11692
|
|
10884
11693
|
# @!attribute [rw] assets
|
11694
|
+
# The details of the asset for which the subscription grant is
|
11695
|
+
# created.
|
10885
11696
|
# @return [Array<Types::SubscribedAsset>]
|
10886
11697
|
#
|
10887
11698
|
# @!attribute [rw] created_at
|