aws-sdk-workspacesweb 1.17.0 → 1.18.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 +1 -1
- data/lib/aws-sdk-workspacesweb/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-workspacesweb.rb +1 -1
- data/sig/client.rbs +829 -0
- data/sig/errors.rbs +55 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +920 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,829 @@
|
|
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 WorkSpacesWeb
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/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 _AssociateBrowserSettingsResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateBrowserSettingsResponse]
|
77
|
+
def browser_settings_arn: () -> ::String
|
78
|
+
def portal_arn: () -> ::String
|
79
|
+
end
|
80
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#associate_browser_settings-instance_method
|
81
|
+
def associate_browser_settings: (
|
82
|
+
browser_settings_arn: ::String,
|
83
|
+
portal_arn: ::String
|
84
|
+
) -> _AssociateBrowserSettingsResponseSuccess
|
85
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateBrowserSettingsResponseSuccess
|
86
|
+
|
87
|
+
interface _AssociateIpAccessSettingsResponseSuccess
|
88
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateIpAccessSettingsResponse]
|
89
|
+
def ip_access_settings_arn: () -> ::String
|
90
|
+
def portal_arn: () -> ::String
|
91
|
+
end
|
92
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#associate_ip_access_settings-instance_method
|
93
|
+
def associate_ip_access_settings: (
|
94
|
+
ip_access_settings_arn: ::String,
|
95
|
+
portal_arn: ::String
|
96
|
+
) -> _AssociateIpAccessSettingsResponseSuccess
|
97
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateIpAccessSettingsResponseSuccess
|
98
|
+
|
99
|
+
interface _AssociateNetworkSettingsResponseSuccess
|
100
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateNetworkSettingsResponse]
|
101
|
+
def network_settings_arn: () -> ::String
|
102
|
+
def portal_arn: () -> ::String
|
103
|
+
end
|
104
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#associate_network_settings-instance_method
|
105
|
+
def associate_network_settings: (
|
106
|
+
network_settings_arn: ::String,
|
107
|
+
portal_arn: ::String
|
108
|
+
) -> _AssociateNetworkSettingsResponseSuccess
|
109
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateNetworkSettingsResponseSuccess
|
110
|
+
|
111
|
+
interface _AssociateTrustStoreResponseSuccess
|
112
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateTrustStoreResponse]
|
113
|
+
def portal_arn: () -> ::String
|
114
|
+
def trust_store_arn: () -> ::String
|
115
|
+
end
|
116
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#associate_trust_store-instance_method
|
117
|
+
def associate_trust_store: (
|
118
|
+
portal_arn: ::String,
|
119
|
+
trust_store_arn: ::String
|
120
|
+
) -> _AssociateTrustStoreResponseSuccess
|
121
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateTrustStoreResponseSuccess
|
122
|
+
|
123
|
+
interface _AssociateUserAccessLoggingSettingsResponseSuccess
|
124
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateUserAccessLoggingSettingsResponse]
|
125
|
+
def portal_arn: () -> ::String
|
126
|
+
def user_access_logging_settings_arn: () -> ::String
|
127
|
+
end
|
128
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#associate_user_access_logging_settings-instance_method
|
129
|
+
def associate_user_access_logging_settings: (
|
130
|
+
portal_arn: ::String,
|
131
|
+
user_access_logging_settings_arn: ::String
|
132
|
+
) -> _AssociateUserAccessLoggingSettingsResponseSuccess
|
133
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateUserAccessLoggingSettingsResponseSuccess
|
134
|
+
|
135
|
+
interface _AssociateUserSettingsResponseSuccess
|
136
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateUserSettingsResponse]
|
137
|
+
def portal_arn: () -> ::String
|
138
|
+
def user_settings_arn: () -> ::String
|
139
|
+
end
|
140
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#associate_user_settings-instance_method
|
141
|
+
def associate_user_settings: (
|
142
|
+
portal_arn: ::String,
|
143
|
+
user_settings_arn: ::String
|
144
|
+
) -> _AssociateUserSettingsResponseSuccess
|
145
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateUserSettingsResponseSuccess
|
146
|
+
|
147
|
+
interface _CreateBrowserSettingsResponseSuccess
|
148
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateBrowserSettingsResponse]
|
149
|
+
def browser_settings_arn: () -> ::String
|
150
|
+
end
|
151
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_browser_settings-instance_method
|
152
|
+
def create_browser_settings: (
|
153
|
+
?additional_encryption_context: Hash[::String, ::String],
|
154
|
+
browser_policy: ::String,
|
155
|
+
?client_token: ::String,
|
156
|
+
?customer_managed_key: ::String,
|
157
|
+
?tags: Array[
|
158
|
+
{
|
159
|
+
key: ::String,
|
160
|
+
value: ::String
|
161
|
+
},
|
162
|
+
]
|
163
|
+
) -> _CreateBrowserSettingsResponseSuccess
|
164
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBrowserSettingsResponseSuccess
|
165
|
+
|
166
|
+
interface _CreateIdentityProviderResponseSuccess
|
167
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateIdentityProviderResponse]
|
168
|
+
def identity_provider_arn: () -> ::String
|
169
|
+
end
|
170
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_identity_provider-instance_method
|
171
|
+
def create_identity_provider: (
|
172
|
+
?client_token: ::String,
|
173
|
+
identity_provider_details: Hash[::String, ::String],
|
174
|
+
identity_provider_name: ::String,
|
175
|
+
identity_provider_type: ("SAML" | "Facebook" | "Google" | "LoginWithAmazon" | "SignInWithApple" | "OIDC"),
|
176
|
+
portal_arn: ::String
|
177
|
+
) -> _CreateIdentityProviderResponseSuccess
|
178
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIdentityProviderResponseSuccess
|
179
|
+
|
180
|
+
interface _CreateIpAccessSettingsResponseSuccess
|
181
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateIpAccessSettingsResponse]
|
182
|
+
def ip_access_settings_arn: () -> ::String
|
183
|
+
end
|
184
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_ip_access_settings-instance_method
|
185
|
+
def create_ip_access_settings: (
|
186
|
+
?additional_encryption_context: Hash[::String, ::String],
|
187
|
+
?client_token: ::String,
|
188
|
+
?customer_managed_key: ::String,
|
189
|
+
?description: ::String,
|
190
|
+
?display_name: ::String,
|
191
|
+
ip_rules: Array[
|
192
|
+
{
|
193
|
+
description: ::String?,
|
194
|
+
ip_range: ::String
|
195
|
+
},
|
196
|
+
],
|
197
|
+
?tags: Array[
|
198
|
+
{
|
199
|
+
key: ::String,
|
200
|
+
value: ::String
|
201
|
+
},
|
202
|
+
]
|
203
|
+
) -> _CreateIpAccessSettingsResponseSuccess
|
204
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIpAccessSettingsResponseSuccess
|
205
|
+
|
206
|
+
interface _CreateNetworkSettingsResponseSuccess
|
207
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateNetworkSettingsResponse]
|
208
|
+
def network_settings_arn: () -> ::String
|
209
|
+
end
|
210
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_network_settings-instance_method
|
211
|
+
def create_network_settings: (
|
212
|
+
?client_token: ::String,
|
213
|
+
security_group_ids: Array[::String],
|
214
|
+
subnet_ids: Array[::String],
|
215
|
+
?tags: Array[
|
216
|
+
{
|
217
|
+
key: ::String,
|
218
|
+
value: ::String
|
219
|
+
},
|
220
|
+
],
|
221
|
+
vpc_id: ::String
|
222
|
+
) -> _CreateNetworkSettingsResponseSuccess
|
223
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateNetworkSettingsResponseSuccess
|
224
|
+
|
225
|
+
interface _CreatePortalResponseSuccess
|
226
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePortalResponse]
|
227
|
+
def portal_arn: () -> ::String
|
228
|
+
def portal_endpoint: () -> ::String
|
229
|
+
end
|
230
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_portal-instance_method
|
231
|
+
def create_portal: (
|
232
|
+
?additional_encryption_context: Hash[::String, ::String],
|
233
|
+
?authentication_type: ("Standard" | "IAM_Identity_Center"),
|
234
|
+
?client_token: ::String,
|
235
|
+
?customer_managed_key: ::String,
|
236
|
+
?display_name: ::String,
|
237
|
+
?tags: Array[
|
238
|
+
{
|
239
|
+
key: ::String,
|
240
|
+
value: ::String
|
241
|
+
},
|
242
|
+
]
|
243
|
+
) -> _CreatePortalResponseSuccess
|
244
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePortalResponseSuccess
|
245
|
+
|
246
|
+
interface _CreateTrustStoreResponseSuccess
|
247
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateTrustStoreResponse]
|
248
|
+
def trust_store_arn: () -> ::String
|
249
|
+
end
|
250
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_trust_store-instance_method
|
251
|
+
def create_trust_store: (
|
252
|
+
certificate_list: Array[::String],
|
253
|
+
?client_token: ::String,
|
254
|
+
?tags: Array[
|
255
|
+
{
|
256
|
+
key: ::String,
|
257
|
+
value: ::String
|
258
|
+
},
|
259
|
+
]
|
260
|
+
) -> _CreateTrustStoreResponseSuccess
|
261
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTrustStoreResponseSuccess
|
262
|
+
|
263
|
+
interface _CreateUserAccessLoggingSettingsResponseSuccess
|
264
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateUserAccessLoggingSettingsResponse]
|
265
|
+
def user_access_logging_settings_arn: () -> ::String
|
266
|
+
end
|
267
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_user_access_logging_settings-instance_method
|
268
|
+
def create_user_access_logging_settings: (
|
269
|
+
?client_token: ::String,
|
270
|
+
kinesis_stream_arn: ::String,
|
271
|
+
?tags: Array[
|
272
|
+
{
|
273
|
+
key: ::String,
|
274
|
+
value: ::String
|
275
|
+
},
|
276
|
+
]
|
277
|
+
) -> _CreateUserAccessLoggingSettingsResponseSuccess
|
278
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserAccessLoggingSettingsResponseSuccess
|
279
|
+
|
280
|
+
interface _CreateUserSettingsResponseSuccess
|
281
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateUserSettingsResponse]
|
282
|
+
def user_settings_arn: () -> ::String
|
283
|
+
end
|
284
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#create_user_settings-instance_method
|
285
|
+
def create_user_settings: (
|
286
|
+
?additional_encryption_context: Hash[::String, ::String],
|
287
|
+
?client_token: ::String,
|
288
|
+
?cookie_synchronization_configuration: {
|
289
|
+
allowlist: Array[
|
290
|
+
{
|
291
|
+
domain: ::String,
|
292
|
+
name: ::String?,
|
293
|
+
path: ::String?
|
294
|
+
},
|
295
|
+
],
|
296
|
+
blocklist: Array[
|
297
|
+
{
|
298
|
+
domain: ::String,
|
299
|
+
name: ::String?,
|
300
|
+
path: ::String?
|
301
|
+
},
|
302
|
+
]?
|
303
|
+
},
|
304
|
+
copy_allowed: ("Disabled" | "Enabled"),
|
305
|
+
?customer_managed_key: ::String,
|
306
|
+
?disconnect_timeout_in_minutes: ::Integer,
|
307
|
+
download_allowed: ("Disabled" | "Enabled"),
|
308
|
+
?idle_disconnect_timeout_in_minutes: ::Integer,
|
309
|
+
paste_allowed: ("Disabled" | "Enabled"),
|
310
|
+
print_allowed: ("Disabled" | "Enabled"),
|
311
|
+
?tags: Array[
|
312
|
+
{
|
313
|
+
key: ::String,
|
314
|
+
value: ::String
|
315
|
+
},
|
316
|
+
],
|
317
|
+
upload_allowed: ("Disabled" | "Enabled")
|
318
|
+
) -> _CreateUserSettingsResponseSuccess
|
319
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserSettingsResponseSuccess
|
320
|
+
|
321
|
+
interface _DeleteBrowserSettingsResponseSuccess
|
322
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteBrowserSettingsResponse]
|
323
|
+
end
|
324
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#delete_browser_settings-instance_method
|
325
|
+
def delete_browser_settings: (
|
326
|
+
browser_settings_arn: ::String
|
327
|
+
) -> _DeleteBrowserSettingsResponseSuccess
|
328
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBrowserSettingsResponseSuccess
|
329
|
+
|
330
|
+
interface _DeleteIdentityProviderResponseSuccess
|
331
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIdentityProviderResponse]
|
332
|
+
end
|
333
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#delete_identity_provider-instance_method
|
334
|
+
def delete_identity_provider: (
|
335
|
+
identity_provider_arn: ::String
|
336
|
+
) -> _DeleteIdentityProviderResponseSuccess
|
337
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIdentityProviderResponseSuccess
|
338
|
+
|
339
|
+
interface _DeleteIpAccessSettingsResponseSuccess
|
340
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIpAccessSettingsResponse]
|
341
|
+
end
|
342
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#delete_ip_access_settings-instance_method
|
343
|
+
def delete_ip_access_settings: (
|
344
|
+
ip_access_settings_arn: ::String
|
345
|
+
) -> _DeleteIpAccessSettingsResponseSuccess
|
346
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIpAccessSettingsResponseSuccess
|
347
|
+
|
348
|
+
interface _DeleteNetworkSettingsResponseSuccess
|
349
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteNetworkSettingsResponse]
|
350
|
+
end
|
351
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#delete_network_settings-instance_method
|
352
|
+
def delete_network_settings: (
|
353
|
+
network_settings_arn: ::String
|
354
|
+
) -> _DeleteNetworkSettingsResponseSuccess
|
355
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteNetworkSettingsResponseSuccess
|
356
|
+
|
357
|
+
interface _DeletePortalResponseSuccess
|
358
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeletePortalResponse]
|
359
|
+
end
|
360
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#delete_portal-instance_method
|
361
|
+
def delete_portal: (
|
362
|
+
portal_arn: ::String
|
363
|
+
) -> _DeletePortalResponseSuccess
|
364
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePortalResponseSuccess
|
365
|
+
|
366
|
+
interface _DeleteTrustStoreResponseSuccess
|
367
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTrustStoreResponse]
|
368
|
+
end
|
369
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#delete_trust_store-instance_method
|
370
|
+
def delete_trust_store: (
|
371
|
+
trust_store_arn: ::String
|
372
|
+
) -> _DeleteTrustStoreResponseSuccess
|
373
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTrustStoreResponseSuccess
|
374
|
+
|
375
|
+
interface _DeleteUserAccessLoggingSettingsResponseSuccess
|
376
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteUserAccessLoggingSettingsResponse]
|
377
|
+
end
|
378
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#delete_user_access_logging_settings-instance_method
|
379
|
+
def delete_user_access_logging_settings: (
|
380
|
+
user_access_logging_settings_arn: ::String
|
381
|
+
) -> _DeleteUserAccessLoggingSettingsResponseSuccess
|
382
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteUserAccessLoggingSettingsResponseSuccess
|
383
|
+
|
384
|
+
interface _DeleteUserSettingsResponseSuccess
|
385
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteUserSettingsResponse]
|
386
|
+
end
|
387
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#delete_user_settings-instance_method
|
388
|
+
def delete_user_settings: (
|
389
|
+
user_settings_arn: ::String
|
390
|
+
) -> _DeleteUserSettingsResponseSuccess
|
391
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteUserSettingsResponseSuccess
|
392
|
+
|
393
|
+
interface _DisassociateBrowserSettingsResponseSuccess
|
394
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateBrowserSettingsResponse]
|
395
|
+
end
|
396
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#disassociate_browser_settings-instance_method
|
397
|
+
def disassociate_browser_settings: (
|
398
|
+
portal_arn: ::String
|
399
|
+
) -> _DisassociateBrowserSettingsResponseSuccess
|
400
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateBrowserSettingsResponseSuccess
|
401
|
+
|
402
|
+
interface _DisassociateIpAccessSettingsResponseSuccess
|
403
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateIpAccessSettingsResponse]
|
404
|
+
end
|
405
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#disassociate_ip_access_settings-instance_method
|
406
|
+
def disassociate_ip_access_settings: (
|
407
|
+
portal_arn: ::String
|
408
|
+
) -> _DisassociateIpAccessSettingsResponseSuccess
|
409
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateIpAccessSettingsResponseSuccess
|
410
|
+
|
411
|
+
interface _DisassociateNetworkSettingsResponseSuccess
|
412
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateNetworkSettingsResponse]
|
413
|
+
end
|
414
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#disassociate_network_settings-instance_method
|
415
|
+
def disassociate_network_settings: (
|
416
|
+
portal_arn: ::String
|
417
|
+
) -> _DisassociateNetworkSettingsResponseSuccess
|
418
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateNetworkSettingsResponseSuccess
|
419
|
+
|
420
|
+
interface _DisassociateTrustStoreResponseSuccess
|
421
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateTrustStoreResponse]
|
422
|
+
end
|
423
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#disassociate_trust_store-instance_method
|
424
|
+
def disassociate_trust_store: (
|
425
|
+
portal_arn: ::String
|
426
|
+
) -> _DisassociateTrustStoreResponseSuccess
|
427
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateTrustStoreResponseSuccess
|
428
|
+
|
429
|
+
interface _DisassociateUserAccessLoggingSettingsResponseSuccess
|
430
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateUserAccessLoggingSettingsResponse]
|
431
|
+
end
|
432
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#disassociate_user_access_logging_settings-instance_method
|
433
|
+
def disassociate_user_access_logging_settings: (
|
434
|
+
portal_arn: ::String
|
435
|
+
) -> _DisassociateUserAccessLoggingSettingsResponseSuccess
|
436
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateUserAccessLoggingSettingsResponseSuccess
|
437
|
+
|
438
|
+
interface _DisassociateUserSettingsResponseSuccess
|
439
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateUserSettingsResponse]
|
440
|
+
end
|
441
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#disassociate_user_settings-instance_method
|
442
|
+
def disassociate_user_settings: (
|
443
|
+
portal_arn: ::String
|
444
|
+
) -> _DisassociateUserSettingsResponseSuccess
|
445
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateUserSettingsResponseSuccess
|
446
|
+
|
447
|
+
interface _GetBrowserSettingsResponseSuccess
|
448
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetBrowserSettingsResponse]
|
449
|
+
def browser_settings: () -> Types::BrowserSettings
|
450
|
+
end
|
451
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#get_browser_settings-instance_method
|
452
|
+
def get_browser_settings: (
|
453
|
+
browser_settings_arn: ::String
|
454
|
+
) -> _GetBrowserSettingsResponseSuccess
|
455
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBrowserSettingsResponseSuccess
|
456
|
+
|
457
|
+
interface _GetIdentityProviderResponseSuccess
|
458
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetIdentityProviderResponse]
|
459
|
+
def identity_provider: () -> Types::IdentityProvider
|
460
|
+
end
|
461
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#get_identity_provider-instance_method
|
462
|
+
def get_identity_provider: (
|
463
|
+
identity_provider_arn: ::String
|
464
|
+
) -> _GetIdentityProviderResponseSuccess
|
465
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIdentityProviderResponseSuccess
|
466
|
+
|
467
|
+
interface _GetIpAccessSettingsResponseSuccess
|
468
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetIpAccessSettingsResponse]
|
469
|
+
def ip_access_settings: () -> Types::IpAccessSettings
|
470
|
+
end
|
471
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#get_ip_access_settings-instance_method
|
472
|
+
def get_ip_access_settings: (
|
473
|
+
ip_access_settings_arn: ::String
|
474
|
+
) -> _GetIpAccessSettingsResponseSuccess
|
475
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIpAccessSettingsResponseSuccess
|
476
|
+
|
477
|
+
interface _GetNetworkSettingsResponseSuccess
|
478
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetNetworkSettingsResponse]
|
479
|
+
def network_settings: () -> Types::NetworkSettings
|
480
|
+
end
|
481
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#get_network_settings-instance_method
|
482
|
+
def get_network_settings: (
|
483
|
+
network_settings_arn: ::String
|
484
|
+
) -> _GetNetworkSettingsResponseSuccess
|
485
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNetworkSettingsResponseSuccess
|
486
|
+
|
487
|
+
interface _GetPortalResponseSuccess
|
488
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPortalResponse]
|
489
|
+
def portal: () -> Types::Portal
|
490
|
+
end
|
491
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#get_portal-instance_method
|
492
|
+
def get_portal: (
|
493
|
+
portal_arn: ::String
|
494
|
+
) -> _GetPortalResponseSuccess
|
495
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPortalResponseSuccess
|
496
|
+
|
497
|
+
interface _GetPortalServiceProviderMetadataResponseSuccess
|
498
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPortalServiceProviderMetadataResponse]
|
499
|
+
def portal_arn: () -> ::String
|
500
|
+
def service_provider_saml_metadata: () -> ::String
|
501
|
+
end
|
502
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#get_portal_service_provider_metadata-instance_method
|
503
|
+
def get_portal_service_provider_metadata: (
|
504
|
+
portal_arn: ::String
|
505
|
+
) -> _GetPortalServiceProviderMetadataResponseSuccess
|
506
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPortalServiceProviderMetadataResponseSuccess
|
507
|
+
|
508
|
+
interface _GetTrustStoreResponseSuccess
|
509
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTrustStoreResponse]
|
510
|
+
def trust_store: () -> Types::TrustStore
|
511
|
+
end
|
512
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#get_trust_store-instance_method
|
513
|
+
def get_trust_store: (
|
514
|
+
trust_store_arn: ::String
|
515
|
+
) -> _GetTrustStoreResponseSuccess
|
516
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTrustStoreResponseSuccess
|
517
|
+
|
518
|
+
interface _GetTrustStoreCertificateResponseSuccess
|
519
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTrustStoreCertificateResponse]
|
520
|
+
def certificate: () -> Types::Certificate
|
521
|
+
def trust_store_arn: () -> ::String
|
522
|
+
end
|
523
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#get_trust_store_certificate-instance_method
|
524
|
+
def get_trust_store_certificate: (
|
525
|
+
thumbprint: ::String,
|
526
|
+
trust_store_arn: ::String
|
527
|
+
) -> _GetTrustStoreCertificateResponseSuccess
|
528
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTrustStoreCertificateResponseSuccess
|
529
|
+
|
530
|
+
interface _GetUserAccessLoggingSettingsResponseSuccess
|
531
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetUserAccessLoggingSettingsResponse]
|
532
|
+
def user_access_logging_settings: () -> Types::UserAccessLoggingSettings
|
533
|
+
end
|
534
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#get_user_access_logging_settings-instance_method
|
535
|
+
def get_user_access_logging_settings: (
|
536
|
+
user_access_logging_settings_arn: ::String
|
537
|
+
) -> _GetUserAccessLoggingSettingsResponseSuccess
|
538
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUserAccessLoggingSettingsResponseSuccess
|
539
|
+
|
540
|
+
interface _GetUserSettingsResponseSuccess
|
541
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetUserSettingsResponse]
|
542
|
+
def user_settings: () -> Types::UserSettings
|
543
|
+
end
|
544
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#get_user_settings-instance_method
|
545
|
+
def get_user_settings: (
|
546
|
+
user_settings_arn: ::String
|
547
|
+
) -> _GetUserSettingsResponseSuccess
|
548
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUserSettingsResponseSuccess
|
549
|
+
|
550
|
+
interface _ListBrowserSettingsResponseSuccess
|
551
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListBrowserSettingsResponse]
|
552
|
+
def browser_settings: () -> ::Array[Types::BrowserSettingsSummary]
|
553
|
+
def next_token: () -> ::String
|
554
|
+
end
|
555
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_browser_settings-instance_method
|
556
|
+
def list_browser_settings: (
|
557
|
+
?max_results: ::Integer,
|
558
|
+
?next_token: ::String
|
559
|
+
) -> _ListBrowserSettingsResponseSuccess
|
560
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBrowserSettingsResponseSuccess
|
561
|
+
|
562
|
+
interface _ListIdentityProvidersResponseSuccess
|
563
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListIdentityProvidersResponse]
|
564
|
+
def identity_providers: () -> ::Array[Types::IdentityProviderSummary]
|
565
|
+
def next_token: () -> ::String
|
566
|
+
end
|
567
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_identity_providers-instance_method
|
568
|
+
def list_identity_providers: (
|
569
|
+
?max_results: ::Integer,
|
570
|
+
?next_token: ::String,
|
571
|
+
portal_arn: ::String
|
572
|
+
) -> _ListIdentityProvidersResponseSuccess
|
573
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIdentityProvidersResponseSuccess
|
574
|
+
|
575
|
+
interface _ListIpAccessSettingsResponseSuccess
|
576
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListIpAccessSettingsResponse]
|
577
|
+
def ip_access_settings: () -> ::Array[Types::IpAccessSettingsSummary]
|
578
|
+
def next_token: () -> ::String
|
579
|
+
end
|
580
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_ip_access_settings-instance_method
|
581
|
+
def list_ip_access_settings: (
|
582
|
+
?max_results: ::Integer,
|
583
|
+
?next_token: ::String
|
584
|
+
) -> _ListIpAccessSettingsResponseSuccess
|
585
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIpAccessSettingsResponseSuccess
|
586
|
+
|
587
|
+
interface _ListNetworkSettingsResponseSuccess
|
588
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListNetworkSettingsResponse]
|
589
|
+
def network_settings: () -> ::Array[Types::NetworkSettingsSummary]
|
590
|
+
def next_token: () -> ::String
|
591
|
+
end
|
592
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_network_settings-instance_method
|
593
|
+
def list_network_settings: (
|
594
|
+
?max_results: ::Integer,
|
595
|
+
?next_token: ::String
|
596
|
+
) -> _ListNetworkSettingsResponseSuccess
|
597
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNetworkSettingsResponseSuccess
|
598
|
+
|
599
|
+
interface _ListPortalsResponseSuccess
|
600
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListPortalsResponse]
|
601
|
+
def next_token: () -> ::String
|
602
|
+
def portals: () -> ::Array[Types::PortalSummary]
|
603
|
+
end
|
604
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_portals-instance_method
|
605
|
+
def list_portals: (
|
606
|
+
?max_results: ::Integer,
|
607
|
+
?next_token: ::String
|
608
|
+
) -> _ListPortalsResponseSuccess
|
609
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPortalsResponseSuccess
|
610
|
+
|
611
|
+
interface _ListTagsForResourceResponseSuccess
|
612
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
613
|
+
def tags: () -> ::Array[Types::Tag]
|
614
|
+
end
|
615
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_tags_for_resource-instance_method
|
616
|
+
def list_tags_for_resource: (
|
617
|
+
resource_arn: ::String
|
618
|
+
) -> _ListTagsForResourceResponseSuccess
|
619
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
620
|
+
|
621
|
+
interface _ListTrustStoreCertificatesResponseSuccess
|
622
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTrustStoreCertificatesResponse]
|
623
|
+
def certificate_list: () -> ::Array[Types::CertificateSummary]
|
624
|
+
def next_token: () -> ::String
|
625
|
+
def trust_store_arn: () -> ::String
|
626
|
+
end
|
627
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_trust_store_certificates-instance_method
|
628
|
+
def list_trust_store_certificates: (
|
629
|
+
?max_results: ::Integer,
|
630
|
+
?next_token: ::String,
|
631
|
+
trust_store_arn: ::String
|
632
|
+
) -> _ListTrustStoreCertificatesResponseSuccess
|
633
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTrustStoreCertificatesResponseSuccess
|
634
|
+
|
635
|
+
interface _ListTrustStoresResponseSuccess
|
636
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTrustStoresResponse]
|
637
|
+
def next_token: () -> ::String
|
638
|
+
def trust_stores: () -> ::Array[Types::TrustStoreSummary]
|
639
|
+
end
|
640
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_trust_stores-instance_method
|
641
|
+
def list_trust_stores: (
|
642
|
+
?max_results: ::Integer,
|
643
|
+
?next_token: ::String
|
644
|
+
) -> _ListTrustStoresResponseSuccess
|
645
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTrustStoresResponseSuccess
|
646
|
+
|
647
|
+
interface _ListUserAccessLoggingSettingsResponseSuccess
|
648
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListUserAccessLoggingSettingsResponse]
|
649
|
+
def next_token: () -> ::String
|
650
|
+
def user_access_logging_settings: () -> ::Array[Types::UserAccessLoggingSettingsSummary]
|
651
|
+
end
|
652
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_user_access_logging_settings-instance_method
|
653
|
+
def list_user_access_logging_settings: (
|
654
|
+
?max_results: ::Integer,
|
655
|
+
?next_token: ::String
|
656
|
+
) -> _ListUserAccessLoggingSettingsResponseSuccess
|
657
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUserAccessLoggingSettingsResponseSuccess
|
658
|
+
|
659
|
+
interface _ListUserSettingsResponseSuccess
|
660
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListUserSettingsResponse]
|
661
|
+
def next_token: () -> ::String
|
662
|
+
def user_settings: () -> ::Array[Types::UserSettingsSummary]
|
663
|
+
end
|
664
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#list_user_settings-instance_method
|
665
|
+
def list_user_settings: (
|
666
|
+
?max_results: ::Integer,
|
667
|
+
?next_token: ::String
|
668
|
+
) -> _ListUserSettingsResponseSuccess
|
669
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUserSettingsResponseSuccess
|
670
|
+
|
671
|
+
interface _TagResourceResponseSuccess
|
672
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
673
|
+
end
|
674
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#tag_resource-instance_method
|
675
|
+
def tag_resource: (
|
676
|
+
?client_token: ::String,
|
677
|
+
resource_arn: ::String,
|
678
|
+
tags: Array[
|
679
|
+
{
|
680
|
+
key: ::String,
|
681
|
+
value: ::String
|
682
|
+
},
|
683
|
+
]
|
684
|
+
) -> _TagResourceResponseSuccess
|
685
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
686
|
+
|
687
|
+
interface _UntagResourceResponseSuccess
|
688
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
689
|
+
end
|
690
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#untag_resource-instance_method
|
691
|
+
def untag_resource: (
|
692
|
+
resource_arn: ::String,
|
693
|
+
tag_keys: Array[::String]
|
694
|
+
) -> _UntagResourceResponseSuccess
|
695
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
696
|
+
|
697
|
+
interface _UpdateBrowserSettingsResponseSuccess
|
698
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBrowserSettingsResponse]
|
699
|
+
def browser_settings: () -> Types::BrowserSettings
|
700
|
+
end
|
701
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_browser_settings-instance_method
|
702
|
+
def update_browser_settings: (
|
703
|
+
?browser_policy: ::String,
|
704
|
+
browser_settings_arn: ::String,
|
705
|
+
?client_token: ::String
|
706
|
+
) -> _UpdateBrowserSettingsResponseSuccess
|
707
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBrowserSettingsResponseSuccess
|
708
|
+
|
709
|
+
interface _UpdateIdentityProviderResponseSuccess
|
710
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIdentityProviderResponse]
|
711
|
+
def identity_provider: () -> Types::IdentityProvider
|
712
|
+
end
|
713
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_identity_provider-instance_method
|
714
|
+
def update_identity_provider: (
|
715
|
+
?client_token: ::String,
|
716
|
+
identity_provider_arn: ::String,
|
717
|
+
?identity_provider_details: Hash[::String, ::String],
|
718
|
+
?identity_provider_name: ::String,
|
719
|
+
?identity_provider_type: ("SAML" | "Facebook" | "Google" | "LoginWithAmazon" | "SignInWithApple" | "OIDC")
|
720
|
+
) -> _UpdateIdentityProviderResponseSuccess
|
721
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIdentityProviderResponseSuccess
|
722
|
+
|
723
|
+
interface _UpdateIpAccessSettingsResponseSuccess
|
724
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIpAccessSettingsResponse]
|
725
|
+
def ip_access_settings: () -> Types::IpAccessSettings
|
726
|
+
end
|
727
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_ip_access_settings-instance_method
|
728
|
+
def update_ip_access_settings: (
|
729
|
+
?client_token: ::String,
|
730
|
+
?description: ::String,
|
731
|
+
?display_name: ::String,
|
732
|
+
ip_access_settings_arn: ::String,
|
733
|
+
?ip_rules: Array[
|
734
|
+
{
|
735
|
+
description: ::String?,
|
736
|
+
ip_range: ::String
|
737
|
+
},
|
738
|
+
]
|
739
|
+
) -> _UpdateIpAccessSettingsResponseSuccess
|
740
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIpAccessSettingsResponseSuccess
|
741
|
+
|
742
|
+
interface _UpdateNetworkSettingsResponseSuccess
|
743
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateNetworkSettingsResponse]
|
744
|
+
def network_settings: () -> Types::NetworkSettings
|
745
|
+
end
|
746
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_network_settings-instance_method
|
747
|
+
def update_network_settings: (
|
748
|
+
?client_token: ::String,
|
749
|
+
network_settings_arn: ::String,
|
750
|
+
?security_group_ids: Array[::String],
|
751
|
+
?subnet_ids: Array[::String],
|
752
|
+
?vpc_id: ::String
|
753
|
+
) -> _UpdateNetworkSettingsResponseSuccess
|
754
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNetworkSettingsResponseSuccess
|
755
|
+
|
756
|
+
interface _UpdatePortalResponseSuccess
|
757
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePortalResponse]
|
758
|
+
def portal: () -> Types::Portal
|
759
|
+
end
|
760
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_portal-instance_method
|
761
|
+
def update_portal: (
|
762
|
+
?authentication_type: ("Standard" | "IAM_Identity_Center"),
|
763
|
+
?display_name: ::String,
|
764
|
+
portal_arn: ::String
|
765
|
+
) -> _UpdatePortalResponseSuccess
|
766
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePortalResponseSuccess
|
767
|
+
|
768
|
+
interface _UpdateTrustStoreResponseSuccess
|
769
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTrustStoreResponse]
|
770
|
+
def trust_store_arn: () -> ::String
|
771
|
+
end
|
772
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_trust_store-instance_method
|
773
|
+
def update_trust_store: (
|
774
|
+
?certificates_to_add: Array[::String],
|
775
|
+
?certificates_to_delete: Array[::String],
|
776
|
+
?client_token: ::String,
|
777
|
+
trust_store_arn: ::String
|
778
|
+
) -> _UpdateTrustStoreResponseSuccess
|
779
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTrustStoreResponseSuccess
|
780
|
+
|
781
|
+
interface _UpdateUserAccessLoggingSettingsResponseSuccess
|
782
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateUserAccessLoggingSettingsResponse]
|
783
|
+
def user_access_logging_settings: () -> Types::UserAccessLoggingSettings
|
784
|
+
end
|
785
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_user_access_logging_settings-instance_method
|
786
|
+
def update_user_access_logging_settings: (
|
787
|
+
?client_token: ::String,
|
788
|
+
?kinesis_stream_arn: ::String,
|
789
|
+
user_access_logging_settings_arn: ::String
|
790
|
+
) -> _UpdateUserAccessLoggingSettingsResponseSuccess
|
791
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUserAccessLoggingSettingsResponseSuccess
|
792
|
+
|
793
|
+
interface _UpdateUserSettingsResponseSuccess
|
794
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateUserSettingsResponse]
|
795
|
+
def user_settings: () -> Types::UserSettings
|
796
|
+
end
|
797
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpacesWeb/Client.html#update_user_settings-instance_method
|
798
|
+
def update_user_settings: (
|
799
|
+
?client_token: ::String,
|
800
|
+
?cookie_synchronization_configuration: {
|
801
|
+
allowlist: Array[
|
802
|
+
{
|
803
|
+
domain: ::String,
|
804
|
+
name: ::String?,
|
805
|
+
path: ::String?
|
806
|
+
},
|
807
|
+
],
|
808
|
+
blocklist: Array[
|
809
|
+
{
|
810
|
+
domain: ::String,
|
811
|
+
name: ::String?,
|
812
|
+
path: ::String?
|
813
|
+
},
|
814
|
+
]?
|
815
|
+
},
|
816
|
+
?copy_allowed: ("Disabled" | "Enabled"),
|
817
|
+
?disconnect_timeout_in_minutes: ::Integer,
|
818
|
+
?download_allowed: ("Disabled" | "Enabled"),
|
819
|
+
?idle_disconnect_timeout_in_minutes: ::Integer,
|
820
|
+
?paste_allowed: ("Disabled" | "Enabled"),
|
821
|
+
?print_allowed: ("Disabled" | "Enabled"),
|
822
|
+
?upload_allowed: ("Disabled" | "Enabled"),
|
823
|
+
user_settings_arn: ::String
|
824
|
+
) -> _UpdateUserSettingsResponseSuccess
|
825
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUserSettingsResponseSuccess
|
826
|
+
end
|
827
|
+
end
|
828
|
+
end
|
829
|
+
|