aws-sdk-datazone 1.2.0 → 1.4.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 +32 -1
- data/lib/aws-sdk-datazone/client_api.rb +19 -0
- data/lib/aws-sdk-datazone/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-datazone/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-datazone/types.rb +75 -5
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +2298 -0
- data/sig/errors.rbs +40 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +2978 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,2298 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module DataZone
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _AcceptPredictionsResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AcceptPredictionsOutput]
|
77
|
+
def asset_id: () -> ::String
|
78
|
+
def domain_id: () -> ::String
|
79
|
+
def revision: () -> ::String
|
80
|
+
end
|
81
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#accept_predictions-instance_method
|
82
|
+
def accept_predictions: (
|
83
|
+
?accept_choices: Array[
|
84
|
+
{
|
85
|
+
prediction_choice: ::Integer?,
|
86
|
+
prediction_target: ::String?
|
87
|
+
},
|
88
|
+
],
|
89
|
+
?accept_rule: {
|
90
|
+
rule: ("ALL" | "NONE")?,
|
91
|
+
threshold: ::Float?
|
92
|
+
},
|
93
|
+
?client_token: ::String,
|
94
|
+
domain_identifier: ::String,
|
95
|
+
identifier: ::String,
|
96
|
+
?revision: ::String
|
97
|
+
) -> _AcceptPredictionsResponseSuccess
|
98
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptPredictionsResponseSuccess
|
99
|
+
|
100
|
+
interface _AcceptSubscriptionRequestResponseSuccess
|
101
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AcceptSubscriptionRequestOutput]
|
102
|
+
def created_at: () -> ::Time
|
103
|
+
def created_by: () -> ::String
|
104
|
+
def decision_comment: () -> ::String
|
105
|
+
def domain_id: () -> ::String
|
106
|
+
def id: () -> ::String
|
107
|
+
def request_reason: () -> ::String
|
108
|
+
def reviewer_id: () -> ::String
|
109
|
+
def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED")
|
110
|
+
def subscribed_listings: () -> ::Array[Types::SubscribedListing]
|
111
|
+
def subscribed_principals: () -> ::Array[Types::SubscribedPrincipal]
|
112
|
+
def updated_at: () -> ::Time
|
113
|
+
def updated_by: () -> ::String
|
114
|
+
end
|
115
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#accept_subscription_request-instance_method
|
116
|
+
def accept_subscription_request: (
|
117
|
+
?decision_comment: ::String,
|
118
|
+
domain_identifier: ::String,
|
119
|
+
identifier: ::String
|
120
|
+
) -> _AcceptSubscriptionRequestResponseSuccess
|
121
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptSubscriptionRequestResponseSuccess
|
122
|
+
|
123
|
+
interface _CancelSubscriptionResponseSuccess
|
124
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelSubscriptionOutput]
|
125
|
+
def created_at: () -> ::Time
|
126
|
+
def created_by: () -> ::String
|
127
|
+
def domain_id: () -> ::String
|
128
|
+
def id: () -> ::String
|
129
|
+
def retain_permissions: () -> bool
|
130
|
+
def status: () -> ("APPROVED" | "REVOKED" | "CANCELLED")
|
131
|
+
def subscribed_listing: () -> Types::SubscribedListing
|
132
|
+
def subscribed_principal: () -> Types::SubscribedPrincipal
|
133
|
+
def subscription_request_id: () -> ::String
|
134
|
+
def updated_at: () -> ::Time
|
135
|
+
def updated_by: () -> ::String
|
136
|
+
end
|
137
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#cancel_subscription-instance_method
|
138
|
+
def cancel_subscription: (
|
139
|
+
domain_identifier: ::String,
|
140
|
+
identifier: ::String
|
141
|
+
) -> _CancelSubscriptionResponseSuccess
|
142
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelSubscriptionResponseSuccess
|
143
|
+
|
144
|
+
interface _CreateAssetResponseSuccess
|
145
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAssetOutput]
|
146
|
+
def created_at: () -> ::Time
|
147
|
+
def created_by: () -> ::String
|
148
|
+
def description: () -> ::String
|
149
|
+
def domain_id: () -> ::String
|
150
|
+
def external_identifier: () -> ::String
|
151
|
+
def first_revision_created_at: () -> ::Time
|
152
|
+
def first_revision_created_by: () -> ::String
|
153
|
+
def forms_output: () -> ::Array[Types::FormOutput]
|
154
|
+
def glossary_terms: () -> ::Array[::String]
|
155
|
+
def id: () -> ::String
|
156
|
+
def listing: () -> Types::AssetListingDetails
|
157
|
+
def name: () -> ::String
|
158
|
+
def owning_project_id: () -> ::String
|
159
|
+
def prediction_configuration: () -> Types::PredictionConfiguration
|
160
|
+
def read_only_forms_output: () -> ::Array[Types::FormOutput]
|
161
|
+
def revision: () -> ::String
|
162
|
+
def type_identifier: () -> ::String
|
163
|
+
def type_revision: () -> ::String
|
164
|
+
end
|
165
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_asset-instance_method
|
166
|
+
def create_asset: (
|
167
|
+
?client_token: ::String,
|
168
|
+
?description: ::String,
|
169
|
+
domain_identifier: ::String,
|
170
|
+
?external_identifier: ::String,
|
171
|
+
?forms_input: Array[
|
172
|
+
{
|
173
|
+
content: ::String?,
|
174
|
+
form_name: ::String,
|
175
|
+
type_identifier: ::String?,
|
176
|
+
type_revision: ::String?
|
177
|
+
},
|
178
|
+
],
|
179
|
+
?glossary_terms: Array[::String],
|
180
|
+
name: ::String,
|
181
|
+
owning_project_identifier: ::String,
|
182
|
+
?prediction_configuration: {
|
183
|
+
business_name_generation: {
|
184
|
+
enabled: bool?
|
185
|
+
}?
|
186
|
+
},
|
187
|
+
type_identifier: ::String,
|
188
|
+
?type_revision: ::String
|
189
|
+
) -> _CreateAssetResponseSuccess
|
190
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAssetResponseSuccess
|
191
|
+
|
192
|
+
interface _CreateAssetRevisionResponseSuccess
|
193
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAssetRevisionOutput]
|
194
|
+
def created_at: () -> ::Time
|
195
|
+
def created_by: () -> ::String
|
196
|
+
def description: () -> ::String
|
197
|
+
def domain_id: () -> ::String
|
198
|
+
def external_identifier: () -> ::String
|
199
|
+
def first_revision_created_at: () -> ::Time
|
200
|
+
def first_revision_created_by: () -> ::String
|
201
|
+
def forms_output: () -> ::Array[Types::FormOutput]
|
202
|
+
def glossary_terms: () -> ::Array[::String]
|
203
|
+
def id: () -> ::String
|
204
|
+
def listing: () -> Types::AssetListingDetails
|
205
|
+
def name: () -> ::String
|
206
|
+
def owning_project_id: () -> ::String
|
207
|
+
def prediction_configuration: () -> Types::PredictionConfiguration
|
208
|
+
def read_only_forms_output: () -> ::Array[Types::FormOutput]
|
209
|
+
def revision: () -> ::String
|
210
|
+
def type_identifier: () -> ::String
|
211
|
+
def type_revision: () -> ::String
|
212
|
+
end
|
213
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_asset_revision-instance_method
|
214
|
+
def create_asset_revision: (
|
215
|
+
?client_token: ::String,
|
216
|
+
?description: ::String,
|
217
|
+
domain_identifier: ::String,
|
218
|
+
?forms_input: Array[
|
219
|
+
{
|
220
|
+
content: ::String?,
|
221
|
+
form_name: ::String,
|
222
|
+
type_identifier: ::String?,
|
223
|
+
type_revision: ::String?
|
224
|
+
},
|
225
|
+
],
|
226
|
+
?glossary_terms: Array[::String],
|
227
|
+
identifier: ::String,
|
228
|
+
name: ::String,
|
229
|
+
?prediction_configuration: {
|
230
|
+
business_name_generation: {
|
231
|
+
enabled: bool?
|
232
|
+
}?
|
233
|
+
},
|
234
|
+
?type_revision: ::String
|
235
|
+
) -> _CreateAssetRevisionResponseSuccess
|
236
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAssetRevisionResponseSuccess
|
237
|
+
|
238
|
+
interface _CreateAssetTypeResponseSuccess
|
239
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAssetTypeOutput]
|
240
|
+
def created_at: () -> ::Time
|
241
|
+
def created_by: () -> ::String
|
242
|
+
def description: () -> ::String
|
243
|
+
def domain_id: () -> ::String
|
244
|
+
def forms_output: () -> ::Hash[::String, Types::FormEntryOutput]
|
245
|
+
def name: () -> ::String
|
246
|
+
def origin_domain_id: () -> ::String
|
247
|
+
def origin_project_id: () -> ::String
|
248
|
+
def owning_project_id: () -> ::String
|
249
|
+
def revision: () -> ::String
|
250
|
+
def updated_at: () -> ::Time
|
251
|
+
def updated_by: () -> ::String
|
252
|
+
end
|
253
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_asset_type-instance_method
|
254
|
+
def create_asset_type: (
|
255
|
+
?description: ::String,
|
256
|
+
domain_identifier: ::String,
|
257
|
+
forms_input: Hash[::String, {
|
258
|
+
required: bool?,
|
259
|
+
type_identifier: ::String,
|
260
|
+
type_revision: ::String
|
261
|
+
}],
|
262
|
+
name: ::String,
|
263
|
+
owning_project_identifier: ::String
|
264
|
+
) -> _CreateAssetTypeResponseSuccess
|
265
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAssetTypeResponseSuccess
|
266
|
+
|
267
|
+
interface _CreateDataSourceResponseSuccess
|
268
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataSourceOutput]
|
269
|
+
def asset_forms_output: () -> ::Array[Types::FormOutput]
|
270
|
+
def configuration: () -> Types::DataSourceConfigurationOutput
|
271
|
+
def created_at: () -> ::Time
|
272
|
+
def description: () -> ::String
|
273
|
+
def domain_id: () -> ::String
|
274
|
+
def enable_setting: () -> ("ENABLED" | "DISABLED")
|
275
|
+
def environment_id: () -> ::String
|
276
|
+
def error_message: () -> Types::DataSourceErrorMessage
|
277
|
+
def id: () -> ::String
|
278
|
+
def last_run_at: () -> ::Time
|
279
|
+
def last_run_error_message: () -> Types::DataSourceErrorMessage
|
280
|
+
def last_run_status: () -> ("REQUESTED" | "RUNNING" | "FAILED" | "PARTIALLY_SUCCEEDED" | "SUCCESS")
|
281
|
+
def name: () -> ::String
|
282
|
+
def project_id: () -> ::String
|
283
|
+
def publish_on_import: () -> bool
|
284
|
+
def recommendation: () -> Types::RecommendationConfiguration
|
285
|
+
def schedule: () -> Types::ScheduleConfiguration
|
286
|
+
def status: () -> ("CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION")
|
287
|
+
def type: () -> ::String
|
288
|
+
def updated_at: () -> ::Time
|
289
|
+
end
|
290
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_data_source-instance_method
|
291
|
+
def create_data_source: (
|
292
|
+
?asset_forms_input: Array[
|
293
|
+
{
|
294
|
+
content: ::String?,
|
295
|
+
form_name: ::String,
|
296
|
+
type_identifier: ::String?,
|
297
|
+
type_revision: ::String?
|
298
|
+
},
|
299
|
+
],
|
300
|
+
?client_token: ::String,
|
301
|
+
?configuration: {
|
302
|
+
glue_run_configuration: {
|
303
|
+
data_access_role: ::String?,
|
304
|
+
relational_filter_configurations: Array[
|
305
|
+
{
|
306
|
+
database_name: ::String,
|
307
|
+
filter_expressions: Array[
|
308
|
+
{
|
309
|
+
expression: ::String,
|
310
|
+
type: ("INCLUDE" | "EXCLUDE")
|
311
|
+
},
|
312
|
+
]?,
|
313
|
+
schema_name: ::String?
|
314
|
+
},
|
315
|
+
]
|
316
|
+
}?,
|
317
|
+
redshift_run_configuration: {
|
318
|
+
data_access_role: ::String?,
|
319
|
+
redshift_credential_configuration: {
|
320
|
+
secret_manager_arn: ::String
|
321
|
+
},
|
322
|
+
redshift_storage: {
|
323
|
+
redshift_cluster_source: {
|
324
|
+
cluster_name: ::String
|
325
|
+
}?,
|
326
|
+
redshift_serverless_source: {
|
327
|
+
workgroup_name: ::String
|
328
|
+
}?
|
329
|
+
},
|
330
|
+
relational_filter_configurations: Array[
|
331
|
+
{
|
332
|
+
database_name: ::String,
|
333
|
+
filter_expressions: Array[
|
334
|
+
{
|
335
|
+
expression: ::String,
|
336
|
+
type: ("INCLUDE" | "EXCLUDE")
|
337
|
+
},
|
338
|
+
]?,
|
339
|
+
schema_name: ::String?
|
340
|
+
},
|
341
|
+
]
|
342
|
+
}?
|
343
|
+
},
|
344
|
+
?description: ::String,
|
345
|
+
domain_identifier: ::String,
|
346
|
+
?enable_setting: ("ENABLED" | "DISABLED"),
|
347
|
+
environment_identifier: ::String,
|
348
|
+
name: ::String,
|
349
|
+
project_identifier: ::String,
|
350
|
+
?publish_on_import: bool,
|
351
|
+
?recommendation: {
|
352
|
+
enable_business_name_generation: bool?
|
353
|
+
},
|
354
|
+
?schedule: {
|
355
|
+
schedule: ::String?,
|
356
|
+
timezone: ("UTC" | "AFRICA_JOHANNESBURG" | "AMERICA_MONTREAL" | "AMERICA_SAO_PAULO" | "ASIA_BAHRAIN" | "ASIA_BANGKOK" | "ASIA_CALCUTTA" | "ASIA_DUBAI" | "ASIA_HONG_KONG" | "ASIA_JAKARTA" | "ASIA_KUALA_LUMPUR" | "ASIA_SEOUL" | "ASIA_SHANGHAI" | "ASIA_SINGAPORE" | "ASIA_TAIPEI" | "ASIA_TOKYO" | "AUSTRALIA_MELBOURNE" | "AUSTRALIA_SYDNEY" | "CANADA_CENTRAL" | "CET" | "CST6CDT" | "ETC_GMT" | "ETC_GMT0" | "ETC_GMT_ADD_0" | "ETC_GMT_ADD_1" | "ETC_GMT_ADD_10" | "ETC_GMT_ADD_11" | "ETC_GMT_ADD_12" | "ETC_GMT_ADD_2" | "ETC_GMT_ADD_3" | "ETC_GMT_ADD_4" | "ETC_GMT_ADD_5" | "ETC_GMT_ADD_6" | "ETC_GMT_ADD_7" | "ETC_GMT_ADD_8" | "ETC_GMT_ADD_9" | "ETC_GMT_NEG_0" | "ETC_GMT_NEG_1" | "ETC_GMT_NEG_10" | "ETC_GMT_NEG_11" | "ETC_GMT_NEG_12" | "ETC_GMT_NEG_13" | "ETC_GMT_NEG_14" | "ETC_GMT_NEG_2" | "ETC_GMT_NEG_3" | "ETC_GMT_NEG_4" | "ETC_GMT_NEG_5" | "ETC_GMT_NEG_6" | "ETC_GMT_NEG_7" | "ETC_GMT_NEG_8" | "ETC_GMT_NEG_9" | "EUROPE_DUBLIN" | "EUROPE_LONDON" | "EUROPE_PARIS" | "EUROPE_STOCKHOLM" | "EUROPE_ZURICH" | "ISRAEL" | "MEXICO_GENERAL" | "MST7MDT" | "PACIFIC_AUCKLAND" | "US_CENTRAL" | "US_EASTERN" | "US_MOUNTAIN" | "US_PACIFIC")?
|
357
|
+
},
|
358
|
+
type: ::String
|
359
|
+
) -> _CreateDataSourceResponseSuccess
|
360
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataSourceResponseSuccess
|
361
|
+
|
362
|
+
interface _CreateDomainResponseSuccess
|
363
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDomainOutput]
|
364
|
+
def arn: () -> ::String
|
365
|
+
def description: () -> ::String
|
366
|
+
def domain_execution_role: () -> ::String
|
367
|
+
def id: () -> ::String
|
368
|
+
def kms_key_identifier: () -> ::String
|
369
|
+
def name: () -> ::String
|
370
|
+
def portal_url: () -> ::String
|
371
|
+
def single_sign_on: () -> Types::SingleSignOn
|
372
|
+
def status: () -> ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
|
373
|
+
def tags: () -> ::Hash[::String, ::String]
|
374
|
+
end
|
375
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_domain-instance_method
|
376
|
+
def create_domain: (
|
377
|
+
?client_token: ::String,
|
378
|
+
?description: ::String,
|
379
|
+
domain_execution_role: ::String,
|
380
|
+
?kms_key_identifier: ::String,
|
381
|
+
name: ::String,
|
382
|
+
?single_sign_on: {
|
383
|
+
type: ("IAM_IDC" | "DISABLED")?,
|
384
|
+
user_assignment: ("AUTOMATIC" | "MANUAL")?
|
385
|
+
},
|
386
|
+
?tags: Hash[::String, ::String]
|
387
|
+
) -> _CreateDomainResponseSuccess
|
388
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainResponseSuccess
|
389
|
+
|
390
|
+
interface _CreateEnvironmentResponseSuccess
|
391
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateEnvironmentOutput]
|
392
|
+
def aws_account_id: () -> ::String
|
393
|
+
def aws_account_region: () -> ::String
|
394
|
+
def created_at: () -> ::Time
|
395
|
+
def created_by: () -> ::String
|
396
|
+
def deployment_properties: () -> Types::DeploymentProperties
|
397
|
+
def description: () -> ::String
|
398
|
+
def domain_id: () -> ::String
|
399
|
+
def environment_actions: () -> ::Array[Types::ConfigurableEnvironmentAction]
|
400
|
+
def environment_blueprint_id: () -> ::String
|
401
|
+
def environment_profile_id: () -> ::String
|
402
|
+
def glossary_terms: () -> ::Array[::String]
|
403
|
+
def id: () -> ::String
|
404
|
+
def last_deployment: () -> Types::Deployment
|
405
|
+
def name: () -> ::String
|
406
|
+
def project_id: () -> ::String
|
407
|
+
def provider: () -> ::String
|
408
|
+
def provisioned_resources: () -> ::Array[Types::Resource]
|
409
|
+
def provisioning_properties: () -> Types::ProvisioningProperties
|
410
|
+
def status: () -> ("ACTIVE" | "CREATING" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED" | "VALIDATION_FAILED" | "SUSPENDED" | "DISABLED" | "EXPIRED" | "DELETED" | "INACCESSIBLE")
|
411
|
+
def updated_at: () -> ::Time
|
412
|
+
def user_parameters: () -> ::Array[Types::CustomParameter]
|
413
|
+
end
|
414
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_environment-instance_method
|
415
|
+
def create_environment: (
|
416
|
+
?description: ::String,
|
417
|
+
domain_identifier: ::String,
|
418
|
+
environment_profile_identifier: ::String,
|
419
|
+
?glossary_terms: Array[::String],
|
420
|
+
name: ::String,
|
421
|
+
project_identifier: ::String,
|
422
|
+
?user_parameters: Array[
|
423
|
+
{
|
424
|
+
name: ::String?,
|
425
|
+
value: ::String?
|
426
|
+
},
|
427
|
+
]
|
428
|
+
) -> _CreateEnvironmentResponseSuccess
|
429
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentResponseSuccess
|
430
|
+
|
431
|
+
interface _CreateEnvironmentProfileResponseSuccess
|
432
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateEnvironmentProfileOutput]
|
433
|
+
def aws_account_id: () -> ::String
|
434
|
+
def aws_account_region: () -> ::String
|
435
|
+
def created_at: () -> ::Time
|
436
|
+
def created_by: () -> ::String
|
437
|
+
def description: () -> ::String
|
438
|
+
def domain_id: () -> ::String
|
439
|
+
def environment_blueprint_id: () -> ::String
|
440
|
+
def id: () -> ::String
|
441
|
+
def name: () -> ::String
|
442
|
+
def project_id: () -> ::String
|
443
|
+
def updated_at: () -> ::Time
|
444
|
+
def user_parameters: () -> ::Array[Types::CustomParameter]
|
445
|
+
end
|
446
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_environment_profile-instance_method
|
447
|
+
def create_environment_profile: (
|
448
|
+
?aws_account_id: ::String,
|
449
|
+
?aws_account_region: ::String,
|
450
|
+
?description: ::String,
|
451
|
+
domain_identifier: ::String,
|
452
|
+
environment_blueprint_identifier: ::String,
|
453
|
+
name: ::String,
|
454
|
+
project_identifier: ::String,
|
455
|
+
?user_parameters: Array[
|
456
|
+
{
|
457
|
+
name: ::String?,
|
458
|
+
value: ::String?
|
459
|
+
},
|
460
|
+
]
|
461
|
+
) -> _CreateEnvironmentProfileResponseSuccess
|
462
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentProfileResponseSuccess
|
463
|
+
|
464
|
+
interface _CreateFormTypeResponseSuccess
|
465
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateFormTypeOutput]
|
466
|
+
def description: () -> ::String
|
467
|
+
def domain_id: () -> ::String
|
468
|
+
def name: () -> ::String
|
469
|
+
def origin_domain_id: () -> ::String
|
470
|
+
def origin_project_id: () -> ::String
|
471
|
+
def owning_project_id: () -> ::String
|
472
|
+
def revision: () -> ::String
|
473
|
+
end
|
474
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_form_type-instance_method
|
475
|
+
def create_form_type: (
|
476
|
+
?description: ::String,
|
477
|
+
domain_identifier: ::String,
|
478
|
+
model: {
|
479
|
+
smithy: ::String?
|
480
|
+
},
|
481
|
+
name: ::String,
|
482
|
+
owning_project_identifier: ::String,
|
483
|
+
?status: ("ENABLED" | "DISABLED")
|
484
|
+
) -> _CreateFormTypeResponseSuccess
|
485
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFormTypeResponseSuccess
|
486
|
+
|
487
|
+
interface _CreateGlossaryResponseSuccess
|
488
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateGlossaryOutput]
|
489
|
+
def description: () -> ::String
|
490
|
+
def domain_id: () -> ::String
|
491
|
+
def id: () -> ::String
|
492
|
+
def name: () -> ::String
|
493
|
+
def owning_project_id: () -> ::String
|
494
|
+
def status: () -> ("DISABLED" | "ENABLED")
|
495
|
+
end
|
496
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_glossary-instance_method
|
497
|
+
def create_glossary: (
|
498
|
+
?client_token: ::String,
|
499
|
+
?description: ::String,
|
500
|
+
domain_identifier: ::String,
|
501
|
+
name: ::String,
|
502
|
+
owning_project_identifier: ::String,
|
503
|
+
?status: ("DISABLED" | "ENABLED")
|
504
|
+
) -> _CreateGlossaryResponseSuccess
|
505
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGlossaryResponseSuccess
|
506
|
+
|
507
|
+
interface _CreateGlossaryTermResponseSuccess
|
508
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateGlossaryTermOutput]
|
509
|
+
def domain_id: () -> ::String
|
510
|
+
def glossary_id: () -> ::String
|
511
|
+
def id: () -> ::String
|
512
|
+
def long_description: () -> ::String
|
513
|
+
def name: () -> ::String
|
514
|
+
def short_description: () -> ::String
|
515
|
+
def status: () -> ("ENABLED" | "DISABLED")
|
516
|
+
def term_relations: () -> Types::TermRelations
|
517
|
+
end
|
518
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_glossary_term-instance_method
|
519
|
+
def create_glossary_term: (
|
520
|
+
?client_token: ::String,
|
521
|
+
domain_identifier: ::String,
|
522
|
+
glossary_identifier: ::String,
|
523
|
+
?long_description: ::String,
|
524
|
+
name: ::String,
|
525
|
+
?short_description: ::String,
|
526
|
+
?status: ("ENABLED" | "DISABLED"),
|
527
|
+
?term_relations: {
|
528
|
+
classifies: Array[::String]?,
|
529
|
+
is_a: Array[::String]?
|
530
|
+
}
|
531
|
+
) -> _CreateGlossaryTermResponseSuccess
|
532
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGlossaryTermResponseSuccess
|
533
|
+
|
534
|
+
interface _CreateGroupProfileResponseSuccess
|
535
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateGroupProfileOutput]
|
536
|
+
def domain_id: () -> ::String
|
537
|
+
def group_name: () -> ::String
|
538
|
+
def id: () -> ::String
|
539
|
+
def status: () -> ("ASSIGNED" | "NOT_ASSIGNED")
|
540
|
+
end
|
541
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_group_profile-instance_method
|
542
|
+
def create_group_profile: (
|
543
|
+
?client_token: ::String,
|
544
|
+
domain_identifier: ::String,
|
545
|
+
group_identifier: ::String
|
546
|
+
) -> _CreateGroupProfileResponseSuccess
|
547
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGroupProfileResponseSuccess
|
548
|
+
|
549
|
+
interface _CreateListingChangeSetResponseSuccess
|
550
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateListingChangeSetOutput]
|
551
|
+
def listing_id: () -> ::String
|
552
|
+
def listing_revision: () -> ::String
|
553
|
+
def status: () -> ("CREATING" | "ACTIVE" | "INACTIVE")
|
554
|
+
end
|
555
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_listing_change_set-instance_method
|
556
|
+
def create_listing_change_set: (
|
557
|
+
action: ("PUBLISH" | "UNPUBLISH"),
|
558
|
+
?client_token: ::String,
|
559
|
+
domain_identifier: ::String,
|
560
|
+
entity_identifier: ::String,
|
561
|
+
?entity_revision: ::String,
|
562
|
+
entity_type: ("ASSET")
|
563
|
+
) -> _CreateListingChangeSetResponseSuccess
|
564
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateListingChangeSetResponseSuccess
|
565
|
+
|
566
|
+
interface _CreateProjectResponseSuccess
|
567
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateProjectOutput]
|
568
|
+
def created_at: () -> ::Time
|
569
|
+
def created_by: () -> ::String
|
570
|
+
def description: () -> ::String
|
571
|
+
def domain_id: () -> ::String
|
572
|
+
def failure_reasons: () -> ::Array[Types::ProjectDeletionError]
|
573
|
+
def glossary_terms: () -> ::Array[::String]
|
574
|
+
def id: () -> ::String
|
575
|
+
def last_updated_at: () -> ::Time
|
576
|
+
def name: () -> ::String
|
577
|
+
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
|
578
|
+
end
|
579
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_project-instance_method
|
580
|
+
def create_project: (
|
581
|
+
?description: ::String,
|
582
|
+
domain_identifier: ::String,
|
583
|
+
?glossary_terms: Array[::String],
|
584
|
+
name: ::String
|
585
|
+
) -> _CreateProjectResponseSuccess
|
586
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectResponseSuccess
|
587
|
+
|
588
|
+
interface _CreateProjectMembershipResponseSuccess
|
589
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateProjectMembershipOutput]
|
590
|
+
end
|
591
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_project_membership-instance_method
|
592
|
+
def create_project_membership: (
|
593
|
+
designation: ("PROJECT_OWNER" | "PROJECT_CONTRIBUTOR"),
|
594
|
+
domain_identifier: ::String,
|
595
|
+
member: {
|
596
|
+
group_identifier: ::String?,
|
597
|
+
user_identifier: ::String?
|
598
|
+
},
|
599
|
+
project_identifier: ::String
|
600
|
+
) -> _CreateProjectMembershipResponseSuccess
|
601
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectMembershipResponseSuccess
|
602
|
+
|
603
|
+
interface _CreateSubscriptionGrantResponseSuccess
|
604
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateSubscriptionGrantOutput]
|
605
|
+
def assets: () -> ::Array[Types::SubscribedAsset]
|
606
|
+
def created_at: () -> ::Time
|
607
|
+
def created_by: () -> ::String
|
608
|
+
def domain_id: () -> ::String
|
609
|
+
def granted_entity: () -> Types::GrantedEntity
|
610
|
+
def id: () -> ::String
|
611
|
+
def status: () -> ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
612
|
+
def subscription_id: () -> ::String
|
613
|
+
def subscription_target_id: () -> ::String
|
614
|
+
def updated_at: () -> ::Time
|
615
|
+
def updated_by: () -> ::String
|
616
|
+
end
|
617
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_subscription_grant-instance_method
|
618
|
+
def create_subscription_grant: (
|
619
|
+
?asset_target_names: Array[
|
620
|
+
{
|
621
|
+
asset_id: ::String,
|
622
|
+
target_name: ::String
|
623
|
+
},
|
624
|
+
],
|
625
|
+
?client_token: ::String,
|
626
|
+
domain_identifier: ::String,
|
627
|
+
environment_identifier: ::String,
|
628
|
+
granted_entity: {
|
629
|
+
listing: {
|
630
|
+
identifier: ::String,
|
631
|
+
revision: ::String
|
632
|
+
}?
|
633
|
+
},
|
634
|
+
subscription_target_identifier: ::String
|
635
|
+
) -> _CreateSubscriptionGrantResponseSuccess
|
636
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSubscriptionGrantResponseSuccess
|
637
|
+
|
638
|
+
interface _CreateSubscriptionRequestResponseSuccess
|
639
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateSubscriptionRequestOutput]
|
640
|
+
def created_at: () -> ::Time
|
641
|
+
def created_by: () -> ::String
|
642
|
+
def decision_comment: () -> ::String
|
643
|
+
def domain_id: () -> ::String
|
644
|
+
def id: () -> ::String
|
645
|
+
def request_reason: () -> ::String
|
646
|
+
def reviewer_id: () -> ::String
|
647
|
+
def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED")
|
648
|
+
def subscribed_listings: () -> ::Array[Types::SubscribedListing]
|
649
|
+
def subscribed_principals: () -> ::Array[Types::SubscribedPrincipal]
|
650
|
+
def updated_at: () -> ::Time
|
651
|
+
def updated_by: () -> ::String
|
652
|
+
end
|
653
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_subscription_request-instance_method
|
654
|
+
def create_subscription_request: (
|
655
|
+
?client_token: ::String,
|
656
|
+
domain_identifier: ::String,
|
657
|
+
request_reason: ::String,
|
658
|
+
subscribed_listings: Array[
|
659
|
+
{
|
660
|
+
identifier: ::String
|
661
|
+
},
|
662
|
+
],
|
663
|
+
subscribed_principals: Array[
|
664
|
+
{
|
665
|
+
project: {
|
666
|
+
identifier: ::String?
|
667
|
+
}?
|
668
|
+
},
|
669
|
+
]
|
670
|
+
) -> _CreateSubscriptionRequestResponseSuccess
|
671
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSubscriptionRequestResponseSuccess
|
672
|
+
|
673
|
+
interface _CreateSubscriptionTargetResponseSuccess
|
674
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateSubscriptionTargetOutput]
|
675
|
+
def applicable_asset_types: () -> ::Array[::String]
|
676
|
+
def authorized_principals: () -> ::Array[::String]
|
677
|
+
def created_at: () -> ::Time
|
678
|
+
def created_by: () -> ::String
|
679
|
+
def domain_id: () -> ::String
|
680
|
+
def environment_id: () -> ::String
|
681
|
+
def id: () -> ::String
|
682
|
+
def manage_access_role: () -> ::String
|
683
|
+
def name: () -> ::String
|
684
|
+
def project_id: () -> ::String
|
685
|
+
def provider: () -> ::String
|
686
|
+
def subscription_target_config: () -> ::Array[Types::SubscriptionTargetForm]
|
687
|
+
def type: () -> ::String
|
688
|
+
def updated_at: () -> ::Time
|
689
|
+
def updated_by: () -> ::String
|
690
|
+
end
|
691
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_subscription_target-instance_method
|
692
|
+
def create_subscription_target: (
|
693
|
+
applicable_asset_types: Array[::String],
|
694
|
+
authorized_principals: Array[::String],
|
695
|
+
?client_token: ::String,
|
696
|
+
domain_identifier: ::String,
|
697
|
+
environment_identifier: ::String,
|
698
|
+
manage_access_role: ::String,
|
699
|
+
name: ::String,
|
700
|
+
?provider: ::String,
|
701
|
+
subscription_target_config: Array[
|
702
|
+
{
|
703
|
+
content: ::String,
|
704
|
+
form_name: ::String
|
705
|
+
},
|
706
|
+
],
|
707
|
+
type: ::String
|
708
|
+
) -> _CreateSubscriptionTargetResponseSuccess
|
709
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSubscriptionTargetResponseSuccess
|
710
|
+
|
711
|
+
interface _CreateUserProfileResponseSuccess
|
712
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateUserProfileOutput]
|
713
|
+
def details: () -> Types::UserProfileDetails
|
714
|
+
def domain_id: () -> ::String
|
715
|
+
def id: () -> ::String
|
716
|
+
def status: () -> ("ASSIGNED" | "NOT_ASSIGNED" | "ACTIVATED" | "DEACTIVATED")
|
717
|
+
def type: () -> ("IAM" | "SSO")
|
718
|
+
end
|
719
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_user_profile-instance_method
|
720
|
+
def create_user_profile: (
|
721
|
+
?client_token: ::String,
|
722
|
+
domain_identifier: ::String,
|
723
|
+
user_identifier: ::String,
|
724
|
+
?user_type: ("IAM_USER" | "IAM_ROLE" | "SSO_USER")
|
725
|
+
) -> _CreateUserProfileResponseSuccess
|
726
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserProfileResponseSuccess
|
727
|
+
|
728
|
+
interface _DeleteAssetResponseSuccess
|
729
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAssetOutput]
|
730
|
+
end
|
731
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_asset-instance_method
|
732
|
+
def delete_asset: (
|
733
|
+
domain_identifier: ::String,
|
734
|
+
identifier: ::String
|
735
|
+
) -> _DeleteAssetResponseSuccess
|
736
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAssetResponseSuccess
|
737
|
+
|
738
|
+
interface _DeleteAssetTypeResponseSuccess
|
739
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAssetTypeOutput]
|
740
|
+
end
|
741
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_asset_type-instance_method
|
742
|
+
def delete_asset_type: (
|
743
|
+
domain_identifier: ::String,
|
744
|
+
identifier: ::String
|
745
|
+
) -> _DeleteAssetTypeResponseSuccess
|
746
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAssetTypeResponseSuccess
|
747
|
+
|
748
|
+
interface _DeleteDataSourceResponseSuccess
|
749
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataSourceOutput]
|
750
|
+
def asset_forms_output: () -> ::Array[Types::FormOutput]
|
751
|
+
def configuration: () -> Types::DataSourceConfigurationOutput
|
752
|
+
def created_at: () -> ::Time
|
753
|
+
def description: () -> ::String
|
754
|
+
def domain_id: () -> ::String
|
755
|
+
def enable_setting: () -> ("ENABLED" | "DISABLED")
|
756
|
+
def environment_id: () -> ::String
|
757
|
+
def error_message: () -> Types::DataSourceErrorMessage
|
758
|
+
def id: () -> ::String
|
759
|
+
def last_run_at: () -> ::Time
|
760
|
+
def last_run_error_message: () -> Types::DataSourceErrorMessage
|
761
|
+
def last_run_status: () -> ("REQUESTED" | "RUNNING" | "FAILED" | "PARTIALLY_SUCCEEDED" | "SUCCESS")
|
762
|
+
def name: () -> ::String
|
763
|
+
def project_id: () -> ::String
|
764
|
+
def publish_on_import: () -> bool
|
765
|
+
def schedule: () -> Types::ScheduleConfiguration
|
766
|
+
def status: () -> ("CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION")
|
767
|
+
def type: () -> ::String
|
768
|
+
def updated_at: () -> ::Time
|
769
|
+
end
|
770
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_data_source-instance_method
|
771
|
+
def delete_data_source: (
|
772
|
+
?client_token: ::String,
|
773
|
+
domain_identifier: ::String,
|
774
|
+
identifier: ::String
|
775
|
+
) -> _DeleteDataSourceResponseSuccess
|
776
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataSourceResponseSuccess
|
777
|
+
|
778
|
+
interface _DeleteDomainResponseSuccess
|
779
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDomainOutput]
|
780
|
+
def status: () -> ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
|
781
|
+
end
|
782
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_domain-instance_method
|
783
|
+
def delete_domain: (
|
784
|
+
?client_token: ::String,
|
785
|
+
identifier: ::String,
|
786
|
+
?skip_deletion_check: bool
|
787
|
+
) -> _DeleteDomainResponseSuccess
|
788
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDomainResponseSuccess
|
789
|
+
|
790
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_environment-instance_method
|
791
|
+
def delete_environment: (
|
792
|
+
domain_identifier: ::String,
|
793
|
+
identifier: ::String
|
794
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
795
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
796
|
+
|
797
|
+
interface _DeleteEnvironmentBlueprintConfigurationResponseSuccess
|
798
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEnvironmentBlueprintConfigurationOutput]
|
799
|
+
end
|
800
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_environment_blueprint_configuration-instance_method
|
801
|
+
def delete_environment_blueprint_configuration: (
|
802
|
+
domain_identifier: ::String,
|
803
|
+
environment_blueprint_identifier: ::String
|
804
|
+
) -> _DeleteEnvironmentBlueprintConfigurationResponseSuccess
|
805
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEnvironmentBlueprintConfigurationResponseSuccess
|
806
|
+
|
807
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_environment_profile-instance_method
|
808
|
+
def delete_environment_profile: (
|
809
|
+
domain_identifier: ::String,
|
810
|
+
identifier: ::String
|
811
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
812
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
813
|
+
|
814
|
+
interface _DeleteFormTypeResponseSuccess
|
815
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteFormTypeOutput]
|
816
|
+
end
|
817
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_form_type-instance_method
|
818
|
+
def delete_form_type: (
|
819
|
+
domain_identifier: ::String,
|
820
|
+
form_type_identifier: ::String
|
821
|
+
) -> _DeleteFormTypeResponseSuccess
|
822
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteFormTypeResponseSuccess
|
823
|
+
|
824
|
+
interface _DeleteGlossaryResponseSuccess
|
825
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGlossaryOutput]
|
826
|
+
end
|
827
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_glossary-instance_method
|
828
|
+
def delete_glossary: (
|
829
|
+
domain_identifier: ::String,
|
830
|
+
identifier: ::String
|
831
|
+
) -> _DeleteGlossaryResponseSuccess
|
832
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGlossaryResponseSuccess
|
833
|
+
|
834
|
+
interface _DeleteGlossaryTermResponseSuccess
|
835
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGlossaryTermOutput]
|
836
|
+
end
|
837
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_glossary_term-instance_method
|
838
|
+
def delete_glossary_term: (
|
839
|
+
domain_identifier: ::String,
|
840
|
+
identifier: ::String
|
841
|
+
) -> _DeleteGlossaryTermResponseSuccess
|
842
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGlossaryTermResponseSuccess
|
843
|
+
|
844
|
+
interface _DeleteListingResponseSuccess
|
845
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteListingOutput]
|
846
|
+
end
|
847
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_listing-instance_method
|
848
|
+
def delete_listing: (
|
849
|
+
domain_identifier: ::String,
|
850
|
+
identifier: ::String
|
851
|
+
) -> _DeleteListingResponseSuccess
|
852
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteListingResponseSuccess
|
853
|
+
|
854
|
+
interface _DeleteProjectResponseSuccess
|
855
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteProjectOutput]
|
856
|
+
end
|
857
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_project-instance_method
|
858
|
+
def delete_project: (
|
859
|
+
domain_identifier: ::String,
|
860
|
+
identifier: ::String,
|
861
|
+
?skip_deletion_check: bool
|
862
|
+
) -> _DeleteProjectResponseSuccess
|
863
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProjectResponseSuccess
|
864
|
+
|
865
|
+
interface _DeleteProjectMembershipResponseSuccess
|
866
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteProjectMembershipOutput]
|
867
|
+
end
|
868
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_project_membership-instance_method
|
869
|
+
def delete_project_membership: (
|
870
|
+
domain_identifier: ::String,
|
871
|
+
member: {
|
872
|
+
group_identifier: ::String?,
|
873
|
+
user_identifier: ::String?
|
874
|
+
},
|
875
|
+
project_identifier: ::String
|
876
|
+
) -> _DeleteProjectMembershipResponseSuccess
|
877
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProjectMembershipResponseSuccess
|
878
|
+
|
879
|
+
interface _DeleteSubscriptionGrantResponseSuccess
|
880
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSubscriptionGrantOutput]
|
881
|
+
def assets: () -> ::Array[Types::SubscribedAsset]
|
882
|
+
def created_at: () -> ::Time
|
883
|
+
def created_by: () -> ::String
|
884
|
+
def domain_id: () -> ::String
|
885
|
+
def granted_entity: () -> Types::GrantedEntity
|
886
|
+
def id: () -> ::String
|
887
|
+
def status: () -> ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
888
|
+
def subscription_id: () -> ::String
|
889
|
+
def subscription_target_id: () -> ::String
|
890
|
+
def updated_at: () -> ::Time
|
891
|
+
def updated_by: () -> ::String
|
892
|
+
end
|
893
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_subscription_grant-instance_method
|
894
|
+
def delete_subscription_grant: (
|
895
|
+
domain_identifier: ::String,
|
896
|
+
identifier: ::String
|
897
|
+
) -> _DeleteSubscriptionGrantResponseSuccess
|
898
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSubscriptionGrantResponseSuccess
|
899
|
+
|
900
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_subscription_request-instance_method
|
901
|
+
def delete_subscription_request: (
|
902
|
+
domain_identifier: ::String,
|
903
|
+
identifier: ::String
|
904
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
905
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
906
|
+
|
907
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_subscription_target-instance_method
|
908
|
+
def delete_subscription_target: (
|
909
|
+
domain_identifier: ::String,
|
910
|
+
environment_identifier: ::String,
|
911
|
+
identifier: ::String
|
912
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
913
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
914
|
+
|
915
|
+
interface _GetAssetResponseSuccess
|
916
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAssetOutput]
|
917
|
+
def created_at: () -> ::Time
|
918
|
+
def created_by: () -> ::String
|
919
|
+
def description: () -> ::String
|
920
|
+
def domain_id: () -> ::String
|
921
|
+
def external_identifier: () -> ::String
|
922
|
+
def first_revision_created_at: () -> ::Time
|
923
|
+
def first_revision_created_by: () -> ::String
|
924
|
+
def forms_output: () -> ::Array[Types::FormOutput]
|
925
|
+
def glossary_terms: () -> ::Array[::String]
|
926
|
+
def id: () -> ::String
|
927
|
+
def listing: () -> Types::AssetListingDetails
|
928
|
+
def name: () -> ::String
|
929
|
+
def owning_project_id: () -> ::String
|
930
|
+
def read_only_forms_output: () -> ::Array[Types::FormOutput]
|
931
|
+
def revision: () -> ::String
|
932
|
+
def type_identifier: () -> ::String
|
933
|
+
def type_revision: () -> ::String
|
934
|
+
end
|
935
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_asset-instance_method
|
936
|
+
def get_asset: (
|
937
|
+
domain_identifier: ::String,
|
938
|
+
identifier: ::String,
|
939
|
+
?revision: ::String
|
940
|
+
) -> _GetAssetResponseSuccess
|
941
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssetResponseSuccess
|
942
|
+
|
943
|
+
interface _GetAssetTypeResponseSuccess
|
944
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAssetTypeOutput]
|
945
|
+
def created_at: () -> ::Time
|
946
|
+
def created_by: () -> ::String
|
947
|
+
def description: () -> ::String
|
948
|
+
def domain_id: () -> ::String
|
949
|
+
def forms_output: () -> ::Hash[::String, Types::FormEntryOutput]
|
950
|
+
def name: () -> ::String
|
951
|
+
def origin_domain_id: () -> ::String
|
952
|
+
def origin_project_id: () -> ::String
|
953
|
+
def owning_project_id: () -> ::String
|
954
|
+
def revision: () -> ::String
|
955
|
+
def updated_at: () -> ::Time
|
956
|
+
def updated_by: () -> ::String
|
957
|
+
end
|
958
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_asset_type-instance_method
|
959
|
+
def get_asset_type: (
|
960
|
+
domain_identifier: ::String,
|
961
|
+
identifier: ::String,
|
962
|
+
?revision: ::String
|
963
|
+
) -> _GetAssetTypeResponseSuccess
|
964
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssetTypeResponseSuccess
|
965
|
+
|
966
|
+
interface _GetDataSourceResponseSuccess
|
967
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataSourceOutput]
|
968
|
+
def asset_forms_output: () -> ::Array[Types::FormOutput]
|
969
|
+
def configuration: () -> Types::DataSourceConfigurationOutput
|
970
|
+
def created_at: () -> ::Time
|
971
|
+
def description: () -> ::String
|
972
|
+
def domain_id: () -> ::String
|
973
|
+
def enable_setting: () -> ("ENABLED" | "DISABLED")
|
974
|
+
def environment_id: () -> ::String
|
975
|
+
def error_message: () -> Types::DataSourceErrorMessage
|
976
|
+
def id: () -> ::String
|
977
|
+
def last_run_asset_count: () -> ::Integer
|
978
|
+
def last_run_at: () -> ::Time
|
979
|
+
def last_run_error_message: () -> Types::DataSourceErrorMessage
|
980
|
+
def last_run_status: () -> ("REQUESTED" | "RUNNING" | "FAILED" | "PARTIALLY_SUCCEEDED" | "SUCCESS")
|
981
|
+
def name: () -> ::String
|
982
|
+
def project_id: () -> ::String
|
983
|
+
def publish_on_import: () -> bool
|
984
|
+
def recommendation: () -> Types::RecommendationConfiguration
|
985
|
+
def schedule: () -> Types::ScheduleConfiguration
|
986
|
+
def status: () -> ("CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION")
|
987
|
+
def type: () -> ::String
|
988
|
+
def updated_at: () -> ::Time
|
989
|
+
end
|
990
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_data_source-instance_method
|
991
|
+
def get_data_source: (
|
992
|
+
domain_identifier: ::String,
|
993
|
+
identifier: ::String
|
994
|
+
) -> _GetDataSourceResponseSuccess
|
995
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataSourceResponseSuccess
|
996
|
+
|
997
|
+
interface _GetDataSourceRunResponseSuccess
|
998
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataSourceRunOutput]
|
999
|
+
def created_at: () -> ::Time
|
1000
|
+
def data_source_configuration_snapshot: () -> ::String
|
1001
|
+
def data_source_id: () -> ::String
|
1002
|
+
def domain_id: () -> ::String
|
1003
|
+
def error_message: () -> Types::DataSourceErrorMessage
|
1004
|
+
def id: () -> ::String
|
1005
|
+
def project_id: () -> ::String
|
1006
|
+
def run_statistics_for_assets: () -> Types::RunStatisticsForAssets
|
1007
|
+
def started_at: () -> ::Time
|
1008
|
+
def status: () -> ("REQUESTED" | "RUNNING" | "FAILED" | "PARTIALLY_SUCCEEDED" | "SUCCESS")
|
1009
|
+
def stopped_at: () -> ::Time
|
1010
|
+
def type: () -> ("PRIORITIZED" | "SCHEDULED")
|
1011
|
+
def updated_at: () -> ::Time
|
1012
|
+
end
|
1013
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_data_source_run-instance_method
|
1014
|
+
def get_data_source_run: (
|
1015
|
+
domain_identifier: ::String,
|
1016
|
+
identifier: ::String
|
1017
|
+
) -> _GetDataSourceRunResponseSuccess
|
1018
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataSourceRunResponseSuccess
|
1019
|
+
|
1020
|
+
interface _GetDomainResponseSuccess
|
1021
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDomainOutput]
|
1022
|
+
def arn: () -> ::String
|
1023
|
+
def created_at: () -> ::Time
|
1024
|
+
def description: () -> ::String
|
1025
|
+
def domain_execution_role: () -> ::String
|
1026
|
+
def id: () -> ::String
|
1027
|
+
def kms_key_identifier: () -> ::String
|
1028
|
+
def last_updated_at: () -> ::Time
|
1029
|
+
def name: () -> ::String
|
1030
|
+
def portal_url: () -> ::String
|
1031
|
+
def single_sign_on: () -> Types::SingleSignOn
|
1032
|
+
def status: () -> ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
|
1033
|
+
def tags: () -> ::Hash[::String, ::String]
|
1034
|
+
end
|
1035
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_domain-instance_method
|
1036
|
+
def get_domain: (
|
1037
|
+
identifier: ::String
|
1038
|
+
) -> _GetDomainResponseSuccess
|
1039
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainResponseSuccess
|
1040
|
+
|
1041
|
+
interface _GetEnvironmentResponseSuccess
|
1042
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentOutput]
|
1043
|
+
def aws_account_id: () -> ::String
|
1044
|
+
def aws_account_region: () -> ::String
|
1045
|
+
def created_at: () -> ::Time
|
1046
|
+
def created_by: () -> ::String
|
1047
|
+
def deployment_properties: () -> Types::DeploymentProperties
|
1048
|
+
def description: () -> ::String
|
1049
|
+
def domain_id: () -> ::String
|
1050
|
+
def environment_actions: () -> ::Array[Types::ConfigurableEnvironmentAction]
|
1051
|
+
def environment_blueprint_id: () -> ::String
|
1052
|
+
def environment_profile_id: () -> ::String
|
1053
|
+
def glossary_terms: () -> ::Array[::String]
|
1054
|
+
def id: () -> ::String
|
1055
|
+
def last_deployment: () -> Types::Deployment
|
1056
|
+
def name: () -> ::String
|
1057
|
+
def project_id: () -> ::String
|
1058
|
+
def provider: () -> ::String
|
1059
|
+
def provisioned_resources: () -> ::Array[Types::Resource]
|
1060
|
+
def provisioning_properties: () -> Types::ProvisioningProperties
|
1061
|
+
def status: () -> ("ACTIVE" | "CREATING" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED" | "VALIDATION_FAILED" | "SUSPENDED" | "DISABLED" | "EXPIRED" | "DELETED" | "INACCESSIBLE")
|
1062
|
+
def updated_at: () -> ::Time
|
1063
|
+
def user_parameters: () -> ::Array[Types::CustomParameter]
|
1064
|
+
end
|
1065
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_environment-instance_method
|
1066
|
+
def get_environment: (
|
1067
|
+
domain_identifier: ::String,
|
1068
|
+
identifier: ::String
|
1069
|
+
) -> _GetEnvironmentResponseSuccess
|
1070
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentResponseSuccess
|
1071
|
+
|
1072
|
+
interface _GetEnvironmentBlueprintResponseSuccess
|
1073
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentBlueprintOutput]
|
1074
|
+
def created_at: () -> ::Time
|
1075
|
+
def deployment_properties: () -> Types::DeploymentProperties
|
1076
|
+
def description: () -> ::String
|
1077
|
+
def glossary_terms: () -> ::Array[::String]
|
1078
|
+
def id: () -> ::String
|
1079
|
+
def name: () -> ::String
|
1080
|
+
def provider: () -> ::String
|
1081
|
+
def provisioning_properties: () -> Types::ProvisioningProperties
|
1082
|
+
def updated_at: () -> ::Time
|
1083
|
+
def user_parameters: () -> ::Array[Types::CustomParameter]
|
1084
|
+
end
|
1085
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_environment_blueprint-instance_method
|
1086
|
+
def get_environment_blueprint: (
|
1087
|
+
domain_identifier: ::String,
|
1088
|
+
identifier: ::String
|
1089
|
+
) -> _GetEnvironmentBlueprintResponseSuccess
|
1090
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentBlueprintResponseSuccess
|
1091
|
+
|
1092
|
+
interface _GetEnvironmentBlueprintConfigurationResponseSuccess
|
1093
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentBlueprintConfigurationOutput]
|
1094
|
+
def created_at: () -> ::Time
|
1095
|
+
def domain_id: () -> ::String
|
1096
|
+
def enabled_regions: () -> ::Array[::String]
|
1097
|
+
def environment_blueprint_id: () -> ::String
|
1098
|
+
def manage_access_role_arn: () -> ::String
|
1099
|
+
def provisioning_role_arn: () -> ::String
|
1100
|
+
def regional_parameters: () -> ::Hash[::String, ::Hash[::String, ::String]]
|
1101
|
+
def updated_at: () -> ::Time
|
1102
|
+
end
|
1103
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_environment_blueprint_configuration-instance_method
|
1104
|
+
def get_environment_blueprint_configuration: (
|
1105
|
+
domain_identifier: ::String,
|
1106
|
+
environment_blueprint_identifier: ::String
|
1107
|
+
) -> _GetEnvironmentBlueprintConfigurationResponseSuccess
|
1108
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentBlueprintConfigurationResponseSuccess
|
1109
|
+
|
1110
|
+
interface _GetEnvironmentProfileResponseSuccess
|
1111
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentProfileOutput]
|
1112
|
+
def aws_account_id: () -> ::String
|
1113
|
+
def aws_account_region: () -> ::String
|
1114
|
+
def created_at: () -> ::Time
|
1115
|
+
def created_by: () -> ::String
|
1116
|
+
def description: () -> ::String
|
1117
|
+
def domain_id: () -> ::String
|
1118
|
+
def environment_blueprint_id: () -> ::String
|
1119
|
+
def id: () -> ::String
|
1120
|
+
def name: () -> ::String
|
1121
|
+
def project_id: () -> ::String
|
1122
|
+
def updated_at: () -> ::Time
|
1123
|
+
def user_parameters: () -> ::Array[Types::CustomParameter]
|
1124
|
+
end
|
1125
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_environment_profile-instance_method
|
1126
|
+
def get_environment_profile: (
|
1127
|
+
domain_identifier: ::String,
|
1128
|
+
identifier: ::String
|
1129
|
+
) -> _GetEnvironmentProfileResponseSuccess
|
1130
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentProfileResponseSuccess
|
1131
|
+
|
1132
|
+
interface _GetFormTypeResponseSuccess
|
1133
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetFormTypeOutput]
|
1134
|
+
def created_at: () -> ::Time
|
1135
|
+
def created_by: () -> ::String
|
1136
|
+
def description: () -> ::String
|
1137
|
+
def domain_id: () -> ::String
|
1138
|
+
def imports: () -> ::Array[Types::Import]
|
1139
|
+
def model: () -> Types::Model
|
1140
|
+
def name: () -> ::String
|
1141
|
+
def origin_domain_id: () -> ::String
|
1142
|
+
def origin_project_id: () -> ::String
|
1143
|
+
def owning_project_id: () -> ::String
|
1144
|
+
def revision: () -> ::String
|
1145
|
+
def status: () -> ("ENABLED" | "DISABLED")
|
1146
|
+
end
|
1147
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_form_type-instance_method
|
1148
|
+
def get_form_type: (
|
1149
|
+
domain_identifier: ::String,
|
1150
|
+
form_type_identifier: ::String,
|
1151
|
+
?revision: ::String
|
1152
|
+
) -> _GetFormTypeResponseSuccess
|
1153
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFormTypeResponseSuccess
|
1154
|
+
|
1155
|
+
interface _GetGlossaryResponseSuccess
|
1156
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetGlossaryOutput]
|
1157
|
+
def created_at: () -> ::Time
|
1158
|
+
def created_by: () -> ::String
|
1159
|
+
def description: () -> ::String
|
1160
|
+
def domain_id: () -> ::String
|
1161
|
+
def id: () -> ::String
|
1162
|
+
def name: () -> ::String
|
1163
|
+
def owning_project_id: () -> ::String
|
1164
|
+
def status: () -> ("DISABLED" | "ENABLED")
|
1165
|
+
def updated_at: () -> ::Time
|
1166
|
+
def updated_by: () -> ::String
|
1167
|
+
end
|
1168
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_glossary-instance_method
|
1169
|
+
def get_glossary: (
|
1170
|
+
domain_identifier: ::String,
|
1171
|
+
identifier: ::String
|
1172
|
+
) -> _GetGlossaryResponseSuccess
|
1173
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGlossaryResponseSuccess
|
1174
|
+
|
1175
|
+
interface _GetGlossaryTermResponseSuccess
|
1176
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetGlossaryTermOutput]
|
1177
|
+
def created_at: () -> ::Time
|
1178
|
+
def created_by: () -> ::String
|
1179
|
+
def domain_id: () -> ::String
|
1180
|
+
def glossary_id: () -> ::String
|
1181
|
+
def id: () -> ::String
|
1182
|
+
def long_description: () -> ::String
|
1183
|
+
def name: () -> ::String
|
1184
|
+
def short_description: () -> ::String
|
1185
|
+
def status: () -> ("ENABLED" | "DISABLED")
|
1186
|
+
def term_relations: () -> Types::TermRelations
|
1187
|
+
def updated_at: () -> ::Time
|
1188
|
+
def updated_by: () -> ::String
|
1189
|
+
end
|
1190
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_glossary_term-instance_method
|
1191
|
+
def get_glossary_term: (
|
1192
|
+
domain_identifier: ::String,
|
1193
|
+
identifier: ::String
|
1194
|
+
) -> _GetGlossaryTermResponseSuccess
|
1195
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGlossaryTermResponseSuccess
|
1196
|
+
|
1197
|
+
interface _GetGroupProfileResponseSuccess
|
1198
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetGroupProfileOutput]
|
1199
|
+
def domain_id: () -> ::String
|
1200
|
+
def group_name: () -> ::String
|
1201
|
+
def id: () -> ::String
|
1202
|
+
def status: () -> ("ASSIGNED" | "NOT_ASSIGNED")
|
1203
|
+
end
|
1204
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_group_profile-instance_method
|
1205
|
+
def get_group_profile: (
|
1206
|
+
domain_identifier: ::String,
|
1207
|
+
group_identifier: ::String
|
1208
|
+
) -> _GetGroupProfileResponseSuccess
|
1209
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGroupProfileResponseSuccess
|
1210
|
+
|
1211
|
+
interface _GetIamPortalLoginUrlResponseSuccess
|
1212
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetIamPortalLoginUrlOutput]
|
1213
|
+
def auth_code_url: () -> ::String
|
1214
|
+
def user_profile_id: () -> ::String
|
1215
|
+
end
|
1216
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_iam_portal_login_url-instance_method
|
1217
|
+
def get_iam_portal_login_url: (
|
1218
|
+
domain_identifier: ::String
|
1219
|
+
) -> _GetIamPortalLoginUrlResponseSuccess
|
1220
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIamPortalLoginUrlResponseSuccess
|
1221
|
+
|
1222
|
+
interface _GetListingResponseSuccess
|
1223
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetListingOutput]
|
1224
|
+
def created_at: () -> ::Time
|
1225
|
+
def created_by: () -> ::String
|
1226
|
+
def description: () -> ::String
|
1227
|
+
def domain_id: () -> ::String
|
1228
|
+
def id: () -> ::String
|
1229
|
+
def item: () -> Types::ListingItem
|
1230
|
+
def listing_revision: () -> ::String
|
1231
|
+
def name: () -> ::String
|
1232
|
+
def status: () -> ("CREATING" | "ACTIVE" | "INACTIVE")
|
1233
|
+
def updated_at: () -> ::Time
|
1234
|
+
def updated_by: () -> ::String
|
1235
|
+
end
|
1236
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_listing-instance_method
|
1237
|
+
def get_listing: (
|
1238
|
+
domain_identifier: ::String,
|
1239
|
+
identifier: ::String,
|
1240
|
+
?listing_revision: ::String
|
1241
|
+
) -> _GetListingResponseSuccess
|
1242
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetListingResponseSuccess
|
1243
|
+
|
1244
|
+
interface _GetProjectResponseSuccess
|
1245
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetProjectOutput]
|
1246
|
+
def created_at: () -> ::Time
|
1247
|
+
def created_by: () -> ::String
|
1248
|
+
def description: () -> ::String
|
1249
|
+
def domain_id: () -> ::String
|
1250
|
+
def failure_reasons: () -> ::Array[Types::ProjectDeletionError]
|
1251
|
+
def glossary_terms: () -> ::Array[::String]
|
1252
|
+
def id: () -> ::String
|
1253
|
+
def last_updated_at: () -> ::Time
|
1254
|
+
def name: () -> ::String
|
1255
|
+
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
|
1256
|
+
end
|
1257
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_project-instance_method
|
1258
|
+
def get_project: (
|
1259
|
+
domain_identifier: ::String,
|
1260
|
+
identifier: ::String
|
1261
|
+
) -> _GetProjectResponseSuccess
|
1262
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProjectResponseSuccess
|
1263
|
+
|
1264
|
+
interface _GetSubscriptionResponseSuccess
|
1265
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSubscriptionOutput]
|
1266
|
+
def created_at: () -> ::Time
|
1267
|
+
def created_by: () -> ::String
|
1268
|
+
def domain_id: () -> ::String
|
1269
|
+
def id: () -> ::String
|
1270
|
+
def retain_permissions: () -> bool
|
1271
|
+
def status: () -> ("APPROVED" | "REVOKED" | "CANCELLED")
|
1272
|
+
def subscribed_listing: () -> Types::SubscribedListing
|
1273
|
+
def subscribed_principal: () -> Types::SubscribedPrincipal
|
1274
|
+
def subscription_request_id: () -> ::String
|
1275
|
+
def updated_at: () -> ::Time
|
1276
|
+
def updated_by: () -> ::String
|
1277
|
+
end
|
1278
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_subscription-instance_method
|
1279
|
+
def get_subscription: (
|
1280
|
+
domain_identifier: ::String,
|
1281
|
+
identifier: ::String
|
1282
|
+
) -> _GetSubscriptionResponseSuccess
|
1283
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSubscriptionResponseSuccess
|
1284
|
+
|
1285
|
+
interface _GetSubscriptionGrantResponseSuccess
|
1286
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSubscriptionGrantOutput]
|
1287
|
+
def assets: () -> ::Array[Types::SubscribedAsset]
|
1288
|
+
def created_at: () -> ::Time
|
1289
|
+
def created_by: () -> ::String
|
1290
|
+
def domain_id: () -> ::String
|
1291
|
+
def granted_entity: () -> Types::GrantedEntity
|
1292
|
+
def id: () -> ::String
|
1293
|
+
def status: () -> ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
1294
|
+
def subscription_id: () -> ::String
|
1295
|
+
def subscription_target_id: () -> ::String
|
1296
|
+
def updated_at: () -> ::Time
|
1297
|
+
def updated_by: () -> ::String
|
1298
|
+
end
|
1299
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_subscription_grant-instance_method
|
1300
|
+
def get_subscription_grant: (
|
1301
|
+
domain_identifier: ::String,
|
1302
|
+
identifier: ::String
|
1303
|
+
) -> _GetSubscriptionGrantResponseSuccess
|
1304
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSubscriptionGrantResponseSuccess
|
1305
|
+
|
1306
|
+
interface _GetSubscriptionRequestDetailsResponseSuccess
|
1307
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSubscriptionRequestDetailsOutput]
|
1308
|
+
def created_at: () -> ::Time
|
1309
|
+
def created_by: () -> ::String
|
1310
|
+
def decision_comment: () -> ::String
|
1311
|
+
def domain_id: () -> ::String
|
1312
|
+
def id: () -> ::String
|
1313
|
+
def request_reason: () -> ::String
|
1314
|
+
def reviewer_id: () -> ::String
|
1315
|
+
def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED")
|
1316
|
+
def subscribed_listings: () -> ::Array[Types::SubscribedListing]
|
1317
|
+
def subscribed_principals: () -> ::Array[Types::SubscribedPrincipal]
|
1318
|
+
def updated_at: () -> ::Time
|
1319
|
+
def updated_by: () -> ::String
|
1320
|
+
end
|
1321
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_subscription_request_details-instance_method
|
1322
|
+
def get_subscription_request_details: (
|
1323
|
+
domain_identifier: ::String,
|
1324
|
+
identifier: ::String
|
1325
|
+
) -> _GetSubscriptionRequestDetailsResponseSuccess
|
1326
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSubscriptionRequestDetailsResponseSuccess
|
1327
|
+
|
1328
|
+
interface _GetSubscriptionTargetResponseSuccess
|
1329
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSubscriptionTargetOutput]
|
1330
|
+
def applicable_asset_types: () -> ::Array[::String]
|
1331
|
+
def authorized_principals: () -> ::Array[::String]
|
1332
|
+
def created_at: () -> ::Time
|
1333
|
+
def created_by: () -> ::String
|
1334
|
+
def domain_id: () -> ::String
|
1335
|
+
def environment_id: () -> ::String
|
1336
|
+
def id: () -> ::String
|
1337
|
+
def manage_access_role: () -> ::String
|
1338
|
+
def name: () -> ::String
|
1339
|
+
def project_id: () -> ::String
|
1340
|
+
def provider: () -> ::String
|
1341
|
+
def subscription_target_config: () -> ::Array[Types::SubscriptionTargetForm]
|
1342
|
+
def type: () -> ::String
|
1343
|
+
def updated_at: () -> ::Time
|
1344
|
+
def updated_by: () -> ::String
|
1345
|
+
end
|
1346
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_subscription_target-instance_method
|
1347
|
+
def get_subscription_target: (
|
1348
|
+
domain_identifier: ::String,
|
1349
|
+
environment_identifier: ::String,
|
1350
|
+
identifier: ::String
|
1351
|
+
) -> _GetSubscriptionTargetResponseSuccess
|
1352
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSubscriptionTargetResponseSuccess
|
1353
|
+
|
1354
|
+
interface _GetUserProfileResponseSuccess
|
1355
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetUserProfileOutput]
|
1356
|
+
def details: () -> Types::UserProfileDetails
|
1357
|
+
def domain_id: () -> ::String
|
1358
|
+
def id: () -> ::String
|
1359
|
+
def status: () -> ("ASSIGNED" | "NOT_ASSIGNED" | "ACTIVATED" | "DEACTIVATED")
|
1360
|
+
def type: () -> ("IAM" | "SSO")
|
1361
|
+
end
|
1362
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_user_profile-instance_method
|
1363
|
+
def get_user_profile: (
|
1364
|
+
domain_identifier: ::String,
|
1365
|
+
?type: ("IAM" | "SSO"),
|
1366
|
+
user_identifier: ::String
|
1367
|
+
) -> _GetUserProfileResponseSuccess
|
1368
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUserProfileResponseSuccess
|
1369
|
+
|
1370
|
+
interface _ListAssetRevisionsResponseSuccess
|
1371
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAssetRevisionsOutput]
|
1372
|
+
def items: () -> ::Array[Types::AssetRevision]
|
1373
|
+
def next_token: () -> ::String
|
1374
|
+
end
|
1375
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_asset_revisions-instance_method
|
1376
|
+
def list_asset_revisions: (
|
1377
|
+
domain_identifier: ::String,
|
1378
|
+
identifier: ::String,
|
1379
|
+
?max_results: ::Integer,
|
1380
|
+
?next_token: ::String
|
1381
|
+
) -> _ListAssetRevisionsResponseSuccess
|
1382
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetRevisionsResponseSuccess
|
1383
|
+
|
1384
|
+
interface _ListDataSourceRunActivitiesResponseSuccess
|
1385
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDataSourceRunActivitiesOutput]
|
1386
|
+
def items: () -> ::Array[Types::DataSourceRunActivity]
|
1387
|
+
def next_token: () -> ::String
|
1388
|
+
end
|
1389
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_data_source_run_activities-instance_method
|
1390
|
+
def list_data_source_run_activities: (
|
1391
|
+
domain_identifier: ::String,
|
1392
|
+
identifier: ::String,
|
1393
|
+
?max_results: ::Integer,
|
1394
|
+
?next_token: ::String,
|
1395
|
+
?status: ("FAILED" | "PUBLISHING_FAILED" | "SUCCEEDED_CREATED" | "SUCCEEDED_UPDATED" | "SKIPPED_ALREADY_IMPORTED" | "SKIPPED_ARCHIVED" | "SKIPPED_NO_ACCESS" | "UNCHANGED")
|
1396
|
+
) -> _ListDataSourceRunActivitiesResponseSuccess
|
1397
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataSourceRunActivitiesResponseSuccess
|
1398
|
+
|
1399
|
+
interface _ListDataSourceRunsResponseSuccess
|
1400
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDataSourceRunsOutput]
|
1401
|
+
def items: () -> ::Array[Types::DataSourceRunSummary]
|
1402
|
+
def next_token: () -> ::String
|
1403
|
+
end
|
1404
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_data_source_runs-instance_method
|
1405
|
+
def list_data_source_runs: (
|
1406
|
+
data_source_identifier: ::String,
|
1407
|
+
domain_identifier: ::String,
|
1408
|
+
?max_results: ::Integer,
|
1409
|
+
?next_token: ::String,
|
1410
|
+
?status: ("REQUESTED" | "RUNNING" | "FAILED" | "PARTIALLY_SUCCEEDED" | "SUCCESS")
|
1411
|
+
) -> _ListDataSourceRunsResponseSuccess
|
1412
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataSourceRunsResponseSuccess
|
1413
|
+
|
1414
|
+
interface _ListDataSourcesResponseSuccess
|
1415
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDataSourcesOutput]
|
1416
|
+
def items: () -> ::Array[Types::DataSourceSummary]
|
1417
|
+
def next_token: () -> ::String
|
1418
|
+
end
|
1419
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_data_sources-instance_method
|
1420
|
+
def list_data_sources: (
|
1421
|
+
domain_identifier: ::String,
|
1422
|
+
?environment_identifier: ::String,
|
1423
|
+
?max_results: ::Integer,
|
1424
|
+
?name: ::String,
|
1425
|
+
?next_token: ::String,
|
1426
|
+
project_identifier: ::String,
|
1427
|
+
?status: ("CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION"),
|
1428
|
+
?type: ::String
|
1429
|
+
) -> _ListDataSourcesResponseSuccess
|
1430
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataSourcesResponseSuccess
|
1431
|
+
|
1432
|
+
interface _ListDomainsResponseSuccess
|
1433
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainsOutput]
|
1434
|
+
def items: () -> ::Array[Types::DomainSummary]
|
1435
|
+
def next_token: () -> ::String
|
1436
|
+
end
|
1437
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_domains-instance_method
|
1438
|
+
def list_domains: (
|
1439
|
+
?max_results: ::Integer,
|
1440
|
+
?next_token: ::String,
|
1441
|
+
?status: ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
|
1442
|
+
) -> _ListDomainsResponseSuccess
|
1443
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainsResponseSuccess
|
1444
|
+
|
1445
|
+
interface _ListEnvironmentBlueprintConfigurationsResponseSuccess
|
1446
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEnvironmentBlueprintConfigurationsOutput]
|
1447
|
+
def items: () -> ::Array[Types::EnvironmentBlueprintConfigurationItem]
|
1448
|
+
def next_token: () -> ::String
|
1449
|
+
end
|
1450
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_environment_blueprint_configurations-instance_method
|
1451
|
+
def list_environment_blueprint_configurations: (
|
1452
|
+
domain_identifier: ::String,
|
1453
|
+
?max_results: ::Integer,
|
1454
|
+
?next_token: ::String
|
1455
|
+
) -> _ListEnvironmentBlueprintConfigurationsResponseSuccess
|
1456
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentBlueprintConfigurationsResponseSuccess
|
1457
|
+
|
1458
|
+
interface _ListEnvironmentBlueprintsResponseSuccess
|
1459
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEnvironmentBlueprintsOutput]
|
1460
|
+
def items: () -> ::Array[Types::EnvironmentBlueprintSummary]
|
1461
|
+
def next_token: () -> ::String
|
1462
|
+
end
|
1463
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_environment_blueprints-instance_method
|
1464
|
+
def list_environment_blueprints: (
|
1465
|
+
domain_identifier: ::String,
|
1466
|
+
?managed: bool,
|
1467
|
+
?max_results: ::Integer,
|
1468
|
+
?name: ::String,
|
1469
|
+
?next_token: ::String
|
1470
|
+
) -> _ListEnvironmentBlueprintsResponseSuccess
|
1471
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentBlueprintsResponseSuccess
|
1472
|
+
|
1473
|
+
interface _ListEnvironmentProfilesResponseSuccess
|
1474
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEnvironmentProfilesOutput]
|
1475
|
+
def items: () -> ::Array[Types::EnvironmentProfileSummary]
|
1476
|
+
def next_token: () -> ::String
|
1477
|
+
end
|
1478
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_environment_profiles-instance_method
|
1479
|
+
def list_environment_profiles: (
|
1480
|
+
?aws_account_id: ::String,
|
1481
|
+
?aws_account_region: ::String,
|
1482
|
+
domain_identifier: ::String,
|
1483
|
+
?environment_blueprint_identifier: ::String,
|
1484
|
+
?max_results: ::Integer,
|
1485
|
+
?name: ::String,
|
1486
|
+
?next_token: ::String,
|
1487
|
+
?project_identifier: ::String
|
1488
|
+
) -> _ListEnvironmentProfilesResponseSuccess
|
1489
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentProfilesResponseSuccess
|
1490
|
+
|
1491
|
+
interface _ListEnvironmentsResponseSuccess
|
1492
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEnvironmentsOutput]
|
1493
|
+
def items: () -> ::Array[Types::EnvironmentSummary]
|
1494
|
+
def next_token: () -> ::String
|
1495
|
+
end
|
1496
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_environments-instance_method
|
1497
|
+
def list_environments: (
|
1498
|
+
?aws_account_id: ::String,
|
1499
|
+
?aws_account_region: ::String,
|
1500
|
+
domain_identifier: ::String,
|
1501
|
+
?environment_blueprint_identifier: ::String,
|
1502
|
+
?environment_profile_identifier: ::String,
|
1503
|
+
?max_results: ::Integer,
|
1504
|
+
?name: ::String,
|
1505
|
+
?next_token: ::String,
|
1506
|
+
project_identifier: ::String,
|
1507
|
+
?provider: ::String,
|
1508
|
+
?status: ("ACTIVE" | "CREATING" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED" | "VALIDATION_FAILED" | "SUSPENDED" | "DISABLED" | "EXPIRED" | "DELETED" | "INACCESSIBLE")
|
1509
|
+
) -> _ListEnvironmentsResponseSuccess
|
1510
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentsResponseSuccess
|
1511
|
+
|
1512
|
+
interface _ListNotificationsResponseSuccess
|
1513
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListNotificationsOutput]
|
1514
|
+
def next_token: () -> ::String
|
1515
|
+
def notifications: () -> ::Array[Types::NotificationOutput]
|
1516
|
+
end
|
1517
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_notifications-instance_method
|
1518
|
+
def list_notifications: (
|
1519
|
+
?after_timestamp: ::Time,
|
1520
|
+
?before_timestamp: ::Time,
|
1521
|
+
domain_identifier: ::String,
|
1522
|
+
?max_results: ::Integer,
|
1523
|
+
?next_token: ::String,
|
1524
|
+
?subjects: Array[::String],
|
1525
|
+
?task_status: ("ACTIVE" | "INACTIVE"),
|
1526
|
+
type: ("TASK" | "EVENT")
|
1527
|
+
) -> _ListNotificationsResponseSuccess
|
1528
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNotificationsResponseSuccess
|
1529
|
+
|
1530
|
+
interface _ListProjectMembershipsResponseSuccess
|
1531
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListProjectMembershipsOutput]
|
1532
|
+
def members: () -> ::Array[Types::ProjectMember]
|
1533
|
+
def next_token: () -> ::String
|
1534
|
+
end
|
1535
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_project_memberships-instance_method
|
1536
|
+
def list_project_memberships: (
|
1537
|
+
domain_identifier: ::String,
|
1538
|
+
?max_results: ::Integer,
|
1539
|
+
?next_token: ::String,
|
1540
|
+
project_identifier: ::String,
|
1541
|
+
?sort_by: ("NAME"),
|
1542
|
+
?sort_order: ("ASCENDING" | "DESCENDING")
|
1543
|
+
) -> _ListProjectMembershipsResponseSuccess
|
1544
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProjectMembershipsResponseSuccess
|
1545
|
+
|
1546
|
+
interface _ListProjectsResponseSuccess
|
1547
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListProjectsOutput]
|
1548
|
+
def items: () -> ::Array[Types::ProjectSummary]
|
1549
|
+
def next_token: () -> ::String
|
1550
|
+
end
|
1551
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_projects-instance_method
|
1552
|
+
def list_projects: (
|
1553
|
+
domain_identifier: ::String,
|
1554
|
+
?group_identifier: ::String,
|
1555
|
+
?max_results: ::Integer,
|
1556
|
+
?name: ::String,
|
1557
|
+
?next_token: ::String,
|
1558
|
+
?user_identifier: ::String
|
1559
|
+
) -> _ListProjectsResponseSuccess
|
1560
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProjectsResponseSuccess
|
1561
|
+
|
1562
|
+
interface _ListSubscriptionGrantsResponseSuccess
|
1563
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSubscriptionGrantsOutput]
|
1564
|
+
def items: () -> ::Array[Types::SubscriptionGrantSummary]
|
1565
|
+
def next_token: () -> ::String
|
1566
|
+
end
|
1567
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_subscription_grants-instance_method
|
1568
|
+
def list_subscription_grants: (
|
1569
|
+
domain_identifier: ::String,
|
1570
|
+
?environment_id: ::String,
|
1571
|
+
?max_results: ::Integer,
|
1572
|
+
?next_token: ::String,
|
1573
|
+
?sort_by: ("CREATED_AT" | "UPDATED_AT"),
|
1574
|
+
?sort_order: ("ASCENDING" | "DESCENDING"),
|
1575
|
+
?subscribed_listing_id: ::String,
|
1576
|
+
?subscription_id: ::String,
|
1577
|
+
?subscription_target_id: ::String
|
1578
|
+
) -> _ListSubscriptionGrantsResponseSuccess
|
1579
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSubscriptionGrantsResponseSuccess
|
1580
|
+
|
1581
|
+
interface _ListSubscriptionRequestsResponseSuccess
|
1582
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSubscriptionRequestsOutput]
|
1583
|
+
def items: () -> ::Array[Types::SubscriptionRequestSummary]
|
1584
|
+
def next_token: () -> ::String
|
1585
|
+
end
|
1586
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_subscription_requests-instance_method
|
1587
|
+
def list_subscription_requests: (
|
1588
|
+
?approver_project_id: ::String,
|
1589
|
+
domain_identifier: ::String,
|
1590
|
+
?max_results: ::Integer,
|
1591
|
+
?next_token: ::String,
|
1592
|
+
?owning_project_id: ::String,
|
1593
|
+
?sort_by: ("CREATED_AT" | "UPDATED_AT"),
|
1594
|
+
?sort_order: ("ASCENDING" | "DESCENDING"),
|
1595
|
+
?status: ("PENDING" | "ACCEPTED" | "REJECTED"),
|
1596
|
+
?subscribed_listing_id: ::String
|
1597
|
+
) -> _ListSubscriptionRequestsResponseSuccess
|
1598
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSubscriptionRequestsResponseSuccess
|
1599
|
+
|
1600
|
+
interface _ListSubscriptionTargetsResponseSuccess
|
1601
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSubscriptionTargetsOutput]
|
1602
|
+
def items: () -> ::Array[Types::SubscriptionTargetSummary]
|
1603
|
+
def next_token: () -> ::String
|
1604
|
+
end
|
1605
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_subscription_targets-instance_method
|
1606
|
+
def list_subscription_targets: (
|
1607
|
+
domain_identifier: ::String,
|
1608
|
+
environment_identifier: ::String,
|
1609
|
+
?max_results: ::Integer,
|
1610
|
+
?next_token: ::String,
|
1611
|
+
?sort_by: ("CREATED_AT" | "UPDATED_AT"),
|
1612
|
+
?sort_order: ("ASCENDING" | "DESCENDING")
|
1613
|
+
) -> _ListSubscriptionTargetsResponseSuccess
|
1614
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSubscriptionTargetsResponseSuccess
|
1615
|
+
|
1616
|
+
interface _ListSubscriptionsResponseSuccess
|
1617
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSubscriptionsOutput]
|
1618
|
+
def items: () -> ::Array[Types::SubscriptionSummary]
|
1619
|
+
def next_token: () -> ::String
|
1620
|
+
end
|
1621
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_subscriptions-instance_method
|
1622
|
+
def list_subscriptions: (
|
1623
|
+
?approver_project_id: ::String,
|
1624
|
+
domain_identifier: ::String,
|
1625
|
+
?max_results: ::Integer,
|
1626
|
+
?next_token: ::String,
|
1627
|
+
?owning_project_id: ::String,
|
1628
|
+
?sort_by: ("CREATED_AT" | "UPDATED_AT"),
|
1629
|
+
?sort_order: ("ASCENDING" | "DESCENDING"),
|
1630
|
+
?status: ("APPROVED" | "REVOKED" | "CANCELLED"),
|
1631
|
+
?subscribed_listing_id: ::String,
|
1632
|
+
?subscription_request_identifier: ::String
|
1633
|
+
) -> _ListSubscriptionsResponseSuccess
|
1634
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSubscriptionsResponseSuccess
|
1635
|
+
|
1636
|
+
interface _ListTagsForResourceResponseSuccess
|
1637
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
1638
|
+
def tags: () -> ::Hash[::String, ::String]
|
1639
|
+
end
|
1640
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_tags_for_resource-instance_method
|
1641
|
+
def list_tags_for_resource: (
|
1642
|
+
resource_arn: ::String
|
1643
|
+
) -> _ListTagsForResourceResponseSuccess
|
1644
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
1645
|
+
|
1646
|
+
interface _PutEnvironmentBlueprintConfigurationResponseSuccess
|
1647
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutEnvironmentBlueprintConfigurationOutput]
|
1648
|
+
def created_at: () -> ::Time
|
1649
|
+
def domain_id: () -> ::String
|
1650
|
+
def enabled_regions: () -> ::Array[::String]
|
1651
|
+
def environment_blueprint_id: () -> ::String
|
1652
|
+
def manage_access_role_arn: () -> ::String
|
1653
|
+
def provisioning_role_arn: () -> ::String
|
1654
|
+
def regional_parameters: () -> ::Hash[::String, ::Hash[::String, ::String]]
|
1655
|
+
def updated_at: () -> ::Time
|
1656
|
+
end
|
1657
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#put_environment_blueprint_configuration-instance_method
|
1658
|
+
def put_environment_blueprint_configuration: (
|
1659
|
+
domain_identifier: ::String,
|
1660
|
+
enabled_regions: Array[::String],
|
1661
|
+
environment_blueprint_identifier: ::String,
|
1662
|
+
?manage_access_role_arn: ::String,
|
1663
|
+
?provisioning_role_arn: ::String,
|
1664
|
+
?regional_parameters: Hash[::String, Hash[::String, ::String]]
|
1665
|
+
) -> _PutEnvironmentBlueprintConfigurationResponseSuccess
|
1666
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutEnvironmentBlueprintConfigurationResponseSuccess
|
1667
|
+
|
1668
|
+
interface _RejectPredictionsResponseSuccess
|
1669
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RejectPredictionsOutput]
|
1670
|
+
def asset_id: () -> ::String
|
1671
|
+
def asset_revision: () -> ::String
|
1672
|
+
def domain_id: () -> ::String
|
1673
|
+
end
|
1674
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#reject_predictions-instance_method
|
1675
|
+
def reject_predictions: (
|
1676
|
+
?client_token: ::String,
|
1677
|
+
domain_identifier: ::String,
|
1678
|
+
identifier: ::String,
|
1679
|
+
?reject_choices: Array[
|
1680
|
+
{
|
1681
|
+
prediction_choices: Array[::Integer]?,
|
1682
|
+
prediction_target: ::String?
|
1683
|
+
},
|
1684
|
+
],
|
1685
|
+
?reject_rule: {
|
1686
|
+
rule: ("ALL" | "NONE")?,
|
1687
|
+
threshold: ::Float?
|
1688
|
+
},
|
1689
|
+
?revision: ::String
|
1690
|
+
) -> _RejectPredictionsResponseSuccess
|
1691
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RejectPredictionsResponseSuccess
|
1692
|
+
|
1693
|
+
interface _RejectSubscriptionRequestResponseSuccess
|
1694
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RejectSubscriptionRequestOutput]
|
1695
|
+
def created_at: () -> ::Time
|
1696
|
+
def created_by: () -> ::String
|
1697
|
+
def decision_comment: () -> ::String
|
1698
|
+
def domain_id: () -> ::String
|
1699
|
+
def id: () -> ::String
|
1700
|
+
def request_reason: () -> ::String
|
1701
|
+
def reviewer_id: () -> ::String
|
1702
|
+
def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED")
|
1703
|
+
def subscribed_listings: () -> ::Array[Types::SubscribedListing]
|
1704
|
+
def subscribed_principals: () -> ::Array[Types::SubscribedPrincipal]
|
1705
|
+
def updated_at: () -> ::Time
|
1706
|
+
def updated_by: () -> ::String
|
1707
|
+
end
|
1708
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#reject_subscription_request-instance_method
|
1709
|
+
def reject_subscription_request: (
|
1710
|
+
?decision_comment: ::String,
|
1711
|
+
domain_identifier: ::String,
|
1712
|
+
identifier: ::String
|
1713
|
+
) -> _RejectSubscriptionRequestResponseSuccess
|
1714
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RejectSubscriptionRequestResponseSuccess
|
1715
|
+
|
1716
|
+
interface _RevokeSubscriptionResponseSuccess
|
1717
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RevokeSubscriptionOutput]
|
1718
|
+
def created_at: () -> ::Time
|
1719
|
+
def created_by: () -> ::String
|
1720
|
+
def domain_id: () -> ::String
|
1721
|
+
def id: () -> ::String
|
1722
|
+
def retain_permissions: () -> bool
|
1723
|
+
def status: () -> ("APPROVED" | "REVOKED" | "CANCELLED")
|
1724
|
+
def subscribed_listing: () -> Types::SubscribedListing
|
1725
|
+
def subscribed_principal: () -> Types::SubscribedPrincipal
|
1726
|
+
def subscription_request_id: () -> ::String
|
1727
|
+
def updated_at: () -> ::Time
|
1728
|
+
def updated_by: () -> ::String
|
1729
|
+
end
|
1730
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#revoke_subscription-instance_method
|
1731
|
+
def revoke_subscription: (
|
1732
|
+
domain_identifier: ::String,
|
1733
|
+
identifier: ::String,
|
1734
|
+
?retain_permissions: bool
|
1735
|
+
) -> _RevokeSubscriptionResponseSuccess
|
1736
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RevokeSubscriptionResponseSuccess
|
1737
|
+
|
1738
|
+
interface _SearchResponseSuccess
|
1739
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SearchOutput]
|
1740
|
+
def items: () -> ::Array[Types::SearchInventoryResultItem]
|
1741
|
+
def next_token: () -> ::String
|
1742
|
+
def total_match_count: () -> ::Integer
|
1743
|
+
end
|
1744
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search-instance_method
|
1745
|
+
def search: (
|
1746
|
+
?additional_attributes: Array[("FORMS")],
|
1747
|
+
domain_identifier: ::String,
|
1748
|
+
?filters: {
|
1749
|
+
and: Array[
|
1750
|
+
untyped,
|
1751
|
+
]?,
|
1752
|
+
filter: {
|
1753
|
+
attribute: ::String,
|
1754
|
+
value: ::String
|
1755
|
+
}?,
|
1756
|
+
or: Array[
|
1757
|
+
untyped,
|
1758
|
+
]?
|
1759
|
+
},
|
1760
|
+
?max_results: ::Integer,
|
1761
|
+
?next_token: ::String,
|
1762
|
+
?owning_project_identifier: ::String,
|
1763
|
+
?search_in: Array[
|
1764
|
+
{
|
1765
|
+
attribute: ::String
|
1766
|
+
},
|
1767
|
+
],
|
1768
|
+
search_scope: ("ASSET" | "GLOSSARY" | "GLOSSARY_TERM"),
|
1769
|
+
?search_text: ::String,
|
1770
|
+
?sort: {
|
1771
|
+
attribute: ::String,
|
1772
|
+
order: ("ASCENDING" | "DESCENDING")?
|
1773
|
+
}
|
1774
|
+
) -> _SearchResponseSuccess
|
1775
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchResponseSuccess
|
1776
|
+
|
1777
|
+
interface _SearchGroupProfilesResponseSuccess
|
1778
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SearchGroupProfilesOutput]
|
1779
|
+
def items: () -> ::Array[Types::GroupProfileSummary]
|
1780
|
+
def next_token: () -> ::String
|
1781
|
+
end
|
1782
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search_group_profiles-instance_method
|
1783
|
+
def search_group_profiles: (
|
1784
|
+
domain_identifier: ::String,
|
1785
|
+
group_type: ("SSO_GROUP" | "DATAZONE_SSO_GROUP"),
|
1786
|
+
?max_results: ::Integer,
|
1787
|
+
?next_token: ::String,
|
1788
|
+
?search_text: ::String
|
1789
|
+
) -> _SearchGroupProfilesResponseSuccess
|
1790
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchGroupProfilesResponseSuccess
|
1791
|
+
|
1792
|
+
interface _SearchListingsResponseSuccess
|
1793
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SearchListingsOutput]
|
1794
|
+
def items: () -> ::Array[Types::SearchResultItem]
|
1795
|
+
def next_token: () -> ::String
|
1796
|
+
def total_match_count: () -> ::Integer
|
1797
|
+
end
|
1798
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search_listings-instance_method
|
1799
|
+
def search_listings: (
|
1800
|
+
?additional_attributes: Array[("FORMS")],
|
1801
|
+
domain_identifier: ::String,
|
1802
|
+
?filters: {
|
1803
|
+
and: Array[
|
1804
|
+
untyped,
|
1805
|
+
]?,
|
1806
|
+
filter: {
|
1807
|
+
attribute: ::String,
|
1808
|
+
value: ::String
|
1809
|
+
}?,
|
1810
|
+
or: Array[
|
1811
|
+
untyped,
|
1812
|
+
]?
|
1813
|
+
},
|
1814
|
+
?max_results: ::Integer,
|
1815
|
+
?next_token: ::String,
|
1816
|
+
?search_in: Array[
|
1817
|
+
{
|
1818
|
+
attribute: ::String
|
1819
|
+
},
|
1820
|
+
],
|
1821
|
+
?search_text: ::String,
|
1822
|
+
?sort: {
|
1823
|
+
attribute: ::String,
|
1824
|
+
order: ("ASCENDING" | "DESCENDING")?
|
1825
|
+
}
|
1826
|
+
) -> _SearchListingsResponseSuccess
|
1827
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchListingsResponseSuccess
|
1828
|
+
|
1829
|
+
interface _SearchTypesResponseSuccess
|
1830
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SearchTypesOutput]
|
1831
|
+
def items: () -> ::Array[Types::SearchTypesResultItem]
|
1832
|
+
def next_token: () -> ::String
|
1833
|
+
def total_match_count: () -> ::Integer
|
1834
|
+
end
|
1835
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search_types-instance_method
|
1836
|
+
def search_types: (
|
1837
|
+
domain_identifier: ::String,
|
1838
|
+
?filters: {
|
1839
|
+
and: Array[
|
1840
|
+
untyped,
|
1841
|
+
]?,
|
1842
|
+
filter: {
|
1843
|
+
attribute: ::String,
|
1844
|
+
value: ::String
|
1845
|
+
}?,
|
1846
|
+
or: Array[
|
1847
|
+
untyped,
|
1848
|
+
]?
|
1849
|
+
},
|
1850
|
+
managed: bool,
|
1851
|
+
?max_results: ::Integer,
|
1852
|
+
?next_token: ::String,
|
1853
|
+
?search_in: Array[
|
1854
|
+
{
|
1855
|
+
attribute: ::String
|
1856
|
+
},
|
1857
|
+
],
|
1858
|
+
search_scope: ("ASSET_TYPE" | "FORM_TYPE"),
|
1859
|
+
?search_text: ::String,
|
1860
|
+
?sort: {
|
1861
|
+
attribute: ::String,
|
1862
|
+
order: ("ASCENDING" | "DESCENDING")?
|
1863
|
+
}
|
1864
|
+
) -> _SearchTypesResponseSuccess
|
1865
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchTypesResponseSuccess
|
1866
|
+
|
1867
|
+
interface _SearchUserProfilesResponseSuccess
|
1868
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SearchUserProfilesOutput]
|
1869
|
+
def items: () -> ::Array[Types::UserProfileSummary]
|
1870
|
+
def next_token: () -> ::String
|
1871
|
+
end
|
1872
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search_user_profiles-instance_method
|
1873
|
+
def search_user_profiles: (
|
1874
|
+
domain_identifier: ::String,
|
1875
|
+
?max_results: ::Integer,
|
1876
|
+
?next_token: ::String,
|
1877
|
+
?search_text: ::String,
|
1878
|
+
user_type: ("SSO_USER" | "DATAZONE_USER" | "DATAZONE_SSO_USER" | "DATAZONE_IAM_USER")
|
1879
|
+
) -> _SearchUserProfilesResponseSuccess
|
1880
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchUserProfilesResponseSuccess
|
1881
|
+
|
1882
|
+
interface _StartDataSourceRunResponseSuccess
|
1883
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartDataSourceRunOutput]
|
1884
|
+
def created_at: () -> ::Time
|
1885
|
+
def data_source_configuration_snapshot: () -> ::String
|
1886
|
+
def data_source_id: () -> ::String
|
1887
|
+
def domain_id: () -> ::String
|
1888
|
+
def error_message: () -> Types::DataSourceErrorMessage
|
1889
|
+
def id: () -> ::String
|
1890
|
+
def project_id: () -> ::String
|
1891
|
+
def run_statistics_for_assets: () -> Types::RunStatisticsForAssets
|
1892
|
+
def started_at: () -> ::Time
|
1893
|
+
def status: () -> ("REQUESTED" | "RUNNING" | "FAILED" | "PARTIALLY_SUCCEEDED" | "SUCCESS")
|
1894
|
+
def stopped_at: () -> ::Time
|
1895
|
+
def type: () -> ("PRIORITIZED" | "SCHEDULED")
|
1896
|
+
def updated_at: () -> ::Time
|
1897
|
+
end
|
1898
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#start_data_source_run-instance_method
|
1899
|
+
def start_data_source_run: (
|
1900
|
+
?client_token: ::String,
|
1901
|
+
data_source_identifier: ::String,
|
1902
|
+
domain_identifier: ::String
|
1903
|
+
) -> _StartDataSourceRunResponseSuccess
|
1904
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDataSourceRunResponseSuccess
|
1905
|
+
|
1906
|
+
interface _TagResourceResponseSuccess
|
1907
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
1908
|
+
end
|
1909
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#tag_resource-instance_method
|
1910
|
+
def tag_resource: (
|
1911
|
+
resource_arn: ::String,
|
1912
|
+
tags: Hash[::String, ::String]
|
1913
|
+
) -> _TagResourceResponseSuccess
|
1914
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
1915
|
+
|
1916
|
+
interface _UntagResourceResponseSuccess
|
1917
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
1918
|
+
end
|
1919
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#untag_resource-instance_method
|
1920
|
+
def untag_resource: (
|
1921
|
+
resource_arn: ::String,
|
1922
|
+
tag_keys: Array[::String]
|
1923
|
+
) -> _UntagResourceResponseSuccess
|
1924
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
1925
|
+
|
1926
|
+
interface _UpdateDataSourceResponseSuccess
|
1927
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataSourceOutput]
|
1928
|
+
def asset_forms_output: () -> ::Array[Types::FormOutput]
|
1929
|
+
def configuration: () -> Types::DataSourceConfigurationOutput
|
1930
|
+
def created_at: () -> ::Time
|
1931
|
+
def description: () -> ::String
|
1932
|
+
def domain_id: () -> ::String
|
1933
|
+
def enable_setting: () -> ("ENABLED" | "DISABLED")
|
1934
|
+
def environment_id: () -> ::String
|
1935
|
+
def error_message: () -> Types::DataSourceErrorMessage
|
1936
|
+
def id: () -> ::String
|
1937
|
+
def last_run_at: () -> ::Time
|
1938
|
+
def last_run_error_message: () -> Types::DataSourceErrorMessage
|
1939
|
+
def last_run_status: () -> ("REQUESTED" | "RUNNING" | "FAILED" | "PARTIALLY_SUCCEEDED" | "SUCCESS")
|
1940
|
+
def name: () -> ::String
|
1941
|
+
def project_id: () -> ::String
|
1942
|
+
def publish_on_import: () -> bool
|
1943
|
+
def recommendation: () -> Types::RecommendationConfiguration
|
1944
|
+
def schedule: () -> Types::ScheduleConfiguration
|
1945
|
+
def status: () -> ("CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION")
|
1946
|
+
def type: () -> ::String
|
1947
|
+
def updated_at: () -> ::Time
|
1948
|
+
end
|
1949
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_data_source-instance_method
|
1950
|
+
def update_data_source: (
|
1951
|
+
?asset_forms_input: Array[
|
1952
|
+
{
|
1953
|
+
content: ::String?,
|
1954
|
+
form_name: ::String,
|
1955
|
+
type_identifier: ::String?,
|
1956
|
+
type_revision: ::String?
|
1957
|
+
},
|
1958
|
+
],
|
1959
|
+
?configuration: {
|
1960
|
+
glue_run_configuration: {
|
1961
|
+
data_access_role: ::String?,
|
1962
|
+
relational_filter_configurations: Array[
|
1963
|
+
{
|
1964
|
+
database_name: ::String,
|
1965
|
+
filter_expressions: Array[
|
1966
|
+
{
|
1967
|
+
expression: ::String,
|
1968
|
+
type: ("INCLUDE" | "EXCLUDE")
|
1969
|
+
},
|
1970
|
+
]?,
|
1971
|
+
schema_name: ::String?
|
1972
|
+
},
|
1973
|
+
]
|
1974
|
+
}?,
|
1975
|
+
redshift_run_configuration: {
|
1976
|
+
data_access_role: ::String?,
|
1977
|
+
redshift_credential_configuration: {
|
1978
|
+
secret_manager_arn: ::String
|
1979
|
+
},
|
1980
|
+
redshift_storage: {
|
1981
|
+
redshift_cluster_source: {
|
1982
|
+
cluster_name: ::String
|
1983
|
+
}?,
|
1984
|
+
redshift_serverless_source: {
|
1985
|
+
workgroup_name: ::String
|
1986
|
+
}?
|
1987
|
+
},
|
1988
|
+
relational_filter_configurations: Array[
|
1989
|
+
{
|
1990
|
+
database_name: ::String,
|
1991
|
+
filter_expressions: Array[
|
1992
|
+
{
|
1993
|
+
expression: ::String,
|
1994
|
+
type: ("INCLUDE" | "EXCLUDE")
|
1995
|
+
},
|
1996
|
+
]?,
|
1997
|
+
schema_name: ::String?
|
1998
|
+
},
|
1999
|
+
]
|
2000
|
+
}?
|
2001
|
+
},
|
2002
|
+
?description: ::String,
|
2003
|
+
domain_identifier: ::String,
|
2004
|
+
?enable_setting: ("ENABLED" | "DISABLED"),
|
2005
|
+
identifier: ::String,
|
2006
|
+
?name: ::String,
|
2007
|
+
?publish_on_import: bool,
|
2008
|
+
?recommendation: {
|
2009
|
+
enable_business_name_generation: bool?
|
2010
|
+
},
|
2011
|
+
?schedule: {
|
2012
|
+
schedule: ::String?,
|
2013
|
+
timezone: ("UTC" | "AFRICA_JOHANNESBURG" | "AMERICA_MONTREAL" | "AMERICA_SAO_PAULO" | "ASIA_BAHRAIN" | "ASIA_BANGKOK" | "ASIA_CALCUTTA" | "ASIA_DUBAI" | "ASIA_HONG_KONG" | "ASIA_JAKARTA" | "ASIA_KUALA_LUMPUR" | "ASIA_SEOUL" | "ASIA_SHANGHAI" | "ASIA_SINGAPORE" | "ASIA_TAIPEI" | "ASIA_TOKYO" | "AUSTRALIA_MELBOURNE" | "AUSTRALIA_SYDNEY" | "CANADA_CENTRAL" | "CET" | "CST6CDT" | "ETC_GMT" | "ETC_GMT0" | "ETC_GMT_ADD_0" | "ETC_GMT_ADD_1" | "ETC_GMT_ADD_10" | "ETC_GMT_ADD_11" | "ETC_GMT_ADD_12" | "ETC_GMT_ADD_2" | "ETC_GMT_ADD_3" | "ETC_GMT_ADD_4" | "ETC_GMT_ADD_5" | "ETC_GMT_ADD_6" | "ETC_GMT_ADD_7" | "ETC_GMT_ADD_8" | "ETC_GMT_ADD_9" | "ETC_GMT_NEG_0" | "ETC_GMT_NEG_1" | "ETC_GMT_NEG_10" | "ETC_GMT_NEG_11" | "ETC_GMT_NEG_12" | "ETC_GMT_NEG_13" | "ETC_GMT_NEG_14" | "ETC_GMT_NEG_2" | "ETC_GMT_NEG_3" | "ETC_GMT_NEG_4" | "ETC_GMT_NEG_5" | "ETC_GMT_NEG_6" | "ETC_GMT_NEG_7" | "ETC_GMT_NEG_8" | "ETC_GMT_NEG_9" | "EUROPE_DUBLIN" | "EUROPE_LONDON" | "EUROPE_PARIS" | "EUROPE_STOCKHOLM" | "EUROPE_ZURICH" | "ISRAEL" | "MEXICO_GENERAL" | "MST7MDT" | "PACIFIC_AUCKLAND" | "US_CENTRAL" | "US_EASTERN" | "US_MOUNTAIN" | "US_PACIFIC")?
|
2014
|
+
}
|
2015
|
+
) -> _UpdateDataSourceResponseSuccess
|
2016
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataSourceResponseSuccess
|
2017
|
+
|
2018
|
+
interface _UpdateDomainResponseSuccess
|
2019
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDomainOutput]
|
2020
|
+
def description: () -> ::String
|
2021
|
+
def domain_execution_role: () -> ::String
|
2022
|
+
def id: () -> ::String
|
2023
|
+
def last_updated_at: () -> ::Time
|
2024
|
+
def name: () -> ::String
|
2025
|
+
def single_sign_on: () -> Types::SingleSignOn
|
2026
|
+
end
|
2027
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_domain-instance_method
|
2028
|
+
def update_domain: (
|
2029
|
+
?client_token: ::String,
|
2030
|
+
?description: ::String,
|
2031
|
+
?domain_execution_role: ::String,
|
2032
|
+
identifier: ::String,
|
2033
|
+
?name: ::String,
|
2034
|
+
?single_sign_on: {
|
2035
|
+
type: ("IAM_IDC" | "DISABLED")?,
|
2036
|
+
user_assignment: ("AUTOMATIC" | "MANUAL")?
|
2037
|
+
}
|
2038
|
+
) -> _UpdateDomainResponseSuccess
|
2039
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainResponseSuccess
|
2040
|
+
|
2041
|
+
interface _UpdateEnvironmentResponseSuccess
|
2042
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEnvironmentOutput]
|
2043
|
+
def aws_account_id: () -> ::String
|
2044
|
+
def aws_account_region: () -> ::String
|
2045
|
+
def created_at: () -> ::Time
|
2046
|
+
def created_by: () -> ::String
|
2047
|
+
def deployment_properties: () -> Types::DeploymentProperties
|
2048
|
+
def description: () -> ::String
|
2049
|
+
def domain_id: () -> ::String
|
2050
|
+
def environment_actions: () -> ::Array[Types::ConfigurableEnvironmentAction]
|
2051
|
+
def environment_blueprint_id: () -> ::String
|
2052
|
+
def environment_profile_id: () -> ::String
|
2053
|
+
def glossary_terms: () -> ::Array[::String]
|
2054
|
+
def id: () -> ::String
|
2055
|
+
def last_deployment: () -> Types::Deployment
|
2056
|
+
def name: () -> ::String
|
2057
|
+
def project_id: () -> ::String
|
2058
|
+
def provider: () -> ::String
|
2059
|
+
def provisioned_resources: () -> ::Array[Types::Resource]
|
2060
|
+
def provisioning_properties: () -> Types::ProvisioningProperties
|
2061
|
+
def status: () -> ("ACTIVE" | "CREATING" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED" | "VALIDATION_FAILED" | "SUSPENDED" | "DISABLED" | "EXPIRED" | "DELETED" | "INACCESSIBLE")
|
2062
|
+
def updated_at: () -> ::Time
|
2063
|
+
def user_parameters: () -> ::Array[Types::CustomParameter]
|
2064
|
+
end
|
2065
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_environment-instance_method
|
2066
|
+
def update_environment: (
|
2067
|
+
?description: ::String,
|
2068
|
+
domain_identifier: ::String,
|
2069
|
+
?glossary_terms: Array[::String],
|
2070
|
+
identifier: ::String,
|
2071
|
+
?name: ::String
|
2072
|
+
) -> _UpdateEnvironmentResponseSuccess
|
2073
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentResponseSuccess
|
2074
|
+
|
2075
|
+
interface _UpdateEnvironmentProfileResponseSuccess
|
2076
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEnvironmentProfileOutput]
|
2077
|
+
def aws_account_id: () -> ::String
|
2078
|
+
def aws_account_region: () -> ::String
|
2079
|
+
def created_at: () -> ::Time
|
2080
|
+
def created_by: () -> ::String
|
2081
|
+
def description: () -> ::String
|
2082
|
+
def domain_id: () -> ::String
|
2083
|
+
def environment_blueprint_id: () -> ::String
|
2084
|
+
def id: () -> ::String
|
2085
|
+
def name: () -> ::String
|
2086
|
+
def project_id: () -> ::String
|
2087
|
+
def updated_at: () -> ::Time
|
2088
|
+
def user_parameters: () -> ::Array[Types::CustomParameter]
|
2089
|
+
end
|
2090
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_environment_profile-instance_method
|
2091
|
+
def update_environment_profile: (
|
2092
|
+
?aws_account_id: ::String,
|
2093
|
+
?aws_account_region: ::String,
|
2094
|
+
?description: ::String,
|
2095
|
+
domain_identifier: ::String,
|
2096
|
+
identifier: ::String,
|
2097
|
+
?name: ::String,
|
2098
|
+
?user_parameters: Array[
|
2099
|
+
{
|
2100
|
+
name: ::String?,
|
2101
|
+
value: ::String?
|
2102
|
+
},
|
2103
|
+
]
|
2104
|
+
) -> _UpdateEnvironmentProfileResponseSuccess
|
2105
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentProfileResponseSuccess
|
2106
|
+
|
2107
|
+
interface _UpdateGlossaryResponseSuccess
|
2108
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGlossaryOutput]
|
2109
|
+
def description: () -> ::String
|
2110
|
+
def domain_id: () -> ::String
|
2111
|
+
def id: () -> ::String
|
2112
|
+
def name: () -> ::String
|
2113
|
+
def owning_project_id: () -> ::String
|
2114
|
+
def status: () -> ("DISABLED" | "ENABLED")
|
2115
|
+
end
|
2116
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_glossary-instance_method
|
2117
|
+
def update_glossary: (
|
2118
|
+
?client_token: ::String,
|
2119
|
+
?description: ::String,
|
2120
|
+
domain_identifier: ::String,
|
2121
|
+
identifier: ::String,
|
2122
|
+
?name: ::String,
|
2123
|
+
?status: ("DISABLED" | "ENABLED")
|
2124
|
+
) -> _UpdateGlossaryResponseSuccess
|
2125
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGlossaryResponseSuccess
|
2126
|
+
|
2127
|
+
interface _UpdateGlossaryTermResponseSuccess
|
2128
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGlossaryTermOutput]
|
2129
|
+
def domain_id: () -> ::String
|
2130
|
+
def glossary_id: () -> ::String
|
2131
|
+
def id: () -> ::String
|
2132
|
+
def long_description: () -> ::String
|
2133
|
+
def name: () -> ::String
|
2134
|
+
def short_description: () -> ::String
|
2135
|
+
def status: () -> ("ENABLED" | "DISABLED")
|
2136
|
+
def term_relations: () -> Types::TermRelations
|
2137
|
+
end
|
2138
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_glossary_term-instance_method
|
2139
|
+
def update_glossary_term: (
|
2140
|
+
domain_identifier: ::String,
|
2141
|
+
?glossary_identifier: ::String,
|
2142
|
+
identifier: ::String,
|
2143
|
+
?long_description: ::String,
|
2144
|
+
?name: ::String,
|
2145
|
+
?short_description: ::String,
|
2146
|
+
?status: ("ENABLED" | "DISABLED"),
|
2147
|
+
?term_relations: {
|
2148
|
+
classifies: Array[::String]?,
|
2149
|
+
is_a: Array[::String]?
|
2150
|
+
}
|
2151
|
+
) -> _UpdateGlossaryTermResponseSuccess
|
2152
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGlossaryTermResponseSuccess
|
2153
|
+
|
2154
|
+
interface _UpdateGroupProfileResponseSuccess
|
2155
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGroupProfileOutput]
|
2156
|
+
def domain_id: () -> ::String
|
2157
|
+
def group_name: () -> ::String
|
2158
|
+
def id: () -> ::String
|
2159
|
+
def status: () -> ("ASSIGNED" | "NOT_ASSIGNED")
|
2160
|
+
end
|
2161
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_group_profile-instance_method
|
2162
|
+
def update_group_profile: (
|
2163
|
+
domain_identifier: ::String,
|
2164
|
+
group_identifier: ::String,
|
2165
|
+
status: ("ASSIGNED" | "NOT_ASSIGNED")
|
2166
|
+
) -> _UpdateGroupProfileResponseSuccess
|
2167
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGroupProfileResponseSuccess
|
2168
|
+
|
2169
|
+
interface _UpdateProjectResponseSuccess
|
2170
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProjectOutput]
|
2171
|
+
def created_at: () -> ::Time
|
2172
|
+
def created_by: () -> ::String
|
2173
|
+
def description: () -> ::String
|
2174
|
+
def domain_id: () -> ::String
|
2175
|
+
def failure_reasons: () -> ::Array[Types::ProjectDeletionError]
|
2176
|
+
def glossary_terms: () -> ::Array[::String]
|
2177
|
+
def id: () -> ::String
|
2178
|
+
def last_updated_at: () -> ::Time
|
2179
|
+
def name: () -> ::String
|
2180
|
+
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
|
2181
|
+
end
|
2182
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_project-instance_method
|
2183
|
+
def update_project: (
|
2184
|
+
?description: ::String,
|
2185
|
+
domain_identifier: ::String,
|
2186
|
+
?glossary_terms: Array[::String],
|
2187
|
+
identifier: ::String,
|
2188
|
+
?name: ::String
|
2189
|
+
) -> _UpdateProjectResponseSuccess
|
2190
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProjectResponseSuccess
|
2191
|
+
|
2192
|
+
interface _UpdateSubscriptionGrantStatusResponseSuccess
|
2193
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSubscriptionGrantStatusOutput]
|
2194
|
+
def assets: () -> ::Array[Types::SubscribedAsset]
|
2195
|
+
def created_at: () -> ::Time
|
2196
|
+
def created_by: () -> ::String
|
2197
|
+
def domain_id: () -> ::String
|
2198
|
+
def granted_entity: () -> Types::GrantedEntity
|
2199
|
+
def id: () -> ::String
|
2200
|
+
def status: () -> ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
2201
|
+
def subscription_id: () -> ::String
|
2202
|
+
def subscription_target_id: () -> ::String
|
2203
|
+
def updated_at: () -> ::Time
|
2204
|
+
def updated_by: () -> ::String
|
2205
|
+
end
|
2206
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_subscription_grant_status-instance_method
|
2207
|
+
def update_subscription_grant_status: (
|
2208
|
+
asset_identifier: ::String,
|
2209
|
+
domain_identifier: ::String,
|
2210
|
+
?failure_cause: {
|
2211
|
+
message: ::String?
|
2212
|
+
},
|
2213
|
+
identifier: ::String,
|
2214
|
+
status: ("GRANT_PENDING" | "REVOKE_PENDING" | "GRANT_IN_PROGRESS" | "REVOKE_IN_PROGRESS" | "GRANTED" | "REVOKED" | "GRANT_FAILED" | "REVOKE_FAILED"),
|
2215
|
+
?target_name: ::String
|
2216
|
+
) -> _UpdateSubscriptionGrantStatusResponseSuccess
|
2217
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSubscriptionGrantStatusResponseSuccess
|
2218
|
+
|
2219
|
+
interface _UpdateSubscriptionRequestResponseSuccess
|
2220
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSubscriptionRequestOutput]
|
2221
|
+
def created_at: () -> ::Time
|
2222
|
+
def created_by: () -> ::String
|
2223
|
+
def decision_comment: () -> ::String
|
2224
|
+
def domain_id: () -> ::String
|
2225
|
+
def id: () -> ::String
|
2226
|
+
def request_reason: () -> ::String
|
2227
|
+
def reviewer_id: () -> ::String
|
2228
|
+
def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED")
|
2229
|
+
def subscribed_listings: () -> ::Array[Types::SubscribedListing]
|
2230
|
+
def subscribed_principals: () -> ::Array[Types::SubscribedPrincipal]
|
2231
|
+
def updated_at: () -> ::Time
|
2232
|
+
def updated_by: () -> ::String
|
2233
|
+
end
|
2234
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_subscription_request-instance_method
|
2235
|
+
def update_subscription_request: (
|
2236
|
+
domain_identifier: ::String,
|
2237
|
+
identifier: ::String,
|
2238
|
+
request_reason: ::String
|
2239
|
+
) -> _UpdateSubscriptionRequestResponseSuccess
|
2240
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSubscriptionRequestResponseSuccess
|
2241
|
+
|
2242
|
+
interface _UpdateSubscriptionTargetResponseSuccess
|
2243
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSubscriptionTargetOutput]
|
2244
|
+
def applicable_asset_types: () -> ::Array[::String]
|
2245
|
+
def authorized_principals: () -> ::Array[::String]
|
2246
|
+
def created_at: () -> ::Time
|
2247
|
+
def created_by: () -> ::String
|
2248
|
+
def domain_id: () -> ::String
|
2249
|
+
def environment_id: () -> ::String
|
2250
|
+
def id: () -> ::String
|
2251
|
+
def manage_access_role: () -> ::String
|
2252
|
+
def name: () -> ::String
|
2253
|
+
def project_id: () -> ::String
|
2254
|
+
def provider: () -> ::String
|
2255
|
+
def subscription_target_config: () -> ::Array[Types::SubscriptionTargetForm]
|
2256
|
+
def type: () -> ::String
|
2257
|
+
def updated_at: () -> ::Time
|
2258
|
+
def updated_by: () -> ::String
|
2259
|
+
end
|
2260
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_subscription_target-instance_method
|
2261
|
+
def update_subscription_target: (
|
2262
|
+
?applicable_asset_types: Array[::String],
|
2263
|
+
?authorized_principals: Array[::String],
|
2264
|
+
domain_identifier: ::String,
|
2265
|
+
environment_identifier: ::String,
|
2266
|
+
identifier: ::String,
|
2267
|
+
?manage_access_role: ::String,
|
2268
|
+
?name: ::String,
|
2269
|
+
?provider: ::String,
|
2270
|
+
?subscription_target_config: Array[
|
2271
|
+
{
|
2272
|
+
content: ::String,
|
2273
|
+
form_name: ::String
|
2274
|
+
},
|
2275
|
+
]
|
2276
|
+
) -> _UpdateSubscriptionTargetResponseSuccess
|
2277
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSubscriptionTargetResponseSuccess
|
2278
|
+
|
2279
|
+
interface _UpdateUserProfileResponseSuccess
|
2280
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateUserProfileOutput]
|
2281
|
+
def details: () -> Types::UserProfileDetails
|
2282
|
+
def domain_id: () -> ::String
|
2283
|
+
def id: () -> ::String
|
2284
|
+
def status: () -> ("ASSIGNED" | "NOT_ASSIGNED" | "ACTIVATED" | "DEACTIVATED")
|
2285
|
+
def type: () -> ("IAM" | "SSO")
|
2286
|
+
end
|
2287
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_user_profile-instance_method
|
2288
|
+
def update_user_profile: (
|
2289
|
+
domain_identifier: ::String,
|
2290
|
+
status: ("ASSIGNED" | "NOT_ASSIGNED" | "ACTIVATED" | "DEACTIVATED"),
|
2291
|
+
?type: ("IAM" | "SSO"),
|
2292
|
+
user_identifier: ::String
|
2293
|
+
) -> _UpdateUserProfileResponseSuccess
|
2294
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUserProfileResponseSuccess
|
2295
|
+
end
|
2296
|
+
end
|
2297
|
+
end
|
2298
|
+
|