@aws-sdk/client-wickr 3.956.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.
Files changed (227) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +541 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +2520 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +55 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +41 -0
  11. package/dist-es/Wickr.js +91 -0
  12. package/dist-es/WickrClient.js +50 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  15. package/dist-es/commands/BatchCreateUserCommand.js +16 -0
  16. package/dist-es/commands/BatchDeleteUserCommand.js +16 -0
  17. package/dist-es/commands/BatchLookupUserUnameCommand.js +16 -0
  18. package/dist-es/commands/BatchReinviteUserCommand.js +16 -0
  19. package/dist-es/commands/BatchResetDevicesForUserCommand.js +16 -0
  20. package/dist-es/commands/BatchToggleUserSuspendStatusCommand.js +16 -0
  21. package/dist-es/commands/CreateBotCommand.js +16 -0
  22. package/dist-es/commands/CreateDataRetentionBotChallengeCommand.js +16 -0
  23. package/dist-es/commands/CreateDataRetentionBotCommand.js +16 -0
  24. package/dist-es/commands/CreateNetworkCommand.js +16 -0
  25. package/dist-es/commands/CreateSecurityGroupCommand.js +16 -0
  26. package/dist-es/commands/DeleteBotCommand.js +16 -0
  27. package/dist-es/commands/DeleteDataRetentionBotCommand.js +16 -0
  28. package/dist-es/commands/DeleteNetworkCommand.js +16 -0
  29. package/dist-es/commands/DeleteSecurityGroupCommand.js +16 -0
  30. package/dist-es/commands/GetBotCommand.js +16 -0
  31. package/dist-es/commands/GetBotsCountCommand.js +16 -0
  32. package/dist-es/commands/GetDataRetentionBotCommand.js +16 -0
  33. package/dist-es/commands/GetGuestUserHistoryCountCommand.js +16 -0
  34. package/dist-es/commands/GetNetworkCommand.js +16 -0
  35. package/dist-es/commands/GetNetworkSettingsCommand.js +16 -0
  36. package/dist-es/commands/GetOidcInfoCommand.js +16 -0
  37. package/dist-es/commands/GetSecurityGroupCommand.js +16 -0
  38. package/dist-es/commands/GetUserCommand.js +16 -0
  39. package/dist-es/commands/GetUsersCountCommand.js +16 -0
  40. package/dist-es/commands/ListBlockedGuestUsersCommand.js +16 -0
  41. package/dist-es/commands/ListBotsCommand.js +16 -0
  42. package/dist-es/commands/ListDevicesForUserCommand.js +16 -0
  43. package/dist-es/commands/ListGuestUsersCommand.js +16 -0
  44. package/dist-es/commands/ListNetworksCommand.js +16 -0
  45. package/dist-es/commands/ListSecurityGroupUsersCommand.js +16 -0
  46. package/dist-es/commands/ListSecurityGroupsCommand.js +16 -0
  47. package/dist-es/commands/ListUsersCommand.js +16 -0
  48. package/dist-es/commands/RegisterOidcConfigCommand.js +16 -0
  49. package/dist-es/commands/RegisterOidcConfigTestCommand.js +16 -0
  50. package/dist-es/commands/UpdateBotCommand.js +16 -0
  51. package/dist-es/commands/UpdateDataRetentionCommand.js +16 -0
  52. package/dist-es/commands/UpdateGuestUserCommand.js +16 -0
  53. package/dist-es/commands/UpdateNetworkCommand.js +16 -0
  54. package/dist-es/commands/UpdateNetworkSettingsCommand.js +16 -0
  55. package/dist-es/commands/UpdateSecurityGroupCommand.js +16 -0
  56. package/dist-es/commands/UpdateUserCommand.js +16 -0
  57. package/dist-es/commands/index.js +42 -0
  58. package/dist-es/endpoint/EndpointParameters.js +13 -0
  59. package/dist-es/endpoint/endpointResolver.js +14 -0
  60. package/dist-es/endpoint/ruleset.js +4 -0
  61. package/dist-es/extensionConfiguration.js +1 -0
  62. package/dist-es/index.js +9 -0
  63. package/dist-es/models/WickrServiceException.js +8 -0
  64. package/dist-es/models/enums.js +28 -0
  65. package/dist-es/models/errors.js +87 -0
  66. package/dist-es/models/models_0.js +1 -0
  67. package/dist-es/pagination/Interfaces.js +1 -0
  68. package/dist-es/pagination/ListBlockedGuestUsersPaginator.js +4 -0
  69. package/dist-es/pagination/ListBotsPaginator.js +4 -0
  70. package/dist-es/pagination/ListDevicesForUserPaginator.js +4 -0
  71. package/dist-es/pagination/ListGuestUsersPaginator.js +4 -0
  72. package/dist-es/pagination/ListNetworksPaginator.js +4 -0
  73. package/dist-es/pagination/ListSecurityGroupUsersPaginator.js +4 -0
  74. package/dist-es/pagination/ListSecurityGroupsPaginator.js +4 -0
  75. package/dist-es/pagination/ListUsersPaginator.js +4 -0
  76. package/dist-es/pagination/index.js +9 -0
  77. package/dist-es/runtimeConfig.browser.js +34 -0
  78. package/dist-es/runtimeConfig.js +50 -0
  79. package/dist-es/runtimeConfig.native.js +11 -0
  80. package/dist-es/runtimeConfig.shared.js +37 -0
  81. package/dist-es/runtimeExtensions.js +9 -0
  82. package/dist-es/schemas/schemas_0.js +1491 -0
  83. package/dist-types/Wickr.d.ts +305 -0
  84. package/dist-types/WickrClient.d.ts +229 -0
  85. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  86. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  87. package/dist-types/commands/BatchCreateUserCommand.d.ts +251 -0
  88. package/dist-types/commands/BatchDeleteUserCommand.d.ts +171 -0
  89. package/dist-types/commands/BatchLookupUserUnameCommand.d.ts +175 -0
  90. package/dist-types/commands/BatchReinviteUserCommand.d.ts +191 -0
  91. package/dist-types/commands/BatchResetDevicesForUserCommand.d.ts +190 -0
  92. package/dist-types/commands/BatchToggleUserSuspendStatusCommand.d.ts +174 -0
  93. package/dist-types/commands/CreateBotCommand.d.ts +161 -0
  94. package/dist-types/commands/CreateDataRetentionBotChallengeCommand.d.ts +110 -0
  95. package/dist-types/commands/CreateDataRetentionBotCommand.d.ts +123 -0
  96. package/dist-types/commands/CreateNetworkCommand.d.ts +150 -0
  97. package/dist-types/commands/CreateSecurityGroupCommand.d.ts +241 -0
  98. package/dist-types/commands/DeleteBotCommand.d.ts +126 -0
  99. package/dist-types/commands/DeleteDataRetentionBotCommand.d.ts +110 -0
  100. package/dist-types/commands/DeleteNetworkCommand.d.ts +124 -0
  101. package/dist-types/commands/DeleteSecurityGroupCommand.d.ts +130 -0
  102. package/dist-types/commands/GetBotCommand.d.ts +144 -0
  103. package/dist-types/commands/GetBotsCountCommand.d.ts +131 -0
  104. package/dist-types/commands/GetDataRetentionBotCommand.d.ts +140 -0
  105. package/dist-types/commands/GetGuestUserHistoryCountCommand.d.ts +155 -0
  106. package/dist-types/commands/GetNetworkCommand.d.ts +137 -0
  107. package/dist-types/commands/GetNetworkSettingsCommand.d.ts +166 -0
  108. package/dist-types/commands/GetOidcInfoCommand.d.ts +169 -0
  109. package/dist-types/commands/GetSecurityGroupCommand.d.ts +211 -0
  110. package/dist-types/commands/GetUserCommand.d.ts +194 -0
  111. package/dist-types/commands/GetUsersCountCommand.d.ts +137 -0
  112. package/dist-types/commands/ListBlockedGuestUsersCommand.d.ts +185 -0
  113. package/dist-types/commands/ListBotsCommand.d.ts +192 -0
  114. package/dist-types/commands/ListDevicesForUserCommand.d.ts +197 -0
  115. package/dist-types/commands/ListGuestUsersCommand.d.ts +192 -0
  116. package/dist-types/commands/ListNetworksCommand.d.ts +167 -0
  117. package/dist-types/commands/ListSecurityGroupUsersCommand.d.ts +156 -0
  118. package/dist-types/commands/ListSecurityGroupsCommand.d.ts +246 -0
  119. package/dist-types/commands/ListUsersCommand.d.ts +221 -0
  120. package/dist-types/commands/RegisterOidcConfigCommand.d.ts +174 -0
  121. package/dist-types/commands/RegisterOidcConfigTestCommand.d.ts +168 -0
  122. package/dist-types/commands/UpdateBotCommand.d.ts +133 -0
  123. package/dist-types/commands/UpdateDataRetentionCommand.d.ts +144 -0
  124. package/dist-types/commands/UpdateGuestUserCommand.d.ts +146 -0
  125. package/dist-types/commands/UpdateNetworkCommand.d.ts +142 -0
  126. package/dist-types/commands/UpdateNetworkSettingsCommand.d.ts +234 -0
  127. package/dist-types/commands/UpdateSecurityGroupCommand.d.ts +282 -0
  128. package/dist-types/commands/UpdateUserCommand.d.ts +229 -0
  129. package/dist-types/commands/index.d.ts +42 -0
  130. package/dist-types/endpoint/EndpointParameters.d.ts +50 -0
  131. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  132. package/dist-types/endpoint/ruleset.d.ts +2 -0
  133. package/dist-types/extensionConfiguration.d.ts +9 -0
  134. package/dist-types/index.d.ts +17 -0
  135. package/dist-types/models/WickrServiceException.d.ts +14 -0
  136. package/dist-types/models/enums.d.ts +58 -0
  137. package/dist-types/models/errors.d.ts +92 -0
  138. package/dist-types/models/models_0.d.ts +2975 -0
  139. package/dist-types/pagination/Interfaces.d.ts +8 -0
  140. package/dist-types/pagination/ListBlockedGuestUsersPaginator.d.ts +7 -0
  141. package/dist-types/pagination/ListBotsPaginator.d.ts +7 -0
  142. package/dist-types/pagination/ListDevicesForUserPaginator.d.ts +7 -0
  143. package/dist-types/pagination/ListGuestUsersPaginator.d.ts +7 -0
  144. package/dist-types/pagination/ListNetworksPaginator.d.ts +7 -0
  145. package/dist-types/pagination/ListSecurityGroupUsersPaginator.d.ts +7 -0
  146. package/dist-types/pagination/ListSecurityGroupsPaginator.d.ts +7 -0
  147. package/dist-types/pagination/ListUsersPaginator.d.ts +7 -0
  148. package/dist-types/pagination/index.d.ts +9 -0
  149. package/dist-types/runtimeConfig.browser.d.ts +55 -0
  150. package/dist-types/runtimeConfig.d.ts +55 -0
  151. package/dist-types/runtimeConfig.native.d.ts +54 -0
  152. package/dist-types/runtimeConfig.shared.d.ts +27 -0
  153. package/dist-types/runtimeExtensions.d.ts +17 -0
  154. package/dist-types/schemas/schemas_0.d.ts +164 -0
  155. package/dist-types/ts3.4/Wickr.d.ts +720 -0
  156. package/dist-types/ts3.4/WickrClient.d.ts +371 -0
  157. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  158. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  159. package/dist-types/ts3.4/commands/BatchCreateUserCommand.d.ts +50 -0
  160. package/dist-types/ts3.4/commands/BatchDeleteUserCommand.d.ts +50 -0
  161. package/dist-types/ts3.4/commands/BatchLookupUserUnameCommand.d.ts +51 -0
  162. package/dist-types/ts3.4/commands/BatchReinviteUserCommand.d.ts +51 -0
  163. package/dist-types/ts3.4/commands/BatchResetDevicesForUserCommand.d.ts +51 -0
  164. package/dist-types/ts3.4/commands/BatchToggleUserSuspendStatusCommand.d.ts +51 -0
  165. package/dist-types/ts3.4/commands/CreateBotCommand.d.ts +47 -0
  166. package/dist-types/ts3.4/commands/CreateDataRetentionBotChallengeCommand.d.ts +51 -0
  167. package/dist-types/ts3.4/commands/CreateDataRetentionBotCommand.d.ts +51 -0
  168. package/dist-types/ts3.4/commands/CreateNetworkCommand.d.ts +50 -0
  169. package/dist-types/ts3.4/commands/CreateSecurityGroupCommand.d.ts +51 -0
  170. package/dist-types/ts3.4/commands/DeleteBotCommand.d.ts +47 -0
  171. package/dist-types/ts3.4/commands/DeleteDataRetentionBotCommand.d.ts +51 -0
  172. package/dist-types/ts3.4/commands/DeleteNetworkCommand.d.ts +50 -0
  173. package/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +51 -0
  174. package/dist-types/ts3.4/commands/GetBotCommand.d.ts +41 -0
  175. package/dist-types/ts3.4/commands/GetBotsCountCommand.d.ts +47 -0
  176. package/dist-types/ts3.4/commands/GetDataRetentionBotCommand.d.ts +51 -0
  177. package/dist-types/ts3.4/commands/GetGuestUserHistoryCountCommand.d.ts +51 -0
  178. package/dist-types/ts3.4/commands/GetNetworkCommand.d.ts +47 -0
  179. package/dist-types/ts3.4/commands/GetNetworkSettingsCommand.d.ts +51 -0
  180. package/dist-types/ts3.4/commands/GetOidcInfoCommand.d.ts +47 -0
  181. package/dist-types/ts3.4/commands/GetSecurityGroupCommand.d.ts +50 -0
  182. package/dist-types/ts3.4/commands/GetUserCommand.d.ts +43 -0
  183. package/dist-types/ts3.4/commands/GetUsersCountCommand.d.ts +50 -0
  184. package/dist-types/ts3.4/commands/ListBlockedGuestUsersCommand.d.ts +51 -0
  185. package/dist-types/ts3.4/commands/ListBotsCommand.d.ts +47 -0
  186. package/dist-types/ts3.4/commands/ListDevicesForUserCommand.d.ts +51 -0
  187. package/dist-types/ts3.4/commands/ListGuestUsersCommand.d.ts +50 -0
  188. package/dist-types/ts3.4/commands/ListNetworksCommand.d.ts +47 -0
  189. package/dist-types/ts3.4/commands/ListSecurityGroupUsersCommand.d.ts +51 -0
  190. package/dist-types/ts3.4/commands/ListSecurityGroupsCommand.d.ts +51 -0
  191. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +47 -0
  192. package/dist-types/ts3.4/commands/RegisterOidcConfigCommand.d.ts +51 -0
  193. package/dist-types/ts3.4/commands/RegisterOidcConfigTestCommand.d.ts +51 -0
  194. package/dist-types/ts3.4/commands/UpdateBotCommand.d.ts +47 -0
  195. package/dist-types/ts3.4/commands/UpdateDataRetentionCommand.d.ts +51 -0
  196. package/dist-types/ts3.4/commands/UpdateGuestUserCommand.d.ts +50 -0
  197. package/dist-types/ts3.4/commands/UpdateNetworkCommand.d.ts +50 -0
  198. package/dist-types/ts3.4/commands/UpdateNetworkSettingsCommand.d.ts +51 -0
  199. package/dist-types/ts3.4/commands/UpdateSecurityGroupCommand.d.ts +51 -0
  200. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +47 -0
  201. package/dist-types/ts3.4/commands/index.d.ts +42 -0
  202. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  203. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  204. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  205. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  206. package/dist-types/ts3.4/index.d.ts +12 -0
  207. package/dist-types/ts3.4/models/WickrServiceException.d.ts +9 -0
  208. package/dist-types/ts3.4/models/enums.d.ts +31 -0
  209. package/dist-types/ts3.4/models/errors.d.ts +43 -0
  210. package/dist-types/ts3.4/models/models_0.d.ts +714 -0
  211. package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  212. package/dist-types/ts3.4/pagination/ListBlockedGuestUsersPaginator.d.ts +11 -0
  213. package/dist-types/ts3.4/pagination/ListBotsPaginator.d.ts +11 -0
  214. package/dist-types/ts3.4/pagination/ListDevicesForUserPaginator.d.ts +11 -0
  215. package/dist-types/ts3.4/pagination/ListGuestUsersPaginator.d.ts +11 -0
  216. package/dist-types/ts3.4/pagination/ListNetworksPaginator.d.ts +11 -0
  217. package/dist-types/ts3.4/pagination/ListSecurityGroupUsersPaginator.d.ts +11 -0
  218. package/dist-types/ts3.4/pagination/ListSecurityGroupsPaginator.d.ts +11 -0
  219. package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -0
  220. package/dist-types/ts3.4/pagination/index.d.ts +9 -0
  221. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +100 -0
  222. package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
  223. package/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
  224. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
  225. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  226. package/dist-types/ts3.4/schemas/schemas_0.d.ts +168 -0
  227. package/package.json +100 -0
