@aws-sdk/client-chime-sdk-identity 3.1087.0 → 3.1089.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 +38 -38
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAppInstancesRequest,
|
|
4
|
-
ListAppInstancesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAppInstancesRequest, ListAppInstancesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListAppInstancesCommandInput extends ListAppInstancesRequest {}
|
|
8
|
-
export interface ListAppInstancesCommandOutput
|
|
9
|
-
extends ListAppInstancesResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListAppInstancesCommandOutput extends ListAppInstancesResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListAppInstancesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListAppInstancesCommandInput
|
|
8
|
+
input: ListAppInstancesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListAppInstancesCommandInput,
|
|
16
11
|
ListAppInstancesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
PutAppInstanceRetentionSettingsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutAppInstanceRetentionSettingsCommandInput
|
|
8
|
-
extends PutAppInstanceRetentionSettingsRequest {}
|
|
7
|
+
export interface PutAppInstanceRetentionSettingsCommandInput extends PutAppInstanceRetentionSettingsRequest {}
|
|
9
8
|
export interface PutAppInstanceRetentionSettingsCommandOutput
|
|
10
|
-
extends PutAppInstanceRetentionSettingsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends PutAppInstanceRetentionSettingsResponse, __MetadataBearer {}
|
|
12
10
|
declare const PutAppInstanceRetentionSettingsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: PutAppInstanceRetentionSettingsCommandInput
|
|
12
|
+
input: PutAppInstanceRetentionSettingsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
PutAppInstanceRetentionSettingsCommandInput,
|
|
17
15
|
PutAppInstanceRetentionSettingsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const PutAppInstanceRetentionSettingsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: PutAppInstanceRetentionSettingsCommandInput
|
|
21
|
+
input: PutAppInstanceRetentionSettingsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
PutAppInstanceRetentionSettingsCommandInput,
|
|
26
24
|
PutAppInstanceRetentionSettingsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
PutAppInstanceUserExpirationSettingsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutAppInstanceUserExpirationSettingsCommandInput
|
|
8
|
-
extends PutAppInstanceUserExpirationSettingsRequest {}
|
|
7
|
+
export interface PutAppInstanceUserExpirationSettingsCommandInput extends PutAppInstanceUserExpirationSettingsRequest {}
|
|
9
8
|
export interface PutAppInstanceUserExpirationSettingsCommandOutput
|
|
10
|
-
extends PutAppInstanceUserExpirationSettingsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends PutAppInstanceUserExpirationSettingsResponse, __MetadataBearer {}
|
|
12
10
|
declare const PutAppInstanceUserExpirationSettingsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: PutAppInstanceUserExpirationSettingsCommandInput
|
|
12
|
+
input: PutAppInstanceUserExpirationSettingsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
PutAppInstanceUserExpirationSettingsCommandInput,
|
|
17
15
|
PutAppInstanceUserExpirationSettingsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const PutAppInstanceUserExpirationSettingsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: PutAppInstanceUserExpirationSettingsCommandInput
|
|
21
|
+
input: PutAppInstanceUserExpirationSettingsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
PutAppInstanceUserExpirationSettingsCommandInput,
|
|
26
24
|
PutAppInstanceUserExpirationSettingsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
RegisterAppInstanceUserEndpointResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface RegisterAppInstanceUserEndpointCommandInput
|
|
8
|
-
extends RegisterAppInstanceUserEndpointRequest {}
|
|
7
|
+
export interface RegisterAppInstanceUserEndpointCommandInput extends RegisterAppInstanceUserEndpointRequest {}
|
|
9
8
|
export interface RegisterAppInstanceUserEndpointCommandOutput
|
|
10
|
-
extends RegisterAppInstanceUserEndpointResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends RegisterAppInstanceUserEndpointResponse, __MetadataBearer {}
|
|
12
10
|
declare const RegisterAppInstanceUserEndpointCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: RegisterAppInstanceUserEndpointCommandInput
|
|
12
|
+
input: RegisterAppInstanceUserEndpointCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
RegisterAppInstanceUserEndpointCommandInput,
|
|
17
15
|
RegisterAppInstanceUserEndpointCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const RegisterAppInstanceUserEndpointCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: RegisterAppInstanceUserEndpointCommandInput
|
|
21
|
+
input: RegisterAppInstanceUserEndpointCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
RegisterAppInstanceUserEndpointCommandInput,
|
|
26
24
|
RegisterAppInstanceUserEndpointCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
|
5
5
|
export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const TagResourceCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
TagResourceCommandInput,
|
|
11
11
|
TagResourceCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
TagResourceCommandInput,
|
|
20
20
|
TagResourceCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
|
5
5
|
export interface UntagResourceCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const UntagResourceCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
UntagResourceCommandInput,
|
|
11
11
|
UntagResourceCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
UntagResourceCommandInput,
|
|
20
20
|
UntagResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateAppInstanceBotRequest,
|
|
4
|
-
UpdateAppInstanceBotResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateAppInstanceBotRequest, UpdateAppInstanceBotResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateAppInstanceBotCommandInput
|
|
8
|
-
extends UpdateAppInstanceBotRequest {}
|
|
4
|
+
export interface UpdateAppInstanceBotCommandInput extends UpdateAppInstanceBotRequest {}
|
|
9
5
|
export interface UpdateAppInstanceBotCommandOutput
|
|
10
|
-
extends UpdateAppInstanceBotResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateAppInstanceBotResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateAppInstanceBotCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateAppInstanceBotCommandInput
|
|
9
|
+
input: UpdateAppInstanceBotCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateAppInstanceBotCommandInput,
|
|
17
12
|
UpdateAppInstanceBotCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateAppInstanceBotCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateAppInstanceBotCommandInput
|
|
18
|
+
input: UpdateAppInstanceBotCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateAppInstanceBotCommandInput,
|
|
26
21
|
UpdateAppInstanceBotCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateAppInstanceRequest,
|
|
4
|
-
UpdateAppInstanceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateAppInstanceRequest, UpdateAppInstanceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateAppInstanceCommandInput
|
|
8
|
-
extends UpdateAppInstanceRequest {}
|
|
4
|
+
export interface UpdateAppInstanceCommandInput extends UpdateAppInstanceRequest {}
|
|
9
5
|
export interface UpdateAppInstanceCommandOutput
|
|
10
|
-
extends UpdateAppInstanceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateAppInstanceResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateAppInstanceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateAppInstanceCommandInput
|
|
9
|
+
input: UpdateAppInstanceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateAppInstanceCommandInput,
|
|
17
12
|
UpdateAppInstanceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateAppInstanceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateAppInstanceCommandInput
|
|
18
|
+
input: UpdateAppInstanceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateAppInstanceCommandInput,
|
|
26
21
|
UpdateAppInstanceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateAppInstanceUserRequest,
|
|
4
|
-
UpdateAppInstanceUserResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateAppInstanceUserRequest, UpdateAppInstanceUserResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateAppInstanceUserCommandInput
|
|
8
|
-
extends UpdateAppInstanceUserRequest {}
|
|
4
|
+
export interface UpdateAppInstanceUserCommandInput extends UpdateAppInstanceUserRequest {}
|
|
9
5
|
export interface UpdateAppInstanceUserCommandOutput
|
|
10
|
-
extends UpdateAppInstanceUserResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateAppInstanceUserResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateAppInstanceUserCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateAppInstanceUserCommandInput
|
|
9
|
+
input: UpdateAppInstanceUserCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateAppInstanceUserCommandInput,
|
|
17
12
|
UpdateAppInstanceUserCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateAppInstanceUserCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateAppInstanceUserCommandInput
|
|
18
|
+
input: UpdateAppInstanceUserCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateAppInstanceUserCommandInput,
|
|
26
21
|
UpdateAppInstanceUserCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateAppInstanceUserEndpointResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateAppInstanceUserEndpointCommandInput
|
|
8
|
-
extends UpdateAppInstanceUserEndpointRequest {}
|
|
7
|
+
export interface UpdateAppInstanceUserEndpointCommandInput extends UpdateAppInstanceUserEndpointRequest {}
|
|
9
8
|
export interface UpdateAppInstanceUserEndpointCommandOutput
|
|
10
|
-
extends UpdateAppInstanceUserEndpointResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateAppInstanceUserEndpointResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateAppInstanceUserEndpointCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateAppInstanceUserEndpointCommandInput
|
|
12
|
+
input: UpdateAppInstanceUserEndpointCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateAppInstanceUserEndpointCommandInput,
|
|
17
15
|
UpdateAppInstanceUserEndpointCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateAppInstanceUserEndpointCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateAppInstanceUserEndpointCommandInput
|
|
21
|
+
input: UpdateAppInstanceUserEndpointCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateAppInstanceUserEndpointCommandInput,
|
|
26
24
|
UpdateAppInstanceUserEndpointCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface ChimeSDKIdentityExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -9,14 +9,12 @@ export declare const StandardMessages: {
|
|
|
9
9
|
readonly MENTIONS: "MENTIONS";
|
|
10
10
|
readonly NONE: "NONE";
|
|
11
11
|
};
|
|
12
|
-
export type StandardMessages =
|
|
13
|
-
(typeof StandardMessages)[keyof typeof StandardMessages];
|
|
12
|
+
export type StandardMessages = (typeof StandardMessages)[keyof typeof StandardMessages];
|
|
14
13
|
export declare const TargetedMessages: {
|
|
15
14
|
readonly ALL: "ALL";
|
|
16
15
|
readonly NONE: "NONE";
|
|
17
16
|
};
|
|
18
|
-
export type TargetedMessages =
|
|
19
|
-
(typeof TargetedMessages)[keyof typeof TargetedMessages];
|
|
17
|
+
export type TargetedMessages = (typeof TargetedMessages)[keyof typeof TargetedMessages];
|
|
20
18
|
export declare const RespondsTo: {
|
|
21
19
|
readonly STANDARD_MESSAGES: "STANDARD_MESSAGES";
|
|
22
20
|
};
|
|
@@ -24,20 +22,17 @@ export type RespondsTo = (typeof RespondsTo)[keyof typeof RespondsTo];
|
|
|
24
22
|
export declare const ExpirationCriterion: {
|
|
25
23
|
readonly CREATED_TIMESTAMP: "CREATED_TIMESTAMP";
|
|
26
24
|
};
|
|
27
|
-
export type ExpirationCriterion =
|
|
28
|
-
(typeof ExpirationCriterion)[keyof typeof ExpirationCriterion];
|
|
25
|
+
export type ExpirationCriterion = (typeof ExpirationCriterion)[keyof typeof ExpirationCriterion];
|
|
29
26
|
export declare const EndpointStatus: {
|
|
30
27
|
readonly ACTIVE: "ACTIVE";
|
|
31
28
|
readonly INACTIVE: "INACTIVE";
|
|
32
29
|
};
|
|
33
|
-
export type EndpointStatus =
|
|
34
|
-
(typeof EndpointStatus)[keyof typeof EndpointStatus];
|
|
30
|
+
export type EndpointStatus = (typeof EndpointStatus)[keyof typeof EndpointStatus];
|
|
35
31
|
export declare const EndpointStatusReason: {
|
|
36
32
|
readonly INVALID_DEVICE_TOKEN: "INVALID_DEVICE_TOKEN";
|
|
37
33
|
readonly INVALID_PINPOINT_ARN: "INVALID_PINPOINT_ARN";
|
|
38
34
|
};
|
|
39
|
-
export type EndpointStatusReason =
|
|
40
|
-
(typeof EndpointStatusReason)[keyof typeof EndpointStatusReason];
|
|
35
|
+
export type EndpointStatusReason = (typeof EndpointStatusReason)[keyof typeof EndpointStatusReason];
|
|
41
36
|
export declare const AppInstanceUserEndpointType: {
|
|
42
37
|
readonly APNS: "APNS";
|
|
43
38
|
readonly APNS_SANDBOX: "APNS_SANDBOX";
|
|
@@ -6,9 +6,7 @@ export declare class BadRequestException extends __BaseException {
|
|
|
6
6
|
readonly $fault: "client";
|
|
7
7
|
Code?: ErrorCode | undefined;
|
|
8
8
|
Message?: string | undefined;
|
|
9
|
-
constructor(
|
|
10
|
-
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
11
|
-
);
|
|
9
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
12
10
|
}
|
|
13
11
|
export declare class ConflictException extends __BaseException {
|
|
14
12
|
readonly name: "ConflictException";
|
|
@@ -29,45 +27,35 @@ export declare class ResourceLimitExceededException extends __BaseException {
|
|
|
29
27
|
readonly $fault: "client";
|
|
30
28
|
Code?: ErrorCode | undefined;
|
|
31
29
|
Message?: string | undefined;
|
|
32
|
-
constructor(
|
|
33
|
-
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
34
|
-
);
|
|
30
|
+
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
35
31
|
}
|
|
36
32
|
export declare class ServiceFailureException extends __BaseException {
|
|
37
33
|
readonly name: "ServiceFailureException";
|
|
38
34
|
readonly $fault: "server";
|
|
39
35
|
Code?: ErrorCode | undefined;
|
|
40
36
|
Message?: string | undefined;
|
|
41
|
-
constructor(
|
|
42
|
-
opts: __ExceptionOptionType<ServiceFailureException, __BaseException>
|
|
43
|
-
);
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ServiceFailureException, __BaseException>);
|
|
44
38
|
}
|
|
45
39
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
46
40
|
readonly name: "ServiceUnavailableException";
|
|
47
41
|
readonly $fault: "server";
|
|
48
42
|
Code?: ErrorCode | undefined;
|
|
49
43
|
Message?: string | undefined;
|
|
50
|
-
constructor(
|
|
51
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
52
|
-
);
|
|
44
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
53
45
|
}
|
|
54
46
|
export declare class ThrottledClientException extends __BaseException {
|
|
55
47
|
readonly name: "ThrottledClientException";
|
|
56
48
|
readonly $fault: "client";
|
|
57
49
|
Code?: ErrorCode | undefined;
|
|
58
50
|
Message?: string | undefined;
|
|
59
|
-
constructor(
|
|
60
|
-
opts: __ExceptionOptionType<ThrottledClientException, __BaseException>
|
|
61
|
-
);
|
|
51
|
+
constructor(opts: __ExceptionOptionType<ThrottledClientException, __BaseException>);
|
|
62
52
|
}
|
|
63
53
|
export declare class UnauthorizedClientException extends __BaseException {
|
|
64
54
|
readonly name: "UnauthorizedClientException";
|
|
65
55
|
readonly $fault: "client";
|
|
66
56
|
Code?: ErrorCode | undefined;
|
|
67
57
|
Message?: string | undefined;
|
|
68
|
-
constructor(
|
|
69
|
-
opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
|
|
70
|
-
);
|
|
58
|
+
constructor(opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>);
|
|
71
59
|
}
|
|
72
60
|
export declare class NotFoundException extends __BaseException {
|
|
73
61
|
readonly name: "NotFoundException";
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { ChimeSDKIdentityClient } from "../ChimeSDKIdentityClient";
|
|
3
|
-
export interface ChimeSDKIdentityPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface ChimeSDKIdentityPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: ChimeSDKIdentityClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: ChimeSDKIdentityClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: ChimeSDKIdentityClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -10,24 +8,16 @@ export declare const getRuntimeConfig: (
|
|
|
10
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
9
|
credentialDefaultProvider:
|
|
12
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
-
| ((
|
|
14
|
-
_: unknown
|
|
15
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
16
12
|
defaultUserAgentProvider: (
|
|
17
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
18
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
-
requestHandler:
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
23
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
24
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
19
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
21
|
) => Promise<Uint8Array>;
|
|
32
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -55,13 +45,8 @@ export declare const getRuntimeConfig: (
|
|
|
55
45
|
logger: import("@smithy/types").Logger;
|
|
56
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
userAgentAppId?:
|
|
59
|
-
|
|
60
|
-
| undefined
|
|
61
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
62
|
-
retryStrategy?:
|
|
63
|
-
| import("@smithy/types").RetryStrategy
|
|
64
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
65
50
|
endpoint?:
|
|
66
51
|
| ((
|
|
67
52
|
| string
|
|
@@ -83,7 +68,7 @@ export declare const getRuntimeConfig: (
|
|
|
83
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
84
69
|
context?: {
|
|
85
70
|
logger?: import("@smithy/types").Logger;
|
|
86
|
-
}
|
|
71
|
+
},
|
|
87
72
|
) => import("@smithy/types").EndpointV2;
|
|
88
73
|
tls?: boolean;
|
|
89
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -96,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
96
81
|
signer?:
|
|
97
82
|
| import("@smithy/types").RequestSigner
|
|
98
83
|
| ((
|
|
99
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
100
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
101
86
|
signingEscapePath?: boolean;
|
|
102
87
|
systemClockOffset?: number;
|
|
103
88
|
signingRegion?: string;
|
|
104
89
|
signerConstructor?: new (
|
|
105
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
106
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
107
92
|
) => import("@smithy/types").RequestSigner;
|
|
108
93
|
};
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
2
|
import { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: ChimeSDKIdentityClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: ChimeSDKIdentityClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -12,23 +10,17 @@ export declare const getRuntimeConfig: (
|
|
|
12
10
|
credentialDefaultProvider:
|
|
13
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
14
12
|
| ((
|
|
15
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
16
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
17
15
|
defaultUserAgentProvider: (
|
|
18
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
19
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
20
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
21
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
22
|
-
requestHandler:
|
|
23
|
-
| RequestHandler
|
|
24
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
25
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
22
|
streamCollector: (
|
|
27
|
-
stream:
|
|
28
|
-
| import("stream").Readable
|
|
29
|
-
| import("stream/web").ReadableStream
|
|
30
|
-
| ReadableStream
|
|
31
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
32
24
|
) => Promise<Uint8Array>;
|
|
33
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
34
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -55,9 +47,7 @@ export declare const getRuntimeConfig: (
|
|
|
55
47
|
logger: import("@smithy/types").Logger;
|
|
56
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
retryStrategy?:
|
|
59
|
-
| import("@smithy/types").RetryStrategy
|
|
60
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
61
51
|
endpoint?:
|
|
62
52
|
| ((
|
|
63
53
|
| string
|
|
@@ -79,7 +69,7 @@ export declare const getRuntimeConfig: (
|
|
|
79
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
80
70
|
context?: {
|
|
81
71
|
logger?: import("@smithy/types").Logger;
|
|
82
|
-
}
|
|
72
|
+
},
|
|
83
73
|
) => import("@smithy/types").EndpointV2;
|
|
84
74
|
tls?: boolean;
|
|
85
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -91,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
91
81
|
signer?:
|
|
92
82
|
| import("@smithy/types").RequestSigner
|
|
93
83
|
| ((
|
|
94
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
95
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
96
86
|
signingEscapePath?: boolean;
|
|
97
87
|
systemClockOffset?: number;
|
|
98
88
|
signingRegion?: string;
|
|
99
89
|
signerConstructor?: new (
|
|
100
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
101
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
102
92
|
) => import("@smithy/types").RequestSigner;
|
|
103
93
|
};
|