aws-sdk-nimblestudio 1.27.0 → 1.28.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,911 @@
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 NimbleStudio
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/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 _AcceptEulasResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::AcceptEulasResponse]
77
+ def eula_acceptances: () -> ::Array[Types::EulaAcceptance]
78
+ end
79
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#accept_eulas-instance_method
80
+ def accept_eulas: (
81
+ ?client_token: ::String,
82
+ ?eula_ids: Array[::String],
83
+ studio_id: ::String
84
+ ) -> _AcceptEulasResponseSuccess
85
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptEulasResponseSuccess
86
+
87
+ interface _CreateLaunchProfileResponseSuccess
88
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLaunchProfileResponse]
89
+ def launch_profile: () -> Types::LaunchProfile
90
+ end
91
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#create_launch_profile-instance_method
92
+ def create_launch_profile: (
93
+ ?client_token: ::String,
94
+ ?description: ::String,
95
+ ec2_subnet_ids: Array[::String],
96
+ launch_profile_protocol_versions: Array[::String],
97
+ name: ::String,
98
+ stream_configuration: {
99
+ automatic_termination_mode: ("DEACTIVATED" | "ACTIVATED")?,
100
+ clipboard_mode: ("ENABLED" | "DISABLED"),
101
+ ec2_instance_types: Array[("g4dn.xlarge" | "g4dn.2xlarge" | "g4dn.4xlarge" | "g4dn.8xlarge" | "g4dn.12xlarge" | "g4dn.16xlarge" | "g3.4xlarge" | "g3s.xlarge" | "g5.xlarge" | "g5.2xlarge" | "g5.4xlarge" | "g5.8xlarge" | "g5.16xlarge")],
102
+ max_session_length_in_minutes: ::Integer?,
103
+ max_stopped_session_length_in_minutes: ::Integer?,
104
+ session_backup: {
105
+ max_backups_to_retain: ::Integer?,
106
+ mode: ("AUTOMATIC" | "DEACTIVATED")?
107
+ }?,
108
+ session_persistence_mode: ("DEACTIVATED" | "ACTIVATED")?,
109
+ session_storage: {
110
+ mode: Array[("UPLOAD")],
111
+ root: {
112
+ linux: ::String?,
113
+ windows: ::String?
114
+ }?
115
+ }?,
116
+ streaming_image_ids: Array[::String],
117
+ volume_configuration: {
118
+ iops: ::Integer?,
119
+ size: ::Integer?,
120
+ throughput: ::Integer?
121
+ }?
122
+ },
123
+ studio_component_ids: Array[::String],
124
+ studio_id: ::String,
125
+ ?tags: Hash[::String, ::String]
126
+ ) -> _CreateLaunchProfileResponseSuccess
127
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLaunchProfileResponseSuccess
128
+
129
+ interface _CreateStreamingImageResponseSuccess
130
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStreamingImageResponse]
131
+ def streaming_image: () -> Types::StreamingImage
132
+ end
133
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#create_streaming_image-instance_method
134
+ def create_streaming_image: (
135
+ ?client_token: ::String,
136
+ ?description: ::String,
137
+ ec2_image_id: ::String,
138
+ name: ::String,
139
+ studio_id: ::String,
140
+ ?tags: Hash[::String, ::String]
141
+ ) -> _CreateStreamingImageResponseSuccess
142
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStreamingImageResponseSuccess
143
+
144
+ interface _CreateStreamingSessionResponseSuccess
145
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStreamingSessionResponse]
146
+ def session: () -> Types::StreamingSession
147
+ end
148
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#create_streaming_session-instance_method
149
+ def create_streaming_session: (
150
+ ?client_token: ::String,
151
+ ?ec2_instance_type: ("g4dn.xlarge" | "g4dn.2xlarge" | "g4dn.4xlarge" | "g4dn.8xlarge" | "g4dn.12xlarge" | "g4dn.16xlarge" | "g3.4xlarge" | "g3s.xlarge" | "g5.xlarge" | "g5.2xlarge" | "g5.4xlarge" | "g5.8xlarge" | "g5.16xlarge"),
152
+ launch_profile_id: ::String,
153
+ ?owned_by: ::String,
154
+ ?streaming_image_id: ::String,
155
+ studio_id: ::String,
156
+ ?tags: Hash[::String, ::String]
157
+ ) -> _CreateStreamingSessionResponseSuccess
158
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStreamingSessionResponseSuccess
159
+
160
+ interface _CreateStreamingSessionStreamResponseSuccess
161
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStreamingSessionStreamResponse]
162
+ def stream: () -> Types::StreamingSessionStream
163
+ end
164
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#create_streaming_session_stream-instance_method
165
+ def create_streaming_session_stream: (
166
+ ?client_token: ::String,
167
+ ?expiration_in_seconds: ::Integer,
168
+ session_id: ::String,
169
+ studio_id: ::String
170
+ ) -> _CreateStreamingSessionStreamResponseSuccess
171
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStreamingSessionStreamResponseSuccess
172
+
173
+ interface _CreateStudioResponseSuccess
174
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStudioResponse]
175
+ def studio: () -> Types::Studio
176
+ end
177
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#create_studio-instance_method
178
+ def create_studio: (
179
+ admin_role_arn: ::String,
180
+ ?client_token: ::String,
181
+ display_name: ::String,
182
+ ?studio_encryption_configuration: {
183
+ key_arn: ::String?,
184
+ key_type: ("AWS_OWNED_KEY" | "CUSTOMER_MANAGED_KEY")
185
+ },
186
+ studio_name: ::String,
187
+ ?tags: Hash[::String, ::String],
188
+ user_role_arn: ::String
189
+ ) -> _CreateStudioResponseSuccess
190
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStudioResponseSuccess
191
+
192
+ interface _CreateStudioComponentResponseSuccess
193
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStudioComponentResponse]
194
+ def studio_component: () -> Types::StudioComponent
195
+ end
196
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#create_studio_component-instance_method
197
+ def create_studio_component: (
198
+ ?client_token: ::String,
199
+ ?configuration: {
200
+ active_directory_configuration: {
201
+ computer_attributes: Array[
202
+ {
203
+ name: ::String?,
204
+ value: ::String?
205
+ },
206
+ ]?,
207
+ directory_id: ::String?,
208
+ organizational_unit_distinguished_name: ::String?
209
+ }?,
210
+ compute_farm_configuration: {
211
+ active_directory_user: ::String?,
212
+ endpoint: ::String?
213
+ }?,
214
+ license_service_configuration: {
215
+ endpoint: ::String?
216
+ }?,
217
+ shared_file_system_configuration: {
218
+ endpoint: ::String?,
219
+ file_system_id: ::String?,
220
+ linux_mount_point: ::String?,
221
+ share_name: ::String?,
222
+ windows_mount_drive: ::String?
223
+ }?
224
+ },
225
+ ?description: ::String,
226
+ ?ec2_security_group_ids: Array[::String],
227
+ ?initialization_scripts: Array[
228
+ {
229
+ launch_profile_protocol_version: ::String?,
230
+ platform: ("LINUX" | "WINDOWS")?,
231
+ run_context: ("SYSTEM_INITIALIZATION" | "USER_INITIALIZATION")?,
232
+ script: ::String?
233
+ },
234
+ ],
235
+ name: ::String,
236
+ ?runtime_role_arn: ::String,
237
+ ?script_parameters: Array[
238
+ {
239
+ key: ::String?,
240
+ value: ::String?
241
+ },
242
+ ],
243
+ ?secure_initialization_role_arn: ::String,
244
+ studio_id: ::String,
245
+ ?subtype: ("AWS_MANAGED_MICROSOFT_AD" | "AMAZON_FSX_FOR_WINDOWS" | "AMAZON_FSX_FOR_LUSTRE" | "CUSTOM"),
246
+ ?tags: Hash[::String, ::String],
247
+ type: ("ACTIVE_DIRECTORY" | "SHARED_FILE_SYSTEM" | "COMPUTE_FARM" | "LICENSE_SERVICE" | "CUSTOM")
248
+ ) -> _CreateStudioComponentResponseSuccess
249
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStudioComponentResponseSuccess
250
+
251
+ interface _DeleteLaunchProfileResponseSuccess
252
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLaunchProfileResponse]
253
+ def launch_profile: () -> Types::LaunchProfile
254
+ end
255
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#delete_launch_profile-instance_method
256
+ def delete_launch_profile: (
257
+ ?client_token: ::String,
258
+ launch_profile_id: ::String,
259
+ studio_id: ::String
260
+ ) -> _DeleteLaunchProfileResponseSuccess
261
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLaunchProfileResponseSuccess
262
+
263
+ interface _DeleteLaunchProfileMemberResponseSuccess
264
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLaunchProfileMemberResponse]
265
+ end
266
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#delete_launch_profile_member-instance_method
267
+ def delete_launch_profile_member: (
268
+ ?client_token: ::String,
269
+ launch_profile_id: ::String,
270
+ principal_id: ::String,
271
+ studio_id: ::String
272
+ ) -> _DeleteLaunchProfileMemberResponseSuccess
273
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLaunchProfileMemberResponseSuccess
274
+
275
+ interface _DeleteStreamingImageResponseSuccess
276
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteStreamingImageResponse]
277
+ def streaming_image: () -> Types::StreamingImage
278
+ end
279
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#delete_streaming_image-instance_method
280
+ def delete_streaming_image: (
281
+ ?client_token: ::String,
282
+ streaming_image_id: ::String,
283
+ studio_id: ::String
284
+ ) -> _DeleteStreamingImageResponseSuccess
285
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteStreamingImageResponseSuccess
286
+
287
+ interface _DeleteStreamingSessionResponseSuccess
288
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteStreamingSessionResponse]
289
+ def session: () -> Types::StreamingSession
290
+ end
291
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#delete_streaming_session-instance_method
292
+ def delete_streaming_session: (
293
+ ?client_token: ::String,
294
+ session_id: ::String,
295
+ studio_id: ::String
296
+ ) -> _DeleteStreamingSessionResponseSuccess
297
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteStreamingSessionResponseSuccess
298
+
299
+ interface _DeleteStudioResponseSuccess
300
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteStudioResponse]
301
+ def studio: () -> Types::Studio
302
+ end
303
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#delete_studio-instance_method
304
+ def delete_studio: (
305
+ ?client_token: ::String,
306
+ studio_id: ::String
307
+ ) -> _DeleteStudioResponseSuccess
308
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteStudioResponseSuccess
309
+
310
+ interface _DeleteStudioComponentResponseSuccess
311
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteStudioComponentResponse]
312
+ def studio_component: () -> Types::StudioComponent
313
+ end
314
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#delete_studio_component-instance_method
315
+ def delete_studio_component: (
316
+ ?client_token: ::String,
317
+ studio_component_id: ::String,
318
+ studio_id: ::String
319
+ ) -> _DeleteStudioComponentResponseSuccess
320
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteStudioComponentResponseSuccess
321
+
322
+ interface _DeleteStudioMemberResponseSuccess
323
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteStudioMemberResponse]
324
+ end
325
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#delete_studio_member-instance_method
326
+ def delete_studio_member: (
327
+ ?client_token: ::String,
328
+ principal_id: ::String,
329
+ studio_id: ::String
330
+ ) -> _DeleteStudioMemberResponseSuccess
331
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteStudioMemberResponseSuccess
332
+
333
+ interface _GetEulaResponseSuccess
334
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEulaResponse]
335
+ def eula: () -> Types::Eula
336
+ end
337
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#get_eula-instance_method
338
+ def get_eula: (
339
+ eula_id: ::String
340
+ ) -> _GetEulaResponseSuccess
341
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEulaResponseSuccess
342
+
343
+ interface _GetLaunchProfileResponseSuccess
344
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLaunchProfileResponse]
345
+ def launch_profile: () -> Types::LaunchProfile
346
+ end
347
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#get_launch_profile-instance_method
348
+ def get_launch_profile: (
349
+ launch_profile_id: ::String,
350
+ studio_id: ::String
351
+ ) -> _GetLaunchProfileResponseSuccess
352
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLaunchProfileResponseSuccess
353
+
354
+ interface _GetLaunchProfileDetailsResponseSuccess
355
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLaunchProfileDetailsResponse]
356
+ def launch_profile: () -> Types::LaunchProfile
357
+ def streaming_images: () -> ::Array[Types::StreamingImage]
358
+ def studio_component_summaries: () -> ::Array[Types::StudioComponentSummary]
359
+ end
360
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#get_launch_profile_details-instance_method
361
+ def get_launch_profile_details: (
362
+ launch_profile_id: ::String,
363
+ studio_id: ::String
364
+ ) -> _GetLaunchProfileDetailsResponseSuccess
365
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLaunchProfileDetailsResponseSuccess
366
+
367
+ interface _GetLaunchProfileInitializationResponseSuccess
368
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLaunchProfileInitializationResponse]
369
+ def launch_profile_initialization: () -> Types::LaunchProfileInitialization
370
+ end
371
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#get_launch_profile_initialization-instance_method
372
+ def get_launch_profile_initialization: (
373
+ launch_profile_id: ::String,
374
+ launch_profile_protocol_versions: Array[::String],
375
+ launch_purpose: ::String,
376
+ platform: ::String,
377
+ studio_id: ::String
378
+ ) -> _GetLaunchProfileInitializationResponseSuccess
379
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLaunchProfileInitializationResponseSuccess
380
+
381
+ interface _GetLaunchProfileMemberResponseSuccess
382
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLaunchProfileMemberResponse]
383
+ def member: () -> Types::LaunchProfileMembership
384
+ end
385
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#get_launch_profile_member-instance_method
386
+ def get_launch_profile_member: (
387
+ launch_profile_id: ::String,
388
+ principal_id: ::String,
389
+ studio_id: ::String
390
+ ) -> _GetLaunchProfileMemberResponseSuccess
391
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLaunchProfileMemberResponseSuccess
392
+
393
+ interface _GetStreamingImageResponseSuccess
394
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetStreamingImageResponse]
395
+ def streaming_image: () -> Types::StreamingImage
396
+ end
397
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#get_streaming_image-instance_method
398
+ def get_streaming_image: (
399
+ streaming_image_id: ::String,
400
+ studio_id: ::String
401
+ ) -> _GetStreamingImageResponseSuccess
402
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStreamingImageResponseSuccess
403
+
404
+ interface _GetStreamingSessionResponseSuccess
405
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetStreamingSessionResponse]
406
+ def session: () -> Types::StreamingSession
407
+ end
408
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#get_streaming_session-instance_method
409
+ def get_streaming_session: (
410
+ session_id: ::String,
411
+ studio_id: ::String
412
+ ) -> _GetStreamingSessionResponseSuccess
413
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStreamingSessionResponseSuccess
414
+
415
+ interface _GetStreamingSessionBackupResponseSuccess
416
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetStreamingSessionBackupResponse]
417
+ def streaming_session_backup: () -> Types::StreamingSessionBackup
418
+ end
419
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#get_streaming_session_backup-instance_method
420
+ def get_streaming_session_backup: (
421
+ backup_id: ::String,
422
+ studio_id: ::String
423
+ ) -> _GetStreamingSessionBackupResponseSuccess
424
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStreamingSessionBackupResponseSuccess
425
+
426
+ interface _GetStreamingSessionStreamResponseSuccess
427
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetStreamingSessionStreamResponse]
428
+ def stream: () -> Types::StreamingSessionStream
429
+ end
430
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#get_streaming_session_stream-instance_method
431
+ def get_streaming_session_stream: (
432
+ session_id: ::String,
433
+ stream_id: ::String,
434
+ studio_id: ::String
435
+ ) -> _GetStreamingSessionStreamResponseSuccess
436
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStreamingSessionStreamResponseSuccess
437
+
438
+ interface _GetStudioResponseSuccess
439
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetStudioResponse]
440
+ def studio: () -> Types::Studio
441
+ end
442
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#get_studio-instance_method
443
+ def get_studio: (
444
+ studio_id: ::String
445
+ ) -> _GetStudioResponseSuccess
446
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStudioResponseSuccess
447
+
448
+ interface _GetStudioComponentResponseSuccess
449
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetStudioComponentResponse]
450
+ def studio_component: () -> Types::StudioComponent
451
+ end
452
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#get_studio_component-instance_method
453
+ def get_studio_component: (
454
+ studio_component_id: ::String,
455
+ studio_id: ::String
456
+ ) -> _GetStudioComponentResponseSuccess
457
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStudioComponentResponseSuccess
458
+
459
+ interface _GetStudioMemberResponseSuccess
460
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetStudioMemberResponse]
461
+ def member: () -> Types::StudioMembership
462
+ end
463
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#get_studio_member-instance_method
464
+ def get_studio_member: (
465
+ principal_id: ::String,
466
+ studio_id: ::String
467
+ ) -> _GetStudioMemberResponseSuccess
468
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStudioMemberResponseSuccess
469
+
470
+ interface _ListEulaAcceptancesResponseSuccess
471
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEulaAcceptancesResponse]
472
+ def eula_acceptances: () -> ::Array[Types::EulaAcceptance]
473
+ def next_token: () -> ::String
474
+ end
475
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#list_eula_acceptances-instance_method
476
+ def list_eula_acceptances: (
477
+ ?eula_ids: Array[::String],
478
+ ?next_token: ::String,
479
+ studio_id: ::String
480
+ ) -> _ListEulaAcceptancesResponseSuccess
481
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEulaAcceptancesResponseSuccess
482
+
483
+ interface _ListEulasResponseSuccess
484
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEulasResponse]
485
+ def eulas: () -> ::Array[Types::Eula]
486
+ def next_token: () -> ::String
487
+ end
488
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#list_eulas-instance_method
489
+ def list_eulas: (
490
+ ?eula_ids: Array[::String],
491
+ ?next_token: ::String
492
+ ) -> _ListEulasResponseSuccess
493
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEulasResponseSuccess
494
+
495
+ interface _ListLaunchProfileMembersResponseSuccess
496
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLaunchProfileMembersResponse]
497
+ def members: () -> ::Array[Types::LaunchProfileMembership]
498
+ def next_token: () -> ::String
499
+ end
500
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#list_launch_profile_members-instance_method
501
+ def list_launch_profile_members: (
502
+ launch_profile_id: ::String,
503
+ ?max_results: ::Integer,
504
+ ?next_token: ::String,
505
+ studio_id: ::String
506
+ ) -> _ListLaunchProfileMembersResponseSuccess
507
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLaunchProfileMembersResponseSuccess
508
+
509
+ interface _ListLaunchProfilesResponseSuccess
510
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLaunchProfilesResponse]
511
+ def launch_profiles: () -> ::Array[Types::LaunchProfile]
512
+ def next_token: () -> ::String
513
+ end
514
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#list_launch_profiles-instance_method
515
+ def list_launch_profiles: (
516
+ ?max_results: ::Integer,
517
+ ?next_token: ::String,
518
+ ?principal_id: ::String,
519
+ ?states: Array[("CREATE_IN_PROGRESS" | "READY" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "DELETED" | "DELETE_FAILED" | "CREATE_FAILED" | "UPDATE_FAILED")],
520
+ studio_id: ::String
521
+ ) -> _ListLaunchProfilesResponseSuccess
522
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLaunchProfilesResponseSuccess
523
+
524
+ interface _ListStreamingImagesResponseSuccess
525
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStreamingImagesResponse]
526
+ def next_token: () -> ::String
527
+ def streaming_images: () -> ::Array[Types::StreamingImage]
528
+ end
529
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#list_streaming_images-instance_method
530
+ def list_streaming_images: (
531
+ ?next_token: ::String,
532
+ ?owner: ::String,
533
+ studio_id: ::String
534
+ ) -> _ListStreamingImagesResponseSuccess
535
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStreamingImagesResponseSuccess
536
+
537
+ interface _ListStreamingSessionBackupsResponseSuccess
538
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStreamingSessionBackupsResponse]
539
+ def next_token: () -> ::String
540
+ def streaming_session_backups: () -> ::Array[Types::StreamingSessionBackup]
541
+ end
542
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#list_streaming_session_backups-instance_method
543
+ def list_streaming_session_backups: (
544
+ ?next_token: ::String,
545
+ ?owned_by: ::String,
546
+ studio_id: ::String
547
+ ) -> _ListStreamingSessionBackupsResponseSuccess
548
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStreamingSessionBackupsResponseSuccess
549
+
550
+ interface _ListStreamingSessionsResponseSuccess
551
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStreamingSessionsResponse]
552
+ def next_token: () -> ::String
553
+ def sessions: () -> ::Array[Types::StreamingSession]
554
+ end
555
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#list_streaming_sessions-instance_method
556
+ def list_streaming_sessions: (
557
+ ?created_by: ::String,
558
+ ?next_token: ::String,
559
+ ?owned_by: ::String,
560
+ ?session_ids: ::String,
561
+ studio_id: ::String
562
+ ) -> _ListStreamingSessionsResponseSuccess
563
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStreamingSessionsResponseSuccess
564
+
565
+ interface _ListStudioComponentsResponseSuccess
566
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStudioComponentsResponse]
567
+ def next_token: () -> ::String
568
+ def studio_components: () -> ::Array[Types::StudioComponent]
569
+ end
570
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#list_studio_components-instance_method
571
+ def list_studio_components: (
572
+ ?max_results: ::Integer,
573
+ ?next_token: ::String,
574
+ ?states: Array[("CREATE_IN_PROGRESS" | "READY" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "DELETED" | "DELETE_FAILED" | "CREATE_FAILED" | "UPDATE_FAILED")],
575
+ studio_id: ::String,
576
+ ?types: Array[("ACTIVE_DIRECTORY" | "SHARED_FILE_SYSTEM" | "COMPUTE_FARM" | "LICENSE_SERVICE" | "CUSTOM")]
577
+ ) -> _ListStudioComponentsResponseSuccess
578
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStudioComponentsResponseSuccess
579
+
580
+ interface _ListStudioMembersResponseSuccess
581
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStudioMembersResponse]
582
+ def members: () -> ::Array[Types::StudioMembership]
583
+ def next_token: () -> ::String
584
+ end
585
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#list_studio_members-instance_method
586
+ def list_studio_members: (
587
+ ?max_results: ::Integer,
588
+ ?next_token: ::String,
589
+ studio_id: ::String
590
+ ) -> _ListStudioMembersResponseSuccess
591
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStudioMembersResponseSuccess
592
+
593
+ interface _ListStudiosResponseSuccess
594
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStudiosResponse]
595
+ def next_token: () -> ::String
596
+ def studios: () -> ::Array[Types::Studio]
597
+ end
598
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#list_studios-instance_method
599
+ def list_studios: (
600
+ ?next_token: ::String
601
+ ) -> _ListStudiosResponseSuccess
602
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStudiosResponseSuccess
603
+
604
+ interface _ListTagsForResourceResponseSuccess
605
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
606
+ def tags: () -> ::Hash[::String, ::String]
607
+ end
608
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#list_tags_for_resource-instance_method
609
+ def list_tags_for_resource: (
610
+ resource_arn: ::String
611
+ ) -> _ListTagsForResourceResponseSuccess
612
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
613
+
614
+ interface _PutLaunchProfileMembersResponseSuccess
615
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutLaunchProfileMembersResponse]
616
+ end
617
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#put_launch_profile_members-instance_method
618
+ def put_launch_profile_members: (
619
+ ?client_token: ::String,
620
+ identity_store_id: ::String,
621
+ launch_profile_id: ::String,
622
+ members: Array[
623
+ {
624
+ persona: ("USER"),
625
+ principal_id: ::String
626
+ },
627
+ ],
628
+ studio_id: ::String
629
+ ) -> _PutLaunchProfileMembersResponseSuccess
630
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutLaunchProfileMembersResponseSuccess
631
+
632
+ interface _PutStudioMembersResponseSuccess
633
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutStudioMembersResponse]
634
+ end
635
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#put_studio_members-instance_method
636
+ def put_studio_members: (
637
+ ?client_token: ::String,
638
+ identity_store_id: ::String,
639
+ members: Array[
640
+ {
641
+ persona: ("ADMINISTRATOR"),
642
+ principal_id: ::String
643
+ },
644
+ ],
645
+ studio_id: ::String
646
+ ) -> _PutStudioMembersResponseSuccess
647
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutStudioMembersResponseSuccess
648
+
649
+ interface _StartStreamingSessionResponseSuccess
650
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartStreamingSessionResponse]
651
+ def session: () -> Types::StreamingSession
652
+ end
653
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#start_streaming_session-instance_method
654
+ def start_streaming_session: (
655
+ ?backup_id: ::String,
656
+ ?client_token: ::String,
657
+ session_id: ::String,
658
+ studio_id: ::String
659
+ ) -> _StartStreamingSessionResponseSuccess
660
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartStreamingSessionResponseSuccess
661
+
662
+ interface _StartStudioSSOConfigurationRepairResponseSuccess
663
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartStudioSSOConfigurationRepairResponse]
664
+ def studio: () -> Types::Studio
665
+ end
666
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#start_studio_sso_configuration_repair-instance_method
667
+ def start_studio_sso_configuration_repair: (
668
+ ?client_token: ::String,
669
+ studio_id: ::String
670
+ ) -> _StartStudioSSOConfigurationRepairResponseSuccess
671
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartStudioSSOConfigurationRepairResponseSuccess
672
+
673
+ interface _StopStreamingSessionResponseSuccess
674
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopStreamingSessionResponse]
675
+ def session: () -> Types::StreamingSession
676
+ end
677
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#stop_streaming_session-instance_method
678
+ def stop_streaming_session: (
679
+ ?client_token: ::String,
680
+ session_id: ::String,
681
+ studio_id: ::String,
682
+ ?volume_retention_mode: ("RETAIN" | "DELETE")
683
+ ) -> _StopStreamingSessionResponseSuccess
684
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopStreamingSessionResponseSuccess
685
+
686
+ interface _TagResourceResponseSuccess
687
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
688
+ end
689
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#tag_resource-instance_method
690
+ def tag_resource: (
691
+ resource_arn: ::String,
692
+ ?tags: Hash[::String, ::String]
693
+ ) -> _TagResourceResponseSuccess
694
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
695
+
696
+ interface _UntagResourceResponseSuccess
697
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
698
+ end
699
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#untag_resource-instance_method
700
+ def untag_resource: (
701
+ resource_arn: ::String,
702
+ tag_keys: Array[::String]
703
+ ) -> _UntagResourceResponseSuccess
704
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
705
+
706
+ interface _UpdateLaunchProfileResponseSuccess
707
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLaunchProfileResponse]
708
+ def launch_profile: () -> Types::LaunchProfile
709
+ end
710
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#update_launch_profile-instance_method
711
+ def update_launch_profile: (
712
+ ?client_token: ::String,
713
+ ?description: ::String,
714
+ launch_profile_id: ::String,
715
+ ?launch_profile_protocol_versions: Array[::String],
716
+ ?name: ::String,
717
+ ?stream_configuration: {
718
+ automatic_termination_mode: ("DEACTIVATED" | "ACTIVATED")?,
719
+ clipboard_mode: ("ENABLED" | "DISABLED"),
720
+ ec2_instance_types: Array[("g4dn.xlarge" | "g4dn.2xlarge" | "g4dn.4xlarge" | "g4dn.8xlarge" | "g4dn.12xlarge" | "g4dn.16xlarge" | "g3.4xlarge" | "g3s.xlarge" | "g5.xlarge" | "g5.2xlarge" | "g5.4xlarge" | "g5.8xlarge" | "g5.16xlarge")],
721
+ max_session_length_in_minutes: ::Integer?,
722
+ max_stopped_session_length_in_minutes: ::Integer?,
723
+ session_backup: {
724
+ max_backups_to_retain: ::Integer?,
725
+ mode: ("AUTOMATIC" | "DEACTIVATED")?
726
+ }?,
727
+ session_persistence_mode: ("DEACTIVATED" | "ACTIVATED")?,
728
+ session_storage: {
729
+ mode: Array[("UPLOAD")],
730
+ root: {
731
+ linux: ::String?,
732
+ windows: ::String?
733
+ }?
734
+ }?,
735
+ streaming_image_ids: Array[::String],
736
+ volume_configuration: {
737
+ iops: ::Integer?,
738
+ size: ::Integer?,
739
+ throughput: ::Integer?
740
+ }?
741
+ },
742
+ ?studio_component_ids: Array[::String],
743
+ studio_id: ::String
744
+ ) -> _UpdateLaunchProfileResponseSuccess
745
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLaunchProfileResponseSuccess
746
+
747
+ interface _UpdateLaunchProfileMemberResponseSuccess
748
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLaunchProfileMemberResponse]
749
+ def member: () -> Types::LaunchProfileMembership
750
+ end
751
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#update_launch_profile_member-instance_method
752
+ def update_launch_profile_member: (
753
+ ?client_token: ::String,
754
+ launch_profile_id: ::String,
755
+ persona: ("USER"),
756
+ principal_id: ::String,
757
+ studio_id: ::String
758
+ ) -> _UpdateLaunchProfileMemberResponseSuccess
759
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLaunchProfileMemberResponseSuccess
760
+
761
+ interface _UpdateStreamingImageResponseSuccess
762
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStreamingImageResponse]
763
+ def streaming_image: () -> Types::StreamingImage
764
+ end
765
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#update_streaming_image-instance_method
766
+ def update_streaming_image: (
767
+ ?client_token: ::String,
768
+ ?description: ::String,
769
+ ?name: ::String,
770
+ streaming_image_id: ::String,
771
+ studio_id: ::String
772
+ ) -> _UpdateStreamingImageResponseSuccess
773
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStreamingImageResponseSuccess
774
+
775
+ interface _UpdateStudioResponseSuccess
776
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStudioResponse]
777
+ def studio: () -> Types::Studio
778
+ end
779
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#update_studio-instance_method
780
+ def update_studio: (
781
+ ?admin_role_arn: ::String,
782
+ ?client_token: ::String,
783
+ ?display_name: ::String,
784
+ studio_id: ::String,
785
+ ?user_role_arn: ::String
786
+ ) -> _UpdateStudioResponseSuccess
787
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStudioResponseSuccess
788
+
789
+ interface _UpdateStudioComponentResponseSuccess
790
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStudioComponentResponse]
791
+ def studio_component: () -> Types::StudioComponent
792
+ end
793
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#update_studio_component-instance_method
794
+ def update_studio_component: (
795
+ ?client_token: ::String,
796
+ ?configuration: {
797
+ active_directory_configuration: {
798
+ computer_attributes: Array[
799
+ {
800
+ name: ::String?,
801
+ value: ::String?
802
+ },
803
+ ]?,
804
+ directory_id: ::String?,
805
+ organizational_unit_distinguished_name: ::String?
806
+ }?,
807
+ compute_farm_configuration: {
808
+ active_directory_user: ::String?,
809
+ endpoint: ::String?
810
+ }?,
811
+ license_service_configuration: {
812
+ endpoint: ::String?
813
+ }?,
814
+ shared_file_system_configuration: {
815
+ endpoint: ::String?,
816
+ file_system_id: ::String?,
817
+ linux_mount_point: ::String?,
818
+ share_name: ::String?,
819
+ windows_mount_drive: ::String?
820
+ }?
821
+ },
822
+ ?description: ::String,
823
+ ?ec2_security_group_ids: Array[::String],
824
+ ?initialization_scripts: Array[
825
+ {
826
+ launch_profile_protocol_version: ::String?,
827
+ platform: ("LINUX" | "WINDOWS")?,
828
+ run_context: ("SYSTEM_INITIALIZATION" | "USER_INITIALIZATION")?,
829
+ script: ::String?
830
+ },
831
+ ],
832
+ ?name: ::String,
833
+ ?runtime_role_arn: ::String,
834
+ ?script_parameters: Array[
835
+ {
836
+ key: ::String?,
837
+ value: ::String?
838
+ },
839
+ ],
840
+ ?secure_initialization_role_arn: ::String,
841
+ studio_component_id: ::String,
842
+ studio_id: ::String,
843
+ ?subtype: ("AWS_MANAGED_MICROSOFT_AD" | "AMAZON_FSX_FOR_WINDOWS" | "AMAZON_FSX_FOR_LUSTRE" | "CUSTOM"),
844
+ ?type: ("ACTIVE_DIRECTORY" | "SHARED_FILE_SYSTEM" | "COMPUTE_FARM" | "LICENSE_SERVICE" | "CUSTOM")
845
+ ) -> _UpdateStudioComponentResponseSuccess
846
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStudioComponentResponseSuccess
847
+
848
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NimbleStudio/Client.html#wait_until-instance_method
849
+ def wait_until: (:launch_profile_deleted waiter_name,
850
+ launch_profile_id: ::String,
851
+ studio_id: ::String
852
+ ) -> Client::_GetLaunchProfileResponseSuccess
853
+ | (:launch_profile_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetLaunchProfileResponseSuccess
854
+ | (:launch_profile_ready waiter_name,
855
+ launch_profile_id: ::String,
856
+ studio_id: ::String
857
+ ) -> Client::_GetLaunchProfileResponseSuccess
858
+ | (:launch_profile_ready waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetLaunchProfileResponseSuccess
859
+ | (:streaming_image_deleted waiter_name,
860
+ streaming_image_id: ::String,
861
+ studio_id: ::String
862
+ ) -> Client::_GetStreamingImageResponseSuccess
863
+ | (:streaming_image_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetStreamingImageResponseSuccess
864
+ | (:streaming_image_ready waiter_name,
865
+ streaming_image_id: ::String,
866
+ studio_id: ::String
867
+ ) -> Client::_GetStreamingImageResponseSuccess
868
+ | (:streaming_image_ready waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetStreamingImageResponseSuccess
869
+ | (:streaming_session_deleted waiter_name,
870
+ session_id: ::String,
871
+ studio_id: ::String
872
+ ) -> Client::_GetStreamingSessionResponseSuccess
873
+ | (:streaming_session_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetStreamingSessionResponseSuccess
874
+ | (:streaming_session_ready waiter_name,
875
+ session_id: ::String,
876
+ studio_id: ::String
877
+ ) -> Client::_GetStreamingSessionResponseSuccess
878
+ | (:streaming_session_ready waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetStreamingSessionResponseSuccess
879
+ | (:streaming_session_stopped waiter_name,
880
+ session_id: ::String,
881
+ studio_id: ::String
882
+ ) -> Client::_GetStreamingSessionResponseSuccess
883
+ | (:streaming_session_stopped waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetStreamingSessionResponseSuccess
884
+ | (:streaming_session_stream_ready waiter_name,
885
+ session_id: ::String,
886
+ stream_id: ::String,
887
+ studio_id: ::String
888
+ ) -> Client::_GetStreamingSessionStreamResponseSuccess
889
+ | (:streaming_session_stream_ready waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetStreamingSessionStreamResponseSuccess
890
+ | (:studio_component_deleted waiter_name,
891
+ studio_component_id: ::String,
892
+ studio_id: ::String
893
+ ) -> Client::_GetStudioComponentResponseSuccess
894
+ | (:studio_component_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetStudioComponentResponseSuccess
895
+ | (:studio_component_ready waiter_name,
896
+ studio_component_id: ::String,
897
+ studio_id: ::String
898
+ ) -> Client::_GetStudioComponentResponseSuccess
899
+ | (:studio_component_ready waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetStudioComponentResponseSuccess
900
+ | (:studio_deleted waiter_name,
901
+ studio_id: ::String
902
+ ) -> Client::_GetStudioResponseSuccess
903
+ | (:studio_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetStudioResponseSuccess
904
+ | (:studio_ready waiter_name,
905
+ studio_id: ::String
906
+ ) -> Client::_GetStudioResponseSuccess
907
+ | (:studio_ready waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetStudioResponseSuccess
908
+ end
909
+ end
910
+ end
911
+