aws-sdk-workspacesweb 1.44.0 → 1.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-workspacesweb/client.rb +1300 -643
- data/lib/aws-sdk-workspacesweb/client_api.rb +403 -183
- data/lib/aws-sdk-workspacesweb/errors.rb +15 -15
- data/lib/aws-sdk-workspacesweb/types.rb +1476 -1073
- data/lib/aws-sdk-workspacesweb/waiters.rb +15 -0
- data/lib/aws-sdk-workspacesweb.rb +2 -1
- data/sig/client.rbs +277 -167
- data/sig/errors.rbs +3 -3
- data/sig/types.rbs +325 -193
- metadata +4 -3
data/sig/client.rbs
CHANGED
@@ -80,52 +80,64 @@ module Aws
|
|
80
80
|
|
81
81
|
interface _AssociateBrowserSettingsResponseSuccess
|
82
82
|
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateBrowserSettingsResponse]
|
83
|
-
def browser_settings_arn: () -> ::String
|
84
83
|
def portal_arn: () -> ::String
|
84
|
+
def browser_settings_arn: () -> ::String
|
85
85
|
end
|
86
86
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#associate_browser_settings-instance_method
|
87
87
|
def associate_browser_settings: (
|
88
|
-
|
89
|
-
|
88
|
+
portal_arn: ::String,
|
89
|
+
browser_settings_arn: ::String
|
90
90
|
) -> _AssociateBrowserSettingsResponseSuccess
|
91
91
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateBrowserSettingsResponseSuccess
|
92
92
|
|
93
93
|
interface _AssociateDataProtectionSettingsResponseSuccess
|
94
94
|
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateDataProtectionSettingsResponse]
|
95
|
-
def data_protection_settings_arn: () -> ::String
|
96
95
|
def portal_arn: () -> ::String
|
96
|
+
def data_protection_settings_arn: () -> ::String
|
97
97
|
end
|
98
98
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#associate_data_protection_settings-instance_method
|
99
99
|
def associate_data_protection_settings: (
|
100
|
-
|
101
|
-
|
100
|
+
portal_arn: ::String,
|
101
|
+
data_protection_settings_arn: ::String
|
102
102
|
) -> _AssociateDataProtectionSettingsResponseSuccess
|
103
103
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateDataProtectionSettingsResponseSuccess
|
104
104
|
|
105
105
|
interface _AssociateIpAccessSettingsResponseSuccess
|
106
106
|
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateIpAccessSettingsResponse]
|
107
|
-
def ip_access_settings_arn: () -> ::String
|
108
107
|
def portal_arn: () -> ::String
|
108
|
+
def ip_access_settings_arn: () -> ::String
|
109
109
|
end
|
110
110
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#associate_ip_access_settings-instance_method
|
111
111
|
def associate_ip_access_settings: (
|
112
|
-
|
113
|
-
|
112
|
+
portal_arn: ::String,
|
113
|
+
ip_access_settings_arn: ::String
|
114
114
|
) -> _AssociateIpAccessSettingsResponseSuccess
|
115
115
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateIpAccessSettingsResponseSuccess
|
116
116
|
|
117
117
|
interface _AssociateNetworkSettingsResponseSuccess
|
118
118
|
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateNetworkSettingsResponse]
|
119
|
-
def network_settings_arn: () -> ::String
|
120
119
|
def portal_arn: () -> ::String
|
120
|
+
def network_settings_arn: () -> ::String
|
121
121
|
end
|
122
122
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#associate_network_settings-instance_method
|
123
123
|
def associate_network_settings: (
|
124
|
-
|
125
|
-
|
124
|
+
portal_arn: ::String,
|
125
|
+
network_settings_arn: ::String
|
126
126
|
) -> _AssociateNetworkSettingsResponseSuccess
|
127
127
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateNetworkSettingsResponseSuccess
|
128
128
|
|
129
|
+
interface _AssociateSessionLoggerResponseSuccess
|
130
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateSessionLoggerResponse]
|
131
|
+
def portal_arn: () -> ::String
|
132
|
+
def session_logger_arn: () -> ::String
|
133
|
+
end
|
134
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#associate_session_logger-instance_method
|
135
|
+
def associate_session_logger: (
|
136
|
+
portal_arn: ::String,
|
137
|
+
session_logger_arn: ::String
|
138
|
+
) -> _AssociateSessionLoggerResponseSuccess
|
139
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateSessionLoggerResponseSuccess
|
140
|
+
|
129
141
|
interface _AssociateTrustStoreResponseSuccess
|
130
142
|
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateTrustStoreResponse]
|
131
143
|
def portal_arn: () -> ::String
|
@@ -168,16 +180,16 @@ module Aws
|
|
168
180
|
end
|
169
181
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_browser_settings-instance_method
|
170
182
|
def create_browser_settings: (
|
171
|
-
?additional_encryption_context: Hash[::String, ::String],
|
172
|
-
browser_policy: ::String,
|
173
|
-
?client_token: ::String,
|
174
|
-
?customer_managed_key: ::String,
|
175
183
|
?tags: Array[
|
176
184
|
{
|
177
185
|
key: ::String,
|
178
186
|
value: ::String
|
179
187
|
},
|
180
|
-
]
|
188
|
+
],
|
189
|
+
?customer_managed_key: ::String,
|
190
|
+
?additional_encryption_context: Hash[::String, ::String],
|
191
|
+
browser_policy: ::String,
|
192
|
+
?client_token: ::String
|
181
193
|
) -> _CreateBrowserSettingsResponseSuccess
|
182
194
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBrowserSettingsResponseSuccess
|
183
195
|
|
@@ -187,40 +199,40 @@ module Aws
|
|
187
199
|
end
|
188
200
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_data_protection_settings-instance_method
|
189
201
|
def create_data_protection_settings: (
|
190
|
-
?additional_encryption_context: Hash[::String, ::String],
|
191
|
-
?client_token: ::String,
|
192
|
-
?customer_managed_key: ::String,
|
193
|
-
?description: ::String,
|
194
202
|
?display_name: ::String,
|
203
|
+
?description: ::String,
|
204
|
+
?tags: Array[
|
205
|
+
{
|
206
|
+
key: ::String,
|
207
|
+
value: ::String
|
208
|
+
},
|
209
|
+
],
|
210
|
+
?customer_managed_key: ::String,
|
211
|
+
?additional_encryption_context: Hash[::String, ::String],
|
195
212
|
?inline_redaction_configuration: {
|
196
|
-
global_confidence_level: ::Integer?,
|
197
|
-
global_enforced_urls: Array[::String]?,
|
198
|
-
global_exempt_urls: Array[::String]?,
|
199
213
|
inline_redaction_patterns: Array[
|
200
214
|
{
|
201
215
|
built_in_pattern_id: ::String?,
|
202
|
-
confidence_level: ::Integer?,
|
203
216
|
custom_pattern: {
|
204
|
-
keyword_regex: ::String?,
|
205
|
-
pattern_description: ::String?,
|
206
217
|
pattern_name: ::String,
|
207
|
-
pattern_regex: ::String
|
218
|
+
pattern_regex: ::String,
|
219
|
+
pattern_description: ::String?,
|
220
|
+
keyword_regex: ::String?
|
208
221
|
}?,
|
222
|
+
redaction_place_holder: {
|
223
|
+
redaction_place_holder_type: ("CustomText"),
|
224
|
+
redaction_place_holder_text: ::String?
|
225
|
+
},
|
209
226
|
enforced_urls: Array[::String]?,
|
210
227
|
exempt_urls: Array[::String]?,
|
211
|
-
|
212
|
-
redaction_place_holder_text: ::String?,
|
213
|
-
redaction_place_holder_type: ("CustomText")
|
214
|
-
}
|
228
|
+
confidence_level: ::Integer?
|
215
229
|
},
|
216
|
-
]
|
230
|
+
],
|
231
|
+
global_enforced_urls: Array[::String]?,
|
232
|
+
global_exempt_urls: Array[::String]?,
|
233
|
+
global_confidence_level: ::Integer?
|
217
234
|
},
|
218
|
-
?
|
219
|
-
{
|
220
|
-
key: ::String,
|
221
|
-
value: ::String
|
222
|
-
},
|
223
|
-
]
|
235
|
+
?client_token: ::String
|
224
236
|
) -> _CreateDataProtectionSettingsResponseSuccess
|
225
237
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataProtectionSettingsResponseSuccess
|
226
238
|
|
@@ -230,11 +242,11 @@ module Aws
|
|
230
242
|
end
|
231
243
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_identity_provider-instance_method
|
232
244
|
def create_identity_provider: (
|
233
|
-
|
234
|
-
identity_provider_details: Hash[::String, ::String],
|
245
|
+
portal_arn: ::String,
|
235
246
|
identity_provider_name: ::String,
|
236
247
|
identity_provider_type: ("SAML" | "Facebook" | "Google" | "LoginWithAmazon" | "SignInWithApple" | "OIDC"),
|
237
|
-
|
248
|
+
identity_provider_details: Hash[::String, ::String],
|
249
|
+
?client_token: ::String,
|
238
250
|
?tags: Array[
|
239
251
|
{
|
240
252
|
key: ::String,
|
@@ -250,23 +262,23 @@ module Aws
|
|
250
262
|
end
|
251
263
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_ip_access_settings-instance_method
|
252
264
|
def create_ip_access_settings: (
|
253
|
-
?additional_encryption_context: Hash[::String, ::String],
|
254
|
-
?client_token: ::String,
|
255
|
-
?customer_managed_key: ::String,
|
256
|
-
?description: ::String,
|
257
265
|
?display_name: ::String,
|
258
|
-
|
259
|
-
{
|
260
|
-
description: ::String?,
|
261
|
-
ip_range: ::String
|
262
|
-
},
|
263
|
-
],
|
266
|
+
?description: ::String,
|
264
267
|
?tags: Array[
|
265
268
|
{
|
266
269
|
key: ::String,
|
267
270
|
value: ::String
|
268
271
|
},
|
269
|
-
]
|
272
|
+
],
|
273
|
+
?customer_managed_key: ::String,
|
274
|
+
?additional_encryption_context: Hash[::String, ::String],
|
275
|
+
ip_rules: Array[
|
276
|
+
{
|
277
|
+
ip_range: ::String,
|
278
|
+
description: ::String?
|
279
|
+
},
|
280
|
+
],
|
281
|
+
?client_token: ::String
|
270
282
|
) -> _CreateIpAccessSettingsResponseSuccess
|
271
283
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIpAccessSettingsResponseSuccess
|
272
284
|
|
@@ -276,16 +288,16 @@ module Aws
|
|
276
288
|
end
|
277
289
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_network_settings-instance_method
|
278
290
|
def create_network_settings: (
|
279
|
-
|
280
|
-
security_group_ids: Array[::String],
|
291
|
+
vpc_id: ::String,
|
281
292
|
subnet_ids: Array[::String],
|
293
|
+
security_group_ids: Array[::String],
|
282
294
|
?tags: Array[
|
283
295
|
{
|
284
296
|
key: ::String,
|
285
297
|
value: ::String
|
286
298
|
},
|
287
299
|
],
|
288
|
-
|
300
|
+
?client_token: ::String
|
289
301
|
) -> _CreateNetworkSettingsResponseSuccess
|
290
302
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateNetworkSettingsResponseSuccess
|
291
303
|
|
@@ -296,22 +308,55 @@ module Aws
|
|
296
308
|
end
|
297
309
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_portal-instance_method
|
298
310
|
def create_portal: (
|
299
|
-
?additional_encryption_context: Hash[::String, ::String],
|
300
|
-
?authentication_type: ("Standard" | "IAM_Identity_Center"),
|
301
|
-
?client_token: ::String,
|
302
|
-
?customer_managed_key: ::String,
|
303
311
|
?display_name: ::String,
|
304
|
-
?instance_type: ("standard.regular" | "standard.large" | "standard.xlarge"),
|
305
|
-
?max_concurrent_sessions: ::Integer,
|
306
312
|
?tags: Array[
|
307
313
|
{
|
308
314
|
key: ::String,
|
309
315
|
value: ::String
|
310
316
|
},
|
311
|
-
]
|
317
|
+
],
|
318
|
+
?customer_managed_key: ::String,
|
319
|
+
?additional_encryption_context: Hash[::String, ::String],
|
320
|
+
?client_token: ::String,
|
321
|
+
?authentication_type: ("Standard" | "IAM_Identity_Center"),
|
322
|
+
?instance_type: ("standard.regular" | "standard.large" | "standard.xlarge"),
|
323
|
+
?max_concurrent_sessions: ::Integer
|
312
324
|
) -> _CreatePortalResponseSuccess
|
313
325
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePortalResponseSuccess
|
314
326
|
|
327
|
+
interface _CreateSessionLoggerResponseSuccess
|
328
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateSessionLoggerResponse]
|
329
|
+
def session_logger_arn: () -> ::String
|
330
|
+
end
|
331
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_session_logger-instance_method
|
332
|
+
def create_session_logger: (
|
333
|
+
event_filter: {
|
334
|
+
all: {
|
335
|
+
}?,
|
336
|
+
include: Array[("WebsiteInteract" | "FileDownloadFromSecureBrowserToRemoteDisk" | "FileTransferFromRemoteToLocalDisk" | "FileTransferFromLocalToRemoteDisk" | "FileUploadFromRemoteDiskToSecureBrowser" | "ContentPasteToWebsite" | "ContentTransferFromLocalToRemoteClipboard" | "ContentCopyFromWebsite" | "UrlLoad" | "TabOpen" | "TabClose" | "PrintJobSubmit" | "SessionConnect" | "SessionStart" | "SessionDisconnect" | "SessionEnd")]?
|
337
|
+
},
|
338
|
+
log_configuration: {
|
339
|
+
s3: {
|
340
|
+
bucket: ::String,
|
341
|
+
key_prefix: ::String?,
|
342
|
+
bucket_owner: ::String?,
|
343
|
+
log_file_format: ("JSONLines" | "Json"),
|
344
|
+
folder_structure: ("Flat" | "NestedByDate")
|
345
|
+
}?
|
346
|
+
},
|
347
|
+
?display_name: ::String,
|
348
|
+
?customer_managed_key: ::String,
|
349
|
+
?additional_encryption_context: Hash[::String, ::String],
|
350
|
+
?tags: Array[
|
351
|
+
{
|
352
|
+
key: ::String,
|
353
|
+
value: ::String
|
354
|
+
},
|
355
|
+
],
|
356
|
+
?client_token: ::String
|
357
|
+
) -> _CreateSessionLoggerResponseSuccess
|
358
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSessionLoggerResponseSuccess
|
359
|
+
|
315
360
|
interface _CreateTrustStoreResponseSuccess
|
316
361
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateTrustStoreResponse]
|
317
362
|
def trust_store_arn: () -> ::String
|
@@ -319,13 +364,13 @@ module Aws
|
|
319
364
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_trust_store-instance_method
|
320
365
|
def create_trust_store: (
|
321
366
|
certificate_list: Array[::String],
|
322
|
-
?client_token: ::String,
|
323
367
|
?tags: Array[
|
324
368
|
{
|
325
369
|
key: ::String,
|
326
370
|
value: ::String
|
327
371
|
},
|
328
|
-
]
|
372
|
+
],
|
373
|
+
?client_token: ::String
|
329
374
|
) -> _CreateTrustStoreResponseSuccess
|
330
375
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTrustStoreResponseSuccess
|
331
376
|
|
@@ -335,14 +380,14 @@ module Aws
|
|
335
380
|
end
|
336
381
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_user_access_logging_settings-instance_method
|
337
382
|
def create_user_access_logging_settings: (
|
338
|
-
?client_token: ::String,
|
339
383
|
kinesis_stream_arn: ::String,
|
340
384
|
?tags: Array[
|
341
385
|
{
|
342
386
|
key: ::String,
|
343
387
|
value: ::String
|
344
388
|
},
|
345
|
-
]
|
389
|
+
],
|
390
|
+
?client_token: ::String
|
346
391
|
) -> _CreateUserAccessLoggingSettingsResponseSuccess
|
347
392
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserAccessLoggingSettingsResponseSuccess
|
348
393
|
|
@@ -352,7 +397,19 @@ module Aws
|
|
352
397
|
end
|
353
398
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_user_settings-instance_method
|
354
399
|
def create_user_settings: (
|
355
|
-
|
400
|
+
copy_allowed: ("Disabled" | "Enabled"),
|
401
|
+
paste_allowed: ("Disabled" | "Enabled"),
|
402
|
+
download_allowed: ("Disabled" | "Enabled"),
|
403
|
+
upload_allowed: ("Disabled" | "Enabled"),
|
404
|
+
print_allowed: ("Disabled" | "Enabled"),
|
405
|
+
?tags: Array[
|
406
|
+
{
|
407
|
+
key: ::String,
|
408
|
+
value: ::String
|
409
|
+
},
|
410
|
+
],
|
411
|
+
?disconnect_timeout_in_minutes: ::Integer,
|
412
|
+
?idle_disconnect_timeout_in_minutes: ::Integer,
|
356
413
|
?client_token: ::String,
|
357
414
|
?cookie_synchronization_configuration: {
|
358
415
|
allowlist: Array[
|
@@ -370,27 +427,15 @@ module Aws
|
|
370
427
|
},
|
371
428
|
]?
|
372
429
|
},
|
373
|
-
copy_allowed: ("Disabled" | "Enabled"),
|
374
430
|
?customer_managed_key: ::String,
|
431
|
+
?additional_encryption_context: Hash[::String, ::String],
|
375
432
|
?deep_link_allowed: ("Disabled" | "Enabled"),
|
376
|
-
?disconnect_timeout_in_minutes: ::Integer,
|
377
|
-
download_allowed: ("Disabled" | "Enabled"),
|
378
|
-
?idle_disconnect_timeout_in_minutes: ::Integer,
|
379
|
-
paste_allowed: ("Disabled" | "Enabled"),
|
380
|
-
print_allowed: ("Disabled" | "Enabled"),
|
381
|
-
?tags: Array[
|
382
|
-
{
|
383
|
-
key: ::String,
|
384
|
-
value: ::String
|
385
|
-
},
|
386
|
-
],
|
387
433
|
?toolbar_configuration: {
|
388
|
-
hidden_toolbar_items: Array[("Windows" | "DualMonitor" | "FullScreen" | "Webcam" | "Microphone")]?,
|
389
|
-
max_display_resolution: ("size4096X2160" | "size3840X2160" | "size3440X1440" | "size2560X1440" | "size1920X1080" | "size1280X720" | "size1024X768" | "size800X600")?,
|
390
434
|
toolbar_type: ("Floating" | "Docked")?,
|
391
|
-
visual_mode: ("Dark" | "Light")
|
392
|
-
|
393
|
-
|
435
|
+
visual_mode: ("Dark" | "Light")?,
|
436
|
+
hidden_toolbar_items: Array[("Windows" | "DualMonitor" | "FullScreen" | "Webcam" | "Microphone")]?,
|
437
|
+
max_display_resolution: ("size4096X2160" | "size3840X2160" | "size3440X1440" | "size2560X1440" | "size1920X1080" | "size1280X720" | "size1024X768" | "size800X600")?
|
438
|
+
}
|
394
439
|
) -> _CreateUserSettingsResponseSuccess
|
395
440
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserSettingsResponseSuccess
|
396
441
|
|
@@ -448,6 +493,15 @@ module Aws
|
|
448
493
|
) -> _DeletePortalResponseSuccess
|
449
494
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePortalResponseSuccess
|
450
495
|
|
496
|
+
interface _DeleteSessionLoggerResponseSuccess
|
497
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSessionLoggerResponse]
|
498
|
+
end
|
499
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#delete_session_logger-instance_method
|
500
|
+
def delete_session_logger: (
|
501
|
+
session_logger_arn: ::String
|
502
|
+
) -> _DeleteSessionLoggerResponseSuccess
|
503
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSessionLoggerResponseSuccess
|
504
|
+
|
451
505
|
interface _DeleteTrustStoreResponseSuccess
|
452
506
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTrustStoreResponse]
|
453
507
|
end
|
@@ -511,6 +565,15 @@ module Aws
|
|
511
565
|
) -> _DisassociateNetworkSettingsResponseSuccess
|
512
566
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateNetworkSettingsResponseSuccess
|
513
567
|
|
568
|
+
interface _DisassociateSessionLoggerResponseSuccess
|
569
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateSessionLoggerResponse]
|
570
|
+
end
|
571
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#disassociate_session_logger-instance_method
|
572
|
+
def disassociate_session_logger: (
|
573
|
+
portal_arn: ::String
|
574
|
+
) -> _DisassociateSessionLoggerResponseSuccess
|
575
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateSessionLoggerResponseSuccess
|
576
|
+
|
514
577
|
interface _DisassociateTrustStoreResponseSuccess
|
515
578
|
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateTrustStoreResponse]
|
516
579
|
end
|
@@ -630,6 +693,16 @@ module Aws
|
|
630
693
|
) -> _GetSessionResponseSuccess
|
631
694
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSessionResponseSuccess
|
632
695
|
|
696
|
+
interface _GetSessionLoggerResponseSuccess
|
697
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSessionLoggerResponse]
|
698
|
+
def session_logger: () -> Types::SessionLogger
|
699
|
+
end
|
700
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#get_session_logger-instance_method
|
701
|
+
def get_session_logger: (
|
702
|
+
session_logger_arn: ::String
|
703
|
+
) -> _GetSessionLoggerResponseSuccess
|
704
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSessionLoggerResponseSuccess
|
705
|
+
|
633
706
|
interface _GetTrustStoreResponseSuccess
|
634
707
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetTrustStoreResponse]
|
635
708
|
def trust_store: () -> Types::TrustStore
|
@@ -642,13 +715,13 @@ module Aws
|
|
642
715
|
|
643
716
|
interface _GetTrustStoreCertificateResponseSuccess
|
644
717
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetTrustStoreCertificateResponse]
|
645
|
-
def certificate: () -> Types::Certificate
|
646
718
|
def trust_store_arn: () -> ::String
|
719
|
+
def certificate: () -> Types::Certificate
|
647
720
|
end
|
648
721
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#get_trust_store_certificate-instance_method
|
649
722
|
def get_trust_store_certificate: (
|
650
|
-
|
651
|
-
|
723
|
+
trust_store_arn: ::String,
|
724
|
+
thumbprint: ::String
|
652
725
|
) -> _GetTrustStoreCertificateResponseSuccess
|
653
726
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTrustStoreCertificateResponseSuccess
|
654
727
|
|
@@ -679,8 +752,8 @@ module Aws
|
|
679
752
|
end
|
680
753
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_browser_settings-instance_method
|
681
754
|
def list_browser_settings: (
|
682
|
-
?
|
683
|
-
?
|
755
|
+
?next_token: ::String,
|
756
|
+
?max_results: ::Integer
|
684
757
|
) -> _ListBrowserSettingsResponseSuccess
|
685
758
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBrowserSettingsResponseSuccess
|
686
759
|
|
@@ -691,20 +764,20 @@ module Aws
|
|
691
764
|
end
|
692
765
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_data_protection_settings-instance_method
|
693
766
|
def list_data_protection_settings: (
|
694
|
-
?
|
695
|
-
?
|
767
|
+
?next_token: ::String,
|
768
|
+
?max_results: ::Integer
|
696
769
|
) -> _ListDataProtectionSettingsResponseSuccess
|
697
770
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataProtectionSettingsResponseSuccess
|
698
771
|
|
699
772
|
interface _ListIdentityProvidersResponseSuccess
|
700
773
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListIdentityProvidersResponse]
|
701
|
-
def identity_providers: () -> ::Array[Types::IdentityProviderSummary]
|
702
774
|
def next_token: () -> ::String
|
775
|
+
def identity_providers: () -> ::Array[Types::IdentityProviderSummary]
|
703
776
|
end
|
704
777
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_identity_providers-instance_method
|
705
778
|
def list_identity_providers: (
|
706
|
-
?max_results: ::Integer,
|
707
779
|
?next_token: ::String,
|
780
|
+
?max_results: ::Integer,
|
708
781
|
portal_arn: ::String
|
709
782
|
) -> _ListIdentityProvidersResponseSuccess
|
710
783
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIdentityProvidersResponseSuccess
|
@@ -716,8 +789,8 @@ module Aws
|
|
716
789
|
end
|
717
790
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_ip_access_settings-instance_method
|
718
791
|
def list_ip_access_settings: (
|
719
|
-
?
|
720
|
-
?
|
792
|
+
?next_token: ::String,
|
793
|
+
?max_results: ::Integer
|
721
794
|
) -> _ListIpAccessSettingsResponseSuccess
|
722
795
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIpAccessSettingsResponseSuccess
|
723
796
|
|
@@ -728,37 +801,49 @@ module Aws
|
|
728
801
|
end
|
729
802
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_network_settings-instance_method
|
730
803
|
def list_network_settings: (
|
731
|
-
?
|
732
|
-
?
|
804
|
+
?next_token: ::String,
|
805
|
+
?max_results: ::Integer
|
733
806
|
) -> _ListNetworkSettingsResponseSuccess
|
734
807
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNetworkSettingsResponseSuccess
|
735
808
|
|
736
809
|
interface _ListPortalsResponseSuccess
|
737
810
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListPortalsResponse]
|
738
|
-
def next_token: () -> ::String
|
739
811
|
def portals: () -> ::Array[Types::PortalSummary]
|
812
|
+
def next_token: () -> ::String
|
740
813
|
end
|
741
814
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_portals-instance_method
|
742
815
|
def list_portals: (
|
743
|
-
?
|
744
|
-
?
|
816
|
+
?next_token: ::String,
|
817
|
+
?max_results: ::Integer
|
745
818
|
) -> _ListPortalsResponseSuccess
|
746
819
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPortalsResponseSuccess
|
747
820
|
|
821
|
+
interface _ListSessionLoggersResponseSuccess
|
822
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSessionLoggersResponse]
|
823
|
+
def session_loggers: () -> ::Array[Types::SessionLoggerSummary]
|
824
|
+
def next_token: () -> ::String
|
825
|
+
end
|
826
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_session_loggers-instance_method
|
827
|
+
def list_session_loggers: (
|
828
|
+
?next_token: ::String,
|
829
|
+
?max_results: ::Integer
|
830
|
+
) -> _ListSessionLoggersResponseSuccess
|
831
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSessionLoggersResponseSuccess
|
832
|
+
|
748
833
|
interface _ListSessionsResponseSuccess
|
749
834
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListSessionsResponse]
|
750
|
-
def next_token: () -> ::String
|
751
835
|
def sessions: () -> ::Array[Types::SessionSummary]
|
836
|
+
def next_token: () -> ::String
|
752
837
|
end
|
753
838
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_sessions-instance_method
|
754
839
|
def list_sessions: (
|
755
|
-
?max_results: ::Integer,
|
756
|
-
?next_token: ::String,
|
757
840
|
portal_id: ::String,
|
841
|
+
?username: ::String,
|
758
842
|
?session_id: ::String,
|
759
843
|
?sort_by: ("StartTimeAscending" | "StartTimeDescending"),
|
760
844
|
?status: ("Active" | "Terminated"),
|
761
|
-
?
|
845
|
+
?max_results: ::Integer,
|
846
|
+
?next_token: ::String
|
762
847
|
) -> _ListSessionsResponseSuccess
|
763
848
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSessionsResponseSuccess
|
764
849
|
|
@@ -775,50 +860,50 @@ module Aws
|
|
775
860
|
interface _ListTrustStoreCertificatesResponseSuccess
|
776
861
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListTrustStoreCertificatesResponse]
|
777
862
|
def certificate_list: () -> ::Array[Types::CertificateSummary]
|
778
|
-
def next_token: () -> ::String
|
779
863
|
def trust_store_arn: () -> ::String
|
864
|
+
def next_token: () -> ::String
|
780
865
|
end
|
781
866
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_trust_store_certificates-instance_method
|
782
867
|
def list_trust_store_certificates: (
|
783
|
-
|
868
|
+
trust_store_arn: ::String,
|
784
869
|
?next_token: ::String,
|
785
|
-
|
870
|
+
?max_results: ::Integer
|
786
871
|
) -> _ListTrustStoreCertificatesResponseSuccess
|
787
872
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTrustStoreCertificatesResponseSuccess
|
788
873
|
|
789
874
|
interface _ListTrustStoresResponseSuccess
|
790
875
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListTrustStoresResponse]
|
791
|
-
def next_token: () -> ::String
|
792
876
|
def trust_stores: () -> ::Array[Types::TrustStoreSummary]
|
877
|
+
def next_token: () -> ::String
|
793
878
|
end
|
794
879
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_trust_stores-instance_method
|
795
880
|
def list_trust_stores: (
|
796
|
-
?
|
797
|
-
?
|
881
|
+
?next_token: ::String,
|
882
|
+
?max_results: ::Integer
|
798
883
|
) -> _ListTrustStoresResponseSuccess
|
799
884
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTrustStoresResponseSuccess
|
800
885
|
|
801
886
|
interface _ListUserAccessLoggingSettingsResponseSuccess
|
802
887
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListUserAccessLoggingSettingsResponse]
|
803
|
-
def next_token: () -> ::String
|
804
888
|
def user_access_logging_settings: () -> ::Array[Types::UserAccessLoggingSettingsSummary]
|
889
|
+
def next_token: () -> ::String
|
805
890
|
end
|
806
891
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_user_access_logging_settings-instance_method
|
807
892
|
def list_user_access_logging_settings: (
|
808
|
-
?
|
809
|
-
?
|
893
|
+
?next_token: ::String,
|
894
|
+
?max_results: ::Integer
|
810
895
|
) -> _ListUserAccessLoggingSettingsResponseSuccess
|
811
896
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUserAccessLoggingSettingsResponseSuccess
|
812
897
|
|
813
898
|
interface _ListUserSettingsResponseSuccess
|
814
899
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListUserSettingsResponse]
|
815
|
-
def next_token: () -> ::String
|
816
900
|
def user_settings: () -> ::Array[Types::UserSettingsSummary]
|
901
|
+
def next_token: () -> ::String
|
817
902
|
end
|
818
903
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_user_settings-instance_method
|
819
904
|
def list_user_settings: (
|
820
|
-
?
|
821
|
-
?
|
905
|
+
?next_token: ::String,
|
906
|
+
?max_results: ::Integer
|
822
907
|
) -> _ListUserSettingsResponseSuccess
|
823
908
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUserSettingsResponseSuccess
|
824
909
|
|
@@ -827,14 +912,14 @@ module Aws
|
|
827
912
|
end
|
828
913
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#tag_resource-instance_method
|
829
914
|
def tag_resource: (
|
830
|
-
?client_token: ::String,
|
831
915
|
resource_arn: ::String,
|
832
916
|
tags: Array[
|
833
917
|
{
|
834
918
|
key: ::String,
|
835
919
|
value: ::String
|
836
920
|
},
|
837
|
-
]
|
921
|
+
],
|
922
|
+
?client_token: ::String
|
838
923
|
) -> _TagResourceResponseSuccess
|
839
924
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
840
925
|
|
@@ -854,8 +939,8 @@ module Aws
|
|
854
939
|
end
|
855
940
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_browser_settings-instance_method
|
856
941
|
def update_browser_settings: (
|
857
|
-
?browser_policy: ::String,
|
858
942
|
browser_settings_arn: ::String,
|
943
|
+
?browser_policy: ::String,
|
859
944
|
?client_token: ::String
|
860
945
|
) -> _UpdateBrowserSettingsResponseSuccess
|
861
946
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBrowserSettingsResponseSuccess
|
@@ -866,33 +951,33 @@ module Aws
|
|
866
951
|
end
|
867
952
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_data_protection_settings-instance_method
|
868
953
|
def update_data_protection_settings: (
|
869
|
-
?client_token: ::String,
|
870
954
|
data_protection_settings_arn: ::String,
|
871
|
-
?description: ::String,
|
872
|
-
?display_name: ::String,
|
873
955
|
?inline_redaction_configuration: {
|
874
|
-
global_confidence_level: ::Integer?,
|
875
|
-
global_enforced_urls: Array[::String]?,
|
876
|
-
global_exempt_urls: Array[::String]?,
|
877
956
|
inline_redaction_patterns: Array[
|
878
957
|
{
|
879
958
|
built_in_pattern_id: ::String?,
|
880
|
-
confidence_level: ::Integer?,
|
881
959
|
custom_pattern: {
|
882
|
-
keyword_regex: ::String?,
|
883
|
-
pattern_description: ::String?,
|
884
960
|
pattern_name: ::String,
|
885
|
-
pattern_regex: ::String
|
961
|
+
pattern_regex: ::String,
|
962
|
+
pattern_description: ::String?,
|
963
|
+
keyword_regex: ::String?
|
886
964
|
}?,
|
965
|
+
redaction_place_holder: {
|
966
|
+
redaction_place_holder_type: ("CustomText"),
|
967
|
+
redaction_place_holder_text: ::String?
|
968
|
+
},
|
887
969
|
enforced_urls: Array[::String]?,
|
888
970
|
exempt_urls: Array[::String]?,
|
889
|
-
|
890
|
-
redaction_place_holder_text: ::String?,
|
891
|
-
redaction_place_holder_type: ("CustomText")
|
892
|
-
}
|
971
|
+
confidence_level: ::Integer?
|
893
972
|
},
|
894
|
-
]
|
895
|
-
|
973
|
+
],
|
974
|
+
global_enforced_urls: Array[::String]?,
|
975
|
+
global_exempt_urls: Array[::String]?,
|
976
|
+
global_confidence_level: ::Integer?
|
977
|
+
},
|
978
|
+
?display_name: ::String,
|
979
|
+
?description: ::String,
|
980
|
+
?client_token: ::String
|
896
981
|
) -> _UpdateDataProtectionSettingsResponseSuccess
|
897
982
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataProtectionSettingsResponseSuccess
|
898
983
|
|
@@ -902,11 +987,11 @@ module Aws
|
|
902
987
|
end
|
903
988
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_identity_provider-instance_method
|
904
989
|
def update_identity_provider: (
|
905
|
-
?client_token: ::String,
|
906
990
|
identity_provider_arn: ::String,
|
907
|
-
?identity_provider_details: Hash[::String, ::String],
|
908
991
|
?identity_provider_name: ::String,
|
909
|
-
?identity_provider_type: ("SAML" | "Facebook" | "Google" | "LoginWithAmazon" | "SignInWithApple" | "OIDC")
|
992
|
+
?identity_provider_type: ("SAML" | "Facebook" | "Google" | "LoginWithAmazon" | "SignInWithApple" | "OIDC"),
|
993
|
+
?identity_provider_details: Hash[::String, ::String],
|
994
|
+
?client_token: ::String
|
910
995
|
) -> _UpdateIdentityProviderResponseSuccess
|
911
996
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIdentityProviderResponseSuccess
|
912
997
|
|
@@ -916,16 +1001,16 @@ module Aws
|
|
916
1001
|
end
|
917
1002
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_ip_access_settings-instance_method
|
918
1003
|
def update_ip_access_settings: (
|
919
|
-
?client_token: ::String,
|
920
|
-
?description: ::String,
|
921
|
-
?display_name: ::String,
|
922
1004
|
ip_access_settings_arn: ::String,
|
1005
|
+
?display_name: ::String,
|
1006
|
+
?description: ::String,
|
923
1007
|
?ip_rules: Array[
|
924
1008
|
{
|
925
|
-
|
926
|
-
|
1009
|
+
ip_range: ::String,
|
1010
|
+
description: ::String?
|
927
1011
|
},
|
928
|
-
]
|
1012
|
+
],
|
1013
|
+
?client_token: ::String
|
929
1014
|
) -> _UpdateIpAccessSettingsResponseSuccess
|
930
1015
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIpAccessSettingsResponseSuccess
|
931
1016
|
|
@@ -935,11 +1020,11 @@ module Aws
|
|
935
1020
|
end
|
936
1021
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_network_settings-instance_method
|
937
1022
|
def update_network_settings: (
|
938
|
-
?client_token: ::String,
|
939
1023
|
network_settings_arn: ::String,
|
940
|
-
?
|
1024
|
+
?vpc_id: ::String,
|
941
1025
|
?subnet_ids: Array[::String],
|
942
|
-
?
|
1026
|
+
?security_group_ids: Array[::String],
|
1027
|
+
?client_token: ::String
|
943
1028
|
) -> _UpdateNetworkSettingsResponseSuccess
|
944
1029
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNetworkSettingsResponseSuccess
|
945
1030
|
|
@@ -949,24 +1034,49 @@ module Aws
|
|
949
1034
|
end
|
950
1035
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_portal-instance_method
|
951
1036
|
def update_portal: (
|
952
|
-
|
1037
|
+
portal_arn: ::String,
|
953
1038
|
?display_name: ::String,
|
1039
|
+
?authentication_type: ("Standard" | "IAM_Identity_Center"),
|
954
1040
|
?instance_type: ("standard.regular" | "standard.large" | "standard.xlarge"),
|
955
|
-
?max_concurrent_sessions: ::Integer
|
956
|
-
portal_arn: ::String
|
1041
|
+
?max_concurrent_sessions: ::Integer
|
957
1042
|
) -> _UpdatePortalResponseSuccess
|
958
1043
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePortalResponseSuccess
|
959
1044
|
|
1045
|
+
interface _UpdateSessionLoggerResponseSuccess
|
1046
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSessionLoggerResponse]
|
1047
|
+
def session_logger: () -> Types::SessionLogger
|
1048
|
+
end
|
1049
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_session_logger-instance_method
|
1050
|
+
def update_session_logger: (
|
1051
|
+
session_logger_arn: ::String,
|
1052
|
+
?event_filter: {
|
1053
|
+
all: {
|
1054
|
+
}?,
|
1055
|
+
include: Array[("WebsiteInteract" | "FileDownloadFromSecureBrowserToRemoteDisk" | "FileTransferFromRemoteToLocalDisk" | "FileTransferFromLocalToRemoteDisk" | "FileUploadFromRemoteDiskToSecureBrowser" | "ContentPasteToWebsite" | "ContentTransferFromLocalToRemoteClipboard" | "ContentCopyFromWebsite" | "UrlLoad" | "TabOpen" | "TabClose" | "PrintJobSubmit" | "SessionConnect" | "SessionStart" | "SessionDisconnect" | "SessionEnd")]?
|
1056
|
+
},
|
1057
|
+
?log_configuration: {
|
1058
|
+
s3: {
|
1059
|
+
bucket: ::String,
|
1060
|
+
key_prefix: ::String?,
|
1061
|
+
bucket_owner: ::String?,
|
1062
|
+
log_file_format: ("JSONLines" | "Json"),
|
1063
|
+
folder_structure: ("Flat" | "NestedByDate")
|
1064
|
+
}?
|
1065
|
+
},
|
1066
|
+
?display_name: ::String
|
1067
|
+
) -> _UpdateSessionLoggerResponseSuccess
|
1068
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSessionLoggerResponseSuccess
|
1069
|
+
|
960
1070
|
interface _UpdateTrustStoreResponseSuccess
|
961
1071
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTrustStoreResponse]
|
962
1072
|
def trust_store_arn: () -> ::String
|
963
1073
|
end
|
964
1074
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_trust_store-instance_method
|
965
1075
|
def update_trust_store: (
|
1076
|
+
trust_store_arn: ::String,
|
966
1077
|
?certificates_to_add: Array[::String],
|
967
1078
|
?certificates_to_delete: Array[::String],
|
968
|
-
?client_token: ::String
|
969
|
-
trust_store_arn: ::String
|
1079
|
+
?client_token: ::String
|
970
1080
|
) -> _UpdateTrustStoreResponseSuccess
|
971
1081
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTrustStoreResponseSuccess
|
972
1082
|
|
@@ -976,9 +1086,9 @@ module Aws
|
|
976
1086
|
end
|
977
1087
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_user_access_logging_settings-instance_method
|
978
1088
|
def update_user_access_logging_settings: (
|
979
|
-
|
1089
|
+
user_access_logging_settings_arn: ::String,
|
980
1090
|
?kinesis_stream_arn: ::String,
|
981
|
-
|
1091
|
+
?client_token: ::String
|
982
1092
|
) -> _UpdateUserAccessLoggingSettingsResponseSuccess
|
983
1093
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUserAccessLoggingSettingsResponseSuccess
|
984
1094
|
|
@@ -988,6 +1098,14 @@ module Aws
|
|
988
1098
|
end
|
989
1099
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_user_settings-instance_method
|
990
1100
|
def update_user_settings: (
|
1101
|
+
user_settings_arn: ::String,
|
1102
|
+
?copy_allowed: ("Disabled" | "Enabled"),
|
1103
|
+
?paste_allowed: ("Disabled" | "Enabled"),
|
1104
|
+
?download_allowed: ("Disabled" | "Enabled"),
|
1105
|
+
?upload_allowed: ("Disabled" | "Enabled"),
|
1106
|
+
?print_allowed: ("Disabled" | "Enabled"),
|
1107
|
+
?disconnect_timeout_in_minutes: ::Integer,
|
1108
|
+
?idle_disconnect_timeout_in_minutes: ::Integer,
|
991
1109
|
?client_token: ::String,
|
992
1110
|
?cookie_synchronization_configuration: {
|
993
1111
|
allowlist: Array[
|
@@ -1005,21 +1123,13 @@ module Aws
|
|
1005
1123
|
},
|
1006
1124
|
]?
|
1007
1125
|
},
|
1008
|
-
?copy_allowed: ("Disabled" | "Enabled"),
|
1009
1126
|
?deep_link_allowed: ("Disabled" | "Enabled"),
|
1010
|
-
?disconnect_timeout_in_minutes: ::Integer,
|
1011
|
-
?download_allowed: ("Disabled" | "Enabled"),
|
1012
|
-
?idle_disconnect_timeout_in_minutes: ::Integer,
|
1013
|
-
?paste_allowed: ("Disabled" | "Enabled"),
|
1014
|
-
?print_allowed: ("Disabled" | "Enabled"),
|
1015
1127
|
?toolbar_configuration: {
|
1016
|
-
hidden_toolbar_items: Array[("Windows" | "DualMonitor" | "FullScreen" | "Webcam" | "Microphone")]?,
|
1017
|
-
max_display_resolution: ("size4096X2160" | "size3840X2160" | "size3440X1440" | "size2560X1440" | "size1920X1080" | "size1280X720" | "size1024X768" | "size800X600")?,
|
1018
1128
|
toolbar_type: ("Floating" | "Docked")?,
|
1019
|
-
visual_mode: ("Dark" | "Light")
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1129
|
+
visual_mode: ("Dark" | "Light")?,
|
1130
|
+
hidden_toolbar_items: Array[("Windows" | "DualMonitor" | "FullScreen" | "Webcam" | "Microphone")]?,
|
1131
|
+
max_display_resolution: ("size4096X2160" | "size3840X2160" | "size3440X1440" | "size2560X1440" | "size1920X1080" | "size1280X720" | "size1024X768" | "size800X600")?
|
1132
|
+
}
|
1023
1133
|
) -> _UpdateUserSettingsResponseSuccess
|
1024
1134
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUserSettingsResponseSuccess
|
1025
1135
|
end
|