aws-sdk-wickr 1.0.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.
data/sig/client.rbs ADDED
@@ -0,0 +1,822 @@
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 Wickr
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?account_id: String,
19
+ ?active_endpoint_cache: bool,
20
+ ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
22
+ ?client_side_monitoring: bool,
23
+ ?client_side_monitoring_client_id: String,
24
+ ?client_side_monitoring_host: String,
25
+ ?client_side_monitoring_port: Integer,
26
+ ?client_side_monitoring_publisher: untyped,
27
+ ?convert_params: bool,
28
+ ?correct_clock_skew: bool,
29
+ ?defaults_mode: String,
30
+ ?disable_host_prefix_injection: bool,
31
+ ?disable_request_compression: bool,
32
+ ?endpoint: String,
33
+ ?endpoint_cache_max_entries: Integer,
34
+ ?endpoint_cache_max_threads: Integer,
35
+ ?endpoint_cache_poll_interval: Integer,
36
+ ?endpoint_discovery: bool,
37
+ ?ignore_configured_endpoint_urls: bool,
38
+ ?log_formatter: untyped,
39
+ ?log_level: Symbol,
40
+ ?logger: untyped,
41
+ ?max_attempts: Integer,
42
+ ?profile: String,
43
+ ?request_checksum_calculation: String,
44
+ ?request_min_compression_size_bytes: Integer,
45
+ ?response_checksum_validation: String,
46
+ ?retry_backoff: Proc,
47
+ ?retry_base_delay: Float,
48
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
49
+ ?retry_limit: Integer,
50
+ ?retry_max_delay: Integer,
51
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
52
+ ?sdk_ua_app_id: String,
53
+ ?secret_access_key: String,
54
+ ?session_token: String,
55
+ ?sigv4a_signing_region_set: Array[String],
56
+ ?stub_responses: untyped,
57
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
58
+ ?token_provider: untyped,
59
+ ?use_dualstack_endpoint: bool,
60
+ ?use_fips_endpoint: bool,
61
+ ?validate_params: bool,
62
+ ?endpoint_provider: untyped,
63
+ ?http_proxy: String,
64
+ ?http_open_timeout: (Float | Integer),
65
+ ?http_read_timeout: (Float | Integer),
66
+ ?http_idle_timeout: (Float | Integer),
67
+ ?http_continue_timeout: (Float | Integer),
68
+ ?ssl_timeout: (Float | Integer | nil),
69
+ ?http_wire_trace: bool,
70
+ ?ssl_verify_peer: bool,
71
+ ?ssl_ca_bundle: String,
72
+ ?ssl_ca_directory: String,
73
+ ?ssl_ca_store: String,
74
+ ?on_chunk_received: Proc,
75
+ ?on_chunk_sent: Proc,
76
+ ?raise_response_errors: bool
77
+ ) -> instance
78
+ | (?Hash[Symbol, untyped]) -> instance
79
+
80
+
81
+ interface _BatchCreateUserResponseSuccess
82
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchCreateUserResponse]
83
+ def message: () -> ::String
84
+ def successful: () -> ::Array[Types::User]
85
+ def failed: () -> ::Array[Types::BatchUserErrorResponseItem]
86
+ end
87
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#batch_create_user-instance_method
88
+ def batch_create_user: (
89
+ network_id: ::String,
90
+ users: Array[
91
+ {
92
+ first_name: ::String?,
93
+ last_name: ::String?,
94
+ security_group_ids: Array[::String],
95
+ username: ::String,
96
+ invite_code: ::String?,
97
+ invite_code_ttl: ::Integer?,
98
+ code_validation: bool?
99
+ },
100
+ ],
101
+ ?client_token: ::String
102
+ ) -> _BatchCreateUserResponseSuccess
103
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchCreateUserResponseSuccess
104
+
105
+ interface _BatchDeleteUserResponseSuccess
106
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeleteUserResponse]
107
+ def message: () -> ::String
108
+ def successful: () -> ::Array[Types::BatchUserSuccessResponseItem]
109
+ def failed: () -> ::Array[Types::BatchUserErrorResponseItem]
110
+ end
111
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#batch_delete_user-instance_method
112
+ def batch_delete_user: (
113
+ network_id: ::String,
114
+ user_ids: Array[::String],
115
+ ?client_token: ::String
116
+ ) -> _BatchDeleteUserResponseSuccess
117
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDeleteUserResponseSuccess
118
+
119
+ interface _BatchLookupUserUnameResponseSuccess
120
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchLookupUserUnameResponse]
121
+ def message: () -> ::String
122
+ def successful: () -> ::Array[Types::BatchUnameSuccessResponseItem]
123
+ def failed: () -> ::Array[Types::BatchUnameErrorResponseItem]
124
+ end
125
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#batch_lookup_user_uname-instance_method
126
+ def batch_lookup_user_uname: (
127
+ network_id: ::String,
128
+ unames: Array[::String],
129
+ ?client_token: ::String
130
+ ) -> _BatchLookupUserUnameResponseSuccess
131
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchLookupUserUnameResponseSuccess
132
+
133
+ interface _BatchReinviteUserResponseSuccess
134
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchReinviteUserResponse]
135
+ def message: () -> ::String
136
+ def successful: () -> ::Array[Types::BatchUserSuccessResponseItem]
137
+ def failed: () -> ::Array[Types::BatchUserErrorResponseItem]
138
+ end
139
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#batch_reinvite_user-instance_method
140
+ def batch_reinvite_user: (
141
+ network_id: ::String,
142
+ user_ids: Array[::String],
143
+ ?client_token: ::String
144
+ ) -> _BatchReinviteUserResponseSuccess
145
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchReinviteUserResponseSuccess
146
+
147
+ interface _BatchResetDevicesForUserResponseSuccess
148
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchResetDevicesForUserResponse]
149
+ def message: () -> ::String
150
+ def successful: () -> ::Array[Types::BatchDeviceSuccessResponseItem]
151
+ def failed: () -> ::Array[Types::BatchDeviceErrorResponseItem]
152
+ end
153
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#batch_reset_devices_for_user-instance_method
154
+ def batch_reset_devices_for_user: (
155
+ network_id: ::String,
156
+ user_id: ::String,
157
+ app_ids: Array[::String],
158
+ ?client_token: ::String
159
+ ) -> _BatchResetDevicesForUserResponseSuccess
160
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchResetDevicesForUserResponseSuccess
161
+
162
+ interface _BatchToggleUserSuspendStatusResponseSuccess
163
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchToggleUserSuspendStatusResponse]
164
+ def message: () -> ::String
165
+ def successful: () -> ::Array[Types::BatchUserSuccessResponseItem]
166
+ def failed: () -> ::Array[Types::BatchUserErrorResponseItem]
167
+ end
168
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#batch_toggle_user_suspend_status-instance_method
169
+ def batch_toggle_user_suspend_status: (
170
+ network_id: ::String,
171
+ suspend: bool,
172
+ user_ids: Array[::String],
173
+ ?client_token: ::String
174
+ ) -> _BatchToggleUserSuspendStatusResponseSuccess
175
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchToggleUserSuspendStatusResponseSuccess
176
+
177
+ interface _CreateBotResponseSuccess
178
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateBotResponse]
179
+ def message: () -> ::String
180
+ def bot_id: () -> ::String
181
+ def network_id: () -> ::String
182
+ def username: () -> ::String
183
+ def display_name: () -> ::String
184
+ def group_id: () -> ::String
185
+ end
186
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#create_bot-instance_method
187
+ def create_bot: (
188
+ network_id: ::String,
189
+ username: ::String,
190
+ ?display_name: ::String,
191
+ group_id: ::String,
192
+ challenge: ::String
193
+ ) -> _CreateBotResponseSuccess
194
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBotResponseSuccess
195
+
196
+ interface _CreateDataRetentionBotResponseSuccess
197
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataRetentionBotResponse]
198
+ def message: () -> ::String
199
+ end
200
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#create_data_retention_bot-instance_method
201
+ def create_data_retention_bot: (
202
+ network_id: ::String
203
+ ) -> _CreateDataRetentionBotResponseSuccess
204
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataRetentionBotResponseSuccess
205
+
206
+ interface _CreateDataRetentionBotChallengeResponseSuccess
207
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataRetentionBotChallengeResponse]
208
+ def challenge: () -> ::String
209
+ end
210
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#create_data_retention_bot_challenge-instance_method
211
+ def create_data_retention_bot_challenge: (
212
+ network_id: ::String
213
+ ) -> _CreateDataRetentionBotChallengeResponseSuccess
214
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataRetentionBotChallengeResponseSuccess
215
+
216
+ interface _CreateNetworkResponseSuccess
217
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateNetworkResponse]
218
+ def network_id: () -> ::String
219
+ def network_name: () -> ::String
220
+ def encryption_key_arn: () -> ::String
221
+ end
222
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#create_network-instance_method
223
+ def create_network: (
224
+ network_name: ::String,
225
+ access_level: ("STANDARD" | "PREMIUM"),
226
+ ?enable_premium_free_trial: bool,
227
+ ?encryption_key_arn: ::String
228
+ ) -> _CreateNetworkResponseSuccess
229
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateNetworkResponseSuccess
230
+
231
+ interface _CreateSecurityGroupResponseSuccess
232
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSecurityGroupResponse]
233
+ def security_group: () -> Types::SecurityGroup
234
+ end
235
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#create_security_group-instance_method
236
+ def create_security_group: (
237
+ network_id: ::String,
238
+ name: ::String,
239
+ security_group_settings: {
240
+ lockout_threshold: ::Integer?,
241
+ permitted_networks: Array[::String]?,
242
+ enable_guest_federation: bool?,
243
+ global_federation: bool?,
244
+ federation_mode: ::Integer?,
245
+ enable_restricted_global_federation: bool?,
246
+ permitted_wickr_aws_networks: Array[
247
+ {
248
+ region: ::String,
249
+ network_id: ::String
250
+ },
251
+ ]?,
252
+ permitted_wickr_enterprise_networks: Array[
253
+ {
254
+ domain: ::String,
255
+ network_id: ::String
256
+ },
257
+ ]?
258
+ },
259
+ ?client_token: ::String
260
+ ) -> _CreateSecurityGroupResponseSuccess
261
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSecurityGroupResponseSuccess
262
+
263
+ interface _DeleteBotResponseSuccess
264
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteBotResponse]
265
+ def message: () -> ::String
266
+ end
267
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#delete_bot-instance_method
268
+ def delete_bot: (
269
+ network_id: ::String,
270
+ bot_id: ::String
271
+ ) -> _DeleteBotResponseSuccess
272
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBotResponseSuccess
273
+
274
+ interface _DeleteDataRetentionBotResponseSuccess
275
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataRetentionBotResponse]
276
+ def message: () -> ::String
277
+ end
278
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#delete_data_retention_bot-instance_method
279
+ def delete_data_retention_bot: (
280
+ network_id: ::String
281
+ ) -> _DeleteDataRetentionBotResponseSuccess
282
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataRetentionBotResponseSuccess
283
+
284
+ interface _DeleteNetworkResponseSuccess
285
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteNetworkResponse]
286
+ def message: () -> ::String
287
+ end
288
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#delete_network-instance_method
289
+ def delete_network: (
290
+ network_id: ::String,
291
+ ?client_token: ::String
292
+ ) -> _DeleteNetworkResponseSuccess
293
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteNetworkResponseSuccess
294
+
295
+ interface _DeleteSecurityGroupResponseSuccess
296
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSecurityGroupResponse]
297
+ def message: () -> ::String
298
+ def network_id: () -> ::String
299
+ def group_id: () -> ::String
300
+ end
301
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#delete_security_group-instance_method
302
+ def delete_security_group: (
303
+ network_id: ::String,
304
+ group_id: ::String
305
+ ) -> _DeleteSecurityGroupResponseSuccess
306
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSecurityGroupResponseSuccess
307
+
308
+ interface _GetBotResponseSuccess
309
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBotResponse]
310
+ def bot_id: () -> ::String
311
+ def display_name: () -> ::String
312
+ def username: () -> ::String
313
+ def uname: () -> ::String
314
+ def pubkey: () -> ::String
315
+ def status: () -> ::Integer
316
+ def group_id: () -> ::String
317
+ def has_challenge: () -> bool
318
+ def suspended: () -> bool
319
+ def last_login: () -> ::String
320
+ end
321
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#get_bot-instance_method
322
+ def get_bot: (
323
+ network_id: ::String,
324
+ bot_id: ::String
325
+ ) -> _GetBotResponseSuccess
326
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBotResponseSuccess
327
+
328
+ interface _GetBotsCountResponseSuccess
329
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBotsCountResponse]
330
+ def pending: () -> ::Integer
331
+ def active: () -> ::Integer
332
+ def total: () -> ::Integer
333
+ end
334
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#get_bots_count-instance_method
335
+ def get_bots_count: (
336
+ network_id: ::String
337
+ ) -> _GetBotsCountResponseSuccess
338
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBotsCountResponseSuccess
339
+
340
+ interface _GetDataRetentionBotResponseSuccess
341
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDataRetentionBotResponse]
342
+ def bot_name: () -> ::String
343
+ def bot_exists: () -> bool
344
+ def is_bot_active: () -> bool
345
+ def is_data_retention_bot_registered: () -> bool
346
+ def is_data_retention_service_enabled: () -> bool
347
+ def is_pubkey_msg_acked: () -> bool
348
+ end
349
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#get_data_retention_bot-instance_method
350
+ def get_data_retention_bot: (
351
+ network_id: ::String
352
+ ) -> _GetDataRetentionBotResponseSuccess
353
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataRetentionBotResponseSuccess
354
+
355
+ interface _GetGuestUserHistoryCountResponseSuccess
356
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetGuestUserHistoryCountResponse]
357
+ def history: () -> ::Array[Types::GuestUserHistoryCount]
358
+ end
359
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#get_guest_user_history_count-instance_method
360
+ def get_guest_user_history_count: (
361
+ network_id: ::String
362
+ ) -> _GetGuestUserHistoryCountResponseSuccess
363
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGuestUserHistoryCountResponseSuccess
364
+
365
+ interface _GetNetworkResponseSuccess
366
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetNetworkResponse]
367
+ def network_id: () -> ::String
368
+ def network_name: () -> ::String
369
+ def access_level: () -> ("STANDARD" | "PREMIUM")
370
+ def aws_account_id: () -> ::String
371
+ def network_arn: () -> ::String
372
+ def standing: () -> ::Integer
373
+ def free_trial_expiration: () -> ::String
374
+ def migration_state: () -> ::Integer
375
+ def encryption_key_arn: () -> ::String
376
+ end
377
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#get_network-instance_method
378
+ def get_network: (
379
+ network_id: ::String
380
+ ) -> _GetNetworkResponseSuccess
381
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNetworkResponseSuccess
382
+
383
+ interface _GetNetworkSettingsResponseSuccess
384
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetNetworkSettingsResponse]
385
+ def settings: () -> ::Array[Types::Setting]
386
+ end
387
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#get_network_settings-instance_method
388
+ def get_network_settings: (
389
+ network_id: ::String
390
+ ) -> _GetNetworkSettingsResponseSuccess
391
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNetworkSettingsResponseSuccess
392
+
393
+ interface _GetOidcInfoResponseSuccess
394
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetOidcInfoResponse]
395
+ def openid_connect_info: () -> Types::OidcConfigInfo
396
+ def token_info: () -> Types::OidcTokenInfo
397
+ end
398
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#get_oidc_info-instance_method
399
+ def get_oidc_info: (
400
+ network_id: ::String,
401
+ ?client_id: ::String,
402
+ ?code: ::String,
403
+ ?grant_type: ::String,
404
+ ?redirect_uri: ::String,
405
+ ?url: ::String,
406
+ ?client_secret: ::String,
407
+ ?code_verifier: ::String,
408
+ ?certificate: ::String
409
+ ) -> _GetOidcInfoResponseSuccess
410
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOidcInfoResponseSuccess
411
+
412
+ interface _GetSecurityGroupResponseSuccess
413
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSecurityGroupResponse]
414
+ def security_group: () -> Types::SecurityGroup
415
+ end
416
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#get_security_group-instance_method
417
+ def get_security_group: (
418
+ network_id: ::String,
419
+ group_id: ::String
420
+ ) -> _GetSecurityGroupResponseSuccess
421
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSecurityGroupResponseSuccess
422
+
423
+ interface _GetUserResponseSuccess
424
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetUserResponse]
425
+ def user_id: () -> ::String
426
+ def first_name: () -> ::String
427
+ def last_name: () -> ::String
428
+ def username: () -> ::String
429
+ def is_admin: () -> bool
430
+ def suspended: () -> bool
431
+ def status: () -> ::Integer
432
+ def last_activity: () -> ::Integer
433
+ def last_login: () -> ::Integer
434
+ def security_group_ids: () -> ::Array[::String]
435
+ end
436
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#get_user-instance_method
437
+ def get_user: (
438
+ network_id: ::String,
439
+ user_id: ::String,
440
+ ?start_time: ::Time,
441
+ ?end_time: ::Time
442
+ ) -> _GetUserResponseSuccess
443
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUserResponseSuccess
444
+
445
+ interface _GetUsersCountResponseSuccess
446
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetUsersCountResponse]
447
+ def pending: () -> ::Integer
448
+ def active: () -> ::Integer
449
+ def rejected: () -> ::Integer
450
+ def remaining: () -> ::Integer
451
+ def total: () -> ::Integer
452
+ end
453
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#get_users_count-instance_method
454
+ def get_users_count: (
455
+ network_id: ::String
456
+ ) -> _GetUsersCountResponseSuccess
457
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUsersCountResponseSuccess
458
+
459
+ interface _ListBlockedGuestUsersResponseSuccess
460
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBlockedGuestUsersResponse]
461
+ def next_token: () -> ::String
462
+ def blocklist: () -> ::Array[Types::BlockedGuestUser]
463
+ end
464
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#list_blocked_guest_users-instance_method
465
+ def list_blocked_guest_users: (
466
+ network_id: ::String,
467
+ ?max_results: ::Integer,
468
+ ?sort_direction: ("ASC" | "DESC"),
469
+ ?sort_fields: ::String,
470
+ ?username: ::String,
471
+ ?admin: ::String,
472
+ ?next_token: ::String
473
+ ) -> _ListBlockedGuestUsersResponseSuccess
474
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBlockedGuestUsersResponseSuccess
475
+
476
+ interface _ListBotsResponseSuccess
477
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBotsResponse]
478
+ def bots: () -> ::Array[Types::Bot]
479
+ def next_token: () -> ::String
480
+ end
481
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#list_bots-instance_method
482
+ def list_bots: (
483
+ network_id: ::String,
484
+ ?next_token: ::String,
485
+ ?max_results: ::Integer,
486
+ ?sort_fields: ::String,
487
+ ?sort_direction: ("ASC" | "DESC"),
488
+ ?display_name: ::String,
489
+ ?username: ::String,
490
+ ?status: ::Integer,
491
+ ?group_id: ::String
492
+ ) -> _ListBotsResponseSuccess
493
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBotsResponseSuccess
494
+
495
+ interface _ListDevicesForUserResponseSuccess
496
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDevicesForUserResponse]
497
+ def next_token: () -> ::String
498
+ def devices: () -> ::Array[Types::BasicDeviceObject]
499
+ end
500
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#list_devices_for_user-instance_method
501
+ def list_devices_for_user: (
502
+ network_id: ::String,
503
+ user_id: ::String,
504
+ ?next_token: ::String,
505
+ ?max_results: ::Integer,
506
+ ?sort_fields: ::String,
507
+ ?sort_direction: ("ASC" | "DESC")
508
+ ) -> _ListDevicesForUserResponseSuccess
509
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDevicesForUserResponseSuccess
510
+
511
+ interface _ListGuestUsersResponseSuccess
512
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListGuestUsersResponse]
513
+ def next_token: () -> ::String
514
+ def guestlist: () -> ::Array[Types::GuestUser]
515
+ end
516
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#list_guest_users-instance_method
517
+ def list_guest_users: (
518
+ network_id: ::String,
519
+ ?max_results: ::Integer,
520
+ ?sort_direction: ("ASC" | "DESC"),
521
+ ?sort_fields: ::String,
522
+ ?username: ::String,
523
+ ?billing_period: ::String,
524
+ ?next_token: ::String
525
+ ) -> _ListGuestUsersResponseSuccess
526
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGuestUsersResponseSuccess
527
+
528
+ interface _ListNetworksResponseSuccess
529
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListNetworksResponse]
530
+ def networks: () -> ::Array[Types::Network]
531
+ def next_token: () -> ::String
532
+ end
533
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#list_networks-instance_method
534
+ def list_networks: (
535
+ ?max_results: ::Integer,
536
+ ?sort_fields: ::String,
537
+ ?sort_direction: ("ASC" | "DESC"),
538
+ ?next_token: ::String
539
+ ) -> _ListNetworksResponseSuccess
540
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNetworksResponseSuccess
541
+
542
+ interface _ListSecurityGroupUsersResponseSuccess
543
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSecurityGroupUsersResponse]
544
+ def users: () -> ::Array[Types::User]
545
+ def next_token: () -> ::String
546
+ end
547
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#list_security_group_users-instance_method
548
+ def list_security_group_users: (
549
+ network_id: ::String,
550
+ group_id: ::String,
551
+ ?next_token: ::String,
552
+ ?max_results: ::Integer,
553
+ ?sort_fields: ::String,
554
+ ?sort_direction: ("ASC" | "DESC")
555
+ ) -> _ListSecurityGroupUsersResponseSuccess
556
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSecurityGroupUsersResponseSuccess
557
+
558
+ interface _ListSecurityGroupsResponseSuccess
559
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSecurityGroupsResponse]
560
+ def security_groups: () -> ::Array[Types::SecurityGroup]
561
+ def next_token: () -> ::String
562
+ end
563
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#list_security_groups-instance_method
564
+ def list_security_groups: (
565
+ network_id: ::String,
566
+ ?next_token: ::String,
567
+ ?max_results: ::Integer,
568
+ ?sort_fields: ::String,
569
+ ?sort_direction: ("ASC" | "DESC")
570
+ ) -> _ListSecurityGroupsResponseSuccess
571
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSecurityGroupsResponseSuccess
572
+
573
+ interface _ListUsersResponseSuccess
574
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListUsersResponse]
575
+ def next_token: () -> ::String
576
+ def users: () -> ::Array[Types::User]
577
+ end
578
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#list_users-instance_method
579
+ def list_users: (
580
+ network_id: ::String,
581
+ ?next_token: ::String,
582
+ ?max_results: ::Integer,
583
+ ?sort_fields: ::String,
584
+ ?sort_direction: ("ASC" | "DESC"),
585
+ ?first_name: ::String,
586
+ ?last_name: ::String,
587
+ ?username: ::String,
588
+ ?status: ::Integer,
589
+ ?group_id: ::String
590
+ ) -> _ListUsersResponseSuccess
591
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUsersResponseSuccess
592
+
593
+ interface _RegisterOidcConfigResponseSuccess
594
+ include ::Seahorse::Client::_ResponseSuccess[Types::RegisterOidcConfigResponse]
595
+ def application_name: () -> ::String
596
+ def client_id: () -> ::String
597
+ def company_id: () -> ::String
598
+ def scopes: () -> ::String
599
+ def issuer: () -> ::String
600
+ def client_secret: () -> ::String
601
+ def secret: () -> ::String
602
+ def redirect_url: () -> ::String
603
+ def user_id: () -> ::String
604
+ def custom_username: () -> ::String
605
+ def ca_certificate: () -> ::String
606
+ def application_id: () -> ::Integer
607
+ def sso_token_buffer_minutes: () -> ::Integer
608
+ def extra_auth_params: () -> ::String
609
+ end
610
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#register_oidc_config-instance_method
611
+ def register_oidc_config: (
612
+ network_id: ::String,
613
+ company_id: ::String,
614
+ ?custom_username: ::String,
615
+ ?extra_auth_params: ::String,
616
+ issuer: ::String,
617
+ scopes: ::String,
618
+ ?secret: ::String,
619
+ ?sso_token_buffer_minutes: ::Integer,
620
+ ?user_id: ::String
621
+ ) -> _RegisterOidcConfigResponseSuccess
622
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterOidcConfigResponseSuccess
623
+
624
+ interface _RegisterOidcConfigTestResponseSuccess
625
+ include ::Seahorse::Client::_ResponseSuccess[Types::RegisterOidcConfigTestResponse]
626
+ def token_endpoint: () -> ::String
627
+ def userinfo_endpoint: () -> ::String
628
+ def response_types_supported: () -> ::Array[::String]
629
+ def scopes_supported: () -> ::Array[::String]
630
+ def issuer: () -> ::String
631
+ def authorization_endpoint: () -> ::String
632
+ def end_session_endpoint: () -> ::String
633
+ def logout_endpoint: () -> ::String
634
+ def grant_types_supported: () -> ::Array[::String]
635
+ def revocation_endpoint: () -> ::String
636
+ def token_endpoint_auth_methods_supported: () -> ::Array[::String]
637
+ def microsoft_multi_refresh_token: () -> bool
638
+ end
639
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#register_oidc_config_test-instance_method
640
+ def register_oidc_config_test: (
641
+ network_id: ::String,
642
+ ?extra_auth_params: ::String,
643
+ issuer: ::String,
644
+ scopes: ::String,
645
+ ?certificate: ::String
646
+ ) -> _RegisterOidcConfigTestResponseSuccess
647
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterOidcConfigTestResponseSuccess
648
+
649
+ interface _UpdateBotResponseSuccess
650
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBotResponse]
651
+ def message: () -> ::String
652
+ end
653
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#update_bot-instance_method
654
+ def update_bot: (
655
+ network_id: ::String,
656
+ bot_id: ::String,
657
+ ?display_name: ::String,
658
+ ?group_id: ::String,
659
+ ?challenge: ::String,
660
+ ?suspend: bool
661
+ ) -> _UpdateBotResponseSuccess
662
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBotResponseSuccess
663
+
664
+ interface _UpdateDataRetentionResponseSuccess
665
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataRetentionResponse]
666
+ def message: () -> ::String
667
+ end
668
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#update_data_retention-instance_method
669
+ def update_data_retention: (
670
+ network_id: ::String,
671
+ action_type: ("ENABLE" | "DISABLE" | "PUBKEY_MSG_ACK")
672
+ ) -> _UpdateDataRetentionResponseSuccess
673
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataRetentionResponseSuccess
674
+
675
+ interface _UpdateGuestUserResponseSuccess
676
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGuestUserResponse]
677
+ def message: () -> ::String
678
+ end
679
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#update_guest_user-instance_method
680
+ def update_guest_user: (
681
+ network_id: ::String,
682
+ username_hash: ::String,
683
+ block: bool
684
+ ) -> _UpdateGuestUserResponseSuccess
685
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGuestUserResponseSuccess
686
+
687
+ interface _UpdateNetworkResponseSuccess
688
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateNetworkResponse]
689
+ def message: () -> ::String
690
+ end
691
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#update_network-instance_method
692
+ def update_network: (
693
+ network_id: ::String,
694
+ network_name: ::String,
695
+ ?client_token: ::String,
696
+ ?encryption_key_arn: ::String
697
+ ) -> _UpdateNetworkResponseSuccess
698
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNetworkResponseSuccess
699
+
700
+ interface _UpdateNetworkSettingsResponseSuccess
701
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateNetworkSettingsResponse]
702
+ def settings: () -> ::Array[Types::Setting]
703
+ end
704
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#update_network_settings-instance_method
705
+ def update_network_settings: (
706
+ network_id: ::String,
707
+ settings: {
708
+ enable_client_metrics: bool?,
709
+ read_receipt_config: {
710
+ status: ("DISABLED" | "ENABLED" | "FORCE_ENABLED")?
711
+ }?,
712
+ data_retention: bool?
713
+ }
714
+ ) -> _UpdateNetworkSettingsResponseSuccess
715
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNetworkSettingsResponseSuccess
716
+
717
+ interface _UpdateSecurityGroupResponseSuccess
718
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSecurityGroupResponse]
719
+ def security_group: () -> Types::SecurityGroup
720
+ end
721
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#update_security_group-instance_method
722
+ def update_security_group: (
723
+ network_id: ::String,
724
+ group_id: ::String,
725
+ ?name: ::String,
726
+ ?security_group_settings: {
727
+ always_reauthenticate: bool?,
728
+ atak_package_values: Array[::String]?,
729
+ calling: {
730
+ can_start_11_call: bool?,
731
+ can_video_call: bool?,
732
+ force_tcp_call: bool?
733
+ }?,
734
+ check_for_updates: bool?,
735
+ enable_atak: bool?,
736
+ enable_crash_reports: bool?,
737
+ enable_file_download: bool?,
738
+ enable_guest_federation: bool?,
739
+ enable_notification_preview: bool?,
740
+ enable_open_access_option: bool?,
741
+ enable_restricted_global_federation: bool?,
742
+ files_enabled: bool?,
743
+ force_device_lockout: ::Integer?,
744
+ force_open_access: bool?,
745
+ force_read_receipts: bool?,
746
+ global_federation: bool?,
747
+ is_ato_enabled: bool?,
748
+ is_link_preview_enabled: bool?,
749
+ location_allow_maps: bool?,
750
+ location_enabled: bool?,
751
+ max_auto_download_size: ::Integer?,
752
+ max_bor: ::Integer?,
753
+ max_ttl: ::Integer?,
754
+ message_forwarding_enabled: bool?,
755
+ password_requirements: {
756
+ lowercase: ::Integer?,
757
+ min_length: ::Integer?,
758
+ numbers: ::Integer?,
759
+ symbols: ::Integer?,
760
+ uppercase: ::Integer?
761
+ }?,
762
+ presence_enabled: bool?,
763
+ quick_responses: Array[::String]?,
764
+ show_master_recovery_key: bool?,
765
+ shredder: {
766
+ can_process_manually: bool?,
767
+ intensity: ::Integer?
768
+ }?,
769
+ sso_max_idle_minutes: ::Integer?,
770
+ federation_mode: ::Integer?,
771
+ lockout_threshold: ::Integer?,
772
+ permitted_networks: Array[::String]?,
773
+ permitted_wickr_aws_networks: Array[
774
+ {
775
+ region: ::String,
776
+ network_id: ::String
777
+ },
778
+ ]?,
779
+ permitted_wickr_enterprise_networks: Array[
780
+ {
781
+ domain: ::String,
782
+ network_id: ::String
783
+ },
784
+ ]?
785
+ }
786
+ ) -> _UpdateSecurityGroupResponseSuccess
787
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSecurityGroupResponseSuccess
788
+
789
+ interface _UpdateUserResponseSuccess
790
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateUserResponse]
791
+ def user_id: () -> ::String
792
+ def network_id: () -> ::String
793
+ def security_group_ids: () -> ::Array[::String]
794
+ def first_name: () -> ::String
795
+ def last_name: () -> ::String
796
+ def middle_name: () -> ::String
797
+ def suspended: () -> bool
798
+ def modified: () -> ::Integer
799
+ def status: () -> ::Integer
800
+ def invite_code: () -> ::String
801
+ def invite_expiration: () -> ::Integer
802
+ def code_validation: () -> bool
803
+ end
804
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Wickr/Client.html#update_user-instance_method
805
+ def update_user: (
806
+ network_id: ::String,
807
+ user_id: ::String,
808
+ ?user_details: {
809
+ first_name: ::String?,
810
+ last_name: ::String?,
811
+ username: ::String?,
812
+ security_group_ids: Array[::String]?,
813
+ invite_code: ::String?,
814
+ invite_code_ttl: ::Integer?,
815
+ code_validation: bool?
816
+ }
817
+ ) -> _UpdateUserResponseSuccess
818
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUserResponseSuccess
819
+ end
820
+ end
821
+ end
822
+