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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-wickr/client.rb +4986 -0
- data/lib/aws-sdk-wickr/client_api.rb +1657 -0
- data/lib/aws-sdk-wickr/customizations.rb +0 -0
- data/lib/aws-sdk-wickr/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-wickr/endpoint_provider.rb +50 -0
- data/lib/aws-sdk-wickr/endpoints.rb +20 -0
- data/lib/aws-sdk-wickr/errors.rb +150 -0
- data/lib/aws-sdk-wickr/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-wickr/resource.rb +26 -0
- data/lib/aws-sdk-wickr/types.rb +3751 -0
- data/lib/aws-sdk-wickr/waiters.rb +15 -0
- data/lib/aws-sdk-wickr.rb +62 -0
- data/sig/client.rbs +822 -0
- data/sig/errors.rbs +37 -0
- data/sig/resource.rbs +85 -0
- data/sig/types.rbs +974 -0
- data/sig/waiters.rbs +13 -0
- metadata +97 -0
data/sig/types.rbs
ADDED
|
@@ -0,0 +1,974 @@
|
|
|
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::Wickr
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class BadRequestError
|
|
12
|
+
attr_accessor message: ::String
|
|
13
|
+
SENSITIVE: []
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
class BasicDeviceObject
|
|
17
|
+
attr_accessor app_id: ::String
|
|
18
|
+
attr_accessor created: ::String
|
|
19
|
+
attr_accessor last_login: ::String
|
|
20
|
+
attr_accessor status_text: ::String
|
|
21
|
+
attr_accessor suspend: bool
|
|
22
|
+
attr_accessor type: ::String
|
|
23
|
+
SENSITIVE: []
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
class BatchCreateUserRequest
|
|
27
|
+
attr_accessor network_id: ::String
|
|
28
|
+
attr_accessor users: ::Array[Types::BatchCreateUserRequestItem]
|
|
29
|
+
attr_accessor client_token: ::String
|
|
30
|
+
SENSITIVE: []
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
class BatchCreateUserRequestItem
|
|
34
|
+
attr_accessor first_name: ::String
|
|
35
|
+
attr_accessor last_name: ::String
|
|
36
|
+
attr_accessor security_group_ids: ::Array[::String]
|
|
37
|
+
attr_accessor username: ::String
|
|
38
|
+
attr_accessor invite_code: ::String
|
|
39
|
+
attr_accessor invite_code_ttl: ::Integer
|
|
40
|
+
attr_accessor code_validation: bool
|
|
41
|
+
SENSITIVE: [:first_name, :last_name]
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
class BatchCreateUserResponse
|
|
45
|
+
attr_accessor message: ::String
|
|
46
|
+
attr_accessor successful: ::Array[Types::User]
|
|
47
|
+
attr_accessor failed: ::Array[Types::BatchUserErrorResponseItem]
|
|
48
|
+
SENSITIVE: []
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
class BatchDeleteUserRequest
|
|
52
|
+
attr_accessor network_id: ::String
|
|
53
|
+
attr_accessor user_ids: ::Array[::String]
|
|
54
|
+
attr_accessor client_token: ::String
|
|
55
|
+
SENSITIVE: []
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
class BatchDeleteUserResponse
|
|
59
|
+
attr_accessor message: ::String
|
|
60
|
+
attr_accessor successful: ::Array[Types::BatchUserSuccessResponseItem]
|
|
61
|
+
attr_accessor failed: ::Array[Types::BatchUserErrorResponseItem]
|
|
62
|
+
SENSITIVE: []
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
class BatchDeviceErrorResponseItem
|
|
66
|
+
attr_accessor field: ::String
|
|
67
|
+
attr_accessor reason: ::String
|
|
68
|
+
attr_accessor app_id: ::String
|
|
69
|
+
SENSITIVE: []
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
class BatchDeviceSuccessResponseItem
|
|
73
|
+
attr_accessor app_id: ::String
|
|
74
|
+
SENSITIVE: []
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
class BatchLookupUserUnameRequest
|
|
78
|
+
attr_accessor network_id: ::String
|
|
79
|
+
attr_accessor unames: ::Array[::String]
|
|
80
|
+
attr_accessor client_token: ::String
|
|
81
|
+
SENSITIVE: []
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
class BatchLookupUserUnameResponse
|
|
85
|
+
attr_accessor message: ::String
|
|
86
|
+
attr_accessor successful: ::Array[Types::BatchUnameSuccessResponseItem]
|
|
87
|
+
attr_accessor failed: ::Array[Types::BatchUnameErrorResponseItem]
|
|
88
|
+
SENSITIVE: []
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
class BatchReinviteUserRequest
|
|
92
|
+
attr_accessor network_id: ::String
|
|
93
|
+
attr_accessor user_ids: ::Array[::String]
|
|
94
|
+
attr_accessor client_token: ::String
|
|
95
|
+
SENSITIVE: []
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
class BatchReinviteUserResponse
|
|
99
|
+
attr_accessor message: ::String
|
|
100
|
+
attr_accessor successful: ::Array[Types::BatchUserSuccessResponseItem]
|
|
101
|
+
attr_accessor failed: ::Array[Types::BatchUserErrorResponseItem]
|
|
102
|
+
SENSITIVE: []
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
class BatchResetDevicesForUserRequest
|
|
106
|
+
attr_accessor network_id: ::String
|
|
107
|
+
attr_accessor user_id: ::String
|
|
108
|
+
attr_accessor app_ids: ::Array[::String]
|
|
109
|
+
attr_accessor client_token: ::String
|
|
110
|
+
SENSITIVE: []
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
class BatchResetDevicesForUserResponse
|
|
114
|
+
attr_accessor message: ::String
|
|
115
|
+
attr_accessor successful: ::Array[Types::BatchDeviceSuccessResponseItem]
|
|
116
|
+
attr_accessor failed: ::Array[Types::BatchDeviceErrorResponseItem]
|
|
117
|
+
SENSITIVE: []
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
class BatchToggleUserSuspendStatusRequest
|
|
121
|
+
attr_accessor network_id: ::String
|
|
122
|
+
attr_accessor suspend: bool
|
|
123
|
+
attr_accessor user_ids: ::Array[::String]
|
|
124
|
+
attr_accessor client_token: ::String
|
|
125
|
+
SENSITIVE: []
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
class BatchToggleUserSuspendStatusResponse
|
|
129
|
+
attr_accessor message: ::String
|
|
130
|
+
attr_accessor successful: ::Array[Types::BatchUserSuccessResponseItem]
|
|
131
|
+
attr_accessor failed: ::Array[Types::BatchUserErrorResponseItem]
|
|
132
|
+
SENSITIVE: []
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
class BatchUnameErrorResponseItem
|
|
136
|
+
attr_accessor field: ::String
|
|
137
|
+
attr_accessor reason: ::String
|
|
138
|
+
attr_accessor uname: ::String
|
|
139
|
+
SENSITIVE: []
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
class BatchUnameSuccessResponseItem
|
|
143
|
+
attr_accessor uname: ::String
|
|
144
|
+
attr_accessor username: ::String
|
|
145
|
+
SENSITIVE: []
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
class BatchUserErrorResponseItem
|
|
149
|
+
attr_accessor field: ::String
|
|
150
|
+
attr_accessor reason: ::String
|
|
151
|
+
attr_accessor user_id: ::String
|
|
152
|
+
SENSITIVE: []
|
|
153
|
+
end
|
|
154
|
+
|
|
155
|
+
class BatchUserSuccessResponseItem
|
|
156
|
+
attr_accessor user_id: ::String
|
|
157
|
+
SENSITIVE: []
|
|
158
|
+
end
|
|
159
|
+
|
|
160
|
+
class BlockedGuestUser
|
|
161
|
+
attr_accessor username: ::String
|
|
162
|
+
attr_accessor admin: ::String
|
|
163
|
+
attr_accessor modified: ::String
|
|
164
|
+
attr_accessor username_hash: ::String
|
|
165
|
+
SENSITIVE: []
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
class Bot
|
|
169
|
+
attr_accessor bot_id: ::String
|
|
170
|
+
attr_accessor display_name: ::String
|
|
171
|
+
attr_accessor username: ::String
|
|
172
|
+
attr_accessor uname: ::String
|
|
173
|
+
attr_accessor pubkey: ::String
|
|
174
|
+
attr_accessor status: ::Integer
|
|
175
|
+
attr_accessor group_id: ::String
|
|
176
|
+
attr_accessor has_challenge: bool
|
|
177
|
+
attr_accessor suspended: bool
|
|
178
|
+
attr_accessor last_login: ::String
|
|
179
|
+
SENSITIVE: []
|
|
180
|
+
end
|
|
181
|
+
|
|
182
|
+
class CallingSettings
|
|
183
|
+
attr_accessor can_start_11_call: bool
|
|
184
|
+
attr_accessor can_video_call: bool
|
|
185
|
+
attr_accessor force_tcp_call: bool
|
|
186
|
+
SENSITIVE: []
|
|
187
|
+
end
|
|
188
|
+
|
|
189
|
+
class CreateBotRequest
|
|
190
|
+
attr_accessor network_id: ::String
|
|
191
|
+
attr_accessor username: ::String
|
|
192
|
+
attr_accessor display_name: ::String
|
|
193
|
+
attr_accessor group_id: ::String
|
|
194
|
+
attr_accessor challenge: ::String
|
|
195
|
+
SENSITIVE: [:challenge]
|
|
196
|
+
end
|
|
197
|
+
|
|
198
|
+
class CreateBotResponse
|
|
199
|
+
attr_accessor message: ::String
|
|
200
|
+
attr_accessor bot_id: ::String
|
|
201
|
+
attr_accessor network_id: ::String
|
|
202
|
+
attr_accessor username: ::String
|
|
203
|
+
attr_accessor display_name: ::String
|
|
204
|
+
attr_accessor group_id: ::String
|
|
205
|
+
SENSITIVE: []
|
|
206
|
+
end
|
|
207
|
+
|
|
208
|
+
class CreateDataRetentionBotChallengeRequest
|
|
209
|
+
attr_accessor network_id: ::String
|
|
210
|
+
SENSITIVE: []
|
|
211
|
+
end
|
|
212
|
+
|
|
213
|
+
class CreateDataRetentionBotChallengeResponse
|
|
214
|
+
attr_accessor challenge: ::String
|
|
215
|
+
SENSITIVE: [:challenge]
|
|
216
|
+
end
|
|
217
|
+
|
|
218
|
+
class CreateDataRetentionBotRequest
|
|
219
|
+
attr_accessor network_id: ::String
|
|
220
|
+
SENSITIVE: []
|
|
221
|
+
end
|
|
222
|
+
|
|
223
|
+
class CreateDataRetentionBotResponse
|
|
224
|
+
attr_accessor message: ::String
|
|
225
|
+
SENSITIVE: []
|
|
226
|
+
end
|
|
227
|
+
|
|
228
|
+
class CreateNetworkRequest
|
|
229
|
+
attr_accessor network_name: ::String
|
|
230
|
+
attr_accessor access_level: ("STANDARD" | "PREMIUM")
|
|
231
|
+
attr_accessor enable_premium_free_trial: bool
|
|
232
|
+
attr_accessor encryption_key_arn: ::String
|
|
233
|
+
SENSITIVE: []
|
|
234
|
+
end
|
|
235
|
+
|
|
236
|
+
class CreateNetworkResponse
|
|
237
|
+
attr_accessor network_id: ::String
|
|
238
|
+
attr_accessor network_name: ::String
|
|
239
|
+
attr_accessor encryption_key_arn: ::String
|
|
240
|
+
SENSITIVE: []
|
|
241
|
+
end
|
|
242
|
+
|
|
243
|
+
class CreateSecurityGroupRequest
|
|
244
|
+
attr_accessor network_id: ::String
|
|
245
|
+
attr_accessor name: ::String
|
|
246
|
+
attr_accessor security_group_settings: Types::SecurityGroupSettingsRequest
|
|
247
|
+
attr_accessor client_token: ::String
|
|
248
|
+
SENSITIVE: []
|
|
249
|
+
end
|
|
250
|
+
|
|
251
|
+
class CreateSecurityGroupResponse
|
|
252
|
+
attr_accessor security_group: Types::SecurityGroup
|
|
253
|
+
SENSITIVE: []
|
|
254
|
+
end
|
|
255
|
+
|
|
256
|
+
class DeleteBotRequest
|
|
257
|
+
attr_accessor network_id: ::String
|
|
258
|
+
attr_accessor bot_id: ::String
|
|
259
|
+
SENSITIVE: []
|
|
260
|
+
end
|
|
261
|
+
|
|
262
|
+
class DeleteBotResponse
|
|
263
|
+
attr_accessor message: ::String
|
|
264
|
+
SENSITIVE: []
|
|
265
|
+
end
|
|
266
|
+
|
|
267
|
+
class DeleteDataRetentionBotRequest
|
|
268
|
+
attr_accessor network_id: ::String
|
|
269
|
+
SENSITIVE: []
|
|
270
|
+
end
|
|
271
|
+
|
|
272
|
+
class DeleteDataRetentionBotResponse
|
|
273
|
+
attr_accessor message: ::String
|
|
274
|
+
SENSITIVE: []
|
|
275
|
+
end
|
|
276
|
+
|
|
277
|
+
class DeleteNetworkRequest
|
|
278
|
+
attr_accessor network_id: ::String
|
|
279
|
+
attr_accessor client_token: ::String
|
|
280
|
+
SENSITIVE: []
|
|
281
|
+
end
|
|
282
|
+
|
|
283
|
+
class DeleteNetworkResponse
|
|
284
|
+
attr_accessor message: ::String
|
|
285
|
+
SENSITIVE: []
|
|
286
|
+
end
|
|
287
|
+
|
|
288
|
+
class DeleteSecurityGroupRequest
|
|
289
|
+
attr_accessor network_id: ::String
|
|
290
|
+
attr_accessor group_id: ::String
|
|
291
|
+
SENSITIVE: []
|
|
292
|
+
end
|
|
293
|
+
|
|
294
|
+
class DeleteSecurityGroupResponse
|
|
295
|
+
attr_accessor message: ::String
|
|
296
|
+
attr_accessor network_id: ::String
|
|
297
|
+
attr_accessor group_id: ::String
|
|
298
|
+
SENSITIVE: []
|
|
299
|
+
end
|
|
300
|
+
|
|
301
|
+
class ErrorDetail
|
|
302
|
+
attr_accessor field: ::String
|
|
303
|
+
attr_accessor reason: ::String
|
|
304
|
+
SENSITIVE: []
|
|
305
|
+
end
|
|
306
|
+
|
|
307
|
+
class ForbiddenError
|
|
308
|
+
attr_accessor message: ::String
|
|
309
|
+
SENSITIVE: []
|
|
310
|
+
end
|
|
311
|
+
|
|
312
|
+
class GetBotRequest
|
|
313
|
+
attr_accessor network_id: ::String
|
|
314
|
+
attr_accessor bot_id: ::String
|
|
315
|
+
SENSITIVE: []
|
|
316
|
+
end
|
|
317
|
+
|
|
318
|
+
class GetBotResponse
|
|
319
|
+
attr_accessor bot_id: ::String
|
|
320
|
+
attr_accessor display_name: ::String
|
|
321
|
+
attr_accessor username: ::String
|
|
322
|
+
attr_accessor uname: ::String
|
|
323
|
+
attr_accessor pubkey: ::String
|
|
324
|
+
attr_accessor status: ::Integer
|
|
325
|
+
attr_accessor group_id: ::String
|
|
326
|
+
attr_accessor has_challenge: bool
|
|
327
|
+
attr_accessor suspended: bool
|
|
328
|
+
attr_accessor last_login: ::String
|
|
329
|
+
SENSITIVE: []
|
|
330
|
+
end
|
|
331
|
+
|
|
332
|
+
class GetBotsCountRequest
|
|
333
|
+
attr_accessor network_id: ::String
|
|
334
|
+
SENSITIVE: []
|
|
335
|
+
end
|
|
336
|
+
|
|
337
|
+
class GetBotsCountResponse
|
|
338
|
+
attr_accessor pending: ::Integer
|
|
339
|
+
attr_accessor active: ::Integer
|
|
340
|
+
attr_accessor total: ::Integer
|
|
341
|
+
SENSITIVE: []
|
|
342
|
+
end
|
|
343
|
+
|
|
344
|
+
class GetDataRetentionBotRequest
|
|
345
|
+
attr_accessor network_id: ::String
|
|
346
|
+
SENSITIVE: []
|
|
347
|
+
end
|
|
348
|
+
|
|
349
|
+
class GetDataRetentionBotResponse
|
|
350
|
+
attr_accessor bot_name: ::String
|
|
351
|
+
attr_accessor bot_exists: bool
|
|
352
|
+
attr_accessor is_bot_active: bool
|
|
353
|
+
attr_accessor is_data_retention_bot_registered: bool
|
|
354
|
+
attr_accessor is_data_retention_service_enabled: bool
|
|
355
|
+
attr_accessor is_pubkey_msg_acked: bool
|
|
356
|
+
SENSITIVE: []
|
|
357
|
+
end
|
|
358
|
+
|
|
359
|
+
class GetGuestUserHistoryCountRequest
|
|
360
|
+
attr_accessor network_id: ::String
|
|
361
|
+
SENSITIVE: []
|
|
362
|
+
end
|
|
363
|
+
|
|
364
|
+
class GetGuestUserHistoryCountResponse
|
|
365
|
+
attr_accessor history: ::Array[Types::GuestUserHistoryCount]
|
|
366
|
+
SENSITIVE: []
|
|
367
|
+
end
|
|
368
|
+
|
|
369
|
+
class GetNetworkRequest
|
|
370
|
+
attr_accessor network_id: ::String
|
|
371
|
+
SENSITIVE: []
|
|
372
|
+
end
|
|
373
|
+
|
|
374
|
+
class GetNetworkResponse
|
|
375
|
+
attr_accessor network_id: ::String
|
|
376
|
+
attr_accessor network_name: ::String
|
|
377
|
+
attr_accessor access_level: ("STANDARD" | "PREMIUM")
|
|
378
|
+
attr_accessor aws_account_id: ::String
|
|
379
|
+
attr_accessor network_arn: ::String
|
|
380
|
+
attr_accessor standing: ::Integer
|
|
381
|
+
attr_accessor free_trial_expiration: ::String
|
|
382
|
+
attr_accessor migration_state: ::Integer
|
|
383
|
+
attr_accessor encryption_key_arn: ::String
|
|
384
|
+
SENSITIVE: []
|
|
385
|
+
end
|
|
386
|
+
|
|
387
|
+
class GetNetworkSettingsRequest
|
|
388
|
+
attr_accessor network_id: ::String
|
|
389
|
+
SENSITIVE: []
|
|
390
|
+
end
|
|
391
|
+
|
|
392
|
+
class GetNetworkSettingsResponse
|
|
393
|
+
attr_accessor settings: ::Array[Types::Setting]
|
|
394
|
+
SENSITIVE: []
|
|
395
|
+
end
|
|
396
|
+
|
|
397
|
+
class GetOidcInfoRequest
|
|
398
|
+
attr_accessor network_id: ::String
|
|
399
|
+
attr_accessor client_id: ::String
|
|
400
|
+
attr_accessor code: ::String
|
|
401
|
+
attr_accessor grant_type: ::String
|
|
402
|
+
attr_accessor redirect_uri: ::String
|
|
403
|
+
attr_accessor url: ::String
|
|
404
|
+
attr_accessor client_secret: ::String
|
|
405
|
+
attr_accessor code_verifier: ::String
|
|
406
|
+
attr_accessor certificate: ::String
|
|
407
|
+
SENSITIVE: [:client_secret]
|
|
408
|
+
end
|
|
409
|
+
|
|
410
|
+
class GetOidcInfoResponse
|
|
411
|
+
attr_accessor openid_connect_info: Types::OidcConfigInfo
|
|
412
|
+
attr_accessor token_info: Types::OidcTokenInfo
|
|
413
|
+
SENSITIVE: []
|
|
414
|
+
end
|
|
415
|
+
|
|
416
|
+
class GetSecurityGroupRequest
|
|
417
|
+
attr_accessor network_id: ::String
|
|
418
|
+
attr_accessor group_id: ::String
|
|
419
|
+
SENSITIVE: []
|
|
420
|
+
end
|
|
421
|
+
|
|
422
|
+
class GetSecurityGroupResponse
|
|
423
|
+
attr_accessor security_group: Types::SecurityGroup
|
|
424
|
+
SENSITIVE: []
|
|
425
|
+
end
|
|
426
|
+
|
|
427
|
+
class GetUserRequest
|
|
428
|
+
attr_accessor network_id: ::String
|
|
429
|
+
attr_accessor user_id: ::String
|
|
430
|
+
attr_accessor start_time: ::Time
|
|
431
|
+
attr_accessor end_time: ::Time
|
|
432
|
+
SENSITIVE: []
|
|
433
|
+
end
|
|
434
|
+
|
|
435
|
+
class GetUserResponse
|
|
436
|
+
attr_accessor user_id: ::String
|
|
437
|
+
attr_accessor first_name: ::String
|
|
438
|
+
attr_accessor last_name: ::String
|
|
439
|
+
attr_accessor username: ::String
|
|
440
|
+
attr_accessor is_admin: bool
|
|
441
|
+
attr_accessor suspended: bool
|
|
442
|
+
attr_accessor status: ::Integer
|
|
443
|
+
attr_accessor last_activity: ::Integer
|
|
444
|
+
attr_accessor last_login: ::Integer
|
|
445
|
+
attr_accessor security_group_ids: ::Array[::String]
|
|
446
|
+
SENSITIVE: [:first_name, :last_name]
|
|
447
|
+
end
|
|
448
|
+
|
|
449
|
+
class GetUsersCountRequest
|
|
450
|
+
attr_accessor network_id: ::String
|
|
451
|
+
SENSITIVE: []
|
|
452
|
+
end
|
|
453
|
+
|
|
454
|
+
class GetUsersCountResponse
|
|
455
|
+
attr_accessor pending: ::Integer
|
|
456
|
+
attr_accessor active: ::Integer
|
|
457
|
+
attr_accessor rejected: ::Integer
|
|
458
|
+
attr_accessor remaining: ::Integer
|
|
459
|
+
attr_accessor total: ::Integer
|
|
460
|
+
SENSITIVE: []
|
|
461
|
+
end
|
|
462
|
+
|
|
463
|
+
class GuestUser
|
|
464
|
+
attr_accessor billing_period: ::String
|
|
465
|
+
attr_accessor username: ::String
|
|
466
|
+
attr_accessor username_hash: ::String
|
|
467
|
+
SENSITIVE: []
|
|
468
|
+
end
|
|
469
|
+
|
|
470
|
+
class GuestUserHistoryCount
|
|
471
|
+
attr_accessor month: ::String
|
|
472
|
+
attr_accessor count: ::String
|
|
473
|
+
SENSITIVE: []
|
|
474
|
+
end
|
|
475
|
+
|
|
476
|
+
class InternalServerError
|
|
477
|
+
attr_accessor message: ::String
|
|
478
|
+
SENSITIVE: []
|
|
479
|
+
end
|
|
480
|
+
|
|
481
|
+
class ListBlockedGuestUsersRequest
|
|
482
|
+
attr_accessor network_id: ::String
|
|
483
|
+
attr_accessor max_results: ::Integer
|
|
484
|
+
attr_accessor sort_direction: ("ASC" | "DESC")
|
|
485
|
+
attr_accessor sort_fields: ::String
|
|
486
|
+
attr_accessor username: ::String
|
|
487
|
+
attr_accessor admin: ::String
|
|
488
|
+
attr_accessor next_token: ::String
|
|
489
|
+
SENSITIVE: []
|
|
490
|
+
end
|
|
491
|
+
|
|
492
|
+
class ListBlockedGuestUsersResponse
|
|
493
|
+
attr_accessor next_token: ::String
|
|
494
|
+
attr_accessor blocklist: ::Array[Types::BlockedGuestUser]
|
|
495
|
+
SENSITIVE: []
|
|
496
|
+
end
|
|
497
|
+
|
|
498
|
+
class ListBotsRequest
|
|
499
|
+
attr_accessor network_id: ::String
|
|
500
|
+
attr_accessor next_token: ::String
|
|
501
|
+
attr_accessor max_results: ::Integer
|
|
502
|
+
attr_accessor sort_fields: ::String
|
|
503
|
+
attr_accessor sort_direction: ("ASC" | "DESC")
|
|
504
|
+
attr_accessor display_name: ::String
|
|
505
|
+
attr_accessor username: ::String
|
|
506
|
+
attr_accessor status: ::Integer
|
|
507
|
+
attr_accessor group_id: ::String
|
|
508
|
+
SENSITIVE: []
|
|
509
|
+
end
|
|
510
|
+
|
|
511
|
+
class ListBotsResponse
|
|
512
|
+
attr_accessor bots: ::Array[Types::Bot]
|
|
513
|
+
attr_accessor next_token: ::String
|
|
514
|
+
SENSITIVE: []
|
|
515
|
+
end
|
|
516
|
+
|
|
517
|
+
class ListDevicesForUserRequest
|
|
518
|
+
attr_accessor network_id: ::String
|
|
519
|
+
attr_accessor user_id: ::String
|
|
520
|
+
attr_accessor next_token: ::String
|
|
521
|
+
attr_accessor max_results: ::Integer
|
|
522
|
+
attr_accessor sort_fields: ::String
|
|
523
|
+
attr_accessor sort_direction: ("ASC" | "DESC")
|
|
524
|
+
SENSITIVE: []
|
|
525
|
+
end
|
|
526
|
+
|
|
527
|
+
class ListDevicesForUserResponse
|
|
528
|
+
attr_accessor next_token: ::String
|
|
529
|
+
attr_accessor devices: ::Array[Types::BasicDeviceObject]
|
|
530
|
+
SENSITIVE: []
|
|
531
|
+
end
|
|
532
|
+
|
|
533
|
+
class ListGuestUsersRequest
|
|
534
|
+
attr_accessor network_id: ::String
|
|
535
|
+
attr_accessor max_results: ::Integer
|
|
536
|
+
attr_accessor sort_direction: ("ASC" | "DESC")
|
|
537
|
+
attr_accessor sort_fields: ::String
|
|
538
|
+
attr_accessor username: ::String
|
|
539
|
+
attr_accessor billing_period: ::String
|
|
540
|
+
attr_accessor next_token: ::String
|
|
541
|
+
SENSITIVE: []
|
|
542
|
+
end
|
|
543
|
+
|
|
544
|
+
class ListGuestUsersResponse
|
|
545
|
+
attr_accessor next_token: ::String
|
|
546
|
+
attr_accessor guestlist: ::Array[Types::GuestUser]
|
|
547
|
+
SENSITIVE: []
|
|
548
|
+
end
|
|
549
|
+
|
|
550
|
+
class ListNetworksRequest
|
|
551
|
+
attr_accessor max_results: ::Integer
|
|
552
|
+
attr_accessor sort_fields: ::String
|
|
553
|
+
attr_accessor sort_direction: ("ASC" | "DESC")
|
|
554
|
+
attr_accessor next_token: ::String
|
|
555
|
+
SENSITIVE: []
|
|
556
|
+
end
|
|
557
|
+
|
|
558
|
+
class ListNetworksResponse
|
|
559
|
+
attr_accessor networks: ::Array[Types::Network]
|
|
560
|
+
attr_accessor next_token: ::String
|
|
561
|
+
SENSITIVE: []
|
|
562
|
+
end
|
|
563
|
+
|
|
564
|
+
class ListSecurityGroupUsersRequest
|
|
565
|
+
attr_accessor network_id: ::String
|
|
566
|
+
attr_accessor group_id: ::String
|
|
567
|
+
attr_accessor next_token: ::String
|
|
568
|
+
attr_accessor max_results: ::Integer
|
|
569
|
+
attr_accessor sort_fields: ::String
|
|
570
|
+
attr_accessor sort_direction: ("ASC" | "DESC")
|
|
571
|
+
SENSITIVE: []
|
|
572
|
+
end
|
|
573
|
+
|
|
574
|
+
class ListSecurityGroupUsersResponse
|
|
575
|
+
attr_accessor users: ::Array[Types::User]
|
|
576
|
+
attr_accessor next_token: ::String
|
|
577
|
+
SENSITIVE: []
|
|
578
|
+
end
|
|
579
|
+
|
|
580
|
+
class ListSecurityGroupsRequest
|
|
581
|
+
attr_accessor network_id: ::String
|
|
582
|
+
attr_accessor next_token: ::String
|
|
583
|
+
attr_accessor max_results: ::Integer
|
|
584
|
+
attr_accessor sort_fields: ::String
|
|
585
|
+
attr_accessor sort_direction: ("ASC" | "DESC")
|
|
586
|
+
SENSITIVE: []
|
|
587
|
+
end
|
|
588
|
+
|
|
589
|
+
class ListSecurityGroupsResponse
|
|
590
|
+
attr_accessor security_groups: ::Array[Types::SecurityGroup]
|
|
591
|
+
attr_accessor next_token: ::String
|
|
592
|
+
SENSITIVE: []
|
|
593
|
+
end
|
|
594
|
+
|
|
595
|
+
class ListUsersRequest
|
|
596
|
+
attr_accessor network_id: ::String
|
|
597
|
+
attr_accessor next_token: ::String
|
|
598
|
+
attr_accessor max_results: ::Integer
|
|
599
|
+
attr_accessor sort_fields: ::String
|
|
600
|
+
attr_accessor sort_direction: ("ASC" | "DESC")
|
|
601
|
+
attr_accessor first_name: ::String
|
|
602
|
+
attr_accessor last_name: ::String
|
|
603
|
+
attr_accessor username: ::String
|
|
604
|
+
attr_accessor status: ::Integer
|
|
605
|
+
attr_accessor group_id: ::String
|
|
606
|
+
SENSITIVE: [:first_name, :last_name]
|
|
607
|
+
end
|
|
608
|
+
|
|
609
|
+
class ListUsersResponse
|
|
610
|
+
attr_accessor next_token: ::String
|
|
611
|
+
attr_accessor users: ::Array[Types::User]
|
|
612
|
+
SENSITIVE: []
|
|
613
|
+
end
|
|
614
|
+
|
|
615
|
+
class Network
|
|
616
|
+
attr_accessor network_id: ::String
|
|
617
|
+
attr_accessor network_name: ::String
|
|
618
|
+
attr_accessor access_level: ("STANDARD" | "PREMIUM")
|
|
619
|
+
attr_accessor aws_account_id: ::String
|
|
620
|
+
attr_accessor network_arn: ::String
|
|
621
|
+
attr_accessor standing: ::Integer
|
|
622
|
+
attr_accessor free_trial_expiration: ::String
|
|
623
|
+
attr_accessor migration_state: ::Integer
|
|
624
|
+
attr_accessor encryption_key_arn: ::String
|
|
625
|
+
SENSITIVE: []
|
|
626
|
+
end
|
|
627
|
+
|
|
628
|
+
class NetworkSettings
|
|
629
|
+
attr_accessor enable_client_metrics: bool
|
|
630
|
+
attr_accessor read_receipt_config: Types::ReadReceiptConfig
|
|
631
|
+
attr_accessor data_retention: bool
|
|
632
|
+
SENSITIVE: []
|
|
633
|
+
end
|
|
634
|
+
|
|
635
|
+
class OidcConfigInfo
|
|
636
|
+
attr_accessor application_name: ::String
|
|
637
|
+
attr_accessor client_id: ::String
|
|
638
|
+
attr_accessor company_id: ::String
|
|
639
|
+
attr_accessor scopes: ::String
|
|
640
|
+
attr_accessor issuer: ::String
|
|
641
|
+
attr_accessor client_secret: ::String
|
|
642
|
+
attr_accessor secret: ::String
|
|
643
|
+
attr_accessor redirect_url: ::String
|
|
644
|
+
attr_accessor user_id: ::String
|
|
645
|
+
attr_accessor custom_username: ::String
|
|
646
|
+
attr_accessor ca_certificate: ::String
|
|
647
|
+
attr_accessor application_id: ::Integer
|
|
648
|
+
attr_accessor sso_token_buffer_minutes: ::Integer
|
|
649
|
+
attr_accessor extra_auth_params: ::String
|
|
650
|
+
SENSITIVE: [:client_secret, :secret]
|
|
651
|
+
end
|
|
652
|
+
|
|
653
|
+
class OidcTokenInfo
|
|
654
|
+
attr_accessor code_verifier: ::String
|
|
655
|
+
attr_accessor code_challenge: ::String
|
|
656
|
+
attr_accessor access_token: ::String
|
|
657
|
+
attr_accessor id_token: ::String
|
|
658
|
+
attr_accessor refresh_token: ::String
|
|
659
|
+
attr_accessor token_type: ::String
|
|
660
|
+
attr_accessor expires_in: ::Integer
|
|
661
|
+
SENSITIVE: []
|
|
662
|
+
end
|
|
663
|
+
|
|
664
|
+
class PasswordRequirements
|
|
665
|
+
attr_accessor lowercase: ::Integer
|
|
666
|
+
attr_accessor min_length: ::Integer
|
|
667
|
+
attr_accessor numbers: ::Integer
|
|
668
|
+
attr_accessor symbols: ::Integer
|
|
669
|
+
attr_accessor uppercase: ::Integer
|
|
670
|
+
SENSITIVE: []
|
|
671
|
+
end
|
|
672
|
+
|
|
673
|
+
class PermittedWickrEnterpriseNetwork
|
|
674
|
+
attr_accessor domain: ::String
|
|
675
|
+
attr_accessor network_id: ::String
|
|
676
|
+
SENSITIVE: []
|
|
677
|
+
end
|
|
678
|
+
|
|
679
|
+
class RateLimitError
|
|
680
|
+
attr_accessor message: ::String
|
|
681
|
+
SENSITIVE: []
|
|
682
|
+
end
|
|
683
|
+
|
|
684
|
+
class ReadReceiptConfig
|
|
685
|
+
attr_accessor status: ("DISABLED" | "ENABLED" | "FORCE_ENABLED")
|
|
686
|
+
SENSITIVE: []
|
|
687
|
+
end
|
|
688
|
+
|
|
689
|
+
class RegisterOidcConfigRequest
|
|
690
|
+
attr_accessor network_id: ::String
|
|
691
|
+
attr_accessor company_id: ::String
|
|
692
|
+
attr_accessor custom_username: ::String
|
|
693
|
+
attr_accessor extra_auth_params: ::String
|
|
694
|
+
attr_accessor issuer: ::String
|
|
695
|
+
attr_accessor scopes: ::String
|
|
696
|
+
attr_accessor secret: ::String
|
|
697
|
+
attr_accessor sso_token_buffer_minutes: ::Integer
|
|
698
|
+
attr_accessor user_id: ::String
|
|
699
|
+
SENSITIVE: [:secret]
|
|
700
|
+
end
|
|
701
|
+
|
|
702
|
+
class RegisterOidcConfigResponse
|
|
703
|
+
attr_accessor application_name: ::String
|
|
704
|
+
attr_accessor client_id: ::String
|
|
705
|
+
attr_accessor company_id: ::String
|
|
706
|
+
attr_accessor scopes: ::String
|
|
707
|
+
attr_accessor issuer: ::String
|
|
708
|
+
attr_accessor client_secret: ::String
|
|
709
|
+
attr_accessor secret: ::String
|
|
710
|
+
attr_accessor redirect_url: ::String
|
|
711
|
+
attr_accessor user_id: ::String
|
|
712
|
+
attr_accessor custom_username: ::String
|
|
713
|
+
attr_accessor ca_certificate: ::String
|
|
714
|
+
attr_accessor application_id: ::Integer
|
|
715
|
+
attr_accessor sso_token_buffer_minutes: ::Integer
|
|
716
|
+
attr_accessor extra_auth_params: ::String
|
|
717
|
+
SENSITIVE: [:client_secret, :secret]
|
|
718
|
+
end
|
|
719
|
+
|
|
720
|
+
class RegisterOidcConfigTestRequest
|
|
721
|
+
attr_accessor network_id: ::String
|
|
722
|
+
attr_accessor extra_auth_params: ::String
|
|
723
|
+
attr_accessor issuer: ::String
|
|
724
|
+
attr_accessor scopes: ::String
|
|
725
|
+
attr_accessor certificate: ::String
|
|
726
|
+
SENSITIVE: []
|
|
727
|
+
end
|
|
728
|
+
|
|
729
|
+
class RegisterOidcConfigTestResponse
|
|
730
|
+
attr_accessor token_endpoint: ::String
|
|
731
|
+
attr_accessor userinfo_endpoint: ::String
|
|
732
|
+
attr_accessor response_types_supported: ::Array[::String]
|
|
733
|
+
attr_accessor scopes_supported: ::Array[::String]
|
|
734
|
+
attr_accessor issuer: ::String
|
|
735
|
+
attr_accessor authorization_endpoint: ::String
|
|
736
|
+
attr_accessor end_session_endpoint: ::String
|
|
737
|
+
attr_accessor logout_endpoint: ::String
|
|
738
|
+
attr_accessor grant_types_supported: ::Array[::String]
|
|
739
|
+
attr_accessor revocation_endpoint: ::String
|
|
740
|
+
attr_accessor token_endpoint_auth_methods_supported: ::Array[::String]
|
|
741
|
+
attr_accessor microsoft_multi_refresh_token: bool
|
|
742
|
+
SENSITIVE: []
|
|
743
|
+
end
|
|
744
|
+
|
|
745
|
+
class ResourceNotFoundError
|
|
746
|
+
attr_accessor message: ::String
|
|
747
|
+
SENSITIVE: []
|
|
748
|
+
end
|
|
749
|
+
|
|
750
|
+
class SecurityGroup
|
|
751
|
+
attr_accessor active_members: ::Integer
|
|
752
|
+
attr_accessor bot_members: ::Integer
|
|
753
|
+
attr_accessor active_directory_guid: ::String
|
|
754
|
+
attr_accessor id: ::String
|
|
755
|
+
attr_accessor is_default: bool
|
|
756
|
+
attr_accessor name: ::String
|
|
757
|
+
attr_accessor modified: ::Integer
|
|
758
|
+
attr_accessor security_group_settings: Types::SecurityGroupSettings
|
|
759
|
+
SENSITIVE: []
|
|
760
|
+
end
|
|
761
|
+
|
|
762
|
+
class SecurityGroupSettings
|
|
763
|
+
attr_accessor always_reauthenticate: bool
|
|
764
|
+
attr_accessor atak_package_values: ::Array[::String]
|
|
765
|
+
attr_accessor calling: Types::CallingSettings
|
|
766
|
+
attr_accessor check_for_updates: bool
|
|
767
|
+
attr_accessor enable_atak: bool
|
|
768
|
+
attr_accessor enable_crash_reports: bool
|
|
769
|
+
attr_accessor enable_file_download: bool
|
|
770
|
+
attr_accessor enable_guest_federation: bool
|
|
771
|
+
attr_accessor enable_notification_preview: bool
|
|
772
|
+
attr_accessor enable_open_access_option: bool
|
|
773
|
+
attr_accessor enable_restricted_global_federation: bool
|
|
774
|
+
attr_accessor files_enabled: bool
|
|
775
|
+
attr_accessor force_device_lockout: ::Integer
|
|
776
|
+
attr_accessor force_open_access: bool
|
|
777
|
+
attr_accessor force_read_receipts: bool
|
|
778
|
+
attr_accessor global_federation: bool
|
|
779
|
+
attr_accessor is_ato_enabled: bool
|
|
780
|
+
attr_accessor is_link_preview_enabled: bool
|
|
781
|
+
attr_accessor location_allow_maps: bool
|
|
782
|
+
attr_accessor location_enabled: bool
|
|
783
|
+
attr_accessor max_auto_download_size: ::Integer
|
|
784
|
+
attr_accessor max_bor: ::Integer
|
|
785
|
+
attr_accessor max_ttl: ::Integer
|
|
786
|
+
attr_accessor message_forwarding_enabled: bool
|
|
787
|
+
attr_accessor password_requirements: Types::PasswordRequirements
|
|
788
|
+
attr_accessor presence_enabled: bool
|
|
789
|
+
attr_accessor quick_responses: ::Array[::String]
|
|
790
|
+
attr_accessor show_master_recovery_key: bool
|
|
791
|
+
attr_accessor shredder: Types::ShredderSettings
|
|
792
|
+
attr_accessor sso_max_idle_minutes: ::Integer
|
|
793
|
+
attr_accessor federation_mode: ::Integer
|
|
794
|
+
attr_accessor lockout_threshold: ::Integer
|
|
795
|
+
attr_accessor permitted_networks: ::Array[::String]
|
|
796
|
+
attr_accessor permitted_wickr_aws_networks: ::Array[Types::WickrAwsNetworks]
|
|
797
|
+
attr_accessor permitted_wickr_enterprise_networks: ::Array[Types::PermittedWickrEnterpriseNetwork]
|
|
798
|
+
SENSITIVE: []
|
|
799
|
+
end
|
|
800
|
+
|
|
801
|
+
class SecurityGroupSettingsRequest
|
|
802
|
+
attr_accessor lockout_threshold: ::Integer
|
|
803
|
+
attr_accessor permitted_networks: ::Array[::String]
|
|
804
|
+
attr_accessor enable_guest_federation: bool
|
|
805
|
+
attr_accessor global_federation: bool
|
|
806
|
+
attr_accessor federation_mode: ::Integer
|
|
807
|
+
attr_accessor enable_restricted_global_federation: bool
|
|
808
|
+
attr_accessor permitted_wickr_aws_networks: ::Array[Types::WickrAwsNetworks]
|
|
809
|
+
attr_accessor permitted_wickr_enterprise_networks: ::Array[Types::PermittedWickrEnterpriseNetwork]
|
|
810
|
+
SENSITIVE: []
|
|
811
|
+
end
|
|
812
|
+
|
|
813
|
+
class Setting
|
|
814
|
+
attr_accessor option_name: ::String
|
|
815
|
+
attr_accessor value: ::String
|
|
816
|
+
attr_accessor type: ::String
|
|
817
|
+
SENSITIVE: []
|
|
818
|
+
end
|
|
819
|
+
|
|
820
|
+
class ShredderSettings
|
|
821
|
+
attr_accessor can_process_manually: bool
|
|
822
|
+
attr_accessor intensity: ::Integer
|
|
823
|
+
SENSITIVE: []
|
|
824
|
+
end
|
|
825
|
+
|
|
826
|
+
class UnauthorizedError
|
|
827
|
+
attr_accessor message: ::String
|
|
828
|
+
SENSITIVE: []
|
|
829
|
+
end
|
|
830
|
+
|
|
831
|
+
class UpdateBotRequest
|
|
832
|
+
attr_accessor network_id: ::String
|
|
833
|
+
attr_accessor bot_id: ::String
|
|
834
|
+
attr_accessor display_name: ::String
|
|
835
|
+
attr_accessor group_id: ::String
|
|
836
|
+
attr_accessor challenge: ::String
|
|
837
|
+
attr_accessor suspend: bool
|
|
838
|
+
SENSITIVE: [:challenge]
|
|
839
|
+
end
|
|
840
|
+
|
|
841
|
+
class UpdateBotResponse
|
|
842
|
+
attr_accessor message: ::String
|
|
843
|
+
SENSITIVE: []
|
|
844
|
+
end
|
|
845
|
+
|
|
846
|
+
class UpdateDataRetentionRequest
|
|
847
|
+
attr_accessor network_id: ::String
|
|
848
|
+
attr_accessor action_type: ("ENABLE" | "DISABLE" | "PUBKEY_MSG_ACK")
|
|
849
|
+
SENSITIVE: []
|
|
850
|
+
end
|
|
851
|
+
|
|
852
|
+
class UpdateDataRetentionResponse
|
|
853
|
+
attr_accessor message: ::String
|
|
854
|
+
SENSITIVE: []
|
|
855
|
+
end
|
|
856
|
+
|
|
857
|
+
class UpdateGuestUserRequest
|
|
858
|
+
attr_accessor network_id: ::String
|
|
859
|
+
attr_accessor username_hash: ::String
|
|
860
|
+
attr_accessor block: bool
|
|
861
|
+
SENSITIVE: []
|
|
862
|
+
end
|
|
863
|
+
|
|
864
|
+
class UpdateGuestUserResponse
|
|
865
|
+
attr_accessor message: ::String
|
|
866
|
+
SENSITIVE: []
|
|
867
|
+
end
|
|
868
|
+
|
|
869
|
+
class UpdateNetworkRequest
|
|
870
|
+
attr_accessor network_id: ::String
|
|
871
|
+
attr_accessor network_name: ::String
|
|
872
|
+
attr_accessor client_token: ::String
|
|
873
|
+
attr_accessor encryption_key_arn: ::String
|
|
874
|
+
SENSITIVE: []
|
|
875
|
+
end
|
|
876
|
+
|
|
877
|
+
class UpdateNetworkResponse
|
|
878
|
+
attr_accessor message: ::String
|
|
879
|
+
SENSITIVE: []
|
|
880
|
+
end
|
|
881
|
+
|
|
882
|
+
class UpdateNetworkSettingsRequest
|
|
883
|
+
attr_accessor network_id: ::String
|
|
884
|
+
attr_accessor settings: Types::NetworkSettings
|
|
885
|
+
SENSITIVE: []
|
|
886
|
+
end
|
|
887
|
+
|
|
888
|
+
class UpdateNetworkSettingsResponse
|
|
889
|
+
attr_accessor settings: ::Array[Types::Setting]
|
|
890
|
+
SENSITIVE: []
|
|
891
|
+
end
|
|
892
|
+
|
|
893
|
+
class UpdateSecurityGroupRequest
|
|
894
|
+
attr_accessor network_id: ::String
|
|
895
|
+
attr_accessor group_id: ::String
|
|
896
|
+
attr_accessor name: ::String
|
|
897
|
+
attr_accessor security_group_settings: Types::SecurityGroupSettings
|
|
898
|
+
SENSITIVE: []
|
|
899
|
+
end
|
|
900
|
+
|
|
901
|
+
class UpdateSecurityGroupResponse
|
|
902
|
+
attr_accessor security_group: Types::SecurityGroup
|
|
903
|
+
SENSITIVE: []
|
|
904
|
+
end
|
|
905
|
+
|
|
906
|
+
class UpdateUserDetails
|
|
907
|
+
attr_accessor first_name: ::String
|
|
908
|
+
attr_accessor last_name: ::String
|
|
909
|
+
attr_accessor username: ::String
|
|
910
|
+
attr_accessor security_group_ids: ::Array[::String]
|
|
911
|
+
attr_accessor invite_code: ::String
|
|
912
|
+
attr_accessor invite_code_ttl: ::Integer
|
|
913
|
+
attr_accessor code_validation: bool
|
|
914
|
+
SENSITIVE: [:first_name, :last_name]
|
|
915
|
+
end
|
|
916
|
+
|
|
917
|
+
class UpdateUserRequest
|
|
918
|
+
attr_accessor network_id: ::String
|
|
919
|
+
attr_accessor user_id: ::String
|
|
920
|
+
attr_accessor user_details: Types::UpdateUserDetails
|
|
921
|
+
SENSITIVE: []
|
|
922
|
+
end
|
|
923
|
+
|
|
924
|
+
class UpdateUserResponse
|
|
925
|
+
attr_accessor user_id: ::String
|
|
926
|
+
attr_accessor network_id: ::String
|
|
927
|
+
attr_accessor security_group_ids: ::Array[::String]
|
|
928
|
+
attr_accessor first_name: ::String
|
|
929
|
+
attr_accessor last_name: ::String
|
|
930
|
+
attr_accessor middle_name: ::String
|
|
931
|
+
attr_accessor suspended: bool
|
|
932
|
+
attr_accessor modified: ::Integer
|
|
933
|
+
attr_accessor status: ::Integer
|
|
934
|
+
attr_accessor invite_code: ::String
|
|
935
|
+
attr_accessor invite_expiration: ::Integer
|
|
936
|
+
attr_accessor code_validation: bool
|
|
937
|
+
SENSITIVE: [:first_name, :last_name]
|
|
938
|
+
end
|
|
939
|
+
|
|
940
|
+
class User
|
|
941
|
+
attr_accessor user_id: ::String
|
|
942
|
+
attr_accessor first_name: ::String
|
|
943
|
+
attr_accessor last_name: ::String
|
|
944
|
+
attr_accessor username: ::String
|
|
945
|
+
attr_accessor security_groups: ::Array[::String]
|
|
946
|
+
attr_accessor is_admin: bool
|
|
947
|
+
attr_accessor suspended: bool
|
|
948
|
+
attr_accessor status: ::Integer
|
|
949
|
+
attr_accessor otp_enabled: bool
|
|
950
|
+
attr_accessor scim_id: ::String
|
|
951
|
+
attr_accessor type: ::String
|
|
952
|
+
attr_accessor cell: ::String
|
|
953
|
+
attr_accessor country_code: ::String
|
|
954
|
+
attr_accessor challenge_failures: ::Integer
|
|
955
|
+
attr_accessor is_invite_expired: bool
|
|
956
|
+
attr_accessor is_user: bool
|
|
957
|
+
attr_accessor invite_code: ::String
|
|
958
|
+
attr_accessor code_validation: bool
|
|
959
|
+
attr_accessor uname: ::String
|
|
960
|
+
SENSITIVE: [:first_name, :last_name]
|
|
961
|
+
end
|
|
962
|
+
|
|
963
|
+
class ValidationError
|
|
964
|
+
attr_accessor reasons: ::Array[Types::ErrorDetail]
|
|
965
|
+
SENSITIVE: []
|
|
966
|
+
end
|
|
967
|
+
|
|
968
|
+
class WickrAwsNetworks
|
|
969
|
+
attr_accessor region: ::String
|
|
970
|
+
attr_accessor network_id: ::String
|
|
971
|
+
SENSITIVE: []
|
|
972
|
+
end
|
|
973
|
+
end
|
|
974
|
+
end
|