@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.
- package/LICENSE +201 -0
- package/README.md +541 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +2520 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +55 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +41 -0
- package/dist-es/Wickr.js +91 -0
- package/dist-es/WickrClient.js +50 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/BatchCreateUserCommand.js +16 -0
- package/dist-es/commands/BatchDeleteUserCommand.js +16 -0
- package/dist-es/commands/BatchLookupUserUnameCommand.js +16 -0
- package/dist-es/commands/BatchReinviteUserCommand.js +16 -0
- package/dist-es/commands/BatchResetDevicesForUserCommand.js +16 -0
- package/dist-es/commands/BatchToggleUserSuspendStatusCommand.js +16 -0
- package/dist-es/commands/CreateBotCommand.js +16 -0
- package/dist-es/commands/CreateDataRetentionBotChallengeCommand.js +16 -0
- package/dist-es/commands/CreateDataRetentionBotCommand.js +16 -0
- package/dist-es/commands/CreateNetworkCommand.js +16 -0
- package/dist-es/commands/CreateSecurityGroupCommand.js +16 -0
- package/dist-es/commands/DeleteBotCommand.js +16 -0
- package/dist-es/commands/DeleteDataRetentionBotCommand.js +16 -0
- package/dist-es/commands/DeleteNetworkCommand.js +16 -0
- package/dist-es/commands/DeleteSecurityGroupCommand.js +16 -0
- package/dist-es/commands/GetBotCommand.js +16 -0
- package/dist-es/commands/GetBotsCountCommand.js +16 -0
- package/dist-es/commands/GetDataRetentionBotCommand.js +16 -0
- package/dist-es/commands/GetGuestUserHistoryCountCommand.js +16 -0
- package/dist-es/commands/GetNetworkCommand.js +16 -0
- package/dist-es/commands/GetNetworkSettingsCommand.js +16 -0
- package/dist-es/commands/GetOidcInfoCommand.js +16 -0
- package/dist-es/commands/GetSecurityGroupCommand.js +16 -0
- package/dist-es/commands/GetUserCommand.js +16 -0
- package/dist-es/commands/GetUsersCountCommand.js +16 -0
- package/dist-es/commands/ListBlockedGuestUsersCommand.js +16 -0
- package/dist-es/commands/ListBotsCommand.js +16 -0
- package/dist-es/commands/ListDevicesForUserCommand.js +16 -0
- package/dist-es/commands/ListGuestUsersCommand.js +16 -0
- package/dist-es/commands/ListNetworksCommand.js +16 -0
- package/dist-es/commands/ListSecurityGroupUsersCommand.js +16 -0
- package/dist-es/commands/ListSecurityGroupsCommand.js +16 -0
- package/dist-es/commands/ListUsersCommand.js +16 -0
- package/dist-es/commands/RegisterOidcConfigCommand.js +16 -0
- package/dist-es/commands/RegisterOidcConfigTestCommand.js +16 -0
- package/dist-es/commands/UpdateBotCommand.js +16 -0
- package/dist-es/commands/UpdateDataRetentionCommand.js +16 -0
- package/dist-es/commands/UpdateGuestUserCommand.js +16 -0
- package/dist-es/commands/UpdateNetworkCommand.js +16 -0
- package/dist-es/commands/UpdateNetworkSettingsCommand.js +16 -0
- package/dist-es/commands/UpdateSecurityGroupCommand.js +16 -0
- package/dist-es/commands/UpdateUserCommand.js +16 -0
- package/dist-es/commands/index.js +42 -0
- package/dist-es/endpoint/EndpointParameters.js +13 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +9 -0
- package/dist-es/models/WickrServiceException.js +8 -0
- package/dist-es/models/enums.js +28 -0
- package/dist-es/models/errors.js +87 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListBlockedGuestUsersPaginator.js +4 -0
- package/dist-es/pagination/ListBotsPaginator.js +4 -0
- package/dist-es/pagination/ListDevicesForUserPaginator.js +4 -0
- package/dist-es/pagination/ListGuestUsersPaginator.js +4 -0
- package/dist-es/pagination/ListNetworksPaginator.js +4 -0
- package/dist-es/pagination/ListSecurityGroupUsersPaginator.js +4 -0
- package/dist-es/pagination/ListSecurityGroupsPaginator.js +4 -0
- package/dist-es/pagination/ListUsersPaginator.js +4 -0
- package/dist-es/pagination/index.js +9 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +50 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +37 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +1491 -0
- package/dist-types/Wickr.d.ts +305 -0
- package/dist-types/WickrClient.d.ts +229 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/BatchCreateUserCommand.d.ts +251 -0
- package/dist-types/commands/BatchDeleteUserCommand.d.ts +171 -0
- package/dist-types/commands/BatchLookupUserUnameCommand.d.ts +175 -0
- package/dist-types/commands/BatchReinviteUserCommand.d.ts +191 -0
- package/dist-types/commands/BatchResetDevicesForUserCommand.d.ts +190 -0
- package/dist-types/commands/BatchToggleUserSuspendStatusCommand.d.ts +174 -0
- package/dist-types/commands/CreateBotCommand.d.ts +161 -0
- package/dist-types/commands/CreateDataRetentionBotChallengeCommand.d.ts +110 -0
- package/dist-types/commands/CreateDataRetentionBotCommand.d.ts +123 -0
- package/dist-types/commands/CreateNetworkCommand.d.ts +150 -0
- package/dist-types/commands/CreateSecurityGroupCommand.d.ts +241 -0
- package/dist-types/commands/DeleteBotCommand.d.ts +126 -0
- package/dist-types/commands/DeleteDataRetentionBotCommand.d.ts +110 -0
- package/dist-types/commands/DeleteNetworkCommand.d.ts +124 -0
- package/dist-types/commands/DeleteSecurityGroupCommand.d.ts +130 -0
- package/dist-types/commands/GetBotCommand.d.ts +144 -0
- package/dist-types/commands/GetBotsCountCommand.d.ts +131 -0
- package/dist-types/commands/GetDataRetentionBotCommand.d.ts +140 -0
- package/dist-types/commands/GetGuestUserHistoryCountCommand.d.ts +155 -0
- package/dist-types/commands/GetNetworkCommand.d.ts +137 -0
- package/dist-types/commands/GetNetworkSettingsCommand.d.ts +166 -0
- package/dist-types/commands/GetOidcInfoCommand.d.ts +169 -0
- package/dist-types/commands/GetSecurityGroupCommand.d.ts +211 -0
- package/dist-types/commands/GetUserCommand.d.ts +194 -0
- package/dist-types/commands/GetUsersCountCommand.d.ts +137 -0
- package/dist-types/commands/ListBlockedGuestUsersCommand.d.ts +185 -0
- package/dist-types/commands/ListBotsCommand.d.ts +192 -0
- package/dist-types/commands/ListDevicesForUserCommand.d.ts +197 -0
- package/dist-types/commands/ListGuestUsersCommand.d.ts +192 -0
- package/dist-types/commands/ListNetworksCommand.d.ts +167 -0
- package/dist-types/commands/ListSecurityGroupUsersCommand.d.ts +156 -0
- package/dist-types/commands/ListSecurityGroupsCommand.d.ts +246 -0
- package/dist-types/commands/ListUsersCommand.d.ts +221 -0
- package/dist-types/commands/RegisterOidcConfigCommand.d.ts +174 -0
- package/dist-types/commands/RegisterOidcConfigTestCommand.d.ts +168 -0
- package/dist-types/commands/UpdateBotCommand.d.ts +133 -0
- package/dist-types/commands/UpdateDataRetentionCommand.d.ts +144 -0
- package/dist-types/commands/UpdateGuestUserCommand.d.ts +146 -0
- package/dist-types/commands/UpdateNetworkCommand.d.ts +142 -0
- package/dist-types/commands/UpdateNetworkSettingsCommand.d.ts +234 -0
- package/dist-types/commands/UpdateSecurityGroupCommand.d.ts +282 -0
- package/dist-types/commands/UpdateUserCommand.d.ts +229 -0
- package/dist-types/commands/index.d.ts +42 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +50 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +17 -0
- package/dist-types/models/WickrServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +58 -0
- package/dist-types/models/errors.d.ts +92 -0
- package/dist-types/models/models_0.d.ts +2975 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListBlockedGuestUsersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBotsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDevicesForUserPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGuestUsersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListNetworksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSecurityGroupUsersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSecurityGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListUsersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +9 -0
- package/dist-types/runtimeConfig.browser.d.ts +55 -0
- package/dist-types/runtimeConfig.d.ts +55 -0
- package/dist-types/runtimeConfig.native.d.ts +54 -0
- package/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +164 -0
- package/dist-types/ts3.4/Wickr.d.ts +720 -0
- package/dist-types/ts3.4/WickrClient.d.ts +371 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/BatchCreateUserCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/BatchDeleteUserCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/BatchLookupUserUnameCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchReinviteUserCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchResetDevicesForUserCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchToggleUserSuspendStatusCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateBotCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateDataRetentionBotChallengeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateDataRetentionBotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateNetworkCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateSecurityGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteBotCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteDataRetentionBotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteNetworkCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetBotCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetBotsCountCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetDataRetentionBotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetGuestUserHistoryCountCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetNetworkCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetNetworkSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetOidcInfoCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetSecurityGroupCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetUserCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetUsersCountCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListBlockedGuestUsersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListBotsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListDevicesForUserCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListGuestUsersCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListNetworksCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListSecurityGroupUsersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSecurityGroupsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/RegisterOidcConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RegisterOidcConfigTestCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateBotCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateDataRetentionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateGuestUserCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateNetworkCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateNetworkSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateSecurityGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +42 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +12 -0
- package/dist-types/ts3.4/models/WickrServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +31 -0
- package/dist-types/ts3.4/models/errors.d.ts +43 -0
- package/dist-types/ts3.4/models/models_0.d.ts +714 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/dist-types/ts3.4/pagination/ListBlockedGuestUsersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBotsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDevicesForUserPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGuestUsersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListNetworksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSecurityGroupUsersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSecurityGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +100 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +168 -0
- package/package.json +100 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListBlockedGuestUsersCommandInput,
|
|
4
|
+
ListBlockedGuestUsersCommandOutput,
|
|
5
|
+
} from "../commands/ListBlockedGuestUsersCommand";
|
|
6
|
+
import { WickrPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListBlockedGuestUsers: (
|
|
8
|
+
config: WickrPaginationConfiguration,
|
|
9
|
+
input: ListBlockedGuestUsersCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListBlockedGuestUsersCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListBotsCommandInput,
|
|
4
|
+
ListBotsCommandOutput,
|
|
5
|
+
} from "../commands/ListBotsCommand";
|
|
6
|
+
import { WickrPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListBots: (
|
|
8
|
+
config: WickrPaginationConfiguration,
|
|
9
|
+
input: ListBotsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListBotsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDevicesForUserCommandInput,
|
|
4
|
+
ListDevicesForUserCommandOutput,
|
|
5
|
+
} from "../commands/ListDevicesForUserCommand";
|
|
6
|
+
import { WickrPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListDevicesForUser: (
|
|
8
|
+
config: WickrPaginationConfiguration,
|
|
9
|
+
input: ListDevicesForUserCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDevicesForUserCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListGuestUsersCommandInput,
|
|
4
|
+
ListGuestUsersCommandOutput,
|
|
5
|
+
} from "../commands/ListGuestUsersCommand";
|
|
6
|
+
import { WickrPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListGuestUsers: (
|
|
8
|
+
config: WickrPaginationConfiguration,
|
|
9
|
+
input: ListGuestUsersCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListGuestUsersCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListNetworksCommandInput,
|
|
4
|
+
ListNetworksCommandOutput,
|
|
5
|
+
} from "../commands/ListNetworksCommand";
|
|
6
|
+
import { WickrPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListNetworks: (
|
|
8
|
+
config: WickrPaginationConfiguration,
|
|
9
|
+
input: ListNetworksCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListNetworksCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSecurityGroupUsersCommandInput,
|
|
4
|
+
ListSecurityGroupUsersCommandOutput,
|
|
5
|
+
} from "../commands/ListSecurityGroupUsersCommand";
|
|
6
|
+
import { WickrPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListSecurityGroupUsers: (
|
|
8
|
+
config: WickrPaginationConfiguration,
|
|
9
|
+
input: ListSecurityGroupUsersCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListSecurityGroupUsersCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSecurityGroupsCommandInput,
|
|
4
|
+
ListSecurityGroupsCommandOutput,
|
|
5
|
+
} from "../commands/ListSecurityGroupsCommand";
|
|
6
|
+
import { WickrPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListSecurityGroups: (
|
|
8
|
+
config: WickrPaginationConfiguration,
|
|
9
|
+
input: ListSecurityGroupsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListSecurityGroupsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListUsersCommandInput,
|
|
4
|
+
ListUsersCommandOutput,
|
|
5
|
+
} from "../commands/ListUsersCommand";
|
|
6
|
+
import { WickrPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListUsers: (
|
|
8
|
+
config: WickrPaginationConfiguration,
|
|
9
|
+
input: ListUsersCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListUsersCommandOutput>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListBlockedGuestUsersPaginator";
|
|
3
|
+
export * from "./ListBotsPaginator";
|
|
4
|
+
export * from "./ListDevicesForUserPaginator";
|
|
5
|
+
export * from "./ListGuestUsersPaginator";
|
|
6
|
+
export * from "./ListNetworksPaginator";
|
|
7
|
+
export * from "./ListSecurityGroupUsersPaginator";
|
|
8
|
+
export * from "./ListSecurityGroupsPaginator";
|
|
9
|
+
export * from "./ListUsersPaginator";
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { WickrClientConfig } from "./WickrClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: WickrClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
|
+
defaultUserAgentProvider: (
|
|
15
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
16
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
21
|
+
| RequestHandler;
|
|
22
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
24
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
25
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
26
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
28
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
29
|
+
cacheMiddleware?: boolean | undefined;
|
|
30
|
+
protocol:
|
|
31
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
+
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
34
|
+
protocolSettings: {
|
|
35
|
+
defaultNamespace?: string;
|
|
36
|
+
[setting: string]: unknown;
|
|
37
|
+
};
|
|
38
|
+
apiVersion: string;
|
|
39
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
40
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
41
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
42
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
43
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
44
|
+
disableHostPrefix: boolean;
|
|
45
|
+
serviceId: string;
|
|
46
|
+
profile?: string;
|
|
47
|
+
logger: import("@smithy/types").Logger;
|
|
48
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
49
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
50
|
+
userAgentAppId?:
|
|
51
|
+
| string
|
|
52
|
+
| undefined
|
|
53
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
54
|
+
retryStrategy?:
|
|
55
|
+
| import("@smithy/types").RetryStrategy
|
|
56
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
57
|
+
endpoint?:
|
|
58
|
+
| ((
|
|
59
|
+
| string
|
|
60
|
+
| import("@smithy/types").Endpoint
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
62
|
+
| import("@smithy/types").EndpointV2
|
|
63
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
64
|
+
) &
|
|
65
|
+
(
|
|
66
|
+
| string
|
|
67
|
+
| import("@smithy/types").Provider<string>
|
|
68
|
+
| import("@smithy/types").Endpoint
|
|
69
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
70
|
+
| import("@smithy/types").EndpointV2
|
|
71
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
72
|
+
))
|
|
73
|
+
| undefined;
|
|
74
|
+
endpointProvider: (
|
|
75
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
76
|
+
context?: {
|
|
77
|
+
logger?: import("@smithy/types").Logger;
|
|
78
|
+
}
|
|
79
|
+
) => import("@smithy/types").EndpointV2;
|
|
80
|
+
tls?: boolean;
|
|
81
|
+
serviceConfiguredEndpoint?: never;
|
|
82
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
83
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
84
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WickrHttpAuthSchemeProvider;
|
|
85
|
+
credentials?:
|
|
86
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
87
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
88
|
+
signer?:
|
|
89
|
+
| import("@smithy/types").RequestSigner
|
|
90
|
+
| ((
|
|
91
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
92
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
93
|
+
signingEscapePath?: boolean;
|
|
94
|
+
systemClockOffset?: number;
|
|
95
|
+
signingRegion?: string;
|
|
96
|
+
signerConstructor?: new (
|
|
97
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
98
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
99
|
+
) => import("@smithy/types").RequestSigner;
|
|
100
|
+
};
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { WickrClientConfig } from "./WickrClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: WickrClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider:
|
|
11
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
|
+
| ((
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
|
+
defaultUserAgentProvider: (
|
|
16
|
+
config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
17
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
+
requestHandler:
|
|
21
|
+
| RequestHandler
|
|
22
|
+
| import("@smithy/protocol-http").HttpHandler<any>;
|
|
23
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
25
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
26
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
29
|
+
cacheMiddleware?: boolean | undefined;
|
|
30
|
+
protocol:
|
|
31
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
+
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
34
|
+
protocolSettings: {
|
|
35
|
+
defaultNamespace?: string;
|
|
36
|
+
[setting: string]: unknown;
|
|
37
|
+
};
|
|
38
|
+
apiVersion: string;
|
|
39
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
40
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
41
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
42
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
43
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
44
|
+
disableHostPrefix: boolean;
|
|
45
|
+
serviceId: string;
|
|
46
|
+
profile?: string;
|
|
47
|
+
logger: import("@smithy/types").Logger;
|
|
48
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
49
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
50
|
+
retryStrategy?:
|
|
51
|
+
| import("@smithy/types").RetryStrategy
|
|
52
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
53
|
+
endpoint?:
|
|
54
|
+
| ((
|
|
55
|
+
| string
|
|
56
|
+
| import("@smithy/types").Endpoint
|
|
57
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
58
|
+
| import("@smithy/types").EndpointV2
|
|
59
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
60
|
+
) &
|
|
61
|
+
(
|
|
62
|
+
| string
|
|
63
|
+
| import("@smithy/types").Provider<string>
|
|
64
|
+
| import("@smithy/types").Endpoint
|
|
65
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
66
|
+
| import("@smithy/types").EndpointV2
|
|
67
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
68
|
+
))
|
|
69
|
+
| undefined;
|
|
70
|
+
endpointProvider: (
|
|
71
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
72
|
+
context?: {
|
|
73
|
+
logger?: import("@smithy/types").Logger;
|
|
74
|
+
}
|
|
75
|
+
) => import("@smithy/types").EndpointV2;
|
|
76
|
+
tls?: boolean;
|
|
77
|
+
serviceConfiguredEndpoint?: never;
|
|
78
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
79
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WickrHttpAuthSchemeProvider;
|
|
80
|
+
credentials?:
|
|
81
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
82
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
83
|
+
signer?:
|
|
84
|
+
| import("@smithy/types").RequestSigner
|
|
85
|
+
| ((
|
|
86
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
87
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
88
|
+
signingEscapePath?: boolean;
|
|
89
|
+
systemClockOffset?: number;
|
|
90
|
+
signingRegion?: string;
|
|
91
|
+
signerConstructor?: new (
|
|
92
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
93
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
94
|
+
) => import("@smithy/types").RequestSigner;
|
|
95
|
+
};
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { WickrClientConfig } from "./WickrClient";
|
|
2
|
+
export declare const getRuntimeConfig: (config: WickrClientConfig) => {
|
|
3
|
+
runtime: string;
|
|
4
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
5
|
+
requestHandler:
|
|
6
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
7
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
8
|
+
| Record<string, unknown>
|
|
9
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
|
+
cacheMiddleware?: boolean;
|
|
12
|
+
protocol:
|
|
13
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
14
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
15
|
+
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
16
|
+
protocolSettings: {
|
|
17
|
+
defaultNamespace?: string;
|
|
18
|
+
[setting: string]: unknown;
|
|
19
|
+
};
|
|
20
|
+
apiVersion: string;
|
|
21
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
22
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
24
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
26
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
27
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
28
|
+
disableHostPrefix: boolean;
|
|
29
|
+
serviceId: string;
|
|
30
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
32
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
34
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
35
|
+
profile?: string;
|
|
36
|
+
defaultUserAgentProvider: (
|
|
37
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
38
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
39
|
+
credentialDefaultProvider:
|
|
40
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
41
|
+
| ((
|
|
42
|
+
_: unknown
|
|
43
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
44
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
45
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
46
|
+
logger: import("@smithy/types").Logger;
|
|
47
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
48
|
+
defaultsMode:
|
|
49
|
+
| import("@smithy/smithy-client").DefaultsMode
|
|
50
|
+
| import("@smithy/types").Provider<
|
|
51
|
+
import("@smithy/smithy-client").DefaultsMode
|
|
52
|
+
>;
|
|
53
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
54
|
+
userAgentAppId?:
|
|
55
|
+
| string
|
|
56
|
+
| undefined
|
|
57
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
58
|
+
retryStrategy?:
|
|
59
|
+
| import("@smithy/types").RetryStrategy
|
|
60
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
61
|
+
endpoint?:
|
|
62
|
+
| ((
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Endpoint
|
|
65
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
66
|
+
| import("@smithy/types").EndpointV2
|
|
67
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
68
|
+
) &
|
|
69
|
+
(
|
|
70
|
+
| string
|
|
71
|
+
| import("@smithy/types").Provider<string>
|
|
72
|
+
| import("@smithy/types").Endpoint
|
|
73
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
74
|
+
| import("@smithy/types").EndpointV2
|
|
75
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
76
|
+
))
|
|
77
|
+
| undefined;
|
|
78
|
+
endpointProvider: (
|
|
79
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
80
|
+
context?: {
|
|
81
|
+
logger?: import("@smithy/types").Logger;
|
|
82
|
+
}
|
|
83
|
+
) => import("@smithy/types").EndpointV2;
|
|
84
|
+
tls?: boolean;
|
|
85
|
+
serviceConfiguredEndpoint?: never;
|
|
86
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
87
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
88
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WickrHttpAuthSchemeProvider;
|
|
89
|
+
credentials?:
|
|
90
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
91
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
92
|
+
signer?:
|
|
93
|
+
| import("@smithy/types").RequestSigner
|
|
94
|
+
| ((
|
|
95
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
96
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
97
|
+
signingEscapePath?: boolean;
|
|
98
|
+
systemClockOffset?: number;
|
|
99
|
+
signingRegion?: string;
|
|
100
|
+
signerConstructor?: new (
|
|
101
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
102
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
103
|
+
) => import("@smithy/types").RequestSigner;
|
|
104
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
|
+
import { WickrClientConfig } from "./WickrClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: WickrClientConfig) => {
|
|
4
|
+
apiVersion: string;
|
|
5
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
6
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
7
|
+
disableHostPrefix: boolean;
|
|
8
|
+
endpointProvider: (
|
|
9
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
|
+
context?: {
|
|
11
|
+
logger?: import("@smithy/types").Logger;
|
|
12
|
+
}
|
|
13
|
+
) => import("@smithy/types").EndpointV2;
|
|
14
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WickrHttpAuthSchemeProvider;
|
|
16
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
17
|
+
logger: import("@smithy/types").Logger;
|
|
18
|
+
protocol:
|
|
19
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
20
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
21
|
+
| typeof AwsRestJsonProtocol;
|
|
22
|
+
protocolSettings: {
|
|
23
|
+
[setting: string]: unknown;
|
|
24
|
+
defaultNamespace?: string;
|
|
25
|
+
};
|
|
26
|
+
serviceId: string;
|
|
27
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
28
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
29
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
30
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WickrExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(extensionConfiguration: WickrExtensionConfiguration): void;
|
|
4
|
+
}
|
|
5
|
+
export interface RuntimeExtensionsConfig {
|
|
6
|
+
extensions: RuntimeExtension[];
|
|
7
|
+
}
|
|
8
|
+
export declare const resolveRuntimeExtensions: (
|
|
9
|
+
runtimeConfig: any,
|
|
10
|
+
extensions: RuntimeExtension[]
|
|
11
|
+
) => any;
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticOperationSchema,
|
|
4
|
+
StaticStructureSchema,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
export declare var BadRequestError$: StaticErrorSchema;
|
|
7
|
+
export declare var BasicDeviceObject$: StaticStructureSchema;
|
|
8
|
+
export declare var BatchCreateUserRequest$: StaticStructureSchema;
|
|
9
|
+
export declare var BatchCreateUserRequestItem$: StaticStructureSchema;
|
|
10
|
+
export declare var BatchCreateUserResponse$: StaticStructureSchema;
|
|
11
|
+
export declare var BatchDeleteUserRequest$: StaticStructureSchema;
|
|
12
|
+
export declare var BatchDeleteUserResponse$: StaticStructureSchema;
|
|
13
|
+
export declare var BatchDeviceErrorResponseItem$: StaticStructureSchema;
|
|
14
|
+
export declare var BatchDeviceSuccessResponseItem$: StaticStructureSchema;
|
|
15
|
+
export declare var BatchLookupUserUnameRequest$: StaticStructureSchema;
|
|
16
|
+
export declare var BatchLookupUserUnameResponse$: StaticStructureSchema;
|
|
17
|
+
export declare var BatchReinviteUserRequest$: StaticStructureSchema;
|
|
18
|
+
export declare var BatchReinviteUserResponse$: StaticStructureSchema;
|
|
19
|
+
export declare var BatchResetDevicesForUserRequest$: StaticStructureSchema;
|
|
20
|
+
export declare var BatchResetDevicesForUserResponse$: StaticStructureSchema;
|
|
21
|
+
export declare var BatchToggleUserSuspendStatusRequest$: StaticStructureSchema;
|
|
22
|
+
export declare var BatchToggleUserSuspendStatusResponse$: StaticStructureSchema;
|
|
23
|
+
export declare var BatchUnameErrorResponseItem$: StaticStructureSchema;
|
|
24
|
+
export declare var BatchUnameSuccessResponseItem$: StaticStructureSchema;
|
|
25
|
+
export declare var BatchUserErrorResponseItem$: StaticStructureSchema;
|
|
26
|
+
export declare var BatchUserSuccessResponseItem$: StaticStructureSchema;
|
|
27
|
+
export declare var BlockedGuestUser$: StaticStructureSchema;
|
|
28
|
+
export declare var Bot$: StaticStructureSchema;
|
|
29
|
+
export declare var CallingSettings$: StaticStructureSchema;
|
|
30
|
+
export declare var CreateBotRequest$: StaticStructureSchema;
|
|
31
|
+
export declare var CreateBotResponse$: StaticStructureSchema;
|
|
32
|
+
export declare var CreateDataRetentionBotChallengeRequest$: StaticStructureSchema;
|
|
33
|
+
export declare var CreateDataRetentionBotChallengeResponse$: StaticStructureSchema;
|
|
34
|
+
export declare var CreateDataRetentionBotRequest$: StaticStructureSchema;
|
|
35
|
+
export declare var CreateDataRetentionBotResponse$: StaticStructureSchema;
|
|
36
|
+
export declare var CreateNetworkRequest$: StaticStructureSchema;
|
|
37
|
+
export declare var CreateNetworkResponse$: StaticStructureSchema;
|
|
38
|
+
export declare var CreateSecurityGroupRequest$: StaticStructureSchema;
|
|
39
|
+
export declare var CreateSecurityGroupResponse$: StaticStructureSchema;
|
|
40
|
+
export declare var DeleteBotRequest$: StaticStructureSchema;
|
|
41
|
+
export declare var DeleteBotResponse$: StaticStructureSchema;
|
|
42
|
+
export declare var DeleteDataRetentionBotRequest$: StaticStructureSchema;
|
|
43
|
+
export declare var DeleteDataRetentionBotResponse$: StaticStructureSchema;
|
|
44
|
+
export declare var DeleteNetworkRequest$: StaticStructureSchema;
|
|
45
|
+
export declare var DeleteNetworkResponse$: StaticStructureSchema;
|
|
46
|
+
export declare var DeleteSecurityGroupRequest$: StaticStructureSchema;
|
|
47
|
+
export declare var DeleteSecurityGroupResponse$: StaticStructureSchema;
|
|
48
|
+
export declare var ErrorDetail$: StaticStructureSchema;
|
|
49
|
+
export declare var ForbiddenError$: StaticErrorSchema;
|
|
50
|
+
export declare var GetBotRequest$: StaticStructureSchema;
|
|
51
|
+
export declare var GetBotResponse$: StaticStructureSchema;
|
|
52
|
+
export declare var GetBotsCountRequest$: StaticStructureSchema;
|
|
53
|
+
export declare var GetBotsCountResponse$: StaticStructureSchema;
|
|
54
|
+
export declare var GetDataRetentionBotRequest$: StaticStructureSchema;
|
|
55
|
+
export declare var GetDataRetentionBotResponse$: StaticStructureSchema;
|
|
56
|
+
export declare var GetGuestUserHistoryCountRequest$: StaticStructureSchema;
|
|
57
|
+
export declare var GetGuestUserHistoryCountResponse$: StaticStructureSchema;
|
|
58
|
+
export declare var GetNetworkRequest$: StaticStructureSchema;
|
|
59
|
+
export declare var GetNetworkResponse$: StaticStructureSchema;
|
|
60
|
+
export declare var GetNetworkSettingsRequest$: StaticStructureSchema;
|
|
61
|
+
export declare var GetNetworkSettingsResponse$: StaticStructureSchema;
|
|
62
|
+
export declare var GetOidcInfoRequest$: StaticStructureSchema;
|
|
63
|
+
export declare var GetOidcInfoResponse$: StaticStructureSchema;
|
|
64
|
+
export declare var GetSecurityGroupRequest$: StaticStructureSchema;
|
|
65
|
+
export declare var GetSecurityGroupResponse$: StaticStructureSchema;
|
|
66
|
+
export declare var GetUserRequest$: StaticStructureSchema;
|
|
67
|
+
export declare var GetUserResponse$: StaticStructureSchema;
|
|
68
|
+
export declare var GetUsersCountRequest$: StaticStructureSchema;
|
|
69
|
+
export declare var GetUsersCountResponse$: StaticStructureSchema;
|
|
70
|
+
export declare var GuestUser$: StaticStructureSchema;
|
|
71
|
+
export declare var GuestUserHistoryCount$: StaticStructureSchema;
|
|
72
|
+
export declare var InternalServerError$: StaticErrorSchema;
|
|
73
|
+
export declare var ListBlockedGuestUsersRequest$: StaticStructureSchema;
|
|
74
|
+
export declare var ListBlockedGuestUsersResponse$: StaticStructureSchema;
|
|
75
|
+
export declare var ListBotsRequest$: StaticStructureSchema;
|
|
76
|
+
export declare var ListBotsResponse$: StaticStructureSchema;
|
|
77
|
+
export declare var ListDevicesForUserRequest$: StaticStructureSchema;
|
|
78
|
+
export declare var ListDevicesForUserResponse$: StaticStructureSchema;
|
|
79
|
+
export declare var ListGuestUsersRequest$: StaticStructureSchema;
|
|
80
|
+
export declare var ListGuestUsersResponse$: StaticStructureSchema;
|
|
81
|
+
export declare var ListNetworksRequest$: StaticStructureSchema;
|
|
82
|
+
export declare var ListNetworksResponse$: StaticStructureSchema;
|
|
83
|
+
export declare var ListSecurityGroupsRequest$: StaticStructureSchema;
|
|
84
|
+
export declare var ListSecurityGroupsResponse$: StaticStructureSchema;
|
|
85
|
+
export declare var ListSecurityGroupUsersRequest$: StaticStructureSchema;
|
|
86
|
+
export declare var ListSecurityGroupUsersResponse$: StaticStructureSchema;
|
|
87
|
+
export declare var ListUsersRequest$: StaticStructureSchema;
|
|
88
|
+
export declare var ListUsersResponse$: StaticStructureSchema;
|
|
89
|
+
export declare var Network$: StaticStructureSchema;
|
|
90
|
+
export declare var NetworkSettings$: StaticStructureSchema;
|
|
91
|
+
export declare var OidcConfigInfo$: StaticStructureSchema;
|
|
92
|
+
export declare var OidcTokenInfo$: StaticStructureSchema;
|
|
93
|
+
export declare var PasswordRequirements$: StaticStructureSchema;
|
|
94
|
+
export declare var PermittedWickrEnterpriseNetwork$: StaticStructureSchema;
|
|
95
|
+
export declare var RateLimitError$: StaticErrorSchema;
|
|
96
|
+
export declare var ReadReceiptConfig$: StaticStructureSchema;
|
|
97
|
+
export declare var RegisterOidcConfigRequest$: StaticStructureSchema;
|
|
98
|
+
export declare var RegisterOidcConfigResponse$: StaticStructureSchema;
|
|
99
|
+
export declare var RegisterOidcConfigTestRequest$: StaticStructureSchema;
|
|
100
|
+
export declare var RegisterOidcConfigTestResponse$: StaticStructureSchema;
|
|
101
|
+
export declare var ResourceNotFoundError$: StaticErrorSchema;
|
|
102
|
+
export declare var SecurityGroup$: StaticStructureSchema;
|
|
103
|
+
export declare var SecurityGroupSettings$: StaticStructureSchema;
|
|
104
|
+
export declare var SecurityGroupSettingsRequest$: StaticStructureSchema;
|
|
105
|
+
export declare var Setting$: StaticStructureSchema;
|
|
106
|
+
export declare var ShredderSettings$: StaticStructureSchema;
|
|
107
|
+
export declare var UnauthorizedError$: StaticErrorSchema;
|
|
108
|
+
export declare var UpdateBotRequest$: StaticStructureSchema;
|
|
109
|
+
export declare var UpdateBotResponse$: StaticStructureSchema;
|
|
110
|
+
export declare var UpdateDataRetentionRequest$: StaticStructureSchema;
|
|
111
|
+
export declare var UpdateDataRetentionResponse$: StaticStructureSchema;
|
|
112
|
+
export declare var UpdateGuestUserRequest$: StaticStructureSchema;
|
|
113
|
+
export declare var UpdateGuestUserResponse$: StaticStructureSchema;
|
|
114
|
+
export declare var UpdateNetworkRequest$: StaticStructureSchema;
|
|
115
|
+
export declare var UpdateNetworkResponse$: StaticStructureSchema;
|
|
116
|
+
export declare var UpdateNetworkSettingsRequest$: StaticStructureSchema;
|
|
117
|
+
export declare var UpdateNetworkSettingsResponse$: StaticStructureSchema;
|
|
118
|
+
export declare var UpdateSecurityGroupRequest$: StaticStructureSchema;
|
|
119
|
+
export declare var UpdateSecurityGroupResponse$: StaticStructureSchema;
|
|
120
|
+
export declare var UpdateUserDetails$: StaticStructureSchema;
|
|
121
|
+
export declare var UpdateUserRequest$: StaticStructureSchema;
|
|
122
|
+
export declare var UpdateUserResponse$: StaticStructureSchema;
|
|
123
|
+
export declare var User$: StaticStructureSchema;
|
|
124
|
+
export declare var ValidationError$: StaticErrorSchema;
|
|
125
|
+
export declare var WickrAwsNetworks$: StaticStructureSchema;
|
|
126
|
+
export declare var WickrServiceException$: StaticErrorSchema;
|
|
127
|
+
export declare var BatchCreateUser$: StaticOperationSchema;
|
|
128
|
+
export declare var BatchDeleteUser$: StaticOperationSchema;
|
|
129
|
+
export declare var BatchLookupUserUname$: StaticOperationSchema;
|
|
130
|
+
export declare var BatchReinviteUser$: StaticOperationSchema;
|
|
131
|
+
export declare var BatchResetDevicesForUser$: StaticOperationSchema;
|
|
132
|
+
export declare var BatchToggleUserSuspendStatus$: StaticOperationSchema;
|
|
133
|
+
export declare var CreateBot$: StaticOperationSchema;
|
|
134
|
+
export declare var CreateDataRetentionBot$: StaticOperationSchema;
|
|
135
|
+
export declare var CreateDataRetentionBotChallenge$: StaticOperationSchema;
|
|
136
|
+
export declare var CreateNetwork$: StaticOperationSchema;
|
|
137
|
+
export declare var CreateSecurityGroup$: StaticOperationSchema;
|
|
138
|
+
export declare var DeleteBot$: StaticOperationSchema;
|
|
139
|
+
export declare var DeleteDataRetentionBot$: StaticOperationSchema;
|
|
140
|
+
export declare var DeleteNetwork$: StaticOperationSchema;
|
|
141
|
+
export declare var DeleteSecurityGroup$: StaticOperationSchema;
|
|
142
|
+
export declare var GetBot$: StaticOperationSchema;
|
|
143
|
+
export declare var GetBotsCount$: StaticOperationSchema;
|
|
144
|
+
export declare var GetDataRetentionBot$: StaticOperationSchema;
|
|
145
|
+
export declare var GetGuestUserHistoryCount$: StaticOperationSchema;
|
|
146
|
+
export declare var GetNetwork$: StaticOperationSchema;
|
|
147
|
+
export declare var GetNetworkSettings$: StaticOperationSchema;
|
|
148
|
+
export declare var GetOidcInfo$: StaticOperationSchema;
|
|
149
|
+
export declare var GetSecurityGroup$: StaticOperationSchema;
|
|
150
|
+
export declare var GetUser$: StaticOperationSchema;
|
|
151
|
+
export declare var GetUsersCount$: StaticOperationSchema;
|
|
152
|
+
export declare var ListBlockedGuestUsers$: StaticOperationSchema;
|
|
153
|
+
export declare var ListBots$: StaticOperationSchema;
|
|
154
|
+
export declare var ListDevicesForUser$: StaticOperationSchema;
|
|
155
|
+
export declare var ListGuestUsers$: StaticOperationSchema;
|
|
156
|
+
export declare var ListNetworks$: StaticOperationSchema;
|
|
157
|
+
export declare var ListSecurityGroups$: StaticOperationSchema;
|
|
158
|
+
export declare var ListSecurityGroupUsers$: StaticOperationSchema;
|
|
159
|
+
export declare var ListUsers$: StaticOperationSchema;
|
|
160
|
+
export declare var RegisterOidcConfig$: StaticOperationSchema;
|
|
161
|
+
export declare var RegisterOidcConfigTest$: StaticOperationSchema;
|
|
162
|
+
export declare var UpdateBot$: StaticOperationSchema;
|
|
163
|
+
export declare var UpdateDataRetention$: StaticOperationSchema;
|
|
164
|
+
export declare var UpdateGuestUser$: StaticOperationSchema;
|
|
165
|
+
export declare var UpdateNetwork$: StaticOperationSchema;
|
|
166
|
+
export declare var UpdateNetworkSettings$: StaticOperationSchema;
|
|
167
|
+
export declare var UpdateSecurityGroup$: StaticOperationSchema;
|
|
168
|
+
export declare var UpdateUser$: StaticOperationSchema;
|