aws-sdk-datazone 1.3.0 → 1.5.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 +591 -7
- data/lib/aws-sdk-datazone/client_api.rb +342 -3
- data/lib/aws-sdk-datazone/endpoint_provider.rb +2 -2
- 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 +899 -18
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +161 -6
- data/sig/types.rbs +203 -3
- metadata +2 -2
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
|
{
|
@@ -569,10 +583,12 @@ module Aws
|
|
569
583
|
def created_by: () -> ::String
|
570
584
|
def description: () -> ::String
|
571
585
|
def domain_id: () -> ::String
|
586
|
+
def failure_reasons: () -> ::Array[Types::ProjectDeletionError]
|
572
587
|
def glossary_terms: () -> ::Array[::String]
|
573
588
|
def id: () -> ::String
|
574
589
|
def last_updated_at: () -> ::Time
|
575
590
|
def name: () -> ::String
|
591
|
+
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
|
576
592
|
end
|
577
593
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_project-instance_method
|
578
594
|
def create_project: (
|
@@ -780,7 +796,8 @@ module Aws
|
|
780
796
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_domain-instance_method
|
781
797
|
def delete_domain: (
|
782
798
|
?client_token: ::String,
|
783
|
-
identifier: ::String
|
799
|
+
identifier: ::String,
|
800
|
+
?skip_deletion_check: bool
|
784
801
|
) -> _DeleteDomainResponseSuccess
|
785
802
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDomainResponseSuccess
|
786
803
|
|
@@ -854,7 +871,8 @@ module Aws
|
|
854
871
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_project-instance_method
|
855
872
|
def delete_project: (
|
856
873
|
domain_identifier: ::String,
|
857
|
-
identifier: ::String
|
874
|
+
identifier: ::String,
|
875
|
+
?skip_deletion_check: bool
|
858
876
|
) -> _DeleteProjectResponseSuccess
|
859
877
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProjectResponseSuccess
|
860
878
|
|
@@ -908,6 +926,19 @@ module Aws
|
|
908
926
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
909
927
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
910
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
|
+
|
911
942
|
interface _GetAssetResponseSuccess
|
912
943
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetAssetOutput]
|
913
944
|
def created_at: () -> ::Time
|
@@ -920,6 +951,7 @@ module Aws
|
|
920
951
|
def forms_output: () -> ::Array[Types::FormOutput]
|
921
952
|
def glossary_terms: () -> ::Array[::String]
|
922
953
|
def id: () -> ::String
|
954
|
+
def latest_time_series_data_point_forms_output: () -> ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
923
955
|
def listing: () -> Types::AssetListingDetails
|
924
956
|
def name: () -> ::String
|
925
957
|
def owning_project_id: () -> ::String
|
@@ -1237,16 +1269,36 @@ module Aws
|
|
1237
1269
|
) -> _GetListingResponseSuccess
|
1238
1270
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetListingResponseSuccess
|
1239
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
|
+
|
1240
1290
|
interface _GetProjectResponseSuccess
|
1241
1291
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetProjectOutput]
|
1242
1292
|
def created_at: () -> ::Time
|
1243
1293
|
def created_by: () -> ::String
|
1244
1294
|
def description: () -> ::String
|
1245
1295
|
def domain_id: () -> ::String
|
1296
|
+
def failure_reasons: () -> ::Array[Types::ProjectDeletionError]
|
1246
1297
|
def glossary_terms: () -> ::Array[::String]
|
1247
1298
|
def id: () -> ::String
|
1248
1299
|
def last_updated_at: () -> ::Time
|
1249
1300
|
def name: () -> ::String
|
1301
|
+
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
|
1250
1302
|
end
|
1251
1303
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_project-instance_method
|
1252
1304
|
def get_project: (
|
@@ -1345,6 +1397,24 @@ module Aws
|
|
1345
1397
|
) -> _GetSubscriptionTargetResponseSuccess
|
1346
1398
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSubscriptionTargetResponseSuccess
|
1347
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
|
+
|
1348
1418
|
interface _GetUserProfileResponseSuccess
|
1349
1419
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetUserProfileOutput]
|
1350
1420
|
def details: () -> Types::UserProfileDetails
|
@@ -1503,6 +1573,21 @@ module Aws
|
|
1503
1573
|
) -> _ListEnvironmentsResponseSuccess
|
1504
1574
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentsResponseSuccess
|
1505
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
|
+
|
1506
1591
|
interface _ListNotificationsResponseSuccess
|
1507
1592
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListNotificationsOutput]
|
1508
1593
|
def next_token: () -> ::String
|
@@ -1637,6 +1722,49 @@ module Aws
|
|
1637
1722
|
) -> _ListTagsForResourceResponseSuccess
|
1638
1723
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
1639
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
|
+
|
1640
1768
|
interface _PutEnvironmentBlueprintConfigurationResponseSuccess
|
1641
1769
|
include ::Seahorse::Client::_ResponseSuccess[Types::PutEnvironmentBlueprintConfigurationOutput]
|
1642
1770
|
def created_at: () -> ::Time
|
@@ -1673,7 +1801,7 @@ module Aws
|
|
1673
1801
|
?reject_choices: Array[
|
1674
1802
|
{
|
1675
1803
|
prediction_choices: Array[::Integer]?,
|
1676
|
-
prediction_target: ::String
|
1804
|
+
prediction_target: ::String
|
1677
1805
|
},
|
1678
1806
|
],
|
1679
1807
|
?reject_rule: {
|
@@ -1737,7 +1865,7 @@ module Aws
|
|
1737
1865
|
end
|
1738
1866
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search-instance_method
|
1739
1867
|
def search: (
|
1740
|
-
?additional_attributes: Array[("FORMS")],
|
1868
|
+
?additional_attributes: Array[("FORMS" | "TIME_SERIES_DATA_POINT_FORMS")],
|
1741
1869
|
domain_identifier: ::String,
|
1742
1870
|
?filters: {
|
1743
1871
|
and: Array[
|
@@ -1791,7 +1919,7 @@ module Aws
|
|
1791
1919
|
end
|
1792
1920
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search_listings-instance_method
|
1793
1921
|
def search_listings: (
|
1794
|
-
?additional_attributes: Array[("FORMS")],
|
1922
|
+
?additional_attributes: Array[("FORMS" | "TIME_SERIES_DATA_POINT_FORMS")],
|
1795
1923
|
domain_identifier: ::String,
|
1796
1924
|
?filters: {
|
1797
1925
|
and: Array[
|
@@ -1897,6 +2025,30 @@ module Aws
|
|
1897
2025
|
) -> _StartDataSourceRunResponseSuccess
|
1898
2026
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDataSourceRunResponseSuccess
|
1899
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
|
+
|
1900
2052
|
interface _TagResourceResponseSuccess
|
1901
2053
|
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
1902
2054
|
end
|
@@ -1952,6 +2104,7 @@ module Aws
|
|
1952
2104
|
],
|
1953
2105
|
?configuration: {
|
1954
2106
|
glue_run_configuration: {
|
2107
|
+
auto_import_data_quality_result: bool?,
|
1955
2108
|
data_access_role: ::String?,
|
1956
2109
|
relational_filter_configurations: Array[
|
1957
2110
|
{
|
@@ -2166,10 +2319,12 @@ module Aws
|
|
2166
2319
|
def created_by: () -> ::String
|
2167
2320
|
def description: () -> ::String
|
2168
2321
|
def domain_id: () -> ::String
|
2322
|
+
def failure_reasons: () -> ::Array[Types::ProjectDeletionError]
|
2169
2323
|
def glossary_terms: () -> ::Array[::String]
|
2170
2324
|
def id: () -> ::String
|
2171
2325
|
def last_updated_at: () -> ::Time
|
2172
2326
|
def name: () -> ::String
|
2327
|
+
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
|
2173
2328
|
end
|
2174
2329
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_project-instance_method
|
2175
2330
|
def update_project: (
|