@aws-sdk/client-chime-sdk-identity 3.50.0 → 3.51.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/ChimeSDKIdentity.d.ts +125 -0
- package/dist-types/ts3.4/ChimeSDKIdentityClient.d.ts +97 -0
- package/dist-types/ts3.4/commands/CreateAppInstanceAdminCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateAppInstanceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateAppInstanceUserCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteAppInstanceAdminCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteAppInstanceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteAppInstanceUserCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeregisterAppInstanceUserEndpointCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAppInstanceAdminCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAppInstanceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAppInstanceUserCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAppInstanceUserEndpointCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetAppInstanceRetentionSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListAppInstanceAdminsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListAppInstanceUserEndpointsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListAppInstanceUsersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListAppInstancesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutAppInstanceRetentionSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RegisterAppInstanceUserEndpointCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateAppInstanceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateAppInstanceUserCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateAppInstanceUserEndpointCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +24 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +711 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAppInstanceAdminsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListAppInstanceUserEndpointsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListAppInstanceUsersPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListAppInstancesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +74 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
4
|
+
import { TagResourceRequest } from "../models/models_0";
|
|
5
|
+
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
11
|
+
readonly input: TagResourceCommandInput;
|
|
12
|
+
constructor(input: TagResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
4
|
+
import { UntagResourceRequest } from "../models/models_0";
|
|
5
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
11
|
+
readonly input: UntagResourceCommandInput;
|
|
12
|
+
constructor(input: UntagResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
4
|
+
import { UpdateAppInstanceRequest, UpdateAppInstanceResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateAppInstanceCommandInput extends UpdateAppInstanceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateAppInstanceCommandOutput extends UpdateAppInstanceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateAppInstanceCommand extends $Command<UpdateAppInstanceCommandInput, UpdateAppInstanceCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateAppInstanceCommandInput;
|
|
12
|
+
constructor(input: UpdateAppInstanceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAppInstanceCommandInput, UpdateAppInstanceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
4
|
+
import { UpdateAppInstanceUserRequest, UpdateAppInstanceUserResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateAppInstanceUserCommandInput extends UpdateAppInstanceUserRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateAppInstanceUserCommandOutput extends UpdateAppInstanceUserResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateAppInstanceUserCommand extends $Command<UpdateAppInstanceUserCommandInput, UpdateAppInstanceUserCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateAppInstanceUserCommandInput;
|
|
12
|
+
constructor(input: UpdateAppInstanceUserCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAppInstanceUserCommandInput, UpdateAppInstanceUserCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
4
|
+
import { UpdateAppInstanceUserEndpointRequest, UpdateAppInstanceUserEndpointResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateAppInstanceUserEndpointCommandInput extends UpdateAppInstanceUserEndpointRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateAppInstanceUserEndpointCommandOutput extends UpdateAppInstanceUserEndpointResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateAppInstanceUserEndpointCommand extends $Command<UpdateAppInstanceUserEndpointCommandInput, UpdateAppInstanceUserEndpointCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateAppInstanceUserEndpointCommandInput;
|
|
12
|
+
constructor(input: UpdateAppInstanceUserEndpointCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAppInstanceUserEndpointCommandInput, UpdateAppInstanceUserEndpointCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export * from "./CreateAppInstanceAdminCommand";
|
|
2
|
+
export * from "./CreateAppInstanceCommand";
|
|
3
|
+
export * from "./CreateAppInstanceUserCommand";
|
|
4
|
+
export * from "./DeleteAppInstanceAdminCommand";
|
|
5
|
+
export * from "./DeleteAppInstanceCommand";
|
|
6
|
+
export * from "./DeleteAppInstanceUserCommand";
|
|
7
|
+
export * from "./DeregisterAppInstanceUserEndpointCommand";
|
|
8
|
+
export * from "./DescribeAppInstanceAdminCommand";
|
|
9
|
+
export * from "./DescribeAppInstanceCommand";
|
|
10
|
+
export * from "./DescribeAppInstanceUserCommand";
|
|
11
|
+
export * from "./DescribeAppInstanceUserEndpointCommand";
|
|
12
|
+
export * from "./GetAppInstanceRetentionSettingsCommand";
|
|
13
|
+
export * from "./ListAppInstanceAdminsCommand";
|
|
14
|
+
export * from "./ListAppInstanceUserEndpointsCommand";
|
|
15
|
+
export * from "./ListAppInstanceUsersCommand";
|
|
16
|
+
export * from "./ListAppInstancesCommand";
|
|
17
|
+
export * from "./ListTagsForResourceCommand";
|
|
18
|
+
export * from "./PutAppInstanceRetentionSettingsCommand";
|
|
19
|
+
export * from "./RegisterAppInstanceUserEndpointCommand";
|
|
20
|
+
export * from "./TagResourceCommand";
|
|
21
|
+
export * from "./UntagResourceCommand";
|
|
22
|
+
export * from "./UpdateAppInstanceCommand";
|
|
23
|
+
export * from "./UpdateAppInstanceUserCommand";
|
|
24
|
+
export * from "./UpdateAppInstanceUserEndpointCommand";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|