aws-sdk-datazone 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,2290 @@
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 glossary_terms: () -> ::Array[::String]
573
+ def id: () -> ::String
574
+ def last_updated_at: () -> ::Time
575
+ def name: () -> ::String
576
+ end
577
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_project-instance_method
578
+ def create_project: (
579
+ ?description: ::String,
580
+ domain_identifier: ::String,
581
+ ?glossary_terms: Array[::String],
582
+ name: ::String
583
+ ) -> _CreateProjectResponseSuccess
584
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectResponseSuccess
585
+
586
+ interface _CreateProjectMembershipResponseSuccess
587
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateProjectMembershipOutput]
588
+ end
589
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_project_membership-instance_method
590
+ def create_project_membership: (
591
+ designation: ("PROJECT_OWNER" | "PROJECT_CONTRIBUTOR"),
592
+ domain_identifier: ::String,
593
+ member: {
594
+ group_identifier: ::String?,
595
+ user_identifier: ::String?
596
+ },
597
+ project_identifier: ::String
598
+ ) -> _CreateProjectMembershipResponseSuccess
599
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectMembershipResponseSuccess
600
+
601
+ interface _CreateSubscriptionGrantResponseSuccess
602
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSubscriptionGrantOutput]
603
+ def assets: () -> ::Array[Types::SubscribedAsset]
604
+ def created_at: () -> ::Time
605
+ def created_by: () -> ::String
606
+ def domain_id: () -> ::String
607
+ def granted_entity: () -> Types::GrantedEntity
608
+ def id: () -> ::String
609
+ def status: () -> ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
610
+ def subscription_id: () -> ::String
611
+ def subscription_target_id: () -> ::String
612
+ def updated_at: () -> ::Time
613
+ def updated_by: () -> ::String
614
+ end
615
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_subscription_grant-instance_method
616
+ def create_subscription_grant: (
617
+ ?asset_target_names: Array[
618
+ {
619
+ asset_id: ::String,
620
+ target_name: ::String
621
+ },
622
+ ],
623
+ ?client_token: ::String,
624
+ domain_identifier: ::String,
625
+ environment_identifier: ::String,
626
+ granted_entity: {
627
+ listing: {
628
+ identifier: ::String,
629
+ revision: ::String
630
+ }?
631
+ },
632
+ subscription_target_identifier: ::String
633
+ ) -> _CreateSubscriptionGrantResponseSuccess
634
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSubscriptionGrantResponseSuccess
635
+
636
+ interface _CreateSubscriptionRequestResponseSuccess
637
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSubscriptionRequestOutput]
638
+ def created_at: () -> ::Time
639
+ def created_by: () -> ::String
640
+ def decision_comment: () -> ::String
641
+ def domain_id: () -> ::String
642
+ def id: () -> ::String
643
+ def request_reason: () -> ::String
644
+ def reviewer_id: () -> ::String
645
+ def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED")
646
+ def subscribed_listings: () -> ::Array[Types::SubscribedListing]
647
+ def subscribed_principals: () -> ::Array[Types::SubscribedPrincipal]
648
+ def updated_at: () -> ::Time
649
+ def updated_by: () -> ::String
650
+ end
651
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_subscription_request-instance_method
652
+ def create_subscription_request: (
653
+ ?client_token: ::String,
654
+ domain_identifier: ::String,
655
+ request_reason: ::String,
656
+ subscribed_listings: Array[
657
+ {
658
+ identifier: ::String
659
+ },
660
+ ],
661
+ subscribed_principals: Array[
662
+ {
663
+ project: {
664
+ identifier: ::String?
665
+ }?
666
+ },
667
+ ]
668
+ ) -> _CreateSubscriptionRequestResponseSuccess
669
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSubscriptionRequestResponseSuccess
670
+
671
+ interface _CreateSubscriptionTargetResponseSuccess
672
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSubscriptionTargetOutput]
673
+ def applicable_asset_types: () -> ::Array[::String]
674
+ def authorized_principals: () -> ::Array[::String]
675
+ def created_at: () -> ::Time
676
+ def created_by: () -> ::String
677
+ def domain_id: () -> ::String
678
+ def environment_id: () -> ::String
679
+ def id: () -> ::String
680
+ def manage_access_role: () -> ::String
681
+ def name: () -> ::String
682
+ def project_id: () -> ::String
683
+ def provider: () -> ::String
684
+ def subscription_target_config: () -> ::Array[Types::SubscriptionTargetForm]
685
+ def type: () -> ::String
686
+ def updated_at: () -> ::Time
687
+ def updated_by: () -> ::String
688
+ end
689
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_subscription_target-instance_method
690
+ def create_subscription_target: (
691
+ applicable_asset_types: Array[::String],
692
+ authorized_principals: Array[::String],
693
+ ?client_token: ::String,
694
+ domain_identifier: ::String,
695
+ environment_identifier: ::String,
696
+ manage_access_role: ::String,
697
+ name: ::String,
698
+ ?provider: ::String,
699
+ subscription_target_config: Array[
700
+ {
701
+ content: ::String,
702
+ form_name: ::String
703
+ },
704
+ ],
705
+ type: ::String
706
+ ) -> _CreateSubscriptionTargetResponseSuccess
707
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSubscriptionTargetResponseSuccess
708
+
709
+ interface _CreateUserProfileResponseSuccess
710
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateUserProfileOutput]
711
+ def details: () -> Types::UserProfileDetails
712
+ def domain_id: () -> ::String
713
+ def id: () -> ::String
714
+ def status: () -> ("ASSIGNED" | "NOT_ASSIGNED" | "ACTIVATED" | "DEACTIVATED")
715
+ def type: () -> ("IAM" | "SSO")
716
+ end
717
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_user_profile-instance_method
718
+ def create_user_profile: (
719
+ ?client_token: ::String,
720
+ domain_identifier: ::String,
721
+ user_identifier: ::String,
722
+ ?user_type: ("IAM_USER" | "IAM_ROLE" | "SSO_USER")
723
+ ) -> _CreateUserProfileResponseSuccess
724
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserProfileResponseSuccess
725
+
726
+ interface _DeleteAssetResponseSuccess
727
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAssetOutput]
728
+ end
729
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_asset-instance_method
730
+ def delete_asset: (
731
+ domain_identifier: ::String,
732
+ identifier: ::String
733
+ ) -> _DeleteAssetResponseSuccess
734
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAssetResponseSuccess
735
+
736
+ interface _DeleteAssetTypeResponseSuccess
737
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAssetTypeOutput]
738
+ end
739
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_asset_type-instance_method
740
+ def delete_asset_type: (
741
+ domain_identifier: ::String,
742
+ identifier: ::String
743
+ ) -> _DeleteAssetTypeResponseSuccess
744
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAssetTypeResponseSuccess
745
+
746
+ interface _DeleteDataSourceResponseSuccess
747
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataSourceOutput]
748
+ def asset_forms_output: () -> ::Array[Types::FormOutput]
749
+ def configuration: () -> Types::DataSourceConfigurationOutput
750
+ def created_at: () -> ::Time
751
+ def description: () -> ::String
752
+ def domain_id: () -> ::String
753
+ def enable_setting: () -> ("ENABLED" | "DISABLED")
754
+ def environment_id: () -> ::String
755
+ def error_message: () -> Types::DataSourceErrorMessage
756
+ def id: () -> ::String
757
+ def last_run_at: () -> ::Time
758
+ def last_run_error_message: () -> Types::DataSourceErrorMessage
759
+ def last_run_status: () -> ("REQUESTED" | "RUNNING" | "FAILED" | "PARTIALLY_SUCCEEDED" | "SUCCESS")
760
+ def name: () -> ::String
761
+ def project_id: () -> ::String
762
+ def publish_on_import: () -> bool
763
+ def schedule: () -> Types::ScheduleConfiguration
764
+ def status: () -> ("CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION")
765
+ def type: () -> ::String
766
+ def updated_at: () -> ::Time
767
+ end
768
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_data_source-instance_method
769
+ def delete_data_source: (
770
+ ?client_token: ::String,
771
+ domain_identifier: ::String,
772
+ identifier: ::String
773
+ ) -> _DeleteDataSourceResponseSuccess
774
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataSourceResponseSuccess
775
+
776
+ interface _DeleteDomainResponseSuccess
777
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDomainOutput]
778
+ def status: () -> ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
779
+ end
780
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_domain-instance_method
781
+ def delete_domain: (
782
+ ?client_token: ::String,
783
+ identifier: ::String
784
+ ) -> _DeleteDomainResponseSuccess
785
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDomainResponseSuccess
786
+
787
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_environment-instance_method
788
+ def delete_environment: (
789
+ domain_identifier: ::String,
790
+ identifier: ::String
791
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
792
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
793
+
794
+ interface _DeleteEnvironmentBlueprintConfigurationResponseSuccess
795
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEnvironmentBlueprintConfigurationOutput]
796
+ end
797
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_environment_blueprint_configuration-instance_method
798
+ def delete_environment_blueprint_configuration: (
799
+ domain_identifier: ::String,
800
+ environment_blueprint_identifier: ::String
801
+ ) -> _DeleteEnvironmentBlueprintConfigurationResponseSuccess
802
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEnvironmentBlueprintConfigurationResponseSuccess
803
+
804
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_environment_profile-instance_method
805
+ def delete_environment_profile: (
806
+ domain_identifier: ::String,
807
+ identifier: ::String
808
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
809
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
810
+
811
+ interface _DeleteFormTypeResponseSuccess
812
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteFormTypeOutput]
813
+ end
814
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_form_type-instance_method
815
+ def delete_form_type: (
816
+ domain_identifier: ::String,
817
+ form_type_identifier: ::String
818
+ ) -> _DeleteFormTypeResponseSuccess
819
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteFormTypeResponseSuccess
820
+
821
+ interface _DeleteGlossaryResponseSuccess
822
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGlossaryOutput]
823
+ end
824
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_glossary-instance_method
825
+ def delete_glossary: (
826
+ domain_identifier: ::String,
827
+ identifier: ::String
828
+ ) -> _DeleteGlossaryResponseSuccess
829
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGlossaryResponseSuccess
830
+
831
+ interface _DeleteGlossaryTermResponseSuccess
832
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGlossaryTermOutput]
833
+ end
834
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_glossary_term-instance_method
835
+ def delete_glossary_term: (
836
+ domain_identifier: ::String,
837
+ identifier: ::String
838
+ ) -> _DeleteGlossaryTermResponseSuccess
839
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGlossaryTermResponseSuccess
840
+
841
+ interface _DeleteListingResponseSuccess
842
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteListingOutput]
843
+ end
844
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_listing-instance_method
845
+ def delete_listing: (
846
+ domain_identifier: ::String,
847
+ identifier: ::String
848
+ ) -> _DeleteListingResponseSuccess
849
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteListingResponseSuccess
850
+
851
+ interface _DeleteProjectResponseSuccess
852
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteProjectOutput]
853
+ end
854
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_project-instance_method
855
+ def delete_project: (
856
+ domain_identifier: ::String,
857
+ identifier: ::String
858
+ ) -> _DeleteProjectResponseSuccess
859
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProjectResponseSuccess
860
+
861
+ interface _DeleteProjectMembershipResponseSuccess
862
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteProjectMembershipOutput]
863
+ end
864
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_project_membership-instance_method
865
+ def delete_project_membership: (
866
+ domain_identifier: ::String,
867
+ member: {
868
+ group_identifier: ::String?,
869
+ user_identifier: ::String?
870
+ },
871
+ project_identifier: ::String
872
+ ) -> _DeleteProjectMembershipResponseSuccess
873
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProjectMembershipResponseSuccess
874
+
875
+ interface _DeleteSubscriptionGrantResponseSuccess
876
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSubscriptionGrantOutput]
877
+ def assets: () -> ::Array[Types::SubscribedAsset]
878
+ def created_at: () -> ::Time
879
+ def created_by: () -> ::String
880
+ def domain_id: () -> ::String
881
+ def granted_entity: () -> Types::GrantedEntity
882
+ def id: () -> ::String
883
+ def status: () -> ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
884
+ def subscription_id: () -> ::String
885
+ def subscription_target_id: () -> ::String
886
+ def updated_at: () -> ::Time
887
+ def updated_by: () -> ::String
888
+ end
889
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_subscription_grant-instance_method
890
+ def delete_subscription_grant: (
891
+ domain_identifier: ::String,
892
+ identifier: ::String
893
+ ) -> _DeleteSubscriptionGrantResponseSuccess
894
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSubscriptionGrantResponseSuccess
895
+
896
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_subscription_request-instance_method
897
+ def delete_subscription_request: (
898
+ domain_identifier: ::String,
899
+ identifier: ::String
900
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
901
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
902
+
903
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_subscription_target-instance_method
904
+ def delete_subscription_target: (
905
+ domain_identifier: ::String,
906
+ environment_identifier: ::String,
907
+ identifier: ::String
908
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
909
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
910
+
911
+ interface _GetAssetResponseSuccess
912
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAssetOutput]
913
+ def created_at: () -> ::Time
914
+ def created_by: () -> ::String
915
+ def description: () -> ::String
916
+ def domain_id: () -> ::String
917
+ def external_identifier: () -> ::String
918
+ def first_revision_created_at: () -> ::Time
919
+ def first_revision_created_by: () -> ::String
920
+ def forms_output: () -> ::Array[Types::FormOutput]
921
+ def glossary_terms: () -> ::Array[::String]
922
+ def id: () -> ::String
923
+ def listing: () -> Types::AssetListingDetails
924
+ def name: () -> ::String
925
+ def owning_project_id: () -> ::String
926
+ def read_only_forms_output: () -> ::Array[Types::FormOutput]
927
+ def revision: () -> ::String
928
+ def type_identifier: () -> ::String
929
+ def type_revision: () -> ::String
930
+ end
931
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_asset-instance_method
932
+ def get_asset: (
933
+ domain_identifier: ::String,
934
+ identifier: ::String,
935
+ ?revision: ::String
936
+ ) -> _GetAssetResponseSuccess
937
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssetResponseSuccess
938
+
939
+ interface _GetAssetTypeResponseSuccess
940
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAssetTypeOutput]
941
+ def created_at: () -> ::Time
942
+ def created_by: () -> ::String
943
+ def description: () -> ::String
944
+ def domain_id: () -> ::String
945
+ def forms_output: () -> ::Hash[::String, Types::FormEntryOutput]
946
+ def name: () -> ::String
947
+ def origin_domain_id: () -> ::String
948
+ def origin_project_id: () -> ::String
949
+ def owning_project_id: () -> ::String
950
+ def revision: () -> ::String
951
+ def updated_at: () -> ::Time
952
+ def updated_by: () -> ::String
953
+ end
954
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_asset_type-instance_method
955
+ def get_asset_type: (
956
+ domain_identifier: ::String,
957
+ identifier: ::String,
958
+ ?revision: ::String
959
+ ) -> _GetAssetTypeResponseSuccess
960
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssetTypeResponseSuccess
961
+
962
+ interface _GetDataSourceResponseSuccess
963
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDataSourceOutput]
964
+ def asset_forms_output: () -> ::Array[Types::FormOutput]
965
+ def configuration: () -> Types::DataSourceConfigurationOutput
966
+ def created_at: () -> ::Time
967
+ def description: () -> ::String
968
+ def domain_id: () -> ::String
969
+ def enable_setting: () -> ("ENABLED" | "DISABLED")
970
+ def environment_id: () -> ::String
971
+ def error_message: () -> Types::DataSourceErrorMessage
972
+ def id: () -> ::String
973
+ def last_run_asset_count: () -> ::Integer
974
+ def last_run_at: () -> ::Time
975
+ def last_run_error_message: () -> Types::DataSourceErrorMessage
976
+ def last_run_status: () -> ("REQUESTED" | "RUNNING" | "FAILED" | "PARTIALLY_SUCCEEDED" | "SUCCESS")
977
+ def name: () -> ::String
978
+ def project_id: () -> ::String
979
+ def publish_on_import: () -> bool
980
+ def recommendation: () -> Types::RecommendationConfiguration
981
+ def schedule: () -> Types::ScheduleConfiguration
982
+ def status: () -> ("CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION")
983
+ def type: () -> ::String
984
+ def updated_at: () -> ::Time
985
+ end
986
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_data_source-instance_method
987
+ def get_data_source: (
988
+ domain_identifier: ::String,
989
+ identifier: ::String
990
+ ) -> _GetDataSourceResponseSuccess
991
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataSourceResponseSuccess
992
+
993
+ interface _GetDataSourceRunResponseSuccess
994
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDataSourceRunOutput]
995
+ def created_at: () -> ::Time
996
+ def data_source_configuration_snapshot: () -> ::String
997
+ def data_source_id: () -> ::String
998
+ def domain_id: () -> ::String
999
+ def error_message: () -> Types::DataSourceErrorMessage
1000
+ def id: () -> ::String
1001
+ def project_id: () -> ::String
1002
+ def run_statistics_for_assets: () -> Types::RunStatisticsForAssets
1003
+ def started_at: () -> ::Time
1004
+ def status: () -> ("REQUESTED" | "RUNNING" | "FAILED" | "PARTIALLY_SUCCEEDED" | "SUCCESS")
1005
+ def stopped_at: () -> ::Time
1006
+ def type: () -> ("PRIORITIZED" | "SCHEDULED")
1007
+ def updated_at: () -> ::Time
1008
+ end
1009
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_data_source_run-instance_method
1010
+ def get_data_source_run: (
1011
+ domain_identifier: ::String,
1012
+ identifier: ::String
1013
+ ) -> _GetDataSourceRunResponseSuccess
1014
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataSourceRunResponseSuccess
1015
+
1016
+ interface _GetDomainResponseSuccess
1017
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDomainOutput]
1018
+ def arn: () -> ::String
1019
+ def created_at: () -> ::Time
1020
+ def description: () -> ::String
1021
+ def domain_execution_role: () -> ::String
1022
+ def id: () -> ::String
1023
+ def kms_key_identifier: () -> ::String
1024
+ def last_updated_at: () -> ::Time
1025
+ def name: () -> ::String
1026
+ def portal_url: () -> ::String
1027
+ def single_sign_on: () -> Types::SingleSignOn
1028
+ def status: () -> ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
1029
+ def tags: () -> ::Hash[::String, ::String]
1030
+ end
1031
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_domain-instance_method
1032
+ def get_domain: (
1033
+ identifier: ::String
1034
+ ) -> _GetDomainResponseSuccess
1035
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainResponseSuccess
1036
+
1037
+ interface _GetEnvironmentResponseSuccess
1038
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentOutput]
1039
+ def aws_account_id: () -> ::String
1040
+ def aws_account_region: () -> ::String
1041
+ def created_at: () -> ::Time
1042
+ def created_by: () -> ::String
1043
+ def deployment_properties: () -> Types::DeploymentProperties
1044
+ def description: () -> ::String
1045
+ def domain_id: () -> ::String
1046
+ def environment_actions: () -> ::Array[Types::ConfigurableEnvironmentAction]
1047
+ def environment_blueprint_id: () -> ::String
1048
+ def environment_profile_id: () -> ::String
1049
+ def glossary_terms: () -> ::Array[::String]
1050
+ def id: () -> ::String
1051
+ def last_deployment: () -> Types::Deployment
1052
+ def name: () -> ::String
1053
+ def project_id: () -> ::String
1054
+ def provider: () -> ::String
1055
+ def provisioned_resources: () -> ::Array[Types::Resource]
1056
+ def provisioning_properties: () -> Types::ProvisioningProperties
1057
+ def status: () -> ("ACTIVE" | "CREATING" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED" | "VALIDATION_FAILED" | "SUSPENDED" | "DISABLED" | "EXPIRED" | "DELETED" | "INACCESSIBLE")
1058
+ def updated_at: () -> ::Time
1059
+ def user_parameters: () -> ::Array[Types::CustomParameter]
1060
+ end
1061
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_environment-instance_method
1062
+ def get_environment: (
1063
+ domain_identifier: ::String,
1064
+ identifier: ::String
1065
+ ) -> _GetEnvironmentResponseSuccess
1066
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentResponseSuccess
1067
+
1068
+ interface _GetEnvironmentBlueprintResponseSuccess
1069
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentBlueprintOutput]
1070
+ def created_at: () -> ::Time
1071
+ def deployment_properties: () -> Types::DeploymentProperties
1072
+ def description: () -> ::String
1073
+ def glossary_terms: () -> ::Array[::String]
1074
+ def id: () -> ::String
1075
+ def name: () -> ::String
1076
+ def provider: () -> ::String
1077
+ def provisioning_properties: () -> Types::ProvisioningProperties
1078
+ def updated_at: () -> ::Time
1079
+ def user_parameters: () -> ::Array[Types::CustomParameter]
1080
+ end
1081
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_environment_blueprint-instance_method
1082
+ def get_environment_blueprint: (
1083
+ domain_identifier: ::String,
1084
+ identifier: ::String
1085
+ ) -> _GetEnvironmentBlueprintResponseSuccess
1086
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentBlueprintResponseSuccess
1087
+
1088
+ interface _GetEnvironmentBlueprintConfigurationResponseSuccess
1089
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentBlueprintConfigurationOutput]
1090
+ def created_at: () -> ::Time
1091
+ def domain_id: () -> ::String
1092
+ def enabled_regions: () -> ::Array[::String]
1093
+ def environment_blueprint_id: () -> ::String
1094
+ def manage_access_role_arn: () -> ::String
1095
+ def provisioning_role_arn: () -> ::String
1096
+ def regional_parameters: () -> ::Hash[::String, ::Hash[::String, ::String]]
1097
+ def updated_at: () -> ::Time
1098
+ end
1099
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_environment_blueprint_configuration-instance_method
1100
+ def get_environment_blueprint_configuration: (
1101
+ domain_identifier: ::String,
1102
+ environment_blueprint_identifier: ::String
1103
+ ) -> _GetEnvironmentBlueprintConfigurationResponseSuccess
1104
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentBlueprintConfigurationResponseSuccess
1105
+
1106
+ interface _GetEnvironmentProfileResponseSuccess
1107
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentProfileOutput]
1108
+ def aws_account_id: () -> ::String
1109
+ def aws_account_region: () -> ::String
1110
+ def created_at: () -> ::Time
1111
+ def created_by: () -> ::String
1112
+ def description: () -> ::String
1113
+ def domain_id: () -> ::String
1114
+ def environment_blueprint_id: () -> ::String
1115
+ def id: () -> ::String
1116
+ def name: () -> ::String
1117
+ def project_id: () -> ::String
1118
+ def updated_at: () -> ::Time
1119
+ def user_parameters: () -> ::Array[Types::CustomParameter]
1120
+ end
1121
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_environment_profile-instance_method
1122
+ def get_environment_profile: (
1123
+ domain_identifier: ::String,
1124
+ identifier: ::String
1125
+ ) -> _GetEnvironmentProfileResponseSuccess
1126
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentProfileResponseSuccess
1127
+
1128
+ interface _GetFormTypeResponseSuccess
1129
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetFormTypeOutput]
1130
+ def created_at: () -> ::Time
1131
+ def created_by: () -> ::String
1132
+ def description: () -> ::String
1133
+ def domain_id: () -> ::String
1134
+ def imports: () -> ::Array[Types::Import]
1135
+ def model: () -> Types::Model
1136
+ def name: () -> ::String
1137
+ def origin_domain_id: () -> ::String
1138
+ def origin_project_id: () -> ::String
1139
+ def owning_project_id: () -> ::String
1140
+ def revision: () -> ::String
1141
+ def status: () -> ("ENABLED" | "DISABLED")
1142
+ end
1143
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_form_type-instance_method
1144
+ def get_form_type: (
1145
+ domain_identifier: ::String,
1146
+ form_type_identifier: ::String,
1147
+ ?revision: ::String
1148
+ ) -> _GetFormTypeResponseSuccess
1149
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFormTypeResponseSuccess
1150
+
1151
+ interface _GetGlossaryResponseSuccess
1152
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetGlossaryOutput]
1153
+ def created_at: () -> ::Time
1154
+ def created_by: () -> ::String
1155
+ def description: () -> ::String
1156
+ def domain_id: () -> ::String
1157
+ def id: () -> ::String
1158
+ def name: () -> ::String
1159
+ def owning_project_id: () -> ::String
1160
+ def status: () -> ("DISABLED" | "ENABLED")
1161
+ def updated_at: () -> ::Time
1162
+ def updated_by: () -> ::String
1163
+ end
1164
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_glossary-instance_method
1165
+ def get_glossary: (
1166
+ domain_identifier: ::String,
1167
+ identifier: ::String
1168
+ ) -> _GetGlossaryResponseSuccess
1169
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGlossaryResponseSuccess
1170
+
1171
+ interface _GetGlossaryTermResponseSuccess
1172
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetGlossaryTermOutput]
1173
+ def created_at: () -> ::Time
1174
+ def created_by: () -> ::String
1175
+ def domain_id: () -> ::String
1176
+ def glossary_id: () -> ::String
1177
+ def id: () -> ::String
1178
+ def long_description: () -> ::String
1179
+ def name: () -> ::String
1180
+ def short_description: () -> ::String
1181
+ def status: () -> ("ENABLED" | "DISABLED")
1182
+ def term_relations: () -> Types::TermRelations
1183
+ def updated_at: () -> ::Time
1184
+ def updated_by: () -> ::String
1185
+ end
1186
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_glossary_term-instance_method
1187
+ def get_glossary_term: (
1188
+ domain_identifier: ::String,
1189
+ identifier: ::String
1190
+ ) -> _GetGlossaryTermResponseSuccess
1191
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGlossaryTermResponseSuccess
1192
+
1193
+ interface _GetGroupProfileResponseSuccess
1194
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetGroupProfileOutput]
1195
+ def domain_id: () -> ::String
1196
+ def group_name: () -> ::String
1197
+ def id: () -> ::String
1198
+ def status: () -> ("ASSIGNED" | "NOT_ASSIGNED")
1199
+ end
1200
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_group_profile-instance_method
1201
+ def get_group_profile: (
1202
+ domain_identifier: ::String,
1203
+ group_identifier: ::String
1204
+ ) -> _GetGroupProfileResponseSuccess
1205
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGroupProfileResponseSuccess
1206
+
1207
+ interface _GetIamPortalLoginUrlResponseSuccess
1208
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetIamPortalLoginUrlOutput]
1209
+ def auth_code_url: () -> ::String
1210
+ def user_profile_id: () -> ::String
1211
+ end
1212
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_iam_portal_login_url-instance_method
1213
+ def get_iam_portal_login_url: (
1214
+ domain_identifier: ::String
1215
+ ) -> _GetIamPortalLoginUrlResponseSuccess
1216
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIamPortalLoginUrlResponseSuccess
1217
+
1218
+ interface _GetListingResponseSuccess
1219
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetListingOutput]
1220
+ def created_at: () -> ::Time
1221
+ def created_by: () -> ::String
1222
+ def description: () -> ::String
1223
+ def domain_id: () -> ::String
1224
+ def id: () -> ::String
1225
+ def item: () -> Types::ListingItem
1226
+ def listing_revision: () -> ::String
1227
+ def name: () -> ::String
1228
+ def status: () -> ("CREATING" | "ACTIVE" | "INACTIVE")
1229
+ def updated_at: () -> ::Time
1230
+ def updated_by: () -> ::String
1231
+ end
1232
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_listing-instance_method
1233
+ def get_listing: (
1234
+ domain_identifier: ::String,
1235
+ identifier: ::String,
1236
+ ?listing_revision: ::String
1237
+ ) -> _GetListingResponseSuccess
1238
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetListingResponseSuccess
1239
+
1240
+ interface _GetProjectResponseSuccess
1241
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetProjectOutput]
1242
+ def created_at: () -> ::Time
1243
+ def created_by: () -> ::String
1244
+ def description: () -> ::String
1245
+ def domain_id: () -> ::String
1246
+ def glossary_terms: () -> ::Array[::String]
1247
+ def id: () -> ::String
1248
+ def last_updated_at: () -> ::Time
1249
+ def name: () -> ::String
1250
+ end
1251
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_project-instance_method
1252
+ def get_project: (
1253
+ domain_identifier: ::String,
1254
+ identifier: ::String
1255
+ ) -> _GetProjectResponseSuccess
1256
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProjectResponseSuccess
1257
+
1258
+ interface _GetSubscriptionResponseSuccess
1259
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSubscriptionOutput]
1260
+ def created_at: () -> ::Time
1261
+ def created_by: () -> ::String
1262
+ def domain_id: () -> ::String
1263
+ def id: () -> ::String
1264
+ def retain_permissions: () -> bool
1265
+ def status: () -> ("APPROVED" | "REVOKED" | "CANCELLED")
1266
+ def subscribed_listing: () -> Types::SubscribedListing
1267
+ def subscribed_principal: () -> Types::SubscribedPrincipal
1268
+ def subscription_request_id: () -> ::String
1269
+ def updated_at: () -> ::Time
1270
+ def updated_by: () -> ::String
1271
+ end
1272
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_subscription-instance_method
1273
+ def get_subscription: (
1274
+ domain_identifier: ::String,
1275
+ identifier: ::String
1276
+ ) -> _GetSubscriptionResponseSuccess
1277
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSubscriptionResponseSuccess
1278
+
1279
+ interface _GetSubscriptionGrantResponseSuccess
1280
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSubscriptionGrantOutput]
1281
+ def assets: () -> ::Array[Types::SubscribedAsset]
1282
+ def created_at: () -> ::Time
1283
+ def created_by: () -> ::String
1284
+ def domain_id: () -> ::String
1285
+ def granted_entity: () -> Types::GrantedEntity
1286
+ def id: () -> ::String
1287
+ def status: () -> ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
1288
+ def subscription_id: () -> ::String
1289
+ def subscription_target_id: () -> ::String
1290
+ def updated_at: () -> ::Time
1291
+ def updated_by: () -> ::String
1292
+ end
1293
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_subscription_grant-instance_method
1294
+ def get_subscription_grant: (
1295
+ domain_identifier: ::String,
1296
+ identifier: ::String
1297
+ ) -> _GetSubscriptionGrantResponseSuccess
1298
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSubscriptionGrantResponseSuccess
1299
+
1300
+ interface _GetSubscriptionRequestDetailsResponseSuccess
1301
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSubscriptionRequestDetailsOutput]
1302
+ def created_at: () -> ::Time
1303
+ def created_by: () -> ::String
1304
+ def decision_comment: () -> ::String
1305
+ def domain_id: () -> ::String
1306
+ def id: () -> ::String
1307
+ def request_reason: () -> ::String
1308
+ def reviewer_id: () -> ::String
1309
+ def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED")
1310
+ def subscribed_listings: () -> ::Array[Types::SubscribedListing]
1311
+ def subscribed_principals: () -> ::Array[Types::SubscribedPrincipal]
1312
+ def updated_at: () -> ::Time
1313
+ def updated_by: () -> ::String
1314
+ end
1315
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_subscription_request_details-instance_method
1316
+ def get_subscription_request_details: (
1317
+ domain_identifier: ::String,
1318
+ identifier: ::String
1319
+ ) -> _GetSubscriptionRequestDetailsResponseSuccess
1320
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSubscriptionRequestDetailsResponseSuccess
1321
+
1322
+ interface _GetSubscriptionTargetResponseSuccess
1323
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSubscriptionTargetOutput]
1324
+ def applicable_asset_types: () -> ::Array[::String]
1325
+ def authorized_principals: () -> ::Array[::String]
1326
+ def created_at: () -> ::Time
1327
+ def created_by: () -> ::String
1328
+ def domain_id: () -> ::String
1329
+ def environment_id: () -> ::String
1330
+ def id: () -> ::String
1331
+ def manage_access_role: () -> ::String
1332
+ def name: () -> ::String
1333
+ def project_id: () -> ::String
1334
+ def provider: () -> ::String
1335
+ def subscription_target_config: () -> ::Array[Types::SubscriptionTargetForm]
1336
+ def type: () -> ::String
1337
+ def updated_at: () -> ::Time
1338
+ def updated_by: () -> ::String
1339
+ end
1340
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_subscription_target-instance_method
1341
+ def get_subscription_target: (
1342
+ domain_identifier: ::String,
1343
+ environment_identifier: ::String,
1344
+ identifier: ::String
1345
+ ) -> _GetSubscriptionTargetResponseSuccess
1346
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSubscriptionTargetResponseSuccess
1347
+
1348
+ interface _GetUserProfileResponseSuccess
1349
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetUserProfileOutput]
1350
+ def details: () -> Types::UserProfileDetails
1351
+ def domain_id: () -> ::String
1352
+ def id: () -> ::String
1353
+ def status: () -> ("ASSIGNED" | "NOT_ASSIGNED" | "ACTIVATED" | "DEACTIVATED")
1354
+ def type: () -> ("IAM" | "SSO")
1355
+ end
1356
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_user_profile-instance_method
1357
+ def get_user_profile: (
1358
+ domain_identifier: ::String,
1359
+ ?type: ("IAM" | "SSO"),
1360
+ user_identifier: ::String
1361
+ ) -> _GetUserProfileResponseSuccess
1362
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUserProfileResponseSuccess
1363
+
1364
+ interface _ListAssetRevisionsResponseSuccess
1365
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAssetRevisionsOutput]
1366
+ def items: () -> ::Array[Types::AssetRevision]
1367
+ def next_token: () -> ::String
1368
+ end
1369
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_asset_revisions-instance_method
1370
+ def list_asset_revisions: (
1371
+ domain_identifier: ::String,
1372
+ identifier: ::String,
1373
+ ?max_results: ::Integer,
1374
+ ?next_token: ::String
1375
+ ) -> _ListAssetRevisionsResponseSuccess
1376
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetRevisionsResponseSuccess
1377
+
1378
+ interface _ListDataSourceRunActivitiesResponseSuccess
1379
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDataSourceRunActivitiesOutput]
1380
+ def items: () -> ::Array[Types::DataSourceRunActivity]
1381
+ def next_token: () -> ::String
1382
+ end
1383
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_data_source_run_activities-instance_method
1384
+ def list_data_source_run_activities: (
1385
+ domain_identifier: ::String,
1386
+ identifier: ::String,
1387
+ ?max_results: ::Integer,
1388
+ ?next_token: ::String,
1389
+ ?status: ("FAILED" | "PUBLISHING_FAILED" | "SUCCEEDED_CREATED" | "SUCCEEDED_UPDATED" | "SKIPPED_ALREADY_IMPORTED" | "SKIPPED_ARCHIVED" | "SKIPPED_NO_ACCESS" | "UNCHANGED")
1390
+ ) -> _ListDataSourceRunActivitiesResponseSuccess
1391
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataSourceRunActivitiesResponseSuccess
1392
+
1393
+ interface _ListDataSourceRunsResponseSuccess
1394
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDataSourceRunsOutput]
1395
+ def items: () -> ::Array[Types::DataSourceRunSummary]
1396
+ def next_token: () -> ::String
1397
+ end
1398
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_data_source_runs-instance_method
1399
+ def list_data_source_runs: (
1400
+ data_source_identifier: ::String,
1401
+ domain_identifier: ::String,
1402
+ ?max_results: ::Integer,
1403
+ ?next_token: ::String,
1404
+ ?status: ("REQUESTED" | "RUNNING" | "FAILED" | "PARTIALLY_SUCCEEDED" | "SUCCESS")
1405
+ ) -> _ListDataSourceRunsResponseSuccess
1406
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataSourceRunsResponseSuccess
1407
+
1408
+ interface _ListDataSourcesResponseSuccess
1409
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDataSourcesOutput]
1410
+ def items: () -> ::Array[Types::DataSourceSummary]
1411
+ def next_token: () -> ::String
1412
+ end
1413
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_data_sources-instance_method
1414
+ def list_data_sources: (
1415
+ domain_identifier: ::String,
1416
+ ?environment_identifier: ::String,
1417
+ ?max_results: ::Integer,
1418
+ ?name: ::String,
1419
+ ?next_token: ::String,
1420
+ project_identifier: ::String,
1421
+ ?status: ("CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION"),
1422
+ ?type: ::String
1423
+ ) -> _ListDataSourcesResponseSuccess
1424
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataSourcesResponseSuccess
1425
+
1426
+ interface _ListDomainsResponseSuccess
1427
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainsOutput]
1428
+ def items: () -> ::Array[Types::DomainSummary]
1429
+ def next_token: () -> ::String
1430
+ end
1431
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_domains-instance_method
1432
+ def list_domains: (
1433
+ ?max_results: ::Integer,
1434
+ ?next_token: ::String,
1435
+ ?status: ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
1436
+ ) -> _ListDomainsResponseSuccess
1437
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainsResponseSuccess
1438
+
1439
+ interface _ListEnvironmentBlueprintConfigurationsResponseSuccess
1440
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEnvironmentBlueprintConfigurationsOutput]
1441
+ def items: () -> ::Array[Types::EnvironmentBlueprintConfigurationItem]
1442
+ def next_token: () -> ::String
1443
+ end
1444
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_environment_blueprint_configurations-instance_method
1445
+ def list_environment_blueprint_configurations: (
1446
+ domain_identifier: ::String,
1447
+ ?max_results: ::Integer,
1448
+ ?next_token: ::String
1449
+ ) -> _ListEnvironmentBlueprintConfigurationsResponseSuccess
1450
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentBlueprintConfigurationsResponseSuccess
1451
+
1452
+ interface _ListEnvironmentBlueprintsResponseSuccess
1453
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEnvironmentBlueprintsOutput]
1454
+ def items: () -> ::Array[Types::EnvironmentBlueprintSummary]
1455
+ def next_token: () -> ::String
1456
+ end
1457
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_environment_blueprints-instance_method
1458
+ def list_environment_blueprints: (
1459
+ domain_identifier: ::String,
1460
+ ?managed: bool,
1461
+ ?max_results: ::Integer,
1462
+ ?name: ::String,
1463
+ ?next_token: ::String
1464
+ ) -> _ListEnvironmentBlueprintsResponseSuccess
1465
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentBlueprintsResponseSuccess
1466
+
1467
+ interface _ListEnvironmentProfilesResponseSuccess
1468
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEnvironmentProfilesOutput]
1469
+ def items: () -> ::Array[Types::EnvironmentProfileSummary]
1470
+ def next_token: () -> ::String
1471
+ end
1472
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_environment_profiles-instance_method
1473
+ def list_environment_profiles: (
1474
+ ?aws_account_id: ::String,
1475
+ ?aws_account_region: ::String,
1476
+ domain_identifier: ::String,
1477
+ ?environment_blueprint_identifier: ::String,
1478
+ ?max_results: ::Integer,
1479
+ ?name: ::String,
1480
+ ?next_token: ::String,
1481
+ ?project_identifier: ::String
1482
+ ) -> _ListEnvironmentProfilesResponseSuccess
1483
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentProfilesResponseSuccess
1484
+
1485
+ interface _ListEnvironmentsResponseSuccess
1486
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEnvironmentsOutput]
1487
+ def items: () -> ::Array[Types::EnvironmentSummary]
1488
+ def next_token: () -> ::String
1489
+ end
1490
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_environments-instance_method
1491
+ def list_environments: (
1492
+ ?aws_account_id: ::String,
1493
+ ?aws_account_region: ::String,
1494
+ domain_identifier: ::String,
1495
+ ?environment_blueprint_identifier: ::String,
1496
+ ?environment_profile_identifier: ::String,
1497
+ ?max_results: ::Integer,
1498
+ ?name: ::String,
1499
+ ?next_token: ::String,
1500
+ project_identifier: ::String,
1501
+ ?provider: ::String,
1502
+ ?status: ("ACTIVE" | "CREATING" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED" | "VALIDATION_FAILED" | "SUSPENDED" | "DISABLED" | "EXPIRED" | "DELETED" | "INACCESSIBLE")
1503
+ ) -> _ListEnvironmentsResponseSuccess
1504
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentsResponseSuccess
1505
+
1506
+ interface _ListNotificationsResponseSuccess
1507
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListNotificationsOutput]
1508
+ def next_token: () -> ::String
1509
+ def notifications: () -> ::Array[Types::NotificationOutput]
1510
+ end
1511
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_notifications-instance_method
1512
+ def list_notifications: (
1513
+ ?after_timestamp: ::Time,
1514
+ ?before_timestamp: ::Time,
1515
+ domain_identifier: ::String,
1516
+ ?max_results: ::Integer,
1517
+ ?next_token: ::String,
1518
+ ?subjects: Array[::String],
1519
+ ?task_status: ("ACTIVE" | "INACTIVE"),
1520
+ type: ("TASK" | "EVENT")
1521
+ ) -> _ListNotificationsResponseSuccess
1522
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNotificationsResponseSuccess
1523
+
1524
+ interface _ListProjectMembershipsResponseSuccess
1525
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListProjectMembershipsOutput]
1526
+ def members: () -> ::Array[Types::ProjectMember]
1527
+ def next_token: () -> ::String
1528
+ end
1529
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_project_memberships-instance_method
1530
+ def list_project_memberships: (
1531
+ domain_identifier: ::String,
1532
+ ?max_results: ::Integer,
1533
+ ?next_token: ::String,
1534
+ project_identifier: ::String,
1535
+ ?sort_by: ("NAME"),
1536
+ ?sort_order: ("ASCENDING" | "DESCENDING")
1537
+ ) -> _ListProjectMembershipsResponseSuccess
1538
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProjectMembershipsResponseSuccess
1539
+
1540
+ interface _ListProjectsResponseSuccess
1541
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListProjectsOutput]
1542
+ def items: () -> ::Array[Types::ProjectSummary]
1543
+ def next_token: () -> ::String
1544
+ end
1545
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_projects-instance_method
1546
+ def list_projects: (
1547
+ domain_identifier: ::String,
1548
+ ?group_identifier: ::String,
1549
+ ?max_results: ::Integer,
1550
+ ?name: ::String,
1551
+ ?next_token: ::String,
1552
+ ?user_identifier: ::String
1553
+ ) -> _ListProjectsResponseSuccess
1554
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProjectsResponseSuccess
1555
+
1556
+ interface _ListSubscriptionGrantsResponseSuccess
1557
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSubscriptionGrantsOutput]
1558
+ def items: () -> ::Array[Types::SubscriptionGrantSummary]
1559
+ def next_token: () -> ::String
1560
+ end
1561
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_subscription_grants-instance_method
1562
+ def list_subscription_grants: (
1563
+ domain_identifier: ::String,
1564
+ ?environment_id: ::String,
1565
+ ?max_results: ::Integer,
1566
+ ?next_token: ::String,
1567
+ ?sort_by: ("CREATED_AT" | "UPDATED_AT"),
1568
+ ?sort_order: ("ASCENDING" | "DESCENDING"),
1569
+ ?subscribed_listing_id: ::String,
1570
+ ?subscription_id: ::String,
1571
+ ?subscription_target_id: ::String
1572
+ ) -> _ListSubscriptionGrantsResponseSuccess
1573
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSubscriptionGrantsResponseSuccess
1574
+
1575
+ interface _ListSubscriptionRequestsResponseSuccess
1576
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSubscriptionRequestsOutput]
1577
+ def items: () -> ::Array[Types::SubscriptionRequestSummary]
1578
+ def next_token: () -> ::String
1579
+ end
1580
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_subscription_requests-instance_method
1581
+ def list_subscription_requests: (
1582
+ ?approver_project_id: ::String,
1583
+ domain_identifier: ::String,
1584
+ ?max_results: ::Integer,
1585
+ ?next_token: ::String,
1586
+ ?owning_project_id: ::String,
1587
+ ?sort_by: ("CREATED_AT" | "UPDATED_AT"),
1588
+ ?sort_order: ("ASCENDING" | "DESCENDING"),
1589
+ ?status: ("PENDING" | "ACCEPTED" | "REJECTED"),
1590
+ ?subscribed_listing_id: ::String
1591
+ ) -> _ListSubscriptionRequestsResponseSuccess
1592
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSubscriptionRequestsResponseSuccess
1593
+
1594
+ interface _ListSubscriptionTargetsResponseSuccess
1595
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSubscriptionTargetsOutput]
1596
+ def items: () -> ::Array[Types::SubscriptionTargetSummary]
1597
+ def next_token: () -> ::String
1598
+ end
1599
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_subscription_targets-instance_method
1600
+ def list_subscription_targets: (
1601
+ domain_identifier: ::String,
1602
+ environment_identifier: ::String,
1603
+ ?max_results: ::Integer,
1604
+ ?next_token: ::String,
1605
+ ?sort_by: ("CREATED_AT" | "UPDATED_AT"),
1606
+ ?sort_order: ("ASCENDING" | "DESCENDING")
1607
+ ) -> _ListSubscriptionTargetsResponseSuccess
1608
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSubscriptionTargetsResponseSuccess
1609
+
1610
+ interface _ListSubscriptionsResponseSuccess
1611
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSubscriptionsOutput]
1612
+ def items: () -> ::Array[Types::SubscriptionSummary]
1613
+ def next_token: () -> ::String
1614
+ end
1615
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_subscriptions-instance_method
1616
+ def list_subscriptions: (
1617
+ ?approver_project_id: ::String,
1618
+ domain_identifier: ::String,
1619
+ ?max_results: ::Integer,
1620
+ ?next_token: ::String,
1621
+ ?owning_project_id: ::String,
1622
+ ?sort_by: ("CREATED_AT" | "UPDATED_AT"),
1623
+ ?sort_order: ("ASCENDING" | "DESCENDING"),
1624
+ ?status: ("APPROVED" | "REVOKED" | "CANCELLED"),
1625
+ ?subscribed_listing_id: ::String,
1626
+ ?subscription_request_identifier: ::String
1627
+ ) -> _ListSubscriptionsResponseSuccess
1628
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSubscriptionsResponseSuccess
1629
+
1630
+ interface _ListTagsForResourceResponseSuccess
1631
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
1632
+ def tags: () -> ::Hash[::String, ::String]
1633
+ end
1634
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_tags_for_resource-instance_method
1635
+ def list_tags_for_resource: (
1636
+ resource_arn: ::String
1637
+ ) -> _ListTagsForResourceResponseSuccess
1638
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
1639
+
1640
+ interface _PutEnvironmentBlueprintConfigurationResponseSuccess
1641
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutEnvironmentBlueprintConfigurationOutput]
1642
+ def created_at: () -> ::Time
1643
+ def domain_id: () -> ::String
1644
+ def enabled_regions: () -> ::Array[::String]
1645
+ def environment_blueprint_id: () -> ::String
1646
+ def manage_access_role_arn: () -> ::String
1647
+ def provisioning_role_arn: () -> ::String
1648
+ def regional_parameters: () -> ::Hash[::String, ::Hash[::String, ::String]]
1649
+ def updated_at: () -> ::Time
1650
+ end
1651
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#put_environment_blueprint_configuration-instance_method
1652
+ def put_environment_blueprint_configuration: (
1653
+ domain_identifier: ::String,
1654
+ enabled_regions: Array[::String],
1655
+ environment_blueprint_identifier: ::String,
1656
+ ?manage_access_role_arn: ::String,
1657
+ ?provisioning_role_arn: ::String,
1658
+ ?regional_parameters: Hash[::String, Hash[::String, ::String]]
1659
+ ) -> _PutEnvironmentBlueprintConfigurationResponseSuccess
1660
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutEnvironmentBlueprintConfigurationResponseSuccess
1661
+
1662
+ interface _RejectPredictionsResponseSuccess
1663
+ include ::Seahorse::Client::_ResponseSuccess[Types::RejectPredictionsOutput]
1664
+ def asset_id: () -> ::String
1665
+ def asset_revision: () -> ::String
1666
+ def domain_id: () -> ::String
1667
+ end
1668
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#reject_predictions-instance_method
1669
+ def reject_predictions: (
1670
+ ?client_token: ::String,
1671
+ domain_identifier: ::String,
1672
+ identifier: ::String,
1673
+ ?reject_choices: Array[
1674
+ {
1675
+ prediction_choices: Array[::Integer]?,
1676
+ prediction_target: ::String?
1677
+ },
1678
+ ],
1679
+ ?reject_rule: {
1680
+ rule: ("ALL" | "NONE")?,
1681
+ threshold: ::Float?
1682
+ },
1683
+ ?revision: ::String
1684
+ ) -> _RejectPredictionsResponseSuccess
1685
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RejectPredictionsResponseSuccess
1686
+
1687
+ interface _RejectSubscriptionRequestResponseSuccess
1688
+ include ::Seahorse::Client::_ResponseSuccess[Types::RejectSubscriptionRequestOutput]
1689
+ def created_at: () -> ::Time
1690
+ def created_by: () -> ::String
1691
+ def decision_comment: () -> ::String
1692
+ def domain_id: () -> ::String
1693
+ def id: () -> ::String
1694
+ def request_reason: () -> ::String
1695
+ def reviewer_id: () -> ::String
1696
+ def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED")
1697
+ def subscribed_listings: () -> ::Array[Types::SubscribedListing]
1698
+ def subscribed_principals: () -> ::Array[Types::SubscribedPrincipal]
1699
+ def updated_at: () -> ::Time
1700
+ def updated_by: () -> ::String
1701
+ end
1702
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#reject_subscription_request-instance_method
1703
+ def reject_subscription_request: (
1704
+ ?decision_comment: ::String,
1705
+ domain_identifier: ::String,
1706
+ identifier: ::String
1707
+ ) -> _RejectSubscriptionRequestResponseSuccess
1708
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RejectSubscriptionRequestResponseSuccess
1709
+
1710
+ interface _RevokeSubscriptionResponseSuccess
1711
+ include ::Seahorse::Client::_ResponseSuccess[Types::RevokeSubscriptionOutput]
1712
+ def created_at: () -> ::Time
1713
+ def created_by: () -> ::String
1714
+ def domain_id: () -> ::String
1715
+ def id: () -> ::String
1716
+ def retain_permissions: () -> bool
1717
+ def status: () -> ("APPROVED" | "REVOKED" | "CANCELLED")
1718
+ def subscribed_listing: () -> Types::SubscribedListing
1719
+ def subscribed_principal: () -> Types::SubscribedPrincipal
1720
+ def subscription_request_id: () -> ::String
1721
+ def updated_at: () -> ::Time
1722
+ def updated_by: () -> ::String
1723
+ end
1724
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#revoke_subscription-instance_method
1725
+ def revoke_subscription: (
1726
+ domain_identifier: ::String,
1727
+ identifier: ::String,
1728
+ ?retain_permissions: bool
1729
+ ) -> _RevokeSubscriptionResponseSuccess
1730
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RevokeSubscriptionResponseSuccess
1731
+
1732
+ interface _SearchResponseSuccess
1733
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchOutput]
1734
+ def items: () -> ::Array[Types::SearchInventoryResultItem]
1735
+ def next_token: () -> ::String
1736
+ def total_match_count: () -> ::Integer
1737
+ end
1738
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search-instance_method
1739
+ def search: (
1740
+ ?additional_attributes: Array[("FORMS")],
1741
+ domain_identifier: ::String,
1742
+ ?filters: {
1743
+ and: Array[
1744
+ untyped,
1745
+ ]?,
1746
+ filter: {
1747
+ attribute: ::String,
1748
+ value: ::String
1749
+ }?,
1750
+ or: Array[
1751
+ untyped,
1752
+ ]?
1753
+ },
1754
+ ?max_results: ::Integer,
1755
+ ?next_token: ::String,
1756
+ ?owning_project_identifier: ::String,
1757
+ ?search_in: Array[
1758
+ {
1759
+ attribute: ::String
1760
+ },
1761
+ ],
1762
+ search_scope: ("ASSET" | "GLOSSARY" | "GLOSSARY_TERM"),
1763
+ ?search_text: ::String,
1764
+ ?sort: {
1765
+ attribute: ::String,
1766
+ order: ("ASCENDING" | "DESCENDING")?
1767
+ }
1768
+ ) -> _SearchResponseSuccess
1769
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchResponseSuccess
1770
+
1771
+ interface _SearchGroupProfilesResponseSuccess
1772
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchGroupProfilesOutput]
1773
+ def items: () -> ::Array[Types::GroupProfileSummary]
1774
+ def next_token: () -> ::String
1775
+ end
1776
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search_group_profiles-instance_method
1777
+ def search_group_profiles: (
1778
+ domain_identifier: ::String,
1779
+ group_type: ("SSO_GROUP" | "DATAZONE_SSO_GROUP"),
1780
+ ?max_results: ::Integer,
1781
+ ?next_token: ::String,
1782
+ ?search_text: ::String
1783
+ ) -> _SearchGroupProfilesResponseSuccess
1784
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchGroupProfilesResponseSuccess
1785
+
1786
+ interface _SearchListingsResponseSuccess
1787
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchListingsOutput]
1788
+ def items: () -> ::Array[Types::SearchResultItem]
1789
+ def next_token: () -> ::String
1790
+ def total_match_count: () -> ::Integer
1791
+ end
1792
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search_listings-instance_method
1793
+ def search_listings: (
1794
+ ?additional_attributes: Array[("FORMS")],
1795
+ domain_identifier: ::String,
1796
+ ?filters: {
1797
+ and: Array[
1798
+ untyped,
1799
+ ]?,
1800
+ filter: {
1801
+ attribute: ::String,
1802
+ value: ::String
1803
+ }?,
1804
+ or: Array[
1805
+ untyped,
1806
+ ]?
1807
+ },
1808
+ ?max_results: ::Integer,
1809
+ ?next_token: ::String,
1810
+ ?search_in: Array[
1811
+ {
1812
+ attribute: ::String
1813
+ },
1814
+ ],
1815
+ ?search_text: ::String,
1816
+ ?sort: {
1817
+ attribute: ::String,
1818
+ order: ("ASCENDING" | "DESCENDING")?
1819
+ }
1820
+ ) -> _SearchListingsResponseSuccess
1821
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchListingsResponseSuccess
1822
+
1823
+ interface _SearchTypesResponseSuccess
1824
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchTypesOutput]
1825
+ def items: () -> ::Array[Types::SearchTypesResultItem]
1826
+ def next_token: () -> ::String
1827
+ def total_match_count: () -> ::Integer
1828
+ end
1829
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search_types-instance_method
1830
+ def search_types: (
1831
+ domain_identifier: ::String,
1832
+ ?filters: {
1833
+ and: Array[
1834
+ untyped,
1835
+ ]?,
1836
+ filter: {
1837
+ attribute: ::String,
1838
+ value: ::String
1839
+ }?,
1840
+ or: Array[
1841
+ untyped,
1842
+ ]?
1843
+ },
1844
+ managed: bool,
1845
+ ?max_results: ::Integer,
1846
+ ?next_token: ::String,
1847
+ ?search_in: Array[
1848
+ {
1849
+ attribute: ::String
1850
+ },
1851
+ ],
1852
+ search_scope: ("ASSET_TYPE" | "FORM_TYPE"),
1853
+ ?search_text: ::String,
1854
+ ?sort: {
1855
+ attribute: ::String,
1856
+ order: ("ASCENDING" | "DESCENDING")?
1857
+ }
1858
+ ) -> _SearchTypesResponseSuccess
1859
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchTypesResponseSuccess
1860
+
1861
+ interface _SearchUserProfilesResponseSuccess
1862
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchUserProfilesOutput]
1863
+ def items: () -> ::Array[Types::UserProfileSummary]
1864
+ def next_token: () -> ::String
1865
+ end
1866
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search_user_profiles-instance_method
1867
+ def search_user_profiles: (
1868
+ domain_identifier: ::String,
1869
+ ?max_results: ::Integer,
1870
+ ?next_token: ::String,
1871
+ ?search_text: ::String,
1872
+ user_type: ("SSO_USER" | "DATAZONE_USER" | "DATAZONE_SSO_USER" | "DATAZONE_IAM_USER")
1873
+ ) -> _SearchUserProfilesResponseSuccess
1874
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchUserProfilesResponseSuccess
1875
+
1876
+ interface _StartDataSourceRunResponseSuccess
1877
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartDataSourceRunOutput]
1878
+ def created_at: () -> ::Time
1879
+ def data_source_configuration_snapshot: () -> ::String
1880
+ def data_source_id: () -> ::String
1881
+ def domain_id: () -> ::String
1882
+ def error_message: () -> Types::DataSourceErrorMessage
1883
+ def id: () -> ::String
1884
+ def project_id: () -> ::String
1885
+ def run_statistics_for_assets: () -> Types::RunStatisticsForAssets
1886
+ def started_at: () -> ::Time
1887
+ def status: () -> ("REQUESTED" | "RUNNING" | "FAILED" | "PARTIALLY_SUCCEEDED" | "SUCCESS")
1888
+ def stopped_at: () -> ::Time
1889
+ def type: () -> ("PRIORITIZED" | "SCHEDULED")
1890
+ def updated_at: () -> ::Time
1891
+ end
1892
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#start_data_source_run-instance_method
1893
+ def start_data_source_run: (
1894
+ ?client_token: ::String,
1895
+ data_source_identifier: ::String,
1896
+ domain_identifier: ::String
1897
+ ) -> _StartDataSourceRunResponseSuccess
1898
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDataSourceRunResponseSuccess
1899
+
1900
+ interface _TagResourceResponseSuccess
1901
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
1902
+ end
1903
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#tag_resource-instance_method
1904
+ def tag_resource: (
1905
+ resource_arn: ::String,
1906
+ tags: Hash[::String, ::String]
1907
+ ) -> _TagResourceResponseSuccess
1908
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
1909
+
1910
+ interface _UntagResourceResponseSuccess
1911
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
1912
+ end
1913
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#untag_resource-instance_method
1914
+ def untag_resource: (
1915
+ resource_arn: ::String,
1916
+ tag_keys: Array[::String]
1917
+ ) -> _UntagResourceResponseSuccess
1918
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
1919
+
1920
+ interface _UpdateDataSourceResponseSuccess
1921
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataSourceOutput]
1922
+ def asset_forms_output: () -> ::Array[Types::FormOutput]
1923
+ def configuration: () -> Types::DataSourceConfigurationOutput
1924
+ def created_at: () -> ::Time
1925
+ def description: () -> ::String
1926
+ def domain_id: () -> ::String
1927
+ def enable_setting: () -> ("ENABLED" | "DISABLED")
1928
+ def environment_id: () -> ::String
1929
+ def error_message: () -> Types::DataSourceErrorMessage
1930
+ def id: () -> ::String
1931
+ def last_run_at: () -> ::Time
1932
+ def last_run_error_message: () -> Types::DataSourceErrorMessage
1933
+ def last_run_status: () -> ("REQUESTED" | "RUNNING" | "FAILED" | "PARTIALLY_SUCCEEDED" | "SUCCESS")
1934
+ def name: () -> ::String
1935
+ def project_id: () -> ::String
1936
+ def publish_on_import: () -> bool
1937
+ def recommendation: () -> Types::RecommendationConfiguration
1938
+ def schedule: () -> Types::ScheduleConfiguration
1939
+ def status: () -> ("CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION")
1940
+ def type: () -> ::String
1941
+ def updated_at: () -> ::Time
1942
+ end
1943
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_data_source-instance_method
1944
+ def update_data_source: (
1945
+ ?asset_forms_input: Array[
1946
+ {
1947
+ content: ::String?,
1948
+ form_name: ::String,
1949
+ type_identifier: ::String?,
1950
+ type_revision: ::String?
1951
+ },
1952
+ ],
1953
+ ?configuration: {
1954
+ glue_run_configuration: {
1955
+ data_access_role: ::String?,
1956
+ relational_filter_configurations: Array[
1957
+ {
1958
+ database_name: ::String,
1959
+ filter_expressions: Array[
1960
+ {
1961
+ expression: ::String,
1962
+ type: ("INCLUDE" | "EXCLUDE")
1963
+ },
1964
+ ]?,
1965
+ schema_name: ::String?
1966
+ },
1967
+ ]
1968
+ }?,
1969
+ redshift_run_configuration: {
1970
+ data_access_role: ::String?,
1971
+ redshift_credential_configuration: {
1972
+ secret_manager_arn: ::String
1973
+ },
1974
+ redshift_storage: {
1975
+ redshift_cluster_source: {
1976
+ cluster_name: ::String
1977
+ }?,
1978
+ redshift_serverless_source: {
1979
+ workgroup_name: ::String
1980
+ }?
1981
+ },
1982
+ relational_filter_configurations: Array[
1983
+ {
1984
+ database_name: ::String,
1985
+ filter_expressions: Array[
1986
+ {
1987
+ expression: ::String,
1988
+ type: ("INCLUDE" | "EXCLUDE")
1989
+ },
1990
+ ]?,
1991
+ schema_name: ::String?
1992
+ },
1993
+ ]
1994
+ }?
1995
+ },
1996
+ ?description: ::String,
1997
+ domain_identifier: ::String,
1998
+ ?enable_setting: ("ENABLED" | "DISABLED"),
1999
+ identifier: ::String,
2000
+ ?name: ::String,
2001
+ ?publish_on_import: bool,
2002
+ ?recommendation: {
2003
+ enable_business_name_generation: bool?
2004
+ },
2005
+ ?schedule: {
2006
+ schedule: ::String?,
2007
+ 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")?
2008
+ }
2009
+ ) -> _UpdateDataSourceResponseSuccess
2010
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataSourceResponseSuccess
2011
+
2012
+ interface _UpdateDomainResponseSuccess
2013
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDomainOutput]
2014
+ def description: () -> ::String
2015
+ def domain_execution_role: () -> ::String
2016
+ def id: () -> ::String
2017
+ def last_updated_at: () -> ::Time
2018
+ def name: () -> ::String
2019
+ def single_sign_on: () -> Types::SingleSignOn
2020
+ end
2021
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_domain-instance_method
2022
+ def update_domain: (
2023
+ ?client_token: ::String,
2024
+ ?description: ::String,
2025
+ ?domain_execution_role: ::String,
2026
+ identifier: ::String,
2027
+ ?name: ::String,
2028
+ ?single_sign_on: {
2029
+ type: ("IAM_IDC" | "DISABLED")?,
2030
+ user_assignment: ("AUTOMATIC" | "MANUAL")?
2031
+ }
2032
+ ) -> _UpdateDomainResponseSuccess
2033
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainResponseSuccess
2034
+
2035
+ interface _UpdateEnvironmentResponseSuccess
2036
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEnvironmentOutput]
2037
+ def aws_account_id: () -> ::String
2038
+ def aws_account_region: () -> ::String
2039
+ def created_at: () -> ::Time
2040
+ def created_by: () -> ::String
2041
+ def deployment_properties: () -> Types::DeploymentProperties
2042
+ def description: () -> ::String
2043
+ def domain_id: () -> ::String
2044
+ def environment_actions: () -> ::Array[Types::ConfigurableEnvironmentAction]
2045
+ def environment_blueprint_id: () -> ::String
2046
+ def environment_profile_id: () -> ::String
2047
+ def glossary_terms: () -> ::Array[::String]
2048
+ def id: () -> ::String
2049
+ def last_deployment: () -> Types::Deployment
2050
+ def name: () -> ::String
2051
+ def project_id: () -> ::String
2052
+ def provider: () -> ::String
2053
+ def provisioned_resources: () -> ::Array[Types::Resource]
2054
+ def provisioning_properties: () -> Types::ProvisioningProperties
2055
+ def status: () -> ("ACTIVE" | "CREATING" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED" | "VALIDATION_FAILED" | "SUSPENDED" | "DISABLED" | "EXPIRED" | "DELETED" | "INACCESSIBLE")
2056
+ def updated_at: () -> ::Time
2057
+ def user_parameters: () -> ::Array[Types::CustomParameter]
2058
+ end
2059
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_environment-instance_method
2060
+ def update_environment: (
2061
+ ?description: ::String,
2062
+ domain_identifier: ::String,
2063
+ ?glossary_terms: Array[::String],
2064
+ identifier: ::String,
2065
+ ?name: ::String
2066
+ ) -> _UpdateEnvironmentResponseSuccess
2067
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentResponseSuccess
2068
+
2069
+ interface _UpdateEnvironmentProfileResponseSuccess
2070
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEnvironmentProfileOutput]
2071
+ def aws_account_id: () -> ::String
2072
+ def aws_account_region: () -> ::String
2073
+ def created_at: () -> ::Time
2074
+ def created_by: () -> ::String
2075
+ def description: () -> ::String
2076
+ def domain_id: () -> ::String
2077
+ def environment_blueprint_id: () -> ::String
2078
+ def id: () -> ::String
2079
+ def name: () -> ::String
2080
+ def project_id: () -> ::String
2081
+ def updated_at: () -> ::Time
2082
+ def user_parameters: () -> ::Array[Types::CustomParameter]
2083
+ end
2084
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_environment_profile-instance_method
2085
+ def update_environment_profile: (
2086
+ ?aws_account_id: ::String,
2087
+ ?aws_account_region: ::String,
2088
+ ?description: ::String,
2089
+ domain_identifier: ::String,
2090
+ identifier: ::String,
2091
+ ?name: ::String,
2092
+ ?user_parameters: Array[
2093
+ {
2094
+ name: ::String?,
2095
+ value: ::String?
2096
+ },
2097
+ ]
2098
+ ) -> _UpdateEnvironmentProfileResponseSuccess
2099
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentProfileResponseSuccess
2100
+
2101
+ interface _UpdateGlossaryResponseSuccess
2102
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGlossaryOutput]
2103
+ def description: () -> ::String
2104
+ def domain_id: () -> ::String
2105
+ def id: () -> ::String
2106
+ def name: () -> ::String
2107
+ def owning_project_id: () -> ::String
2108
+ def status: () -> ("DISABLED" | "ENABLED")
2109
+ end
2110
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_glossary-instance_method
2111
+ def update_glossary: (
2112
+ ?client_token: ::String,
2113
+ ?description: ::String,
2114
+ domain_identifier: ::String,
2115
+ identifier: ::String,
2116
+ ?name: ::String,
2117
+ ?status: ("DISABLED" | "ENABLED")
2118
+ ) -> _UpdateGlossaryResponseSuccess
2119
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGlossaryResponseSuccess
2120
+
2121
+ interface _UpdateGlossaryTermResponseSuccess
2122
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGlossaryTermOutput]
2123
+ def domain_id: () -> ::String
2124
+ def glossary_id: () -> ::String
2125
+ def id: () -> ::String
2126
+ def long_description: () -> ::String
2127
+ def name: () -> ::String
2128
+ def short_description: () -> ::String
2129
+ def status: () -> ("ENABLED" | "DISABLED")
2130
+ def term_relations: () -> Types::TermRelations
2131
+ end
2132
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_glossary_term-instance_method
2133
+ def update_glossary_term: (
2134
+ domain_identifier: ::String,
2135
+ ?glossary_identifier: ::String,
2136
+ identifier: ::String,
2137
+ ?long_description: ::String,
2138
+ ?name: ::String,
2139
+ ?short_description: ::String,
2140
+ ?status: ("ENABLED" | "DISABLED"),
2141
+ ?term_relations: {
2142
+ classifies: Array[::String]?,
2143
+ is_a: Array[::String]?
2144
+ }
2145
+ ) -> _UpdateGlossaryTermResponseSuccess
2146
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGlossaryTermResponseSuccess
2147
+
2148
+ interface _UpdateGroupProfileResponseSuccess
2149
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGroupProfileOutput]
2150
+ def domain_id: () -> ::String
2151
+ def group_name: () -> ::String
2152
+ def id: () -> ::String
2153
+ def status: () -> ("ASSIGNED" | "NOT_ASSIGNED")
2154
+ end
2155
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_group_profile-instance_method
2156
+ def update_group_profile: (
2157
+ domain_identifier: ::String,
2158
+ group_identifier: ::String,
2159
+ status: ("ASSIGNED" | "NOT_ASSIGNED")
2160
+ ) -> _UpdateGroupProfileResponseSuccess
2161
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGroupProfileResponseSuccess
2162
+
2163
+ interface _UpdateProjectResponseSuccess
2164
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProjectOutput]
2165
+ def created_at: () -> ::Time
2166
+ def created_by: () -> ::String
2167
+ def description: () -> ::String
2168
+ def domain_id: () -> ::String
2169
+ def glossary_terms: () -> ::Array[::String]
2170
+ def id: () -> ::String
2171
+ def last_updated_at: () -> ::Time
2172
+ def name: () -> ::String
2173
+ end
2174
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_project-instance_method
2175
+ def update_project: (
2176
+ ?description: ::String,
2177
+ domain_identifier: ::String,
2178
+ ?glossary_terms: Array[::String],
2179
+ identifier: ::String,
2180
+ ?name: ::String
2181
+ ) -> _UpdateProjectResponseSuccess
2182
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProjectResponseSuccess
2183
+
2184
+ interface _UpdateSubscriptionGrantStatusResponseSuccess
2185
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSubscriptionGrantStatusOutput]
2186
+ def assets: () -> ::Array[Types::SubscribedAsset]
2187
+ def created_at: () -> ::Time
2188
+ def created_by: () -> ::String
2189
+ def domain_id: () -> ::String
2190
+ def granted_entity: () -> Types::GrantedEntity
2191
+ def id: () -> ::String
2192
+ def status: () -> ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
2193
+ def subscription_id: () -> ::String
2194
+ def subscription_target_id: () -> ::String
2195
+ def updated_at: () -> ::Time
2196
+ def updated_by: () -> ::String
2197
+ end
2198
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_subscription_grant_status-instance_method
2199
+ def update_subscription_grant_status: (
2200
+ asset_identifier: ::String,
2201
+ domain_identifier: ::String,
2202
+ ?failure_cause: {
2203
+ message: ::String?
2204
+ },
2205
+ identifier: ::String,
2206
+ status: ("GRANT_PENDING" | "REVOKE_PENDING" | "GRANT_IN_PROGRESS" | "REVOKE_IN_PROGRESS" | "GRANTED" | "REVOKED" | "GRANT_FAILED" | "REVOKE_FAILED"),
2207
+ ?target_name: ::String
2208
+ ) -> _UpdateSubscriptionGrantStatusResponseSuccess
2209
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSubscriptionGrantStatusResponseSuccess
2210
+
2211
+ interface _UpdateSubscriptionRequestResponseSuccess
2212
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSubscriptionRequestOutput]
2213
+ def created_at: () -> ::Time
2214
+ def created_by: () -> ::String
2215
+ def decision_comment: () -> ::String
2216
+ def domain_id: () -> ::String
2217
+ def id: () -> ::String
2218
+ def request_reason: () -> ::String
2219
+ def reviewer_id: () -> ::String
2220
+ def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED")
2221
+ def subscribed_listings: () -> ::Array[Types::SubscribedListing]
2222
+ def subscribed_principals: () -> ::Array[Types::SubscribedPrincipal]
2223
+ def updated_at: () -> ::Time
2224
+ def updated_by: () -> ::String
2225
+ end
2226
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_subscription_request-instance_method
2227
+ def update_subscription_request: (
2228
+ domain_identifier: ::String,
2229
+ identifier: ::String,
2230
+ request_reason: ::String
2231
+ ) -> _UpdateSubscriptionRequestResponseSuccess
2232
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSubscriptionRequestResponseSuccess
2233
+
2234
+ interface _UpdateSubscriptionTargetResponseSuccess
2235
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSubscriptionTargetOutput]
2236
+ def applicable_asset_types: () -> ::Array[::String]
2237
+ def authorized_principals: () -> ::Array[::String]
2238
+ def created_at: () -> ::Time
2239
+ def created_by: () -> ::String
2240
+ def domain_id: () -> ::String
2241
+ def environment_id: () -> ::String
2242
+ def id: () -> ::String
2243
+ def manage_access_role: () -> ::String
2244
+ def name: () -> ::String
2245
+ def project_id: () -> ::String
2246
+ def provider: () -> ::String
2247
+ def subscription_target_config: () -> ::Array[Types::SubscriptionTargetForm]
2248
+ def type: () -> ::String
2249
+ def updated_at: () -> ::Time
2250
+ def updated_by: () -> ::String
2251
+ end
2252
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_subscription_target-instance_method
2253
+ def update_subscription_target: (
2254
+ ?applicable_asset_types: Array[::String],
2255
+ ?authorized_principals: Array[::String],
2256
+ domain_identifier: ::String,
2257
+ environment_identifier: ::String,
2258
+ identifier: ::String,
2259
+ ?manage_access_role: ::String,
2260
+ ?name: ::String,
2261
+ ?provider: ::String,
2262
+ ?subscription_target_config: Array[
2263
+ {
2264
+ content: ::String,
2265
+ form_name: ::String
2266
+ },
2267
+ ]
2268
+ ) -> _UpdateSubscriptionTargetResponseSuccess
2269
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSubscriptionTargetResponseSuccess
2270
+
2271
+ interface _UpdateUserProfileResponseSuccess
2272
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateUserProfileOutput]
2273
+ def details: () -> Types::UserProfileDetails
2274
+ def domain_id: () -> ::String
2275
+ def id: () -> ::String
2276
+ def status: () -> ("ASSIGNED" | "NOT_ASSIGNED" | "ACTIVATED" | "DEACTIVATED")
2277
+ def type: () -> ("IAM" | "SSO")
2278
+ end
2279
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_user_profile-instance_method
2280
+ def update_user_profile: (
2281
+ domain_identifier: ::String,
2282
+ status: ("ASSIGNED" | "NOT_ASSIGNED" | "ACTIVATED" | "DEACTIVATED"),
2283
+ ?type: ("IAM" | "SSO"),
2284
+ user_identifier: ::String
2285
+ ) -> _UpdateUserProfileResponseSuccess
2286
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUserProfileResponseSuccess
2287
+ end
2288
+ end
2289
+ end
2290
+