@aws-sdk/client-chime-sdk-identity 3.952.0 → 3.954.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 +375 -262
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateAppInstanceAdminCommand.js +2 -2
- package/dist-es/commands/CreateAppInstanceBotCommand.js +2 -2
- package/dist-es/commands/CreateAppInstanceCommand.js +2 -2
- package/dist-es/commands/CreateAppInstanceUserCommand.js +2 -2
- package/dist-es/commands/DeleteAppInstanceAdminCommand.js +2 -2
- package/dist-es/commands/DeleteAppInstanceBotCommand.js +2 -2
- package/dist-es/commands/DeleteAppInstanceCommand.js +2 -2
- package/dist-es/commands/DeleteAppInstanceUserCommand.js +2 -2
- package/dist-es/commands/DeregisterAppInstanceUserEndpointCommand.js +2 -2
- package/dist-es/commands/DescribeAppInstanceAdminCommand.js +2 -2
- package/dist-es/commands/DescribeAppInstanceBotCommand.js +2 -2
- package/dist-es/commands/DescribeAppInstanceCommand.js +2 -2
- package/dist-es/commands/DescribeAppInstanceUserCommand.js +2 -2
- package/dist-es/commands/DescribeAppInstanceUserEndpointCommand.js +2 -2
- package/dist-es/commands/GetAppInstanceRetentionSettingsCommand.js +2 -2
- package/dist-es/commands/ListAppInstanceAdminsCommand.js +2 -2
- package/dist-es/commands/ListAppInstanceBotsCommand.js +2 -2
- package/dist-es/commands/ListAppInstanceUserEndpointsCommand.js +2 -2
- package/dist-es/commands/ListAppInstanceUsersCommand.js +2 -2
- package/dist-es/commands/ListAppInstancesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutAppInstanceRetentionSettingsCommand.js +2 -2
- package/dist-es/commands/PutAppInstanceUserExpirationSettingsCommand.js +2 -2
- package/dist-es/commands/RegisterAppInstanceUserEndpointCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAppInstanceBotCommand.js +2 -2
- package/dist-es/commands/UpdateAppInstanceCommand.js +2 -2
- package/dist-es/commands/UpdateAppInstanceUserCommand.js +2 -2
- package/dist-es/commands/UpdateAppInstanceUserEndpointCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +218 -218
- package/dist-types/ChimeSDKIdentityClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +114 -133
- package/dist-types/ts3.4/ChimeSDKIdentityClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +113 -134
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.chimesdkidentity",
|
|
32
|
+
version: "2021-04-20",
|
|
33
|
+
serviceTarget: "ChimeIdentityService",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "Chime SDK Identity",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateAppInstanceAdmin } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateAppInstanceAdmin$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAppInstanceAdminCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAppInstanceAdminCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "CreateAppInstanceAdmin", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "CreateAppInstanceAdminCommand")
|
|
14
|
-
.sc(CreateAppInstanceAdmin)
|
|
14
|
+
.sc(CreateAppInstanceAdmin$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateAppInstanceBot } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateAppInstanceBot$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAppInstanceBotCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAppInstanceBotCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "CreateAppInstanceBot", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "CreateAppInstanceBotCommand")
|
|
14
|
-
.sc(CreateAppInstanceBot)
|
|
14
|
+
.sc(CreateAppInstanceBot$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateAppInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateAppInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAppInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAppInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "CreateAppInstance", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "CreateAppInstanceCommand")
|
|
14
|
-
.sc(CreateAppInstance)
|
|
14
|
+
.sc(CreateAppInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateAppInstanceUser } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateAppInstanceUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAppInstanceUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAppInstanceUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "CreateAppInstanceUser", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "CreateAppInstanceUserCommand")
|
|
14
|
-
.sc(CreateAppInstanceUser)
|
|
14
|
+
.sc(CreateAppInstanceUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteAppInstanceAdmin } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAppInstanceAdmin$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAppInstanceAdminCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAppInstanceAdminCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "DeleteAppInstanceAdmin", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "DeleteAppInstanceAdminCommand")
|
|
14
|
-
.sc(DeleteAppInstanceAdmin)
|
|
14
|
+
.sc(DeleteAppInstanceAdmin$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteAppInstanceBot } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAppInstanceBot$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAppInstanceBotCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAppInstanceBotCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "DeleteAppInstanceBot", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "DeleteAppInstanceBotCommand")
|
|
14
|
-
.sc(DeleteAppInstanceBot)
|
|
14
|
+
.sc(DeleteAppInstanceBot$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteAppInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAppInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAppInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAppInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "DeleteAppInstance", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "DeleteAppInstanceCommand")
|
|
14
|
-
.sc(DeleteAppInstance)
|
|
14
|
+
.sc(DeleteAppInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteAppInstanceUser } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAppInstanceUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAppInstanceUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAppInstanceUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "DeleteAppInstanceUser", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "DeleteAppInstanceUserCommand")
|
|
14
|
-
.sc(DeleteAppInstanceUser)
|
|
14
|
+
.sc(DeleteAppInstanceUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeregisterAppInstanceUserEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { DeregisterAppInstanceUserEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeregisterAppInstanceUserEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeregisterAppInstanceUserEndpointCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "DeregisterAppInstanceUserEndpoint", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "DeregisterAppInstanceUserEndpointCommand")
|
|
14
|
-
.sc(DeregisterAppInstanceUserEndpoint)
|
|
14
|
+
.sc(DeregisterAppInstanceUserEndpoint$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeAppInstanceAdmin } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAppInstanceAdmin$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAppInstanceAdminCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAppInstanceAdminCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "DescribeAppInstanceAdmin", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "DescribeAppInstanceAdminCommand")
|
|
14
|
-
.sc(DescribeAppInstanceAdmin)
|
|
14
|
+
.sc(DescribeAppInstanceAdmin$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeAppInstanceBot } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAppInstanceBot$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAppInstanceBotCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAppInstanceBotCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "DescribeAppInstanceBot", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "DescribeAppInstanceBotCommand")
|
|
14
|
-
.sc(DescribeAppInstanceBot)
|
|
14
|
+
.sc(DescribeAppInstanceBot$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeAppInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAppInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAppInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAppInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "DescribeAppInstance", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "DescribeAppInstanceCommand")
|
|
14
|
-
.sc(DescribeAppInstance)
|
|
14
|
+
.sc(DescribeAppInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeAppInstanceUser } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAppInstanceUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAppInstanceUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAppInstanceUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "DescribeAppInstanceUser", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "DescribeAppInstanceUserCommand")
|
|
14
|
-
.sc(DescribeAppInstanceUser)
|
|
14
|
+
.sc(DescribeAppInstanceUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeAppInstanceUserEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAppInstanceUserEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAppInstanceUserEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAppInstanceUserEndpointCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "DescribeAppInstanceUserEndpoint", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "DescribeAppInstanceUserEndpointCommand")
|
|
14
|
-
.sc(DescribeAppInstanceUserEndpoint)
|
|
14
|
+
.sc(DescribeAppInstanceUserEndpoint$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAppInstanceRetentionSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAppInstanceRetentionSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAppInstanceRetentionSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAppInstanceRetentionSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "GetAppInstanceRetentionSettings", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "GetAppInstanceRetentionSettingsCommand")
|
|
14
|
-
.sc(GetAppInstanceRetentionSettings)
|
|
14
|
+
.sc(GetAppInstanceRetentionSettings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAppInstanceAdmins } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAppInstanceAdmins$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAppInstanceAdminsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAppInstanceAdminsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "ListAppInstanceAdmins", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "ListAppInstanceAdminsCommand")
|
|
14
|
-
.sc(ListAppInstanceAdmins)
|
|
14
|
+
.sc(ListAppInstanceAdmins$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAppInstanceBots } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAppInstanceBots$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAppInstanceBotsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAppInstanceBotsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "ListAppInstanceBots", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "ListAppInstanceBotsCommand")
|
|
14
|
-
.sc(ListAppInstanceBots)
|
|
14
|
+
.sc(ListAppInstanceBots$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAppInstanceUserEndpoints } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAppInstanceUserEndpoints$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAppInstanceUserEndpointsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAppInstanceUserEndpointsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "ListAppInstanceUserEndpoints", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "ListAppInstanceUserEndpointsCommand")
|
|
14
|
-
.sc(ListAppInstanceUserEndpoints)
|
|
14
|
+
.sc(ListAppInstanceUserEndpoints$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAppInstanceUsers } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAppInstanceUsers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAppInstanceUsersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAppInstanceUsersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "ListAppInstanceUsers", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "ListAppInstanceUsersCommand")
|
|
14
|
-
.sc(ListAppInstanceUsers)
|
|
14
|
+
.sc(ListAppInstanceUsers$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAppInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAppInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAppInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAppInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "ListAppInstances", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "ListAppInstancesCommand")
|
|
14
|
-
.sc(ListAppInstances)
|
|
14
|
+
.sc(ListAppInstances$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "ListTagsForResource", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutAppInstanceRetentionSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { PutAppInstanceRetentionSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutAppInstanceRetentionSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutAppInstanceRetentionSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "PutAppInstanceRetentionSettings", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "PutAppInstanceRetentionSettingsCommand")
|
|
14
|
-
.sc(PutAppInstanceRetentionSettings)
|
|
14
|
+
.sc(PutAppInstanceRetentionSettings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutAppInstanceUserExpirationSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { PutAppInstanceUserExpirationSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutAppInstanceUserExpirationSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutAppInstanceUserExpirationSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "PutAppInstanceUserExpirationSettings", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "PutAppInstanceUserExpirationSettingsCommand")
|
|
14
|
-
.sc(PutAppInstanceUserExpirationSettings)
|
|
14
|
+
.sc(PutAppInstanceUserExpirationSettings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RegisterAppInstanceUserEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { RegisterAppInstanceUserEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RegisterAppInstanceUserEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RegisterAppInstanceUserEndpointCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "RegisterAppInstanceUserEndpoint", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "RegisterAppInstanceUserEndpointCommand")
|
|
14
|
-
.sc(RegisterAppInstanceUserEndpoint)
|
|
14
|
+
.sc(RegisterAppInstanceUserEndpoint$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "TagResource", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "UntagResource", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateAppInstanceBot } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateAppInstanceBot$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateAppInstanceBotCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateAppInstanceBotCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "UpdateAppInstanceBot", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "UpdateAppInstanceBotCommand")
|
|
14
|
-
.sc(UpdateAppInstanceBot)
|
|
14
|
+
.sc(UpdateAppInstanceBot$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateAppInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateAppInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateAppInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateAppInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "UpdateAppInstance", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "UpdateAppInstanceCommand")
|
|
14
|
-
.sc(UpdateAppInstance)
|
|
14
|
+
.sc(UpdateAppInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateAppInstanceUser } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateAppInstanceUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateAppInstanceUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateAppInstanceUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "UpdateAppInstanceUser", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "UpdateAppInstanceUserCommand")
|
|
14
|
-
.sc(UpdateAppInstanceUser)
|
|
14
|
+
.sc(UpdateAppInstanceUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateAppInstanceUserEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateAppInstanceUserEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateAppInstanceUserEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateAppInstanceUserEndpointCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ChimeIdentityService", "UpdateAppInstanceUserEndpoint", {})
|
|
13
13
|
.n("ChimeSDKIdentityClient", "UpdateAppInstanceUserEndpointCommand")
|
|
14
|
-
.sc(UpdateAppInstanceUserEndpoint)
|
|
14
|
+
.sc(UpdateAppInstanceUserEndpoint$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.chimesdkidentity",
|
|
29
|
+
version: "2021-04-20",
|
|
30
|
+
serviceTarget: "ChimeIdentityService",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "Chime SDK Identity",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|