@aws-sdk/client-chime-sdk-identity 3.1086.0 → 3.1088.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/ChimeSDKIdentity.d.ts +97 -114
- package/dist-types/ts3.4/ChimeSDKIdentityClient.d.ts +6 -19
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateAppInstanceAdminCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateAppInstanceBotCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateAppInstanceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateAppInstanceUserCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteAppInstanceAdminCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/DeleteAppInstanceBotCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/DeleteAppInstanceCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/DeleteAppInstanceUserCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/DeregisterAppInstanceUserEndpointCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeAppInstanceAdminCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeAppInstanceBotCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeAppInstanceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeAppInstanceUserCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeAppInstanceUserEndpointCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAppInstanceRetentionSettingsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAppInstanceAdminsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAppInstanceBotsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAppInstanceUserEndpointsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAppInstanceUsersCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAppInstancesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutAppInstanceRetentionSettingsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/PutAppInstanceUserExpirationSettingsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RegisterAppInstanceUserEndpointCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UpdateAppInstanceBotCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateAppInstanceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateAppInstanceUserCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateAppInstanceUserEndpointCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +5 -10
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +39 -39
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { ChimeSDKIdentityClientResolvedConfig } from "../ChimeSDKIdentityClient";
|
|
15
|
-
export interface ChimeSDKIdentityHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface ChimeSDKIdentityHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface ChimeSDKIdentityHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface ChimeSDKIdentityHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
ChimeSDKIdentityClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
ChimeSDKIdentityHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultChimeSDKIdentityHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: ChimeSDKIdentityClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<ChimeSDKIdentityHttpAuthSchemeParameters>;
|
|
31
|
-
export interface ChimeSDKIdentityHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<ChimeSDKIdentityHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface ChimeSDKIdentityHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ChimeSDKIdentityHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultChimeSDKIdentityHttpAuthSchemeProvider: ChimeSDKIdentityHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: ChimeSDKIdentityHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: ChimeSDKIdentityHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./ChimeSDKIdentityClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
ChimeSDKIdentityClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateAppInstanceAdminRequest,
|
|
4
|
-
CreateAppInstanceAdminResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateAppInstanceAdminRequest, CreateAppInstanceAdminResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateAppInstanceAdminCommandInput
|
|
8
|
-
extends CreateAppInstanceAdminRequest {}
|
|
4
|
+
export interface CreateAppInstanceAdminCommandInput extends CreateAppInstanceAdminRequest {}
|
|
9
5
|
export interface CreateAppInstanceAdminCommandOutput
|
|
10
|
-
extends CreateAppInstanceAdminResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateAppInstanceAdminResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateAppInstanceAdminCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateAppInstanceAdminCommandInput
|
|
9
|
+
input: CreateAppInstanceAdminCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateAppInstanceAdminCommandInput,
|
|
17
12
|
CreateAppInstanceAdminCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateAppInstanceAdminCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateAppInstanceAdminCommandInput
|
|
18
|
+
input: CreateAppInstanceAdminCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateAppInstanceAdminCommandInput,
|
|
26
21
|
CreateAppInstanceAdminCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateAppInstanceBotRequest,
|
|
4
|
-
CreateAppInstanceBotResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateAppInstanceBotRequest, CreateAppInstanceBotResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateAppInstanceBotCommandInput
|
|
8
|
-
extends CreateAppInstanceBotRequest {}
|
|
4
|
+
export interface CreateAppInstanceBotCommandInput extends CreateAppInstanceBotRequest {}
|
|
9
5
|
export interface CreateAppInstanceBotCommandOutput
|
|
10
|
-
extends CreateAppInstanceBotResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateAppInstanceBotResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateAppInstanceBotCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateAppInstanceBotCommandInput
|
|
9
|
+
input: CreateAppInstanceBotCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateAppInstanceBotCommandInput,
|
|
17
12
|
CreateAppInstanceBotCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateAppInstanceBotCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateAppInstanceBotCommandInput
|
|
18
|
+
input: CreateAppInstanceBotCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateAppInstanceBotCommandInput,
|
|
26
21
|
CreateAppInstanceBotCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateAppInstanceRequest,
|
|
4
|
-
CreateAppInstanceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateAppInstanceRequest, CreateAppInstanceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateAppInstanceCommandInput
|
|
8
|
-
extends CreateAppInstanceRequest {}
|
|
4
|
+
export interface CreateAppInstanceCommandInput extends CreateAppInstanceRequest {}
|
|
9
5
|
export interface CreateAppInstanceCommandOutput
|
|
10
|
-
extends CreateAppInstanceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateAppInstanceResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateAppInstanceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateAppInstanceCommandInput
|
|
9
|
+
input: CreateAppInstanceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateAppInstanceCommandInput,
|
|
17
12
|
CreateAppInstanceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateAppInstanceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateAppInstanceCommandInput
|
|
18
|
+
input: CreateAppInstanceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateAppInstanceCommandInput,
|
|
26
21
|
CreateAppInstanceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateAppInstanceUserRequest,
|
|
4
|
-
CreateAppInstanceUserResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateAppInstanceUserRequest, CreateAppInstanceUserResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateAppInstanceUserCommandInput
|
|
8
|
-
extends CreateAppInstanceUserRequest {}
|
|
4
|
+
export interface CreateAppInstanceUserCommandInput extends CreateAppInstanceUserRequest {}
|
|
9
5
|
export interface CreateAppInstanceUserCommandOutput
|
|
10
|
-
extends CreateAppInstanceUserResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateAppInstanceUserResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateAppInstanceUserCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateAppInstanceUserCommandInput
|
|
9
|
+
input: CreateAppInstanceUserCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateAppInstanceUserCommandInput,
|
|
17
12
|
CreateAppInstanceUserCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateAppInstanceUserCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateAppInstanceUserCommandInput
|
|
18
|
+
input: CreateAppInstanceUserCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateAppInstanceUserCommandInput,
|
|
26
21
|
CreateAppInstanceUserCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { DeleteAppInstanceAdminRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface DeleteAppInstanceAdminCommandInput
|
|
5
|
-
extends DeleteAppInstanceAdminRequest {}
|
|
4
|
+
export interface DeleteAppInstanceAdminCommandInput extends DeleteAppInstanceAdminRequest {}
|
|
6
5
|
export interface DeleteAppInstanceAdminCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const DeleteAppInstanceAdminCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: DeleteAppInstanceAdminCommandInput
|
|
8
|
+
input: DeleteAppInstanceAdminCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
DeleteAppInstanceAdminCommandInput,
|
|
12
11
|
DeleteAppInstanceAdminCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const DeleteAppInstanceAdminCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: DeleteAppInstanceAdminCommandInput
|
|
17
|
+
input: DeleteAppInstanceAdminCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
DeleteAppInstanceAdminCommandInput,
|
|
21
20
|
DeleteAppInstanceAdminCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { DeleteAppInstanceBotRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface DeleteAppInstanceBotCommandInput
|
|
5
|
-
extends DeleteAppInstanceBotRequest {}
|
|
4
|
+
export interface DeleteAppInstanceBotCommandInput extends DeleteAppInstanceBotRequest {}
|
|
6
5
|
export interface DeleteAppInstanceBotCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const DeleteAppInstanceBotCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: DeleteAppInstanceBotCommandInput
|
|
8
|
+
input: DeleteAppInstanceBotCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
DeleteAppInstanceBotCommandInput,
|
|
12
11
|
DeleteAppInstanceBotCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const DeleteAppInstanceBotCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: DeleteAppInstanceBotCommandInput
|
|
17
|
+
input: DeleteAppInstanceBotCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
DeleteAppInstanceBotCommandInput,
|
|
21
20
|
DeleteAppInstanceBotCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { DeleteAppInstanceRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface DeleteAppInstanceCommandInput
|
|
5
|
-
extends DeleteAppInstanceRequest {}
|
|
4
|
+
export interface DeleteAppInstanceCommandInput extends DeleteAppInstanceRequest {}
|
|
6
5
|
export interface DeleteAppInstanceCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const DeleteAppInstanceCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: DeleteAppInstanceCommandInput
|
|
8
|
+
input: DeleteAppInstanceCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
DeleteAppInstanceCommandInput,
|
|
12
11
|
DeleteAppInstanceCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const DeleteAppInstanceCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: DeleteAppInstanceCommandInput
|
|
17
|
+
input: DeleteAppInstanceCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
DeleteAppInstanceCommandInput,
|
|
21
20
|
DeleteAppInstanceCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { DeleteAppInstanceUserRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface DeleteAppInstanceUserCommandInput
|
|
5
|
-
extends DeleteAppInstanceUserRequest {}
|
|
4
|
+
export interface DeleteAppInstanceUserCommandInput extends DeleteAppInstanceUserRequest {}
|
|
6
5
|
export interface DeleteAppInstanceUserCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const DeleteAppInstanceUserCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: DeleteAppInstanceUserCommandInput
|
|
8
|
+
input: DeleteAppInstanceUserCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
DeleteAppInstanceUserCommandInput,
|
|
12
11
|
DeleteAppInstanceUserCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const DeleteAppInstanceUserCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: DeleteAppInstanceUserCommandInput
|
|
17
|
+
input: DeleteAppInstanceUserCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
DeleteAppInstanceUserCommandInput,
|
|
21
20
|
DeleteAppInstanceUserCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { DeregisterAppInstanceUserEndpointRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface DeregisterAppInstanceUserEndpointCommandInput
|
|
5
|
-
|
|
6
|
-
export interface DeregisterAppInstanceUserEndpointCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface DeregisterAppInstanceUserEndpointCommandInput extends DeregisterAppInstanceUserEndpointRequest {}
|
|
5
|
+
export interface DeregisterAppInstanceUserEndpointCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const DeregisterAppInstanceUserEndpointCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeregisterAppInstanceUserEndpointCommandInput
|
|
8
|
+
input: DeregisterAppInstanceUserEndpointCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeregisterAppInstanceUserEndpointCommandInput,
|
|
13
11
|
DeregisterAppInstanceUserEndpointCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeregisterAppInstanceUserEndpointCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeregisterAppInstanceUserEndpointCommandInput
|
|
17
|
+
input: DeregisterAppInstanceUserEndpointCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeregisterAppInstanceUserEndpointCommandInput,
|
|
22
20
|
DeregisterAppInstanceUserEndpointCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeAppInstanceAdminResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeAppInstanceAdminCommandInput
|
|
8
|
-
extends DescribeAppInstanceAdminRequest {}
|
|
7
|
+
export interface DescribeAppInstanceAdminCommandInput extends DescribeAppInstanceAdminRequest {}
|
|
9
8
|
export interface DescribeAppInstanceAdminCommandOutput
|
|
10
|
-
extends DescribeAppInstanceAdminResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeAppInstanceAdminResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeAppInstanceAdminCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeAppInstanceAdminCommandInput
|
|
12
|
+
input: DescribeAppInstanceAdminCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeAppInstanceAdminCommandInput,
|
|
17
15
|
DescribeAppInstanceAdminCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeAppInstanceAdminCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeAppInstanceAdminCommandInput
|
|
21
|
+
input: DescribeAppInstanceAdminCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeAppInstanceAdminCommandInput,
|
|
26
24
|
DescribeAppInstanceAdminCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeAppInstanceBotRequest,
|
|
4
|
-
DescribeAppInstanceBotResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeAppInstanceBotRequest, DescribeAppInstanceBotResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeAppInstanceBotCommandInput
|
|
8
|
-
extends DescribeAppInstanceBotRequest {}
|
|
4
|
+
export interface DescribeAppInstanceBotCommandInput extends DescribeAppInstanceBotRequest {}
|
|
9
5
|
export interface DescribeAppInstanceBotCommandOutput
|
|
10
|
-
extends DescribeAppInstanceBotResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeAppInstanceBotResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeAppInstanceBotCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeAppInstanceBotCommandInput
|
|
9
|
+
input: DescribeAppInstanceBotCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeAppInstanceBotCommandInput,
|
|
17
12
|
DescribeAppInstanceBotCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeAppInstanceBotCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeAppInstanceBotCommandInput
|
|
18
|
+
input: DescribeAppInstanceBotCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeAppInstanceBotCommandInput,
|
|
26
21
|
DescribeAppInstanceBotCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeAppInstanceRequest,
|
|
4
|
-
DescribeAppInstanceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeAppInstanceRequest, DescribeAppInstanceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeAppInstanceCommandInput
|
|
8
|
-
extends DescribeAppInstanceRequest {}
|
|
4
|
+
export interface DescribeAppInstanceCommandInput extends DescribeAppInstanceRequest {}
|
|
9
5
|
export interface DescribeAppInstanceCommandOutput
|
|
10
|
-
extends DescribeAppInstanceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeAppInstanceResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeAppInstanceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeAppInstanceCommandInput
|
|
9
|
+
input: DescribeAppInstanceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeAppInstanceCommandInput,
|
|
17
12
|
DescribeAppInstanceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeAppInstanceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeAppInstanceCommandInput
|
|
18
|
+
input: DescribeAppInstanceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeAppInstanceCommandInput,
|
|
26
21
|
DescribeAppInstanceCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeAppInstanceUserResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeAppInstanceUserCommandInput
|
|
8
|
-
extends DescribeAppInstanceUserRequest {}
|
|
7
|
+
export interface DescribeAppInstanceUserCommandInput extends DescribeAppInstanceUserRequest {}
|
|
9
8
|
export interface DescribeAppInstanceUserCommandOutput
|
|
10
|
-
extends DescribeAppInstanceUserResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeAppInstanceUserResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeAppInstanceUserCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeAppInstanceUserCommandInput
|
|
12
|
+
input: DescribeAppInstanceUserCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeAppInstanceUserCommandInput,
|
|
17
15
|
DescribeAppInstanceUserCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeAppInstanceUserCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeAppInstanceUserCommandInput
|
|
21
|
+
input: DescribeAppInstanceUserCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeAppInstanceUserCommandInput,
|
|
26
24
|
DescribeAppInstanceUserCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeAppInstanceUserEndpointResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeAppInstanceUserEndpointCommandInput
|
|
8
|
-
extends DescribeAppInstanceUserEndpointRequest {}
|
|
7
|
+
export interface DescribeAppInstanceUserEndpointCommandInput extends DescribeAppInstanceUserEndpointRequest {}
|
|
9
8
|
export interface DescribeAppInstanceUserEndpointCommandOutput
|
|
10
|
-
extends DescribeAppInstanceUserEndpointResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeAppInstanceUserEndpointResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeAppInstanceUserEndpointCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeAppInstanceUserEndpointCommandInput
|
|
12
|
+
input: DescribeAppInstanceUserEndpointCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeAppInstanceUserEndpointCommandInput,
|
|
17
15
|
DescribeAppInstanceUserEndpointCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeAppInstanceUserEndpointCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeAppInstanceUserEndpointCommandInput
|
|
21
|
+
input: DescribeAppInstanceUserEndpointCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeAppInstanceUserEndpointCommandInput,
|
|
26
24
|
DescribeAppInstanceUserEndpointCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetAppInstanceRetentionSettingsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetAppInstanceRetentionSettingsCommandInput
|
|
8
|
-
extends GetAppInstanceRetentionSettingsRequest {}
|
|
7
|
+
export interface GetAppInstanceRetentionSettingsCommandInput extends GetAppInstanceRetentionSettingsRequest {}
|
|
9
8
|
export interface GetAppInstanceRetentionSettingsCommandOutput
|
|
10
|
-
extends GetAppInstanceRetentionSettingsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetAppInstanceRetentionSettingsResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetAppInstanceRetentionSettingsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetAppInstanceRetentionSettingsCommandInput
|
|
12
|
+
input: GetAppInstanceRetentionSettingsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetAppInstanceRetentionSettingsCommandInput,
|
|
17
15
|
GetAppInstanceRetentionSettingsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetAppInstanceRetentionSettingsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetAppInstanceRetentionSettingsCommandInput
|
|
21
|
+
input: GetAppInstanceRetentionSettingsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetAppInstanceRetentionSettingsCommandInput,
|
|
26
24
|
GetAppInstanceRetentionSettingsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAppInstanceAdminsRequest,
|
|
4
|
-
ListAppInstanceAdminsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAppInstanceAdminsRequest, ListAppInstanceAdminsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAppInstanceAdminsCommandInput
|
|
8
|
-
extends ListAppInstanceAdminsRequest {}
|
|
4
|
+
export interface ListAppInstanceAdminsCommandInput extends ListAppInstanceAdminsRequest {}
|
|
9
5
|
export interface ListAppInstanceAdminsCommandOutput
|
|
10
|
-
extends ListAppInstanceAdminsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListAppInstanceAdminsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListAppInstanceAdminsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListAppInstanceAdminsCommandInput
|
|
9
|
+
input: ListAppInstanceAdminsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListAppInstanceAdminsCommandInput,
|
|
17
12
|
ListAppInstanceAdminsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListAppInstanceAdminsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListAppInstanceAdminsCommandInput
|
|
18
|
+
input: ListAppInstanceAdminsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListAppInstanceAdminsCommandInput,
|
|
26
21
|
ListAppInstanceAdminsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAppInstanceBotsRequest,
|
|
4
|
-
ListAppInstanceBotsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAppInstanceBotsRequest, ListAppInstanceBotsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAppInstanceBotsCommandInput
|
|
8
|
-
extends ListAppInstanceBotsRequest {}
|
|
4
|
+
export interface ListAppInstanceBotsCommandInput extends ListAppInstanceBotsRequest {}
|
|
9
5
|
export interface ListAppInstanceBotsCommandOutput
|
|
10
|
-
extends ListAppInstanceBotsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListAppInstanceBotsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListAppInstanceBotsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListAppInstanceBotsCommandInput
|
|
9
|
+
input: ListAppInstanceBotsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListAppInstanceBotsCommandInput,
|
|
17
12
|
ListAppInstanceBotsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListAppInstanceBotsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListAppInstanceBotsCommandInput
|
|
18
|
+
input: ListAppInstanceBotsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListAppInstanceBotsCommandInput,
|
|
26
21
|
ListAppInstanceBotsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListAppInstanceUserEndpointsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAppInstanceUserEndpointsCommandInput
|
|
8
|
-
extends ListAppInstanceUserEndpointsRequest {}
|
|
7
|
+
export interface ListAppInstanceUserEndpointsCommandInput extends ListAppInstanceUserEndpointsRequest {}
|
|
9
8
|
export interface ListAppInstanceUserEndpointsCommandOutput
|
|
10
|
-
extends ListAppInstanceUserEndpointsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListAppInstanceUserEndpointsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListAppInstanceUserEndpointsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListAppInstanceUserEndpointsCommandInput
|
|
12
|
+
input: ListAppInstanceUserEndpointsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListAppInstanceUserEndpointsCommandInput,
|
|
17
15
|
ListAppInstanceUserEndpointsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListAppInstanceUserEndpointsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListAppInstanceUserEndpointsCommandInput
|
|
21
|
+
input: ListAppInstanceUserEndpointsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListAppInstanceUserEndpointsCommandInput,
|
|
26
24
|
ListAppInstanceUserEndpointsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAppInstanceUsersRequest,
|
|
4
|
-
ListAppInstanceUsersResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAppInstanceUsersRequest, ListAppInstanceUsersResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAppInstanceUsersCommandInput
|
|
8
|
-
extends ListAppInstanceUsersRequest {}
|
|
4
|
+
export interface ListAppInstanceUsersCommandInput extends ListAppInstanceUsersRequest {}
|
|
9
5
|
export interface ListAppInstanceUsersCommandOutput
|
|
10
|
-
extends ListAppInstanceUsersResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListAppInstanceUsersResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListAppInstanceUsersCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListAppInstanceUsersCommandInput
|
|
9
|
+
input: ListAppInstanceUsersCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListAppInstanceUsersCommandInput,
|
|
17
12
|
ListAppInstanceUsersCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListAppInstanceUsersCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListAppInstanceUsersCommandInput
|
|
18
|
+
input: ListAppInstanceUsersCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListAppInstanceUsersCommandInput,
|
|
26
21
|
ListAppInstanceUsersCommandOutput,
|