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
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -82,8 +82,9 @@ module Aws
|
|
82
82
|
def accept_predictions: (
|
83
83
|
?accept_choices: Array[
|
84
84
|
{
|
85
|
+
edited_value: ::String?,
|
85
86
|
prediction_choice: ::Integer?,
|
86
|
-
prediction_target: ::String
|
87
|
+
prediction_target: ::String
|
87
88
|
},
|
88
89
|
],
|
89
90
|
?accept_rule: {
|
@@ -120,6 +121,16 @@ module Aws
|
|
120
121
|
) -> _AcceptSubscriptionRequestResponseSuccess
|
121
122
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptSubscriptionRequestResponseSuccess
|
122
123
|
|
124
|
+
interface _CancelMetadataGenerationRunResponseSuccess
|
125
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelMetadataGenerationRunOutput]
|
126
|
+
end
|
127
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#cancel_metadata_generation_run-instance_method
|
128
|
+
def cancel_metadata_generation_run: (
|
129
|
+
domain_identifier: ::String,
|
130
|
+
identifier: ::String
|
131
|
+
) -> _CancelMetadataGenerationRunResponseSuccess
|
132
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelMetadataGenerationRunResponseSuccess
|
133
|
+
|
123
134
|
interface _CancelSubscriptionResponseSuccess
|
124
135
|
include ::Seahorse::Client::_ResponseSuccess[Types::CancelSubscriptionOutput]
|
125
136
|
def created_at: () -> ::Time
|
@@ -153,6 +164,7 @@ module Aws
|
|
153
164
|
def forms_output: () -> ::Array[Types::FormOutput]
|
154
165
|
def glossary_terms: () -> ::Array[::String]
|
155
166
|
def id: () -> ::String
|
167
|
+
def latest_time_series_data_point_forms_output: () -> ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
156
168
|
def listing: () -> Types::AssetListingDetails
|
157
169
|
def name: () -> ::String
|
158
170
|
def owning_project_id: () -> ::String
|
@@ -201,6 +213,7 @@ module Aws
|
|
201
213
|
def forms_output: () -> ::Array[Types::FormOutput]
|
202
214
|
def glossary_terms: () -> ::Array[::String]
|
203
215
|
def id: () -> ::String
|
216
|
+
def latest_time_series_data_point_forms_output: () -> ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
204
217
|
def listing: () -> Types::AssetListingDetails
|
205
218
|
def name: () -> ::String
|
206
219
|
def owning_project_id: () -> ::String
|
@@ -300,6 +313,7 @@ module Aws
|
|
300
313
|
?client_token: ::String,
|
301
314
|
?configuration: {
|
302
315
|
glue_run_configuration: {
|
316
|
+
auto_import_data_quality_result: bool?,
|
303
317
|
data_access_role: ::String?,
|
304
318
|
relational_filter_configurations: Array[
|
305
319
|
{
|
@@ -912,6 +926,19 @@ module Aws
|
|
912
926
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
913
927
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
914
928
|
|
929
|
+
interface _DeleteTimeSeriesDataPointsResponseSuccess
|
930
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTimeSeriesDataPointsOutput]
|
931
|
+
end
|
932
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_time_series_data_points-instance_method
|
933
|
+
def delete_time_series_data_points: (
|
934
|
+
?client_token: ::String,
|
935
|
+
domain_identifier: ::String,
|
936
|
+
entity_identifier: ::String,
|
937
|
+
entity_type: ("ASSET" | "LISTING"),
|
938
|
+
form_name: ::String
|
939
|
+
) -> _DeleteTimeSeriesDataPointsResponseSuccess
|
940
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTimeSeriesDataPointsResponseSuccess
|
941
|
+
|
915
942
|
interface _GetAssetResponseSuccess
|
916
943
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetAssetOutput]
|
917
944
|
def created_at: () -> ::Time
|
@@ -924,6 +951,7 @@ module Aws
|
|
924
951
|
def forms_output: () -> ::Array[Types::FormOutput]
|
925
952
|
def glossary_terms: () -> ::Array[::String]
|
926
953
|
def id: () -> ::String
|
954
|
+
def latest_time_series_data_point_forms_output: () -> ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
927
955
|
def listing: () -> Types::AssetListingDetails
|
928
956
|
def name: () -> ::String
|
929
957
|
def owning_project_id: () -> ::String
|
@@ -1241,6 +1269,24 @@ module Aws
|
|
1241
1269
|
) -> _GetListingResponseSuccess
|
1242
1270
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetListingResponseSuccess
|
1243
1271
|
|
1272
|
+
interface _GetMetadataGenerationRunResponseSuccess
|
1273
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetMetadataGenerationRunOutput]
|
1274
|
+
def created_at: () -> ::Time
|
1275
|
+
def created_by: () -> ::String
|
1276
|
+
def domain_id: () -> ::String
|
1277
|
+
def id: () -> ::String
|
1278
|
+
def owning_project_id: () -> ::String
|
1279
|
+
def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
1280
|
+
def target: () -> Types::MetadataGenerationRunTarget
|
1281
|
+
def type: () -> ("BUSINESS_DESCRIPTIONS")
|
1282
|
+
end
|
1283
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_metadata_generation_run-instance_method
|
1284
|
+
def get_metadata_generation_run: (
|
1285
|
+
domain_identifier: ::String,
|
1286
|
+
identifier: ::String
|
1287
|
+
) -> _GetMetadataGenerationRunResponseSuccess
|
1288
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMetadataGenerationRunResponseSuccess
|
1289
|
+
|
1244
1290
|
interface _GetProjectResponseSuccess
|
1245
1291
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetProjectOutput]
|
1246
1292
|
def created_at: () -> ::Time
|
@@ -1351,6 +1397,24 @@ module Aws
|
|
1351
1397
|
) -> _GetSubscriptionTargetResponseSuccess
|
1352
1398
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSubscriptionTargetResponseSuccess
|
1353
1399
|
|
1400
|
+
interface _GetTimeSeriesDataPointResponseSuccess
|
1401
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTimeSeriesDataPointOutput]
|
1402
|
+
def domain_id: () -> ::String
|
1403
|
+
def entity_id: () -> ::String
|
1404
|
+
def entity_type: () -> ("ASSET" | "LISTING")
|
1405
|
+
def form: () -> Types::TimeSeriesDataPointFormOutput
|
1406
|
+
def form_name: () -> ::String
|
1407
|
+
end
|
1408
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_time_series_data_point-instance_method
|
1409
|
+
def get_time_series_data_point: (
|
1410
|
+
domain_identifier: ::String,
|
1411
|
+
entity_identifier: ::String,
|
1412
|
+
entity_type: ("ASSET" | "LISTING"),
|
1413
|
+
form_name: ::String,
|
1414
|
+
identifier: ::String
|
1415
|
+
) -> _GetTimeSeriesDataPointResponseSuccess
|
1416
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTimeSeriesDataPointResponseSuccess
|
1417
|
+
|
1354
1418
|
interface _GetUserProfileResponseSuccess
|
1355
1419
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetUserProfileOutput]
|
1356
1420
|
def details: () -> Types::UserProfileDetails
|
@@ -1509,6 +1573,21 @@ module Aws
|
|
1509
1573
|
) -> _ListEnvironmentsResponseSuccess
|
1510
1574
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentsResponseSuccess
|
1511
1575
|
|
1576
|
+
interface _ListMetadataGenerationRunsResponseSuccess
|
1577
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListMetadataGenerationRunsOutput]
|
1578
|
+
def items: () -> ::Array[Types::MetadataGenerationRunItem]
|
1579
|
+
def next_token: () -> ::String
|
1580
|
+
end
|
1581
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_metadata_generation_runs-instance_method
|
1582
|
+
def list_metadata_generation_runs: (
|
1583
|
+
domain_identifier: ::String,
|
1584
|
+
?max_results: ::Integer,
|
1585
|
+
?next_token: ::String,
|
1586
|
+
?status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED"),
|
1587
|
+
?type: ("BUSINESS_DESCRIPTIONS")
|
1588
|
+
) -> _ListMetadataGenerationRunsResponseSuccess
|
1589
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMetadataGenerationRunsResponseSuccess
|
1590
|
+
|
1512
1591
|
interface _ListNotificationsResponseSuccess
|
1513
1592
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListNotificationsOutput]
|
1514
1593
|
def next_token: () -> ::String
|
@@ -1643,6 +1722,49 @@ module Aws
|
|
1643
1722
|
) -> _ListTagsForResourceResponseSuccess
|
1644
1723
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
1645
1724
|
|
1725
|
+
interface _ListTimeSeriesDataPointsResponseSuccess
|
1726
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTimeSeriesDataPointsOutput]
|
1727
|
+
def items: () -> ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
1728
|
+
def next_token: () -> ::String
|
1729
|
+
end
|
1730
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_time_series_data_points-instance_method
|
1731
|
+
def list_time_series_data_points: (
|
1732
|
+
domain_identifier: ::String,
|
1733
|
+
?ended_at: ::Time,
|
1734
|
+
entity_identifier: ::String,
|
1735
|
+
entity_type: ("ASSET" | "LISTING"),
|
1736
|
+
form_name: ::String,
|
1737
|
+
?max_results: ::Integer,
|
1738
|
+
?next_token: ::String,
|
1739
|
+
?started_at: ::Time
|
1740
|
+
) -> _ListTimeSeriesDataPointsResponseSuccess
|
1741
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTimeSeriesDataPointsResponseSuccess
|
1742
|
+
|
1743
|
+
interface _PostTimeSeriesDataPointsResponseSuccess
|
1744
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PostTimeSeriesDataPointsOutput]
|
1745
|
+
def domain_id: () -> ::String
|
1746
|
+
def entity_id: () -> ::String
|
1747
|
+
def entity_type: () -> ("ASSET" | "LISTING")
|
1748
|
+
def forms: () -> ::Array[Types::TimeSeriesDataPointFormOutput]
|
1749
|
+
end
|
1750
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#post_time_series_data_points-instance_method
|
1751
|
+
def post_time_series_data_points: (
|
1752
|
+
?client_token: ::String,
|
1753
|
+
domain_identifier: ::String,
|
1754
|
+
entity_identifier: ::String,
|
1755
|
+
entity_type: ("ASSET" | "LISTING"),
|
1756
|
+
forms: Array[
|
1757
|
+
{
|
1758
|
+
content: ::String?,
|
1759
|
+
form_name: ::String,
|
1760
|
+
timestamp: ::Time,
|
1761
|
+
type_identifier: ::String,
|
1762
|
+
type_revision: ::String?
|
1763
|
+
},
|
1764
|
+
]
|
1765
|
+
) -> _PostTimeSeriesDataPointsResponseSuccess
|
1766
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PostTimeSeriesDataPointsResponseSuccess
|
1767
|
+
|
1646
1768
|
interface _PutEnvironmentBlueprintConfigurationResponseSuccess
|
1647
1769
|
include ::Seahorse::Client::_ResponseSuccess[Types::PutEnvironmentBlueprintConfigurationOutput]
|
1648
1770
|
def created_at: () -> ::Time
|
@@ -1679,7 +1801,7 @@ module Aws
|
|
1679
1801
|
?reject_choices: Array[
|
1680
1802
|
{
|
1681
1803
|
prediction_choices: Array[::Integer]?,
|
1682
|
-
prediction_target: ::String
|
1804
|
+
prediction_target: ::String
|
1683
1805
|
},
|
1684
1806
|
],
|
1685
1807
|
?reject_rule: {
|
@@ -1743,7 +1865,7 @@ module Aws
|
|
1743
1865
|
end
|
1744
1866
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search-instance_method
|
1745
1867
|
def search: (
|
1746
|
-
?additional_attributes: Array[("FORMS")],
|
1868
|
+
?additional_attributes: Array[("FORMS" | "TIME_SERIES_DATA_POINT_FORMS")],
|
1747
1869
|
domain_identifier: ::String,
|
1748
1870
|
?filters: {
|
1749
1871
|
and: Array[
|
@@ -1797,7 +1919,7 @@ module Aws
|
|
1797
1919
|
end
|
1798
1920
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search_listings-instance_method
|
1799
1921
|
def search_listings: (
|
1800
|
-
?additional_attributes: Array[("FORMS")],
|
1922
|
+
?additional_attributes: Array[("FORMS" | "TIME_SERIES_DATA_POINT_FORMS")],
|
1801
1923
|
domain_identifier: ::String,
|
1802
1924
|
?filters: {
|
1803
1925
|
and: Array[
|
@@ -1903,6 +2025,30 @@ module Aws
|
|
1903
2025
|
) -> _StartDataSourceRunResponseSuccess
|
1904
2026
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDataSourceRunResponseSuccess
|
1905
2027
|
|
2028
|
+
interface _StartMetadataGenerationRunResponseSuccess
|
2029
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartMetadataGenerationRunOutput]
|
2030
|
+
def created_at: () -> ::Time
|
2031
|
+
def created_by: () -> ::String
|
2032
|
+
def domain_id: () -> ::String
|
2033
|
+
def id: () -> ::String
|
2034
|
+
def owning_project_id: () -> ::String
|
2035
|
+
def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
2036
|
+
def type: () -> ("BUSINESS_DESCRIPTIONS")
|
2037
|
+
end
|
2038
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#start_metadata_generation_run-instance_method
|
2039
|
+
def start_metadata_generation_run: (
|
2040
|
+
?client_token: ::String,
|
2041
|
+
domain_identifier: ::String,
|
2042
|
+
owning_project_identifier: ::String,
|
2043
|
+
target: {
|
2044
|
+
identifier: ::String,
|
2045
|
+
revision: ::String?,
|
2046
|
+
type: ("ASSET")
|
2047
|
+
},
|
2048
|
+
type: ("BUSINESS_DESCRIPTIONS")
|
2049
|
+
) -> _StartMetadataGenerationRunResponseSuccess
|
2050
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMetadataGenerationRunResponseSuccess
|
2051
|
+
|
1906
2052
|
interface _TagResourceResponseSuccess
|
1907
2053
|
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
1908
2054
|
end
|
@@ -1958,6 +2104,7 @@ module Aws
|
|
1958
2104
|
],
|
1959
2105
|
?configuration: {
|
1960
2106
|
glue_run_configuration: {
|
2107
|
+
auto_import_data_quality_result: bool?,
|
1961
2108
|
data_access_role: ::String?,
|
1962
2109
|
relational_filter_configurations: Array[
|
1963
2110
|
{
|
data/sig/types.rbs
CHANGED
@@ -9,9 +9,10 @@ module Aws::DataZone
|
|
9
9
|
module Types
|
10
10
|
|
11
11
|
class AcceptChoice
|
12
|
+
attr_accessor edited_value: ::String
|
12
13
|
attr_accessor prediction_choice: ::Integer
|
13
14
|
attr_accessor prediction_target: ::String
|
14
|
-
SENSITIVE: []
|
15
|
+
SENSITIVE: [:edited_value]
|
15
16
|
end
|
16
17
|
|
17
18
|
class AcceptPredictionsInput
|
@@ -85,6 +86,7 @@ module Aws::DataZone
|
|
85
86
|
|
86
87
|
class AssetItemAdditionalAttributes
|
87
88
|
attr_accessor forms_output: ::Array[Types::FormOutput]
|
89
|
+
attr_accessor latest_time_series_data_point_forms_output: ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
88
90
|
attr_accessor read_only_forms_output: ::Array[Types::FormOutput]
|
89
91
|
SENSITIVE: []
|
90
92
|
end
|
@@ -96,6 +98,7 @@ module Aws::DataZone
|
|
96
98
|
attr_accessor created_at: ::Time
|
97
99
|
attr_accessor forms: ::String
|
98
100
|
attr_accessor glossary_terms: ::Array[Types::DetailedGlossaryTerm]
|
101
|
+
attr_accessor latest_time_series_data_point_forms: ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
99
102
|
attr_accessor owning_project_id: ::String
|
100
103
|
SENSITIVE: []
|
101
104
|
end
|
@@ -125,6 +128,7 @@ module Aws::DataZone
|
|
125
128
|
|
126
129
|
class AssetListingItemAdditionalAttributes
|
127
130
|
attr_accessor forms: ::String
|
131
|
+
attr_accessor latest_time_series_data_point_forms: ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
128
132
|
SENSITIVE: []
|
129
133
|
end
|
130
134
|
|
@@ -164,6 +168,15 @@ module Aws::DataZone
|
|
164
168
|
SENSITIVE: []
|
165
169
|
end
|
166
170
|
|
171
|
+
class CancelMetadataGenerationRunInput
|
172
|
+
attr_accessor domain_identifier: ::String
|
173
|
+
attr_accessor identifier: ::String
|
174
|
+
SENSITIVE: []
|
175
|
+
end
|
176
|
+
|
177
|
+
class CancelMetadataGenerationRunOutput < Aws::EmptyStructure
|
178
|
+
end
|
179
|
+
|
167
180
|
class CancelSubscriptionInput
|
168
181
|
attr_accessor domain_identifier: ::String
|
169
182
|
attr_accessor identifier: ::String
|
@@ -234,6 +247,7 @@ module Aws::DataZone
|
|
234
247
|
attr_accessor forms_output: ::Array[Types::FormOutput]
|
235
248
|
attr_accessor glossary_terms: ::Array[::String]
|
236
249
|
attr_accessor id: ::String
|
250
|
+
attr_accessor latest_time_series_data_point_forms_output: ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
237
251
|
attr_accessor listing: Types::AssetListingDetails
|
238
252
|
attr_accessor name: ::String
|
239
253
|
attr_accessor owning_project_id: ::String
|
@@ -269,6 +283,7 @@ module Aws::DataZone
|
|
269
283
|
attr_accessor forms_output: ::Array[Types::FormOutput]
|
270
284
|
attr_accessor glossary_terms: ::Array[::String]
|
271
285
|
attr_accessor id: ::String
|
286
|
+
attr_accessor latest_time_series_data_point_forms_output: ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
272
287
|
attr_accessor listing: Types::AssetListingDetails
|
273
288
|
attr_accessor name: ::String
|
274
289
|
attr_accessor owning_project_id: ::String
|
@@ -948,6 +963,18 @@ module Aws::DataZone
|
|
948
963
|
SENSITIVE: []
|
949
964
|
end
|
950
965
|
|
966
|
+
class DeleteTimeSeriesDataPointsInput
|
967
|
+
attr_accessor client_token: ::String
|
968
|
+
attr_accessor domain_identifier: ::String
|
969
|
+
attr_accessor entity_identifier: ::String
|
970
|
+
attr_accessor entity_type: ("ASSET" | "LISTING")
|
971
|
+
attr_accessor form_name: ::String
|
972
|
+
SENSITIVE: []
|
973
|
+
end
|
974
|
+
|
975
|
+
class DeleteTimeSeriesDataPointsOutput < Aws::EmptyStructure
|
976
|
+
end
|
977
|
+
|
951
978
|
class Deployment
|
952
979
|
attr_accessor deployment_id: ::String
|
953
980
|
attr_accessor deployment_status: ("IN_PROGRESS" | "SUCCESSFUL" | "FAILED" | "PENDING_DEPLOYMENT")
|
@@ -1148,6 +1175,7 @@ module Aws::DataZone
|
|
1148
1175
|
attr_accessor forms_output: ::Array[Types::FormOutput]
|
1149
1176
|
attr_accessor glossary_terms: ::Array[::String]
|
1150
1177
|
attr_accessor id: ::String
|
1178
|
+
attr_accessor latest_time_series_data_point_forms_output: ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
1151
1179
|
attr_accessor listing: Types::AssetListingDetails
|
1152
1180
|
attr_accessor name: ::String
|
1153
1181
|
attr_accessor owning_project_id: ::String
|
@@ -1459,6 +1487,24 @@ module Aws::DataZone
|
|
1459
1487
|
SENSITIVE: [:description]
|
1460
1488
|
end
|
1461
1489
|
|
1490
|
+
class GetMetadataGenerationRunInput
|
1491
|
+
attr_accessor domain_identifier: ::String
|
1492
|
+
attr_accessor identifier: ::String
|
1493
|
+
SENSITIVE: []
|
1494
|
+
end
|
1495
|
+
|
1496
|
+
class GetMetadataGenerationRunOutput
|
1497
|
+
attr_accessor created_at: ::Time
|
1498
|
+
attr_accessor created_by: ::String
|
1499
|
+
attr_accessor domain_id: ::String
|
1500
|
+
attr_accessor id: ::String
|
1501
|
+
attr_accessor owning_project_id: ::String
|
1502
|
+
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
1503
|
+
attr_accessor target: Types::MetadataGenerationRunTarget
|
1504
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS")
|
1505
|
+
SENSITIVE: []
|
1506
|
+
end
|
1507
|
+
|
1462
1508
|
class GetProjectInput
|
1463
1509
|
attr_accessor domain_identifier: ::String
|
1464
1510
|
attr_accessor identifier: ::String
|
@@ -1569,6 +1615,24 @@ module Aws::DataZone
|
|
1569
1615
|
SENSITIVE: [:name]
|
1570
1616
|
end
|
1571
1617
|
|
1618
|
+
class GetTimeSeriesDataPointInput
|
1619
|
+
attr_accessor domain_identifier: ::String
|
1620
|
+
attr_accessor entity_identifier: ::String
|
1621
|
+
attr_accessor entity_type: ("ASSET" | "LISTING")
|
1622
|
+
attr_accessor form_name: ::String
|
1623
|
+
attr_accessor identifier: ::String
|
1624
|
+
SENSITIVE: []
|
1625
|
+
end
|
1626
|
+
|
1627
|
+
class GetTimeSeriesDataPointOutput
|
1628
|
+
attr_accessor domain_id: ::String
|
1629
|
+
attr_accessor entity_id: ::String
|
1630
|
+
attr_accessor entity_type: ("ASSET" | "LISTING")
|
1631
|
+
attr_accessor form: Types::TimeSeriesDataPointFormOutput
|
1632
|
+
attr_accessor form_name: ::String
|
1633
|
+
SENSITIVE: []
|
1634
|
+
end
|
1635
|
+
|
1572
1636
|
class GetUserProfileInput
|
1573
1637
|
attr_accessor domain_identifier: ::String
|
1574
1638
|
attr_accessor type: ("IAM" | "SSO")
|
@@ -1616,6 +1680,7 @@ module Aws::DataZone
|
|
1616
1680
|
end
|
1617
1681
|
|
1618
1682
|
class GlueRunConfigurationInput
|
1683
|
+
attr_accessor auto_import_data_quality_result: bool
|
1619
1684
|
attr_accessor data_access_role: ::String
|
1620
1685
|
attr_accessor relational_filter_configurations: ::Array[Types::RelationalFilterConfiguration]
|
1621
1686
|
SENSITIVE: []
|
@@ -1623,6 +1688,7 @@ module Aws::DataZone
|
|
1623
1688
|
|
1624
1689
|
class GlueRunConfigurationOutput
|
1625
1690
|
attr_accessor account_id: ::String
|
1691
|
+
attr_accessor auto_import_data_quality_result: bool
|
1626
1692
|
attr_accessor data_access_role: ::String
|
1627
1693
|
attr_accessor region: ::String
|
1628
1694
|
attr_accessor relational_filter_configurations: ::Array[Types::RelationalFilterConfiguration]
|
@@ -1822,6 +1888,21 @@ module Aws::DataZone
|
|
1822
1888
|
SENSITIVE: []
|
1823
1889
|
end
|
1824
1890
|
|
1891
|
+
class ListMetadataGenerationRunsInput
|
1892
|
+
attr_accessor domain_identifier: ::String
|
1893
|
+
attr_accessor max_results: ::Integer
|
1894
|
+
attr_accessor next_token: ::String
|
1895
|
+
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
1896
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS")
|
1897
|
+
SENSITIVE: []
|
1898
|
+
end
|
1899
|
+
|
1900
|
+
class ListMetadataGenerationRunsOutput
|
1901
|
+
attr_accessor items: ::Array[Types::MetadataGenerationRunItem]
|
1902
|
+
attr_accessor next_token: ::String
|
1903
|
+
SENSITIVE: []
|
1904
|
+
end
|
1905
|
+
|
1825
1906
|
class ListNotificationsInput
|
1826
1907
|
attr_accessor after_timestamp: ::Time
|
1827
1908
|
attr_accessor before_timestamp: ::Time
|
@@ -1956,6 +2037,24 @@ module Aws::DataZone
|
|
1956
2037
|
SENSITIVE: []
|
1957
2038
|
end
|
1958
2039
|
|
2040
|
+
class ListTimeSeriesDataPointsInput
|
2041
|
+
attr_accessor domain_identifier: ::String
|
2042
|
+
attr_accessor ended_at: ::Time
|
2043
|
+
attr_accessor entity_identifier: ::String
|
2044
|
+
attr_accessor entity_type: ("ASSET" | "LISTING")
|
2045
|
+
attr_accessor form_name: ::String
|
2046
|
+
attr_accessor max_results: ::Integer
|
2047
|
+
attr_accessor next_token: ::String
|
2048
|
+
attr_accessor started_at: ::Time
|
2049
|
+
SENSITIVE: []
|
2050
|
+
end
|
2051
|
+
|
2052
|
+
class ListTimeSeriesDataPointsOutput
|
2053
|
+
attr_accessor items: ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
2054
|
+
attr_accessor next_token: ::String
|
2055
|
+
SENSITIVE: []
|
2056
|
+
end
|
2057
|
+
|
1959
2058
|
class ListingItem
|
1960
2059
|
attr_accessor asset_listing: Types::AssetListing
|
1961
2060
|
attr_accessor unknown: untyped
|
@@ -2007,6 +2106,25 @@ module Aws::DataZone
|
|
2007
2106
|
end
|
2008
2107
|
end
|
2009
2108
|
|
2109
|
+
class MetadataGenerationRunItem
|
2110
|
+
attr_accessor created_at: ::Time
|
2111
|
+
attr_accessor created_by: ::String
|
2112
|
+
attr_accessor domain_id: ::String
|
2113
|
+
attr_accessor id: ::String
|
2114
|
+
attr_accessor owning_project_id: ::String
|
2115
|
+
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
2116
|
+
attr_accessor target: Types::MetadataGenerationRunTarget
|
2117
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS")
|
2118
|
+
SENSITIVE: []
|
2119
|
+
end
|
2120
|
+
|
2121
|
+
class MetadataGenerationRunTarget
|
2122
|
+
attr_accessor identifier: ::String
|
2123
|
+
attr_accessor revision: ::String
|
2124
|
+
attr_accessor type: ("ASSET")
|
2125
|
+
SENSITIVE: []
|
2126
|
+
end
|
2127
|
+
|
2010
2128
|
class Model
|
2011
2129
|
attr_accessor smithy: ::String
|
2012
2130
|
attr_accessor unknown: untyped
|
@@ -2040,6 +2158,23 @@ module Aws::DataZone
|
|
2040
2158
|
SENSITIVE: []
|
2041
2159
|
end
|
2042
2160
|
|
2161
|
+
class PostTimeSeriesDataPointsInput
|
2162
|
+
attr_accessor client_token: ::String
|
2163
|
+
attr_accessor domain_identifier: ::String
|
2164
|
+
attr_accessor entity_identifier: ::String
|
2165
|
+
attr_accessor entity_type: ("ASSET" | "LISTING")
|
2166
|
+
attr_accessor forms: ::Array[Types::TimeSeriesDataPointFormInput]
|
2167
|
+
SENSITIVE: []
|
2168
|
+
end
|
2169
|
+
|
2170
|
+
class PostTimeSeriesDataPointsOutput
|
2171
|
+
attr_accessor domain_id: ::String
|
2172
|
+
attr_accessor entity_id: ::String
|
2173
|
+
attr_accessor entity_type: ("ASSET" | "LISTING")
|
2174
|
+
attr_accessor forms: ::Array[Types::TimeSeriesDataPointFormOutput]
|
2175
|
+
SENSITIVE: []
|
2176
|
+
end
|
2177
|
+
|
2043
2178
|
class PredictionConfiguration
|
2044
2179
|
attr_accessor business_name_generation: Types::BusinessNameGenerationConfiguration
|
2045
2180
|
SENSITIVE: []
|
@@ -2285,7 +2420,7 @@ module Aws::DataZone
|
|
2285
2420
|
end
|
2286
2421
|
|
2287
2422
|
class SearchInput
|
2288
|
-
attr_accessor additional_attributes: ::Array[("FORMS")]
|
2423
|
+
attr_accessor additional_attributes: ::Array[("FORMS" | "TIME_SERIES_DATA_POINT_FORMS")]
|
2289
2424
|
attr_accessor domain_identifier: ::String
|
2290
2425
|
attr_accessor filters: Types::FilterClause
|
2291
2426
|
attr_accessor max_results: ::Integer
|
@@ -2319,7 +2454,7 @@ module Aws::DataZone
|
|
2319
2454
|
end
|
2320
2455
|
|
2321
2456
|
class SearchListingsInput
|
2322
|
-
attr_accessor additional_attributes: ::Array[("FORMS")]
|
2457
|
+
attr_accessor additional_attributes: ::Array[("FORMS" | "TIME_SERIES_DATA_POINT_FORMS")]
|
2323
2458
|
attr_accessor domain_identifier: ::String
|
2324
2459
|
attr_accessor filters: Types::FilterClause
|
2325
2460
|
attr_accessor max_results: ::Integer
|
@@ -2452,6 +2587,26 @@ module Aws::DataZone
|
|
2452
2587
|
SENSITIVE: []
|
2453
2588
|
end
|
2454
2589
|
|
2590
|
+
class StartMetadataGenerationRunInput
|
2591
|
+
attr_accessor client_token: ::String
|
2592
|
+
attr_accessor domain_identifier: ::String
|
2593
|
+
attr_accessor owning_project_identifier: ::String
|
2594
|
+
attr_accessor target: Types::MetadataGenerationRunTarget
|
2595
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS")
|
2596
|
+
SENSITIVE: []
|
2597
|
+
end
|
2598
|
+
|
2599
|
+
class StartMetadataGenerationRunOutput
|
2600
|
+
attr_accessor created_at: ::Time
|
2601
|
+
attr_accessor created_by: ::String
|
2602
|
+
attr_accessor domain_id: ::String
|
2603
|
+
attr_accessor id: ::String
|
2604
|
+
attr_accessor owning_project_id: ::String
|
2605
|
+
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
2606
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS")
|
2607
|
+
SENSITIVE: []
|
2608
|
+
end
|
2609
|
+
|
2455
2610
|
class SubscribedAsset
|
2456
2611
|
attr_accessor asset_id: ::String
|
2457
2612
|
attr_accessor asset_revision: ::String
|
@@ -2623,6 +2778,35 @@ module Aws::DataZone
|
|
2623
2778
|
SENSITIVE: []
|
2624
2779
|
end
|
2625
2780
|
|
2781
|
+
class TimeSeriesDataPointFormInput
|
2782
|
+
attr_accessor content: ::String
|
2783
|
+
attr_accessor form_name: ::String
|
2784
|
+
attr_accessor timestamp: ::Time
|
2785
|
+
attr_accessor type_identifier: ::String
|
2786
|
+
attr_accessor type_revision: ::String
|
2787
|
+
SENSITIVE: []
|
2788
|
+
end
|
2789
|
+
|
2790
|
+
class TimeSeriesDataPointFormOutput
|
2791
|
+
attr_accessor content: ::String
|
2792
|
+
attr_accessor form_name: ::String
|
2793
|
+
attr_accessor id: ::String
|
2794
|
+
attr_accessor timestamp: ::Time
|
2795
|
+
attr_accessor type_identifier: ::String
|
2796
|
+
attr_accessor type_revision: ::String
|
2797
|
+
SENSITIVE: []
|
2798
|
+
end
|
2799
|
+
|
2800
|
+
class TimeSeriesDataPointSummaryFormOutput
|
2801
|
+
attr_accessor content_summary: ::String
|
2802
|
+
attr_accessor form_name: ::String
|
2803
|
+
attr_accessor id: ::String
|
2804
|
+
attr_accessor timestamp: ::Time
|
2805
|
+
attr_accessor type_identifier: ::String
|
2806
|
+
attr_accessor type_revision: ::String
|
2807
|
+
SENSITIVE: []
|
2808
|
+
end
|
2809
|
+
|
2626
2810
|
class Topic
|
2627
2811
|
attr_accessor resource: Types::NotificationResource
|
2628
2812
|
attr_accessor role: ("PROJECT_OWNER" | "PROJECT_CONTRIBUTOR" | "PROJECT_VIEWER" | "DOMAIN_OWNER" | "PROJECT_SUBSCRIBER")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-datazone
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.193.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|