@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,305 @@
1
+ import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import { BatchCreateUserCommandInput, BatchCreateUserCommandOutput } from "./commands/BatchCreateUserCommand";
3
+ import { BatchDeleteUserCommandInput, BatchDeleteUserCommandOutput } from "./commands/BatchDeleteUserCommand";
4
+ import { BatchLookupUserUnameCommandInput, BatchLookupUserUnameCommandOutput } from "./commands/BatchLookupUserUnameCommand";
5
+ import { BatchReinviteUserCommandInput, BatchReinviteUserCommandOutput } from "./commands/BatchReinviteUserCommand";
6
+ import { BatchResetDevicesForUserCommandInput, BatchResetDevicesForUserCommandOutput } from "./commands/BatchResetDevicesForUserCommand";
7
+ import { BatchToggleUserSuspendStatusCommandInput, BatchToggleUserSuspendStatusCommandOutput } from "./commands/BatchToggleUserSuspendStatusCommand";
8
+ import { CreateBotCommandInput, CreateBotCommandOutput } from "./commands/CreateBotCommand";
9
+ import { CreateDataRetentionBotChallengeCommandInput, CreateDataRetentionBotChallengeCommandOutput } from "./commands/CreateDataRetentionBotChallengeCommand";
10
+ import { CreateDataRetentionBotCommandInput, CreateDataRetentionBotCommandOutput } from "./commands/CreateDataRetentionBotCommand";
11
+ import { CreateNetworkCommandInput, CreateNetworkCommandOutput } from "./commands/CreateNetworkCommand";
12
+ import { CreateSecurityGroupCommandInput, CreateSecurityGroupCommandOutput } from "./commands/CreateSecurityGroupCommand";
13
+ import { DeleteBotCommandInput, DeleteBotCommandOutput } from "./commands/DeleteBotCommand";
14
+ import { DeleteDataRetentionBotCommandInput, DeleteDataRetentionBotCommandOutput } from "./commands/DeleteDataRetentionBotCommand";
15
+ import { DeleteNetworkCommandInput, DeleteNetworkCommandOutput } from "./commands/DeleteNetworkCommand";
16
+ import { DeleteSecurityGroupCommandInput, DeleteSecurityGroupCommandOutput } from "./commands/DeleteSecurityGroupCommand";
17
+ import { GetBotCommandInput, GetBotCommandOutput } from "./commands/GetBotCommand";
18
+ import { GetBotsCountCommandInput, GetBotsCountCommandOutput } from "./commands/GetBotsCountCommand";
19
+ import { GetDataRetentionBotCommandInput, GetDataRetentionBotCommandOutput } from "./commands/GetDataRetentionBotCommand";
20
+ import { GetGuestUserHistoryCountCommandInput, GetGuestUserHistoryCountCommandOutput } from "./commands/GetGuestUserHistoryCountCommand";
21
+ import { GetNetworkCommandInput, GetNetworkCommandOutput } from "./commands/GetNetworkCommand";
22
+ import { GetNetworkSettingsCommandInput, GetNetworkSettingsCommandOutput } from "./commands/GetNetworkSettingsCommand";
23
+ import { GetOidcInfoCommandInput, GetOidcInfoCommandOutput } from "./commands/GetOidcInfoCommand";
24
+ import { GetSecurityGroupCommandInput, GetSecurityGroupCommandOutput } from "./commands/GetSecurityGroupCommand";
25
+ import { GetUserCommandInput, GetUserCommandOutput } from "./commands/GetUserCommand";
26
+ import { GetUsersCountCommandInput, GetUsersCountCommandOutput } from "./commands/GetUsersCountCommand";
27
+ import { ListBlockedGuestUsersCommandInput, ListBlockedGuestUsersCommandOutput } from "./commands/ListBlockedGuestUsersCommand";
28
+ import { ListBotsCommandInput, ListBotsCommandOutput } from "./commands/ListBotsCommand";
29
+ import { ListDevicesForUserCommandInput, ListDevicesForUserCommandOutput } from "./commands/ListDevicesForUserCommand";
30
+ import { ListGuestUsersCommandInput, ListGuestUsersCommandOutput } from "./commands/ListGuestUsersCommand";
31
+ import { ListNetworksCommandInput, ListNetworksCommandOutput } from "./commands/ListNetworksCommand";
32
+ import { ListSecurityGroupsCommandInput, ListSecurityGroupsCommandOutput } from "./commands/ListSecurityGroupsCommand";
33
+ import { ListSecurityGroupUsersCommandInput, ListSecurityGroupUsersCommandOutput } from "./commands/ListSecurityGroupUsersCommand";
34
+ import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
35
+ import { RegisterOidcConfigCommandInput, RegisterOidcConfigCommandOutput } from "./commands/RegisterOidcConfigCommand";
36
+ import { RegisterOidcConfigTestCommandInput, RegisterOidcConfigTestCommandOutput } from "./commands/RegisterOidcConfigTestCommand";
37
+ import { UpdateBotCommandInput, UpdateBotCommandOutput } from "./commands/UpdateBotCommand";
38
+ import { UpdateDataRetentionCommandInput, UpdateDataRetentionCommandOutput } from "./commands/UpdateDataRetentionCommand";
39
+ import { UpdateGuestUserCommandInput, UpdateGuestUserCommandOutput } from "./commands/UpdateGuestUserCommand";
40
+ import { UpdateNetworkCommandInput, UpdateNetworkCommandOutput } from "./commands/UpdateNetworkCommand";
41
+ import { UpdateNetworkSettingsCommandInput, UpdateNetworkSettingsCommandOutput } from "./commands/UpdateNetworkSettingsCommand";
42
+ import { UpdateSecurityGroupCommandInput, UpdateSecurityGroupCommandOutput } from "./commands/UpdateSecurityGroupCommand";
43
+ import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
44
+ import { WickrClient } from "./WickrClient";
45
+ export interface Wickr {
46
+ /**
47
+ * @see {@link BatchCreateUserCommand}
48
+ */
49
+ batchCreateUser(args: BatchCreateUserCommandInput, options?: __HttpHandlerOptions): Promise<BatchCreateUserCommandOutput>;
50
+ batchCreateUser(args: BatchCreateUserCommandInput, cb: (err: any, data?: BatchCreateUserCommandOutput) => void): void;
51
+ batchCreateUser(args: BatchCreateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchCreateUserCommandOutput) => void): void;
52
+ /**
53
+ * @see {@link BatchDeleteUserCommand}
54
+ */
55
+ batchDeleteUser(args: BatchDeleteUserCommandInput, options?: __HttpHandlerOptions): Promise<BatchDeleteUserCommandOutput>;
56
+ batchDeleteUser(args: BatchDeleteUserCommandInput, cb: (err: any, data?: BatchDeleteUserCommandOutput) => void): void;
57
+ batchDeleteUser(args: BatchDeleteUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeleteUserCommandOutput) => void): void;
58
+ /**
59
+ * @see {@link BatchLookupUserUnameCommand}
60
+ */
61
+ batchLookupUserUname(args: BatchLookupUserUnameCommandInput, options?: __HttpHandlerOptions): Promise<BatchLookupUserUnameCommandOutput>;
62
+ batchLookupUserUname(args: BatchLookupUserUnameCommandInput, cb: (err: any, data?: BatchLookupUserUnameCommandOutput) => void): void;
63
+ batchLookupUserUname(args: BatchLookupUserUnameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchLookupUserUnameCommandOutput) => void): void;
64
+ /**
65
+ * @see {@link BatchReinviteUserCommand}
66
+ */
67
+ batchReinviteUser(args: BatchReinviteUserCommandInput, options?: __HttpHandlerOptions): Promise<BatchReinviteUserCommandOutput>;
68
+ batchReinviteUser(args: BatchReinviteUserCommandInput, cb: (err: any, data?: BatchReinviteUserCommandOutput) => void): void;
69
+ batchReinviteUser(args: BatchReinviteUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchReinviteUserCommandOutput) => void): void;
70
+ /**
71
+ * @see {@link BatchResetDevicesForUserCommand}
72
+ */
73
+ batchResetDevicesForUser(args: BatchResetDevicesForUserCommandInput, options?: __HttpHandlerOptions): Promise<BatchResetDevicesForUserCommandOutput>;
74
+ batchResetDevicesForUser(args: BatchResetDevicesForUserCommandInput, cb: (err: any, data?: BatchResetDevicesForUserCommandOutput) => void): void;
75
+ batchResetDevicesForUser(args: BatchResetDevicesForUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchResetDevicesForUserCommandOutput) => void): void;
76
+ /**
77
+ * @see {@link BatchToggleUserSuspendStatusCommand}
78
+ */
79
+ batchToggleUserSuspendStatus(args: BatchToggleUserSuspendStatusCommandInput, options?: __HttpHandlerOptions): Promise<BatchToggleUserSuspendStatusCommandOutput>;
80
+ batchToggleUserSuspendStatus(args: BatchToggleUserSuspendStatusCommandInput, cb: (err: any, data?: BatchToggleUserSuspendStatusCommandOutput) => void): void;
81
+ batchToggleUserSuspendStatus(args: BatchToggleUserSuspendStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchToggleUserSuspendStatusCommandOutput) => void): void;
82
+ /**
83
+ * @see {@link CreateBotCommand}
84
+ */
85
+ createBot(args: CreateBotCommandInput, options?: __HttpHandlerOptions): Promise<CreateBotCommandOutput>;
86
+ createBot(args: CreateBotCommandInput, cb: (err: any, data?: CreateBotCommandOutput) => void): void;
87
+ createBot(args: CreateBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBotCommandOutput) => void): void;
88
+ /**
89
+ * @see {@link CreateDataRetentionBotCommand}
90
+ */
91
+ createDataRetentionBot(args: CreateDataRetentionBotCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataRetentionBotCommandOutput>;
92
+ createDataRetentionBot(args: CreateDataRetentionBotCommandInput, cb: (err: any, data?: CreateDataRetentionBotCommandOutput) => void): void;
93
+ createDataRetentionBot(args: CreateDataRetentionBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataRetentionBotCommandOutput) => void): void;
94
+ /**
95
+ * @see {@link CreateDataRetentionBotChallengeCommand}
96
+ */
97
+ createDataRetentionBotChallenge(args: CreateDataRetentionBotChallengeCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataRetentionBotChallengeCommandOutput>;
98
+ createDataRetentionBotChallenge(args: CreateDataRetentionBotChallengeCommandInput, cb: (err: any, data?: CreateDataRetentionBotChallengeCommandOutput) => void): void;
99
+ createDataRetentionBotChallenge(args: CreateDataRetentionBotChallengeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataRetentionBotChallengeCommandOutput) => void): void;
100
+ /**
101
+ * @see {@link CreateNetworkCommand}
102
+ */
103
+ createNetwork(args: CreateNetworkCommandInput, options?: __HttpHandlerOptions): Promise<CreateNetworkCommandOutput>;
104
+ createNetwork(args: CreateNetworkCommandInput, cb: (err: any, data?: CreateNetworkCommandOutput) => void): void;
105
+ createNetwork(args: CreateNetworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNetworkCommandOutput) => void): void;
106
+ /**
107
+ * @see {@link CreateSecurityGroupCommand}
108
+ */
109
+ createSecurityGroup(args: CreateSecurityGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateSecurityGroupCommandOutput>;
110
+ createSecurityGroup(args: CreateSecurityGroupCommandInput, cb: (err: any, data?: CreateSecurityGroupCommandOutput) => void): void;
111
+ createSecurityGroup(args: CreateSecurityGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSecurityGroupCommandOutput) => void): void;
112
+ /**
113
+ * @see {@link DeleteBotCommand}
114
+ */
115
+ deleteBot(args: DeleteBotCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBotCommandOutput>;
116
+ deleteBot(args: DeleteBotCommandInput, cb: (err: any, data?: DeleteBotCommandOutput) => void): void;
117
+ deleteBot(args: DeleteBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBotCommandOutput) => void): void;
118
+ /**
119
+ * @see {@link DeleteDataRetentionBotCommand}
120
+ */
121
+ deleteDataRetentionBot(args: DeleteDataRetentionBotCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDataRetentionBotCommandOutput>;
122
+ deleteDataRetentionBot(args: DeleteDataRetentionBotCommandInput, cb: (err: any, data?: DeleteDataRetentionBotCommandOutput) => void): void;
123
+ deleteDataRetentionBot(args: DeleteDataRetentionBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDataRetentionBotCommandOutput) => void): void;
124
+ /**
125
+ * @see {@link DeleteNetworkCommand}
126
+ */
127
+ deleteNetwork(args: DeleteNetworkCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNetworkCommandOutput>;
128
+ deleteNetwork(args: DeleteNetworkCommandInput, cb: (err: any, data?: DeleteNetworkCommandOutput) => void): void;
129
+ deleteNetwork(args: DeleteNetworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNetworkCommandOutput) => void): void;
130
+ /**
131
+ * @see {@link DeleteSecurityGroupCommand}
132
+ */
133
+ deleteSecurityGroup(args: DeleteSecurityGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSecurityGroupCommandOutput>;
134
+ deleteSecurityGroup(args: DeleteSecurityGroupCommandInput, cb: (err: any, data?: DeleteSecurityGroupCommandOutput) => void): void;
135
+ deleteSecurityGroup(args: DeleteSecurityGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSecurityGroupCommandOutput) => void): void;
136
+ /**
137
+ * @see {@link GetBotCommand}
138
+ */
139
+ getBot(args: GetBotCommandInput, options?: __HttpHandlerOptions): Promise<GetBotCommandOutput>;
140
+ getBot(args: GetBotCommandInput, cb: (err: any, data?: GetBotCommandOutput) => void): void;
141
+ getBot(args: GetBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBotCommandOutput) => void): void;
142
+ /**
143
+ * @see {@link GetBotsCountCommand}
144
+ */
145
+ getBotsCount(args: GetBotsCountCommandInput, options?: __HttpHandlerOptions): Promise<GetBotsCountCommandOutput>;
146
+ getBotsCount(args: GetBotsCountCommandInput, cb: (err: any, data?: GetBotsCountCommandOutput) => void): void;
147
+ getBotsCount(args: GetBotsCountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBotsCountCommandOutput) => void): void;
148
+ /**
149
+ * @see {@link GetDataRetentionBotCommand}
150
+ */
151
+ getDataRetentionBot(args: GetDataRetentionBotCommandInput, options?: __HttpHandlerOptions): Promise<GetDataRetentionBotCommandOutput>;
152
+ getDataRetentionBot(args: GetDataRetentionBotCommandInput, cb: (err: any, data?: GetDataRetentionBotCommandOutput) => void): void;
153
+ getDataRetentionBot(args: GetDataRetentionBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataRetentionBotCommandOutput) => void): void;
154
+ /**
155
+ * @see {@link GetGuestUserHistoryCountCommand}
156
+ */
157
+ getGuestUserHistoryCount(args: GetGuestUserHistoryCountCommandInput, options?: __HttpHandlerOptions): Promise<GetGuestUserHistoryCountCommandOutput>;
158
+ getGuestUserHistoryCount(args: GetGuestUserHistoryCountCommandInput, cb: (err: any, data?: GetGuestUserHistoryCountCommandOutput) => void): void;
159
+ getGuestUserHistoryCount(args: GetGuestUserHistoryCountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGuestUserHistoryCountCommandOutput) => void): void;
160
+ /**
161
+ * @see {@link GetNetworkCommand}
162
+ */
163
+ getNetwork(args: GetNetworkCommandInput, options?: __HttpHandlerOptions): Promise<GetNetworkCommandOutput>;
164
+ getNetwork(args: GetNetworkCommandInput, cb: (err: any, data?: GetNetworkCommandOutput) => void): void;
165
+ getNetwork(args: GetNetworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNetworkCommandOutput) => void): void;
166
+ /**
167
+ * @see {@link GetNetworkSettingsCommand}
168
+ */
169
+ getNetworkSettings(args: GetNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetNetworkSettingsCommandOutput>;
170
+ getNetworkSettings(args: GetNetworkSettingsCommandInput, cb: (err: any, data?: GetNetworkSettingsCommandOutput) => void): void;
171
+ getNetworkSettings(args: GetNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNetworkSettingsCommandOutput) => void): void;
172
+ /**
173
+ * @see {@link GetOidcInfoCommand}
174
+ */
175
+ getOidcInfo(args: GetOidcInfoCommandInput, options?: __HttpHandlerOptions): Promise<GetOidcInfoCommandOutput>;
176
+ getOidcInfo(args: GetOidcInfoCommandInput, cb: (err: any, data?: GetOidcInfoCommandOutput) => void): void;
177
+ getOidcInfo(args: GetOidcInfoCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOidcInfoCommandOutput) => void): void;
178
+ /**
179
+ * @see {@link GetSecurityGroupCommand}
180
+ */
181
+ getSecurityGroup(args: GetSecurityGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetSecurityGroupCommandOutput>;
182
+ getSecurityGroup(args: GetSecurityGroupCommandInput, cb: (err: any, data?: GetSecurityGroupCommandOutput) => void): void;
183
+ getSecurityGroup(args: GetSecurityGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSecurityGroupCommandOutput) => void): void;
184
+ /**
185
+ * @see {@link GetUserCommand}
186
+ */
187
+ getUser(args: GetUserCommandInput, options?: __HttpHandlerOptions): Promise<GetUserCommandOutput>;
188
+ getUser(args: GetUserCommandInput, cb: (err: any, data?: GetUserCommandOutput) => void): void;
189
+ getUser(args: GetUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUserCommandOutput) => void): void;
190
+ /**
191
+ * @see {@link GetUsersCountCommand}
192
+ */
193
+ getUsersCount(args: GetUsersCountCommandInput, options?: __HttpHandlerOptions): Promise<GetUsersCountCommandOutput>;
194
+ getUsersCount(args: GetUsersCountCommandInput, cb: (err: any, data?: GetUsersCountCommandOutput) => void): void;
195
+ getUsersCount(args: GetUsersCountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUsersCountCommandOutput) => void): void;
196
+ /**
197
+ * @see {@link ListBlockedGuestUsersCommand}
198
+ */
199
+ listBlockedGuestUsers(args: ListBlockedGuestUsersCommandInput, options?: __HttpHandlerOptions): Promise<ListBlockedGuestUsersCommandOutput>;
200
+ listBlockedGuestUsers(args: ListBlockedGuestUsersCommandInput, cb: (err: any, data?: ListBlockedGuestUsersCommandOutput) => void): void;
201
+ listBlockedGuestUsers(args: ListBlockedGuestUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBlockedGuestUsersCommandOutput) => void): void;
202
+ /**
203
+ * @see {@link ListBotsCommand}
204
+ */
205
+ listBots(args: ListBotsCommandInput, options?: __HttpHandlerOptions): Promise<ListBotsCommandOutput>;
206
+ listBots(args: ListBotsCommandInput, cb: (err: any, data?: ListBotsCommandOutput) => void): void;
207
+ listBots(args: ListBotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBotsCommandOutput) => void): void;
208
+ /**
209
+ * @see {@link ListDevicesForUserCommand}
210
+ */
211
+ listDevicesForUser(args: ListDevicesForUserCommandInput, options?: __HttpHandlerOptions): Promise<ListDevicesForUserCommandOutput>;
212
+ listDevicesForUser(args: ListDevicesForUserCommandInput, cb: (err: any, data?: ListDevicesForUserCommandOutput) => void): void;
213
+ listDevicesForUser(args: ListDevicesForUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDevicesForUserCommandOutput) => void): void;
214
+ /**
215
+ * @see {@link ListGuestUsersCommand}
216
+ */
217
+ listGuestUsers(args: ListGuestUsersCommandInput, options?: __HttpHandlerOptions): Promise<ListGuestUsersCommandOutput>;
218
+ listGuestUsers(args: ListGuestUsersCommandInput, cb: (err: any, data?: ListGuestUsersCommandOutput) => void): void;
219
+ listGuestUsers(args: ListGuestUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGuestUsersCommandOutput) => void): void;
220
+ /**
221
+ * @see {@link ListNetworksCommand}
222
+ */
223
+ listNetworks(): Promise<ListNetworksCommandOutput>;
224
+ listNetworks(args: ListNetworksCommandInput, options?: __HttpHandlerOptions): Promise<ListNetworksCommandOutput>;
225
+ listNetworks(args: ListNetworksCommandInput, cb: (err: any, data?: ListNetworksCommandOutput) => void): void;
226
+ listNetworks(args: ListNetworksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNetworksCommandOutput) => void): void;
227
+ /**
228
+ * @see {@link ListSecurityGroupsCommand}
229
+ */
230
+ listSecurityGroups(args: ListSecurityGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListSecurityGroupsCommandOutput>;
231
+ listSecurityGroups(args: ListSecurityGroupsCommandInput, cb: (err: any, data?: ListSecurityGroupsCommandOutput) => void): void;
232
+ listSecurityGroups(args: ListSecurityGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSecurityGroupsCommandOutput) => void): void;
233
+ /**
234
+ * @see {@link ListSecurityGroupUsersCommand}
235
+ */
236
+ listSecurityGroupUsers(args: ListSecurityGroupUsersCommandInput, options?: __HttpHandlerOptions): Promise<ListSecurityGroupUsersCommandOutput>;
237
+ listSecurityGroupUsers(args: ListSecurityGroupUsersCommandInput, cb: (err: any, data?: ListSecurityGroupUsersCommandOutput) => void): void;
238
+ listSecurityGroupUsers(args: ListSecurityGroupUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSecurityGroupUsersCommandOutput) => void): void;
239
+ /**
240
+ * @see {@link ListUsersCommand}
241
+ */
242
+ listUsers(args: ListUsersCommandInput, options?: __HttpHandlerOptions): Promise<ListUsersCommandOutput>;
243
+ listUsers(args: ListUsersCommandInput, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
244
+ listUsers(args: ListUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
245
+ /**
246
+ * @see {@link RegisterOidcConfigCommand}
247
+ */
248
+ registerOidcConfig(args: RegisterOidcConfigCommandInput, options?: __HttpHandlerOptions): Promise<RegisterOidcConfigCommandOutput>;
249
+ registerOidcConfig(args: RegisterOidcConfigCommandInput, cb: (err: any, data?: RegisterOidcConfigCommandOutput) => void): void;
250
+ registerOidcConfig(args: RegisterOidcConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterOidcConfigCommandOutput) => void): void;
251
+ /**
252
+ * @see {@link RegisterOidcConfigTestCommand}
253
+ */
254
+ registerOidcConfigTest(args: RegisterOidcConfigTestCommandInput, options?: __HttpHandlerOptions): Promise<RegisterOidcConfigTestCommandOutput>;
255
+ registerOidcConfigTest(args: RegisterOidcConfigTestCommandInput, cb: (err: any, data?: RegisterOidcConfigTestCommandOutput) => void): void;
256
+ registerOidcConfigTest(args: RegisterOidcConfigTestCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterOidcConfigTestCommandOutput) => void): void;
257
+ /**
258
+ * @see {@link UpdateBotCommand}
259
+ */
260
+ updateBot(args: UpdateBotCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBotCommandOutput>;
261
+ updateBot(args: UpdateBotCommandInput, cb: (err: any, data?: UpdateBotCommandOutput) => void): void;
262
+ updateBot(args: UpdateBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBotCommandOutput) => void): void;
263
+ /**
264
+ * @see {@link UpdateDataRetentionCommand}
265
+ */
266
+ updateDataRetention(args: UpdateDataRetentionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDataRetentionCommandOutput>;
267
+ updateDataRetention(args: UpdateDataRetentionCommandInput, cb: (err: any, data?: UpdateDataRetentionCommandOutput) => void): void;
268
+ updateDataRetention(args: UpdateDataRetentionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDataRetentionCommandOutput) => void): void;
269
+ /**
270
+ * @see {@link UpdateGuestUserCommand}
271
+ */
272
+ updateGuestUser(args: UpdateGuestUserCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGuestUserCommandOutput>;
273
+ updateGuestUser(args: UpdateGuestUserCommandInput, cb: (err: any, data?: UpdateGuestUserCommandOutput) => void): void;
274
+ updateGuestUser(args: UpdateGuestUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGuestUserCommandOutput) => void): void;
275
+ /**
276
+ * @see {@link UpdateNetworkCommand}
277
+ */
278
+ updateNetwork(args: UpdateNetworkCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNetworkCommandOutput>;
279
+ updateNetwork(args: UpdateNetworkCommandInput, cb: (err: any, data?: UpdateNetworkCommandOutput) => void): void;
280
+ updateNetwork(args: UpdateNetworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNetworkCommandOutput) => void): void;
281
+ /**
282
+ * @see {@link UpdateNetworkSettingsCommand}
283
+ */
284
+ updateNetworkSettings(args: UpdateNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNetworkSettingsCommandOutput>;
285
+ updateNetworkSettings(args: UpdateNetworkSettingsCommandInput, cb: (err: any, data?: UpdateNetworkSettingsCommandOutput) => void): void;
286
+ updateNetworkSettings(args: UpdateNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNetworkSettingsCommandOutput) => void): void;
287
+ /**
288
+ * @see {@link UpdateSecurityGroupCommand}
289
+ */
290
+ updateSecurityGroup(args: UpdateSecurityGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSecurityGroupCommandOutput>;
291
+ updateSecurityGroup(args: UpdateSecurityGroupCommandInput, cb: (err: any, data?: UpdateSecurityGroupCommandOutput) => void): void;
292
+ updateSecurityGroup(args: UpdateSecurityGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSecurityGroupCommandOutput) => void): void;
293
+ /**
294
+ * @see {@link UpdateUserCommand}
295
+ */
296
+ updateUser(args: UpdateUserCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserCommandOutput>;
297
+ updateUser(args: UpdateUserCommandInput, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
298
+ updateUser(args: UpdateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
299
+ }
300
+ /**
301
+ * <p>Welcome to the <i>Amazon Web Services Wickr API Reference</i>.</p> <p>The Amazon Web Services Wickr application programming interface (API) is designed for administrators to perform key tasks, such as creating and managing Amazon Web Services Wickr, networks, users, security groups, bots and more. This guide provides detailed information about the Amazon Web Services Wickr API, including operations, types, inputs and outputs, and error codes. You can use an Amazon Web Services SDK, the Amazon Web Services Command Line Interface (Amazon Web Services CLI, or the REST API to make API calls for Amazon Web Services Wickr. </p> <p> <i>Using Amazon Web Services SDK</i> </p> <p>The SDK clients authenticate your requests by using access keys that you provide. For more information, see <a href="https://docs.aws.amazon.com/sdkref/latest/guide/access.html">Authentication and access using Amazon Web Services SDKs and tools</a> in the <i>Amazon Web Services SDKs and Tools Reference Guide</i>. </p> <p> <i>Using Amazon Web Services CLI</i> </p> <p>Use your access keys with the Amazon Web Services CLI to make API calls. For more information about setting up the Amazon Web Services CLI, see <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html">Getting started with the Amazon Web Services CLI</a> in the <i>Amazon Web Services Command Line Interface User Guide for Version 2</i>. </p> <p> <i>Using REST APIs</i> </p> <p>If you use REST to make API calls, you must authenticate your request by providing a signature. Amazon Web Services Wickr supports Signature Version 4. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_sigv.html">Amazon Web Services Signature Version 4 for API requests</a> in the <i>Amazon Web Services Identity and Access Management User Guide</i>. </p> <p>Access and permissions to the APIs can be controlled by Amazon Web Services Identity and Access Management. The managed policy <a href="https://docs.aws.amazon.com/wickr/latest/adminguide/security-iam-awsmanpol.html#security-iam-awsmanpol-AWSWickrFullAccess">Amazon Web ServicesWickrFullAccess</a> grants full administrative permission to the Amazon Web Services Wickr service APIs. For more information on restricting access to specific operations, see <a href="https://docs.aws.amazon.com/wickr/latest/adminguide/security-iam.html">Identity and access management for Amazon Web Services Wickr </a> in the <i>Amazon Web Services Wickr Administration Guide</i>. </p> <p> <i>Types of Errors</i>:</p> <p>The Amazon Web Services Wickr APIs provide an HTTP interface. HTTP defines ranges of HTTP Status Codes for different types of error responses.</p> <ol> <li> <p>Client errors are indicated by HTTP Status Code class of 4xx</p> </li> <li> <p>Service errors are indicated by HTTP Status Code class of 5xx</p> </li> </ol> <p>In this reference guide, the documentation for each API has an Errors section that includes a brief discussion about HTTP status codes. We recommend looking there as part of your investigation when you get an error.</p>
302
+ * @public
303
+ */
304
+ export declare class Wickr extends WickrClient implements Wickr {
305
+ }
@@ -0,0 +1,229 @@
1
+ import { type HostHeaderInputConfig, type HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
2
+ import { type UserAgentInputConfig, type UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
3
+ import { type RegionInputConfig, type RegionResolvedConfig } from "@smithy/config-resolver";
4
+ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/middleware-endpoint";
5
+ import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
6
+ import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
+ import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
8
+ import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
9
+ import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
+ import { BatchCreateUserCommandInput, BatchCreateUserCommandOutput } from "./commands/BatchCreateUserCommand";
11
+ import { BatchDeleteUserCommandInput, BatchDeleteUserCommandOutput } from "./commands/BatchDeleteUserCommand";
12
+ import { BatchLookupUserUnameCommandInput, BatchLookupUserUnameCommandOutput } from "./commands/BatchLookupUserUnameCommand";
13
+ import { BatchReinviteUserCommandInput, BatchReinviteUserCommandOutput } from "./commands/BatchReinviteUserCommand";
14
+ import { BatchResetDevicesForUserCommandInput, BatchResetDevicesForUserCommandOutput } from "./commands/BatchResetDevicesForUserCommand";
15
+ import { BatchToggleUserSuspendStatusCommandInput, BatchToggleUserSuspendStatusCommandOutput } from "./commands/BatchToggleUserSuspendStatusCommand";
16
+ import { CreateBotCommandInput, CreateBotCommandOutput } from "./commands/CreateBotCommand";
17
+ import { CreateDataRetentionBotChallengeCommandInput, CreateDataRetentionBotChallengeCommandOutput } from "./commands/CreateDataRetentionBotChallengeCommand";
18
+ import { CreateDataRetentionBotCommandInput, CreateDataRetentionBotCommandOutput } from "./commands/CreateDataRetentionBotCommand";
19
+ import { CreateNetworkCommandInput, CreateNetworkCommandOutput } from "./commands/CreateNetworkCommand";
20
+ import { CreateSecurityGroupCommandInput, CreateSecurityGroupCommandOutput } from "./commands/CreateSecurityGroupCommand";
21
+ import { DeleteBotCommandInput, DeleteBotCommandOutput } from "./commands/DeleteBotCommand";
22
+ import { DeleteDataRetentionBotCommandInput, DeleteDataRetentionBotCommandOutput } from "./commands/DeleteDataRetentionBotCommand";
23
+ import { DeleteNetworkCommandInput, DeleteNetworkCommandOutput } from "./commands/DeleteNetworkCommand";
24
+ import { DeleteSecurityGroupCommandInput, DeleteSecurityGroupCommandOutput } from "./commands/DeleteSecurityGroupCommand";
25
+ import { GetBotCommandInput, GetBotCommandOutput } from "./commands/GetBotCommand";
26
+ import { GetBotsCountCommandInput, GetBotsCountCommandOutput } from "./commands/GetBotsCountCommand";
27
+ import { GetDataRetentionBotCommandInput, GetDataRetentionBotCommandOutput } from "./commands/GetDataRetentionBotCommand";
28
+ import { GetGuestUserHistoryCountCommandInput, GetGuestUserHistoryCountCommandOutput } from "./commands/GetGuestUserHistoryCountCommand";
29
+ import { GetNetworkCommandInput, GetNetworkCommandOutput } from "./commands/GetNetworkCommand";
30
+ import { GetNetworkSettingsCommandInput, GetNetworkSettingsCommandOutput } from "./commands/GetNetworkSettingsCommand";
31
+ import { GetOidcInfoCommandInput, GetOidcInfoCommandOutput } from "./commands/GetOidcInfoCommand";
32
+ import { GetSecurityGroupCommandInput, GetSecurityGroupCommandOutput } from "./commands/GetSecurityGroupCommand";
33
+ import { GetUserCommandInput, GetUserCommandOutput } from "./commands/GetUserCommand";
34
+ import { GetUsersCountCommandInput, GetUsersCountCommandOutput } from "./commands/GetUsersCountCommand";
35
+ import { ListBlockedGuestUsersCommandInput, ListBlockedGuestUsersCommandOutput } from "./commands/ListBlockedGuestUsersCommand";
36
+ import { ListBotsCommandInput, ListBotsCommandOutput } from "./commands/ListBotsCommand";
37
+ import { ListDevicesForUserCommandInput, ListDevicesForUserCommandOutput } from "./commands/ListDevicesForUserCommand";
38
+ import { ListGuestUsersCommandInput, ListGuestUsersCommandOutput } from "./commands/ListGuestUsersCommand";
39
+ import { ListNetworksCommandInput, ListNetworksCommandOutput } from "./commands/ListNetworksCommand";
40
+ import { ListSecurityGroupsCommandInput, ListSecurityGroupsCommandOutput } from "./commands/ListSecurityGroupsCommand";
41
+ import { ListSecurityGroupUsersCommandInput, ListSecurityGroupUsersCommandOutput } from "./commands/ListSecurityGroupUsersCommand";
42
+ import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
43
+ import { RegisterOidcConfigCommandInput, RegisterOidcConfigCommandOutput } from "./commands/RegisterOidcConfigCommand";
44
+ import { RegisterOidcConfigTestCommandInput, RegisterOidcConfigTestCommandOutput } from "./commands/RegisterOidcConfigTestCommand";
45
+ import { UpdateBotCommandInput, UpdateBotCommandOutput } from "./commands/UpdateBotCommand";
46
+ import { UpdateDataRetentionCommandInput, UpdateDataRetentionCommandOutput } from "./commands/UpdateDataRetentionCommand";
47
+ import { UpdateGuestUserCommandInput, UpdateGuestUserCommandOutput } from "./commands/UpdateGuestUserCommand";
48
+ import { UpdateNetworkCommandInput, UpdateNetworkCommandOutput } from "./commands/UpdateNetworkCommand";
49
+ import { UpdateNetworkSettingsCommandInput, UpdateNetworkSettingsCommandOutput } from "./commands/UpdateNetworkSettingsCommand";
50
+ import { UpdateSecurityGroupCommandInput, UpdateSecurityGroupCommandOutput } from "./commands/UpdateSecurityGroupCommand";
51
+ import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
52
+ import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
53
+ import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
54
+ export { __Client };
55
+ /**
56
+ * @public
57
+ */
58
+ export type ServiceInputTypes = BatchCreateUserCommandInput | BatchDeleteUserCommandInput | BatchLookupUserUnameCommandInput | BatchReinviteUserCommandInput | BatchResetDevicesForUserCommandInput | BatchToggleUserSuspendStatusCommandInput | CreateBotCommandInput | CreateDataRetentionBotChallengeCommandInput | CreateDataRetentionBotCommandInput | CreateNetworkCommandInput | CreateSecurityGroupCommandInput | DeleteBotCommandInput | DeleteDataRetentionBotCommandInput | DeleteNetworkCommandInput | DeleteSecurityGroupCommandInput | GetBotCommandInput | GetBotsCountCommandInput | GetDataRetentionBotCommandInput | GetGuestUserHistoryCountCommandInput | GetNetworkCommandInput | GetNetworkSettingsCommandInput | GetOidcInfoCommandInput | GetSecurityGroupCommandInput | GetUserCommandInput | GetUsersCountCommandInput | ListBlockedGuestUsersCommandInput | ListBotsCommandInput | ListDevicesForUserCommandInput | ListGuestUsersCommandInput | ListNetworksCommandInput | ListSecurityGroupUsersCommandInput | ListSecurityGroupsCommandInput | ListUsersCommandInput | RegisterOidcConfigCommandInput | RegisterOidcConfigTestCommandInput | UpdateBotCommandInput | UpdateDataRetentionCommandInput | UpdateGuestUserCommandInput | UpdateNetworkCommandInput | UpdateNetworkSettingsCommandInput | UpdateSecurityGroupCommandInput | UpdateUserCommandInput;
59
+ /**
60
+ * @public
61
+ */
62
+ export type ServiceOutputTypes = BatchCreateUserCommandOutput | BatchDeleteUserCommandOutput | BatchLookupUserUnameCommandOutput | BatchReinviteUserCommandOutput | BatchResetDevicesForUserCommandOutput | BatchToggleUserSuspendStatusCommandOutput | CreateBotCommandOutput | CreateDataRetentionBotChallengeCommandOutput | CreateDataRetentionBotCommandOutput | CreateNetworkCommandOutput | CreateSecurityGroupCommandOutput | DeleteBotCommandOutput | DeleteDataRetentionBotCommandOutput | DeleteNetworkCommandOutput | DeleteSecurityGroupCommandOutput | GetBotCommandOutput | GetBotsCountCommandOutput | GetDataRetentionBotCommandOutput | GetGuestUserHistoryCountCommandOutput | GetNetworkCommandOutput | GetNetworkSettingsCommandOutput | GetOidcInfoCommandOutput | GetSecurityGroupCommandOutput | GetUserCommandOutput | GetUsersCountCommandOutput | ListBlockedGuestUsersCommandOutput | ListBotsCommandOutput | ListDevicesForUserCommandOutput | ListGuestUsersCommandOutput | ListNetworksCommandOutput | ListSecurityGroupUsersCommandOutput | ListSecurityGroupsCommandOutput | ListUsersCommandOutput | RegisterOidcConfigCommandOutput | RegisterOidcConfigTestCommandOutput | UpdateBotCommandOutput | UpdateDataRetentionCommandOutput | UpdateGuestUserCommandOutput | UpdateNetworkCommandOutput | UpdateNetworkSettingsCommandOutput | UpdateSecurityGroupCommandOutput | UpdateUserCommandOutput;
63
+ /**
64
+ * @public
65
+ */
66
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
67
+ /**
68
+ * The HTTP handler to use or its constructor options. Fetch in browser and Https in Nodejs.
69
+ */
70
+ requestHandler?: __HttpHandlerUserInput;
71
+ /**
72
+ * A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
73
+ * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
74
+ * @internal
75
+ */
76
+ sha256?: __ChecksumConstructor | __HashConstructor;
77
+ /**
78
+ * The function that will be used to convert strings into HTTP endpoints.
79
+ * @internal
80
+ */
81
+ urlParser?: __UrlParser;
82
+ /**
83
+ * A function that can calculate the length of a request body.
84
+ * @internal
85
+ */
86
+ bodyLengthChecker?: __BodyLengthCalculator;
87
+ /**
88
+ * A function that converts a stream into an array of bytes.
89
+ * @internal
90
+ */
91
+ streamCollector?: __StreamCollector;
92
+ /**
93
+ * The function that will be used to convert a base64-encoded string to a byte array.
94
+ * @internal
95
+ */
96
+ base64Decoder?: __Decoder;
97
+ /**
98
+ * The function that will be used to convert binary data to a base64-encoded string.
99
+ * @internal
100
+ */
101
+ base64Encoder?: __Encoder;
102
+ /**
103
+ * The function that will be used to convert a UTF8-encoded string to a byte array.
104
+ * @internal
105
+ */
106
+ utf8Decoder?: __Decoder;
107
+ /**
108
+ * The function that will be used to convert binary data to a UTF-8 encoded string.
109
+ * @internal
110
+ */
111
+ utf8Encoder?: __Encoder;
112
+ /**
113
+ * The runtime environment.
114
+ * @internal
115
+ */
116
+ runtime?: string;
117
+ /**
118
+ * Disable dynamically changing the endpoint of the client based on the hostPrefix
119
+ * trait of an operation.
120
+ */
121
+ disableHostPrefix?: boolean;
122
+ /**
123
+ * Unique service identifier.
124
+ * @internal
125
+ */
126
+ serviceId?: string;
127
+ /**
128
+ * Enables IPv6/IPv4 dualstack endpoint.
129
+ */
130
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
131
+ /**
132
+ * Enables FIPS compatible endpoints.
133
+ */
134
+ useFipsEndpoint?: boolean | __Provider<boolean>;
135
+ /**
136
+ * The AWS region to which this client will send requests
137
+ */
138
+ region?: string | __Provider<string>;
139
+ /**
140
+ * Setting a client profile is similar to setting a value for the
141
+ * AWS_PROFILE environment variable. Setting a profile on a client
142
+ * in code only affects the single client instance, unlike AWS_PROFILE.
143
+ *
144
+ * When set, and only for environments where an AWS configuration
145
+ * file exists, fields configurable by this file will be retrieved
146
+ * from the specified profile within that file.
147
+ * Conflicting code configuration and environment variables will
148
+ * still have higher priority.
149
+ *
150
+ * For client credential resolution that involves checking the AWS
151
+ * configuration file, the client's profile (this value) will be
152
+ * used unless a different profile is set in the credential
153
+ * provider options.
154
+ *
155
+ */
156
+ profile?: string;
157
+ /**
158
+ * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
159
+ * @internal
160
+ */
161
+ defaultUserAgentProvider?: Provider<__UserAgent>;
162
+ /**
163
+ * Default credentials provider; Not available in browser runtime.
164
+ * @deprecated
165
+ * @internal
166
+ */
167
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
168
+ /**
169
+ * Value for how many times a request will be made at most in case of retry.
170
+ */
171
+ maxAttempts?: number | __Provider<number>;
172
+ /**
173
+ * Specifies which retry algorithm to use.
174
+ * @see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/
175
+ *
176
+ */
177
+ retryMode?: string | __Provider<string>;
178
+ /**
179
+ * Optional logger for logging debug/info/warn/error.
180
+ */
181
+ logger?: __Logger;
182
+ /**
183
+ * Optional extensions
184
+ */
185
+ extensions?: RuntimeExtension[];
186
+ /**
187
+ * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
188
+ */
189
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
190
+ }
191
+ /**
192
+ * @public
193
+ */
194
+ export type WickrClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
195
+ /**
196
+ * @public
197
+ *
198
+ * The configuration interface of WickrClient class constructor that set the region, credentials and other options.
199
+ */
200
+ export interface WickrClientConfig extends WickrClientConfigType {
201
+ }
202
+ /**
203
+ * @public
204
+ */
205
+ export type WickrClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
206
+ /**
207
+ * @public
208
+ *
209
+ * The resolved configuration interface of WickrClient class. This is resolved and normalized from the {@link WickrClientConfig | constructor configuration interface}.
210
+ */
211
+ export interface WickrClientResolvedConfig extends WickrClientResolvedConfigType {
212
+ }
213
+ /**
214
+ * <p>Welcome to the <i>Amazon Web Services Wickr API Reference</i>.</p> <p>The Amazon Web Services Wickr application programming interface (API) is designed for administrators to perform key tasks, such as creating and managing Amazon Web Services Wickr, networks, users, security groups, bots and more. This guide provides detailed information about the Amazon Web Services Wickr API, including operations, types, inputs and outputs, and error codes. You can use an Amazon Web Services SDK, the Amazon Web Services Command Line Interface (Amazon Web Services CLI, or the REST API to make API calls for Amazon Web Services Wickr. </p> <p> <i>Using Amazon Web Services SDK</i> </p> <p>The SDK clients authenticate your requests by using access keys that you provide. For more information, see <a href="https://docs.aws.amazon.com/sdkref/latest/guide/access.html">Authentication and access using Amazon Web Services SDKs and tools</a> in the <i>Amazon Web Services SDKs and Tools Reference Guide</i>. </p> <p> <i>Using Amazon Web Services CLI</i> </p> <p>Use your access keys with the Amazon Web Services CLI to make API calls. For more information about setting up the Amazon Web Services CLI, see <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html">Getting started with the Amazon Web Services CLI</a> in the <i>Amazon Web Services Command Line Interface User Guide for Version 2</i>. </p> <p> <i>Using REST APIs</i> </p> <p>If you use REST to make API calls, you must authenticate your request by providing a signature. Amazon Web Services Wickr supports Signature Version 4. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_sigv.html">Amazon Web Services Signature Version 4 for API requests</a> in the <i>Amazon Web Services Identity and Access Management User Guide</i>. </p> <p>Access and permissions to the APIs can be controlled by Amazon Web Services Identity and Access Management. The managed policy <a href="https://docs.aws.amazon.com/wickr/latest/adminguide/security-iam-awsmanpol.html#security-iam-awsmanpol-AWSWickrFullAccess">Amazon Web ServicesWickrFullAccess</a> grants full administrative permission to the Amazon Web Services Wickr service APIs. For more information on restricting access to specific operations, see <a href="https://docs.aws.amazon.com/wickr/latest/adminguide/security-iam.html">Identity and access management for Amazon Web Services Wickr </a> in the <i>Amazon Web Services Wickr Administration Guide</i>. </p> <p> <i>Types of Errors</i>:</p> <p>The Amazon Web Services Wickr APIs provide an HTTP interface. HTTP defines ranges of HTTP Status Codes for different types of error responses.</p> <ol> <li> <p>Client errors are indicated by HTTP Status Code class of 4xx</p> </li> <li> <p>Service errors are indicated by HTTP Status Code class of 5xx</p> </li> </ol> <p>In this reference guide, the documentation for each API has an Errors section that includes a brief discussion about HTTP status codes. We recommend looking there as part of your investigation when you get an error.</p>
215
+ * @public
216
+ */
217
+ export declare class WickrClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, WickrClientResolvedConfig> {
218
+ /**
219
+ * The resolved configuration of WickrClient class. This is resolved and normalized from the {@link WickrClientConfig | constructor configuration interface}.
220
+ */
221
+ readonly config: WickrClientResolvedConfig;
222
+ constructor(...[configuration]: __CheckOptionalClientConfig<WickrClientConfig>);
223
+ /**
224
+ * Destroy underlying resources, like sockets. It's usually not necessary to do this.
225
+ * However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed.
226
+ * Otherwise, sockets might stay open for quite a long time before the server terminates them.
227
+ */
228
+ destroy(): void;
229
+ }
@@ -0,0 +1,29 @@
1
+ import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types";
2
+ import type { WickrHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
3
+ /**
4
+ * @internal
5
+ */
6
+ export interface HttpAuthExtensionConfiguration {
7
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
8
+ httpAuthSchemes(): HttpAuthScheme[];
9
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: WickrHttpAuthSchemeProvider): void;
10
+ httpAuthSchemeProvider(): WickrHttpAuthSchemeProvider;
11
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
12
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export type HttpAuthRuntimeConfig = Partial<{
18
+ httpAuthSchemes: HttpAuthScheme[];
19
+ httpAuthSchemeProvider: WickrHttpAuthSchemeProvider;
20
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
21
+ }>;
22
+ /**
23
+ * @internal
24
+ */
25
+ export declare const getHttpAuthExtensionConfiguration: (runtimeConfig: HttpAuthRuntimeConfig) => HttpAuthExtensionConfiguration;
26
+ /**
27
+ * @internal
28
+ */
29
+ export declare const resolveHttpAuthRuntimeConfig: (config: HttpAuthExtensionConfiguration) => HttpAuthRuntimeConfig;