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