@@ -0,0 +1,720 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ BatchCreateUserCommandInput,
4
+ BatchCreateUserCommandOutput,
5
+ } from "./commands/BatchCreateUserCommand";
6
+ import {
7
+ BatchDeleteUserCommandInput,
8
+ BatchDeleteUserCommandOutput,
9
+ } from "./commands/BatchDeleteUserCommand";
10
+ import {
11
+ BatchLookupUserUnameCommandInput,
12
+ BatchLookupUserUnameCommandOutput,
13
+ } from "./commands/BatchLookupUserUnameCommand";
14
+ import {
15
+ BatchReinviteUserCommandInput,
16
+ BatchReinviteUserCommandOutput,
17
+ } from "./commands/BatchReinviteUserCommand";
18
+ import {
19
+ BatchResetDevicesForUserCommandInput,
20
+ BatchResetDevicesForUserCommandOutput,
21
+ } from "./commands/BatchResetDevicesForUserCommand";
22
+ import {
23
+ BatchToggleUserSuspendStatusCommandInput,
24
+ BatchToggleUserSuspendStatusCommandOutput,
25
+ } from "./commands/BatchToggleUserSuspendStatusCommand";
26
+ import {
27
+ CreateBotCommandInput,
28
+ CreateBotCommandOutput,
29
+ } from "./commands/CreateBotCommand";
30
+ import {
31
+ CreateDataRetentionBotChallengeCommandInput,
32
+ CreateDataRetentionBotChallengeCommandOutput,
33
+ } from "./commands/CreateDataRetentionBotChallengeCommand";
34
+ import {
35
+ CreateDataRetentionBotCommandInput,
36
+ CreateDataRetentionBotCommandOutput,
37
+ } from "./commands/CreateDataRetentionBotCommand";
38
+ import {
39
+ CreateNetworkCommandInput,
40
+ CreateNetworkCommandOutput,
41
+ } from "./commands/CreateNetworkCommand";
42
+ import {
43
+ CreateSecurityGroupCommandInput,
44
+ CreateSecurityGroupCommandOutput,
45
+ } from "./commands/CreateSecurityGroupCommand";
46
+ import {
47
+ DeleteBotCommandInput,
48
+ DeleteBotCommandOutput,
49
+ } from "./commands/DeleteBotCommand";
50
+ import {
51
+ DeleteDataRetentionBotCommandInput,
52
+ DeleteDataRetentionBotCommandOutput,
53
+ } from "./commands/DeleteDataRetentionBotCommand";
54
+ import {
55
+ DeleteNetworkCommandInput,
56
+ DeleteNetworkCommandOutput,
57
+ } from "./commands/DeleteNetworkCommand";
58
+ import {
59
+ DeleteSecurityGroupCommandInput,
60
+ DeleteSecurityGroupCommandOutput,
61
+ } from "./commands/DeleteSecurityGroupCommand";
62
+ import {
63
+ GetBotCommandInput,
64
+ GetBotCommandOutput,
65
+ } from "./commands/GetBotCommand";
66
+ import {
67
+ GetBotsCountCommandInput,
68
+ GetBotsCountCommandOutput,
69
+ } from "./commands/GetBotsCountCommand";
70
+ import {
71
+ GetDataRetentionBotCommandInput,
72
+ GetDataRetentionBotCommandOutput,
73
+ } from "./commands/GetDataRetentionBotCommand";
74
+ import {
75
+ GetGuestUserHistoryCountCommandInput,
76
+ GetGuestUserHistoryCountCommandOutput,
77
+ } from "./commands/GetGuestUserHistoryCountCommand";
78
+ import {
79
+ GetNetworkCommandInput,
80
+ GetNetworkCommandOutput,
81
+ } from "./commands/GetNetworkCommand";
82
+ import {
83
+ GetNetworkSettingsCommandInput,
84
+ GetNetworkSettingsCommandOutput,
85
+ } from "./commands/GetNetworkSettingsCommand";
86
+ import {
87
+ GetOidcInfoCommandInput,
88
+ GetOidcInfoCommandOutput,
89
+ } from "./commands/GetOidcInfoCommand";
90
+ import {
91
+ GetSecurityGroupCommandInput,
92
+ GetSecurityGroupCommandOutput,
93
+ } from "./commands/GetSecurityGroupCommand";
94
+ import {
95
+ GetUserCommandInput,
96
+ GetUserCommandOutput,
97
+ } from "./commands/GetUserCommand";
98
+ import {
99
+ GetUsersCountCommandInput,
100
+ GetUsersCountCommandOutput,
101
+ } from "./commands/GetUsersCountCommand";
102
+ import {
103
+ ListBlockedGuestUsersCommandInput,
104
+ ListBlockedGuestUsersCommandOutput,
105
+ } from "./commands/ListBlockedGuestUsersCommand";
106
+ import {
107
+ ListBotsCommandInput,
108
+ ListBotsCommandOutput,
109
+ } from "./commands/ListBotsCommand";
110
+ import {
111
+ ListDevicesForUserCommandInput,
112
+ ListDevicesForUserCommandOutput,
113
+ } from "./commands/ListDevicesForUserCommand";
114
+ import {
115
+ ListGuestUsersCommandInput,
116
+ ListGuestUsersCommandOutput,
117
+ } from "./commands/ListGuestUsersCommand";
118
+ import {
119
+ ListNetworksCommandInput,
120
+ ListNetworksCommandOutput,
121
+ } from "./commands/ListNetworksCommand";
122
+ import {
123
+ ListSecurityGroupsCommandInput,
124
+ ListSecurityGroupsCommandOutput,
125
+ } from "./commands/ListSecurityGroupsCommand";
126
+ import {
127
+ ListSecurityGroupUsersCommandInput,
128
+ ListSecurityGroupUsersCommandOutput,
129
+ } from "./commands/ListSecurityGroupUsersCommand";
130
+ import {
131
+ ListUsersCommandInput,
132
+ ListUsersCommandOutput,
133
+ } from "./commands/ListUsersCommand";
134
+ import {
135
+ RegisterOidcConfigCommandInput,
136
+ RegisterOidcConfigCommandOutput,
137
+ } from "./commands/RegisterOidcConfigCommand";
138
+ import {
139
+ RegisterOidcConfigTestCommandInput,
140
+ RegisterOidcConfigTestCommandOutput,
141
+ } from "./commands/RegisterOidcConfigTestCommand";
142
+ import {
143
+ UpdateBotCommandInput,
144
+ UpdateBotCommandOutput,
145
+ } from "./commands/UpdateBotCommand";
146
+ import {
147
+ UpdateDataRetentionCommandInput,
148
+ UpdateDataRetentionCommandOutput,
149
+ } from "./commands/UpdateDataRetentionCommand";
150
+ import {
151
+ UpdateGuestUserCommandInput,
152
+ UpdateGuestUserCommandOutput,
153
+ } from "./commands/UpdateGuestUserCommand";
154
+ import {
155
+ UpdateNetworkCommandInput,
156
+ UpdateNetworkCommandOutput,
157
+ } from "./commands/UpdateNetworkCommand";
158
+ import {
159
+ UpdateNetworkSettingsCommandInput,
160
+ UpdateNetworkSettingsCommandOutput,
161
+ } from "./commands/UpdateNetworkSettingsCommand";
162
+ import {
163
+ UpdateSecurityGroupCommandInput,
164
+ UpdateSecurityGroupCommandOutput,
165
+ } from "./commands/UpdateSecurityGroupCommand";
166
+ import {
167
+ UpdateUserCommandInput,
168
+ UpdateUserCommandOutput,
169
+ } from "./commands/UpdateUserCommand";
170
+ import { WickrClient } from "./WickrClient";
171
+ export interface Wickr {
172
+ batchCreateUser(
173
+ args: BatchCreateUserCommandInput,
174
+ options?: __HttpHandlerOptions
175
+ ): Promise<BatchCreateUserCommandOutput>;
176
+ batchCreateUser(
177
+ args: BatchCreateUserCommandInput,
178
+ cb: (err: any, data?: BatchCreateUserCommandOutput) => void
179
+ ): void;
180
+ batchCreateUser(
181
+ args: BatchCreateUserCommandInput,
182
+ options: __HttpHandlerOptions,
183
+ cb: (err: any, data?: BatchCreateUserCommandOutput) => void
184
+ ): void;
185
+ batchDeleteUser(
186
+ args: BatchDeleteUserCommandInput,
187
+ options?: __HttpHandlerOptions
188
+ ): Promise<BatchDeleteUserCommandOutput>;
189
+ batchDeleteUser(
190
+ args: BatchDeleteUserCommandInput,
191
+ cb: (err: any, data?: BatchDeleteUserCommandOutput) => void
192
+ ): void;
193
+ batchDeleteUser(
194
+ args: BatchDeleteUserCommandInput,
195
+ options: __HttpHandlerOptions,
196
+ cb: (err: any, data?: BatchDeleteUserCommandOutput) => void
197
+ ): void;
198
+ batchLookupUserUname(
199
+ args: BatchLookupUserUnameCommandInput,
200
+ options?: __HttpHandlerOptions
201
+ ): Promise<BatchLookupUserUnameCommandOutput>;
202
+ batchLookupUserUname(
203
+ args: BatchLookupUserUnameCommandInput,
204
+ cb: (err: any, data?: BatchLookupUserUnameCommandOutput) => void
205
+ ): void;
206
+ batchLookupUserUname(
207
+ args: BatchLookupUserUnameCommandInput,
208
+ options: __HttpHandlerOptions,
209
+ cb: (err: any, data?: BatchLookupUserUnameCommandOutput) => void
210
+ ): void;
211
+ batchReinviteUser(
212
+ args: BatchReinviteUserCommandInput,
213
+ options?: __HttpHandlerOptions
214
+ ): Promise<BatchReinviteUserCommandOutput>;
215
+ batchReinviteUser(
216
+ args: BatchReinviteUserCommandInput,
217
+ cb: (err: any, data?: BatchReinviteUserCommandOutput) => void
218
+ ): void;
219
+ batchReinviteUser(
220
+ args: BatchReinviteUserCommandInput,
221
+ options: __HttpHandlerOptions,
222
+ cb: (err: any, data?: BatchReinviteUserCommandOutput) => void
223
+ ): void;
224
+ batchResetDevicesForUser(
225
+ args: BatchResetDevicesForUserCommandInput,
226
+ options?: __HttpHandlerOptions
227
+ ): Promise<BatchResetDevicesForUserCommandOutput>;
228
+ batchResetDevicesForUser(
229
+ args: BatchResetDevicesForUserCommandInput,
230
+ cb: (err: any, data?: BatchResetDevicesForUserCommandOutput) => void
231
+ ): void;
232
+ batchResetDevicesForUser(
233
+ args: BatchResetDevicesForUserCommandInput,
234
+ options: __HttpHandlerOptions,
235
+ cb: (err: any, data?: BatchResetDevicesForUserCommandOutput) => void
236
+ ): void;
237
+ batchToggleUserSuspendStatus(
238
+ args: BatchToggleUserSuspendStatusCommandInput,
239
+ options?: __HttpHandlerOptions
240
+ ): Promise<BatchToggleUserSuspendStatusCommandOutput>;
241
+ batchToggleUserSuspendStatus(
242
+ args: BatchToggleUserSuspendStatusCommandInput,
243
+ cb: (err: any, data?: BatchToggleUserSuspendStatusCommandOutput) => void
244
+ ): void;
245
+ batchToggleUserSuspendStatus(
246
+ args: BatchToggleUserSuspendStatusCommandInput,
247
+ options: __HttpHandlerOptions,
248
+ cb: (err: any, data?: BatchToggleUserSuspendStatusCommandOutput) => void
249
+ ): void;
250
+ createBot(
251
+ args: CreateBotCommandInput,
252
+ options?: __HttpHandlerOptions
253
+ ): Promise<CreateBotCommandOutput>;
254
+ createBot(
255
+ args: CreateBotCommandInput,
256
+ cb: (err: any, data?: CreateBotCommandOutput) => void
257
+ ): void;
258
+ createBot(
259
+ args: CreateBotCommandInput,
260
+ options: __HttpHandlerOptions,
261
+ cb: (err: any, data?: CreateBotCommandOutput) => void
262
+ ): void;
263
+ createDataRetentionBot(
264
+ args: CreateDataRetentionBotCommandInput,
265
+ options?: __HttpHandlerOptions
266
+ ): Promise<CreateDataRetentionBotCommandOutput>;
267
+ createDataRetentionBot(
268
+ args: CreateDataRetentionBotCommandInput,
269
+ cb: (err: any, data?: CreateDataRetentionBotCommandOutput) => void
270
+ ): void;
271
+ createDataRetentionBot(
272
+ args: CreateDataRetentionBotCommandInput,
273
+ options: __HttpHandlerOptions,
274
+ cb: (err: any, data?: CreateDataRetentionBotCommandOutput) => void
275
+ ): void;
276
+ createDataRetentionBotChallenge(
277
+ args: CreateDataRetentionBotChallengeCommandInput,
278
+ options?: __HttpHandlerOptions
279
+ ): Promise<CreateDataRetentionBotChallengeCommandOutput>;
280
+ createDataRetentionBotChallenge(
281
+ args: CreateDataRetentionBotChallengeCommandInput,
282
+ cb: (err: any, data?: CreateDataRetentionBotChallengeCommandOutput) => void
283
+ ): void;
284
+ createDataRetentionBotChallenge(
285
+ args: CreateDataRetentionBotChallengeCommandInput,
286
+ options: __HttpHandlerOptions,
287
+ cb: (err: any, data?: CreateDataRetentionBotChallengeCommandOutput) => void
288
+ ): void;
289
+ createNetwork(
290
+ args: CreateNetworkCommandInput,
291
+ options?: __HttpHandlerOptions
292
+ ): Promise<CreateNetworkCommandOutput>;
293
+ createNetwork(
294
+ args: CreateNetworkCommandInput,
295
+ cb: (err: any, data?: CreateNetworkCommandOutput) => void
296
+ ): void;
297
+ createNetwork(
298
+ args: CreateNetworkCommandInput,
299
+ options: __HttpHandlerOptions,
300
+ cb: (err: any, data?: CreateNetworkCommandOutput) => void
301
+ ): void;
302
+ createSecurityGroup(
303
+ args: CreateSecurityGroupCommandInput,
304
+ options?: __HttpHandlerOptions
305
+ ): Promise<CreateSecurityGroupCommandOutput>;
306
+ createSecurityGroup(
307
+ args: CreateSecurityGroupCommandInput,
308
+ cb: (err: any, data?: CreateSecurityGroupCommandOutput) => void
309
+ ): void;
310
+ createSecurityGroup(
311
+ args: CreateSecurityGroupCommandInput,
312
+ options: __HttpHandlerOptions,
313
+ cb: (err: any, data?: CreateSecurityGroupCommandOutput) => void
314
+ ): void;
315
+ deleteBot(
316
+ args: DeleteBotCommandInput,
317
+ options?: __HttpHandlerOptions
318
+ ): Promise<DeleteBotCommandOutput>;
319
+ deleteBot(
320
+ args: DeleteBotCommandInput,
321
+ cb: (err: any, data?: DeleteBotCommandOutput) => void
322
+ ): void;
323
+ deleteBot(
324
+ args: DeleteBotCommandInput,
325
+ options: __HttpHandlerOptions,
326
+ cb: (err: any, data?: DeleteBotCommandOutput) => void
327
+ ): void;
328
+ deleteDataRetentionBot(
329
+ args: DeleteDataRetentionBotCommandInput,
330
+ options?: __HttpHandlerOptions
331
+ ): Promise<DeleteDataRetentionBotCommandOutput>;
332
+ deleteDataRetentionBot(
333
+ args: DeleteDataRetentionBotCommandInput,
334
+ cb: (err: any, data?: DeleteDataRetentionBotCommandOutput) => void
335
+ ): void;
336
+ deleteDataRetentionBot(
337
+ args: DeleteDataRetentionBotCommandInput,
338
+ options: __HttpHandlerOptions,
339
+ cb: (err: any, data?: DeleteDataRetentionBotCommandOutput) => void
340
+ ): void;
341
+ deleteNetwork(
342
+ args: DeleteNetworkCommandInput,
343
+ options?: __HttpHandlerOptions
344
+ ): Promise<DeleteNetworkCommandOutput>;
345
+ deleteNetwork(
346
+ args: DeleteNetworkCommandInput,
347
+ cb: (err: any, data?: DeleteNetworkCommandOutput) => void
348
+ ): void;
349
+ deleteNetwork(
350
+ args: DeleteNetworkCommandInput,
351
+ options: __HttpHandlerOptions,
352
+ cb: (err: any, data?: DeleteNetworkCommandOutput) => void
353
+ ): void;
354
+ deleteSecurityGroup(
355
+ args: DeleteSecurityGroupCommandInput,
356
+ options?: __HttpHandlerOptions
357
+ ): Promise<DeleteSecurityGroupCommandOutput>;
358
+ deleteSecurityGroup(
359
+ args: DeleteSecurityGroupCommandInput,
360
+ cb: (err: any, data?: DeleteSecurityGroupCommandOutput) => void
361
+ ): void;
362
+ deleteSecurityGroup(
363
+ args: DeleteSecurityGroupCommandInput,
364
+ options: __HttpHandlerOptions,
365
+ cb: (err: any, data?: DeleteSecurityGroupCommandOutput) => void
366
+ ): void;
367
+ getBot(
368
+ args: GetBotCommandInput,
369
+ options?: __HttpHandlerOptions
370
+ ): Promise<GetBotCommandOutput>;
371
+ getBot(
372
+ args: GetBotCommandInput,
373
+ cb: (err: any, data?: GetBotCommandOutput) => void
374
+ ): void;
375
+ getBot(
376
+ args: GetBotCommandInput,
377
+ options: __HttpHandlerOptions,
378
+ cb: (err: any, data?: GetBotCommandOutput) => void
379
+ ): void;
380
+ getBotsCount(
381
+ args: GetBotsCountCommandInput,
382
+ options?: __HttpHandlerOptions
383
+ ): Promise<GetBotsCountCommandOutput>;
384
+ getBotsCount(
385
+ args: GetBotsCountCommandInput,
386
+ cb: (err: any, data?: GetBotsCountCommandOutput) => void
387
+ ): void;
388
+ getBotsCount(
389
+ args: GetBotsCountCommandInput,
390
+ options: __HttpHandlerOptions,
391
+ cb: (err: any, data?: GetBotsCountCommandOutput) => void
392
+ ): void;
393
+ getDataRetentionBot(
394
+ args: GetDataRetentionBotCommandInput,
395
+ options?: __HttpHandlerOptions
396
+ ): Promise<GetDataRetentionBotCommandOutput>;
397
+ getDataRetentionBot(
398
+ args: GetDataRetentionBotCommandInput,
399
+ cb: (err: any, data?: GetDataRetentionBotCommandOutput) => void
400
+ ): void;
401
+ getDataRetentionBot(
402
+ args: GetDataRetentionBotCommandInput,
403
+ options: __HttpHandlerOptions,
404
+ cb: (err: any, data?: GetDataRetentionBotCommandOutput) => void
405
+ ): void;
406
+ getGuestUserHistoryCount(
407
+ args: GetGuestUserHistoryCountCommandInput,
408
+ options?: __HttpHandlerOptions
409
+ ): Promise<GetGuestUserHistoryCountCommandOutput>;
410
+ getGuestUserHistoryCount(
411
+ args: GetGuestUserHistoryCountCommandInput,
412
+ cb: (err: any, data?: GetGuestUserHistoryCountCommandOutput) => void
413
+ ): void;
414
+ getGuestUserHistoryCount(
415
+ args: GetGuestUserHistoryCountCommandInput,
416
+ options: __HttpHandlerOptions,
417
+ cb: (err: any, data?: GetGuestUserHistoryCountCommandOutput) => void
418
+ ): void;
419
+ getNetwork(
420
+ args: GetNetworkCommandInput,
421
+ options?: __HttpHandlerOptions
422
+ ): Promise<GetNetworkCommandOutput>;
423
+ getNetwork(
424
+ args: GetNetworkCommandInput,
425
+ cb: (err: any, data?: GetNetworkCommandOutput) => void
426
+ ): void;
427
+ getNetwork(
428
+ args: GetNetworkCommandInput,
429
+ options: __HttpHandlerOptions,
430
+ cb: (err: any, data?: GetNetworkCommandOutput) => void
431
+ ): void;
432
+ getNetworkSettings(
433
+ args: GetNetworkSettingsCommandInput,
434
+ options?: __HttpHandlerOptions
435
+ ): Promise<GetNetworkSettingsCommandOutput>;
436
+ getNetworkSettings(
437
+ args: GetNetworkSettingsCommandInput,
438
+ cb: (err: any, data?: GetNetworkSettingsCommandOutput) => void
439
+ ): void;
440
+ getNetworkSettings(
441
+ args: GetNetworkSettingsCommandInput,
442
+ options: __HttpHandlerOptions,
443
+ cb: (err: any, data?: GetNetworkSettingsCommandOutput) => void
444
+ ): void;
445
+ getOidcInfo(
446
+ args: GetOidcInfoCommandInput,
447
+ options?: __HttpHandlerOptions
448
+ ): Promise<GetOidcInfoCommandOutput>;
449
+ getOidcInfo(
450
+ args: GetOidcInfoCommandInput,
451
+ cb: (err: any, data?: GetOidcInfoCommandOutput) => void
452
+ ): void;
453
+ getOidcInfo(
454
+ args: GetOidcInfoCommandInput,
455
+ options: __HttpHandlerOptions,
456
+ cb: (err: any, data?: GetOidcInfoCommandOutput) => void
457
+ ): void;
458
+ getSecurityGroup(
459
+ args: GetSecurityGroupCommandInput,
460
+ options?: __HttpHandlerOptions
461
+ ): Promise<GetSecurityGroupCommandOutput>;
462
+ getSecurityGroup(
463
+ args: GetSecurityGroupCommandInput,
464
+ cb: (err: any, data?: GetSecurityGroupCommandOutput) => void
465
+ ): void;
466
+ getSecurityGroup(
467
+ args: GetSecurityGroupCommandInput,
468
+ options: __HttpHandlerOptions,
469
+ cb: (err: any, data?: GetSecurityGroupCommandOutput) => void
470
+ ): void;
471
+ getUser(
472
+ args: GetUserCommandInput,
473
+ options?: __HttpHandlerOptions
474
+ ): Promise<GetUserCommandOutput>;
475
+ getUser(
476
+ args: GetUserCommandInput,
477
+ cb: (err: any, data?: GetUserCommandOutput) => void
478
+ ): void;
479
+ getUser(
480
+ args: GetUserCommandInput,
481
+ options: __HttpHandlerOptions,
482
+ cb: (err: any, data?: GetUserCommandOutput) => void
483
+ ): void;
484
+ getUsersCount(
485
+ args: GetUsersCountCommandInput,
486
+ options?: __HttpHandlerOptions
487
+ ): Promise<GetUsersCountCommandOutput>;
488
+ getUsersCount(
489
+ args: GetUsersCountCommandInput,
490
+ cb: (err: any, data?: GetUsersCountCommandOutput) => void
491
+ ): void;
492
+ getUsersCount(
493
+ args: GetUsersCountCommandInput,
494
+ options: __HttpHandlerOptions,
495
+ cb: (err: any, data?: GetUsersCountCommandOutput) => void
496
+ ): void;
497
+ listBlockedGuestUsers(
498
+ args: ListBlockedGuestUsersCommandInput,
499
+ options?: __HttpHandlerOptions
500
+ ): Promise<ListBlockedGuestUsersCommandOutput>;
501
+ listBlockedGuestUsers(
502
+ args: ListBlockedGuestUsersCommandInput,
503
+ cb: (err: any, data?: ListBlockedGuestUsersCommandOutput) => void
504
+ ): void;
505
+ listBlockedGuestUsers(
506
+ args: ListBlockedGuestUsersCommandInput,
507
+ options: __HttpHandlerOptions,
508
+ cb: (err: any, data?: ListBlockedGuestUsersCommandOutput) => void
509
+ ): void;
510
+ listBots(
511
+ args: ListBotsCommandInput,
512
+ options?: __HttpHandlerOptions
513
+ ): Promise<ListBotsCommandOutput>;
514
+ listBots(
515
+ args: ListBotsCommandInput,
516
+ cb: (err: any, data?: ListBotsCommandOutput) => void
517
+ ): void;
518
+ listBots(
519
+ args: ListBotsCommandInput,
520
+ options: __HttpHandlerOptions,
521
+ cb: (err: any, data?: ListBotsCommandOutput) => void
522
+ ): void;
523
+ listDevicesForUser(
524
+ args: ListDevicesForUserCommandInput,
525
+ options?: __HttpHandlerOptions
526
+ ): Promise<ListDevicesForUserCommandOutput>;
527
+ listDevicesForUser(
528
+ args: ListDevicesForUserCommandInput,
529
+ cb: (err: any, data?: ListDevicesForUserCommandOutput) => void
530
+ ): void;
531
+ listDevicesForUser(
532
+ args: ListDevicesForUserCommandInput,
533
+ options: __HttpHandlerOptions,
534
+ cb: (err: any, data?: ListDevicesForUserCommandOutput) => void
535
+ ): void;
536
+ listGuestUsers(
537
+ args: ListGuestUsersCommandInput,
538
+ options?: __HttpHandlerOptions
539
+ ): Promise<ListGuestUsersCommandOutput>;
540
+ listGuestUsers(
541
+ args: ListGuestUsersCommandInput,
542
+ cb: (err: any, data?: ListGuestUsersCommandOutput) => void
543
+ ): void;
544
+ listGuestUsers(
545
+ args: ListGuestUsersCommandInput,
546
+ options: __HttpHandlerOptions,
547
+ cb: (err: any, data?: ListGuestUsersCommandOutput) => void
548
+ ): void;
549
+ listNetworks(): Promise<ListNetworksCommandOutput>;
550
+ listNetworks(
551
+ args: ListNetworksCommandInput,
552
+ options?: __HttpHandlerOptions
553
+ ): Promise<ListNetworksCommandOutput>;
554
+ listNetworks(
555
+ args: ListNetworksCommandInput,
556
+ cb: (err: any, data?: ListNetworksCommandOutput) => void
557
+ ): void;
558
+ listNetworks(
559
+ args: ListNetworksCommandInput,
560
+ options: __HttpHandlerOptions,
561
+ cb: (err: any, data?: ListNetworksCommandOutput) => void
562
+ ): void;
563
+ listSecurityGroups(
564
+ args: ListSecurityGroupsCommandInput,
565
+ options?: __HttpHandlerOptions
566
+ ): Promise<ListSecurityGroupsCommandOutput>;
567
+ listSecurityGroups(
568
+ args: ListSecurityGroupsCommandInput,
569
+ cb: (err: any, data?: ListSecurityGroupsCommandOutput) => void
570
+ ): void;
571
+ listSecurityGroups(
572
+ args: ListSecurityGroupsCommandInput,
573
+ options: __HttpHandlerOptions,
574
+ cb: (err: any, data?: ListSecurityGroupsCommandOutput) => void
575
+ ): void;
576
+ listSecurityGroupUsers(
577
+ args: ListSecurityGroupUsersCommandInput,
578
+ options?: __HttpHandlerOptions
579
+ ): Promise<ListSecurityGroupUsersCommandOutput>;
580
+ listSecurityGroupUsers(
581
+ args: ListSecurityGroupUsersCommandInput,
582
+ cb: (err: any, data?: ListSecurityGroupUsersCommandOutput) => void
583
+ ): void;
584
+ listSecurityGroupUsers(
585
+ args: ListSecurityGroupUsersCommandInput,
586
+ options: __HttpHandlerOptions,
587
+ cb: (err: any, data?: ListSecurityGroupUsersCommandOutput) => void
588
+ ): void;
589
+ listUsers(
590
+ args: ListUsersCommandInput,
591
+ options?: __HttpHandlerOptions
592
+ ): Promise<ListUsersCommandOutput>;
593
+ listUsers(
594
+ args: ListUsersCommandInput,
595
+ cb: (err: any, data?: ListUsersCommandOutput) => void
596
+ ): void;
597
+ listUsers(
598
+ args: ListUsersCommandInput,
599
+ options: __HttpHandlerOptions,
600
+ cb: (err: any, data?: ListUsersCommandOutput) => void
601
+ ): void;
602
+ registerOidcConfig(
603
+ args: RegisterOidcConfigCommandInput,
604
+ options?: __HttpHandlerOptions
605
+ ): Promise<RegisterOidcConfigCommandOutput>;
606
+ registerOidcConfig(
607
+ args: RegisterOidcConfigCommandInput,
608
+ cb: (err: any, data?: RegisterOidcConfigCommandOutput) => void
609
+ ): void;
610
+ registerOidcConfig(
611
+ args: RegisterOidcConfigCommandInput,
612
+ options: __HttpHandlerOptions,
613
+ cb: (err: any, data?: RegisterOidcConfigCommandOutput) => void
614
+ ): void;
615
+ registerOidcConfigTest(
616
+ args: RegisterOidcConfigTestCommandInput,
617
+ options?: __HttpHandlerOptions
618
+ ): Promise<RegisterOidcConfigTestCommandOutput>;
619
+ registerOidcConfigTest(
620
+ args: RegisterOidcConfigTestCommandInput,
621
+ cb: (err: any, data?: RegisterOidcConfigTestCommandOutput) => void
622
+ ): void;
623
+ registerOidcConfigTest(
624
+ args: RegisterOidcConfigTestCommandInput,
625
+ options: __HttpHandlerOptions,
626
+ cb: (err: any, data?: RegisterOidcConfigTestCommandOutput) => void
627
+ ): void;
628
+ updateBot(
629
+ args: UpdateBotCommandInput,
630
+ options?: __HttpHandlerOptions
631
+ ): Promise<UpdateBotCommandOutput>;
632
+ updateBot(
633
+ args: UpdateBotCommandInput,
634
+ cb: (err: any, data?: UpdateBotCommandOutput) => void
635
+ ): void;
636
+ updateBot(
637
+ args: UpdateBotCommandInput,
638
+ options: __HttpHandlerOptions,
639
+ cb: (err: any, data?: UpdateBotCommandOutput) => void
640
+ ): void;
641
+ updateDataRetention(
642
+ args: UpdateDataRetentionCommandInput,
643
+ options?: __HttpHandlerOptions
644
+ ): Promise<UpdateDataRetentionCommandOutput>;
645
+ updateDataRetention(
646
+ args: UpdateDataRetentionCommandInput,
647
+ cb: (err: any, data?: UpdateDataRetentionCommandOutput) => void
648
+ ): void;
649
+ updateDataRetention(
650
+ args: UpdateDataRetentionCommandInput,
651
+ options: __HttpHandlerOptions,
652
+ cb: (err: any, data?: UpdateDataRetentionCommandOutput) => void
653
+ ): void;
654
+ updateGuestUser(
655
+ args: UpdateGuestUserCommandInput,
656
+ options?: __HttpHandlerOptions
657
+ ): Promise<UpdateGuestUserCommandOutput>;
658
+ updateGuestUser(
659
+ args: UpdateGuestUserCommandInput,
660
+ cb: (err: any, data?: UpdateGuestUserCommandOutput) => void
661
+ ): void;
662
+ updateGuestUser(
663
+ args: UpdateGuestUserCommandInput,
664
+ options: __HttpHandlerOptions,
665
+ cb: (err: any, data?: UpdateGuestUserCommandOutput) => void
666
+ ): void;
667
+ updateNetwork(
668
+ args: UpdateNetworkCommandInput,
669
+ options?: __HttpHandlerOptions
670
+ ): Promise<UpdateNetworkCommandOutput>;
671
+ updateNetwork(
672
+ args: UpdateNetworkCommandInput,
673
+ cb: (err: any, data?: UpdateNetworkCommandOutput) => void
674
+ ): void;
675
+ updateNetwork(
676
+ args: UpdateNetworkCommandInput,
677
+ options: __HttpHandlerOptions,
678
+ cb: (err: any, data?: UpdateNetworkCommandOutput) => void
679
+ ): void;
680
+ updateNetworkSettings(
681
+ args: UpdateNetworkSettingsCommandInput,
682
+ options?: __HttpHandlerOptions
683
+ ): Promise<UpdateNetworkSettingsCommandOutput>;
684
+ updateNetworkSettings(
685
+ args: UpdateNetworkSettingsCommandInput,
686
+ cb: (err: any, data?: UpdateNetworkSettingsCommandOutput) => void
687
+ ): void;
688
+ updateNetworkSettings(
689
+ args: UpdateNetworkSettingsCommandInput,
690
+ options: __HttpHandlerOptions,
691
+ cb: (err: any, data?: UpdateNetworkSettingsCommandOutput) => void
692
+ ): void;
693
+ updateSecurityGroup(
694
+ args: UpdateSecurityGroupCommandInput,
695
+ options?: __HttpHandlerOptions
696
+ ): Promise<UpdateSecurityGroupCommandOutput>;
697
+ updateSecurityGroup(
698
+ args: UpdateSecurityGroupCommandInput,
699
+ cb: (err: any, data?: UpdateSecurityGroupCommandOutput) => void
700
+ ): void;
701
+ updateSecurityGroup(
702
+ args: UpdateSecurityGroupCommandInput,
703
+ options: __HttpHandlerOptions,
704
+ cb: (err: any, data?: UpdateSecurityGroupCommandOutput) => void
705
+ ): void;
706
+ updateUser(
707
+ args: UpdateUserCommandInput,
708
+ options?: __HttpHandlerOptions
709
+ ): Promise<UpdateUserCommandOutput>;
710
+ updateUser(
711
+ args: UpdateUserCommandInput,
712
+ cb: (err: any, data?: UpdateUserCommandOutput) => void
713
+ ): void;
714
+ updateUser(
715
+ args: UpdateUserCommandInput,
716
+ options: __HttpHandlerOptions,
717
+ cb: (err: any, data?: UpdateUserCommandOutput) => void
718
+ ): void;
719
+ }
720
+ export declare class Wickr extends WickrClient implements Wickr {}