@aws-sdk/client-ivschat 3.296.0 → 3.298.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/commands/CreateChatTokenCommand.js +2 -3
- package/dist-cjs/commands/CreateLoggingConfigurationCommand.js +2 -3
- package/dist-cjs/commands/CreateRoomCommand.js +2 -3
- package/dist-cjs/commands/DeleteLoggingConfigurationCommand.js +2 -3
- package/dist-cjs/commands/DeleteMessageCommand.js +2 -3
- package/dist-cjs/commands/DeleteRoomCommand.js +2 -3
- package/dist-cjs/commands/DisconnectUserCommand.js +2 -3
- package/dist-cjs/commands/GetLoggingConfigurationCommand.js +2 -3
- package/dist-cjs/commands/GetRoomCommand.js +2 -3
- package/dist-cjs/commands/ListLoggingConfigurationsCommand.js +2 -3
- package/dist-cjs/commands/ListRoomsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/SendEventCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdateLoggingConfigurationCommand.js +2 -3
- package/dist-cjs/commands/UpdateRoomCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -190
- package/dist-es/commands/CreateChatTokenCommand.js +2 -3
- package/dist-es/commands/CreateLoggingConfigurationCommand.js +2 -3
- package/dist-es/commands/CreateRoomCommand.js +2 -3
- package/dist-es/commands/DeleteLoggingConfigurationCommand.js +2 -3
- package/dist-es/commands/DeleteMessageCommand.js +2 -3
- package/dist-es/commands/DeleteRoomCommand.js +2 -3
- package/dist-es/commands/DisconnectUserCommand.js +2 -3
- package/dist-es/commands/GetLoggingConfigurationCommand.js +2 -3
- package/dist-es/commands/GetRoomCommand.js +2 -3
- package/dist-es/commands/ListLoggingConfigurationsCommand.js +2 -3
- package/dist-es/commands/ListRoomsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/SendEventCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdateLoggingConfigurationCommand.js +2 -3
- package/dist-es/commands/UpdateRoomCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -148
- package/dist-types/Ivschat.d.ts +18 -0
- package/dist-types/IvschatClient.d.ts +24 -4
- package/dist-types/commands/CreateChatTokenCommand.d.ts +16 -0
- package/dist-types/commands/CreateLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreateRoomCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMessageCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRoomCommand.d.ts +16 -0
- package/dist-types/commands/DisconnectUserCommand.d.ts +16 -0
- package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetRoomCommand.d.ts +16 -0
- package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListRoomsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/SendEventCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRoomCommand.d.ts +16 -0
- package/dist-types/models/IvschatServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +136 -160
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListLoggingConfigurationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRoomsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -118
- package/package.json +4 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
|
|
5
5
|
import { CreateLoggingConfigurationRequest, CreateLoggingConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateLoggingConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateLoggingConfigurationCommandInput extends CreateLoggingConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateLoggingConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateLoggingConfigurationCommandOutput extends CreateLoggingConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a logging configuration that allows clients to store and record sent
|
|
18
23
|
* messages.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateLoggingConfigurationCommandOutput extends CreateLoggingCo
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateLoggingConfigurationCommandInput - {@link CreateLoggingConfigurationCommandInput}
|
|
35
|
+
* @returns {@link CreateLoggingConfigurationCommandOutput}
|
|
29
36
|
* @see {@link CreateLoggingConfigurationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateLoggingConfigurationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface CreateLoggingConfigurationCommandOutput extends CreateLoggingCo
|
|
|
53
60
|
export declare class CreateLoggingConfigurationCommand extends $Command<CreateLoggingConfigurationCommandInput, CreateLoggingConfigurationCommandOutput, IvschatClientResolvedConfig> {
|
|
54
61
|
readonly input: CreateLoggingConfigurationCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: CreateLoggingConfigurationCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateLoggingConfigurationCommandInput, CreateLoggingConfigurationCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
|
|
5
5
|
import { CreateRoomRequest, CreateRoomResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateRoomCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateRoomCommandInput extends CreateRoomRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateRoomCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateRoomCommandOutput extends CreateRoomResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a room that allows clients to connect and pass messages.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateRoomCommandOutput extends CreateRoomResponse, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateRoomCommandInput - {@link CreateRoomCommandInput}
|
|
34
|
+
* @returns {@link CreateRoomCommandOutput}
|
|
28
35
|
* @see {@link CreateRoomCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateRoomCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CreateRoomCommandOutput extends CreateRoomResponse, __MetadataB
|
|
|
52
59
|
export declare class CreateRoomCommand extends $Command<CreateRoomCommandInput, CreateRoomCommandOutput, IvschatClientResolvedConfig> {
|
|
53
60
|
readonly input: CreateRoomCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CreateRoomCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRoomCommandInput, CreateRoomCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
|
|
5
5
|
import { DeleteLoggingConfigurationRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteLoggingConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteLoggingConfigurationCommandInput extends DeleteLoggingConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteLoggingConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteLoggingConfigurationCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified logging configuration.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteLoggingConfigurationCommandOutput extends __MetadataBeare
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteLoggingConfigurationCommandInput - {@link DeleteLoggingConfigurationCommandInput}
|
|
34
|
+
* @returns {@link DeleteLoggingConfigurationCommandOutput}
|
|
28
35
|
* @see {@link DeleteLoggingConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteLoggingConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DeleteLoggingConfigurationCommandOutput extends __MetadataBeare
|
|
|
49
56
|
export declare class DeleteLoggingConfigurationCommand extends $Command<DeleteLoggingConfigurationCommandInput, DeleteLoggingConfigurationCommandOutput, IvschatClientResolvedConfig> {
|
|
50
57
|
readonly input: DeleteLoggingConfigurationCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DeleteLoggingConfigurationCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLoggingConfigurationCommandInput, DeleteLoggingConfigurationCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
|
|
5
5
|
import { DeleteMessageRequest, DeleteMessageResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteMessageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteMessageCommandInput extends DeleteMessageRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteMessageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteMessageCommandOutput extends DeleteMessageResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Sends an event to a specific room which directs clients to delete a specific message;
|
|
18
23
|
* that is, unrender it from view and delete it from the client’s chat history. This event’s
|
|
19
24
|
* <code>EventName</code> is <code>aws:DELETE_MESSAGE</code>. This replicates the <a href="https://docs.aws.amazon.com/ivs/latest/chatmsgapireference/actions-deletemessage-publish.html">
|
|
@@ -28,6 +33,8 @@ export interface DeleteMessageCommandOutput extends DeleteMessageResponse, __Met
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DeleteMessageCommandInput - {@link DeleteMessageCommandInput}
|
|
37
|
+
* @returns {@link DeleteMessageCommandOutput}
|
|
31
38
|
* @see {@link DeleteMessageCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DeleteMessageCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DeleteMessageCommandOutput extends DeleteMessageResponse, __Met
|
|
|
52
59
|
export declare class DeleteMessageCommand extends $Command<DeleteMessageCommandInput, DeleteMessageCommandOutput, IvschatClientResolvedConfig> {
|
|
53
60
|
readonly input: DeleteMessageCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DeleteMessageCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMessageCommandInput, DeleteMessageCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
|
|
5
5
|
import { DeleteRoomRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteRoomCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteRoomCommandInput extends DeleteRoomRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteRoomCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteRoomCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified room.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteRoomCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteRoomCommandInput - {@link DeleteRoomCommandInput}
|
|
34
|
+
* @returns {@link DeleteRoomCommandOutput}
|
|
28
35
|
* @see {@link DeleteRoomCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteRoomCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DeleteRoomCommandOutput extends __MetadataBearer {
|
|
|
46
53
|
export declare class DeleteRoomCommand extends $Command<DeleteRoomCommandInput, DeleteRoomCommandOutput, IvschatClientResolvedConfig> {
|
|
47
54
|
readonly input: DeleteRoomCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DeleteRoomCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRoomCommandInput, DeleteRoomCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
|
|
5
5
|
import { DisconnectUserRequest, DisconnectUserResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisconnectUserCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisconnectUserCommandInput extends DisconnectUserRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisconnectUserCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisconnectUserCommandOutput extends DisconnectUserResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disconnects all connections using a specified user ID from a room. This replicates the
|
|
18
23
|
* <a href="https://docs.aws.amazon.com/ivs/latest/chatmsgapireference/actions-disconnectuser-publish.html">
|
|
19
24
|
* DisconnectUser</a> WebSocket operation in the Amazon IVS Chat Messaging API.</p>
|
|
@@ -27,6 +32,8 @@ export interface DisconnectUserCommandOutput extends DisconnectUserResponse, __M
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DisconnectUserCommandInput - {@link DisconnectUserCommandInput}
|
|
36
|
+
* @returns {@link DisconnectUserCommandOutput}
|
|
30
37
|
* @see {@link DisconnectUserCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DisconnectUserCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DisconnectUserCommandOutput extends DisconnectUserResponse, __M
|
|
|
51
58
|
export declare class DisconnectUserCommand extends $Command<DisconnectUserCommandInput, DisconnectUserCommandOutput, IvschatClientResolvedConfig> {
|
|
52
59
|
readonly input: DisconnectUserCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DisconnectUserCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisconnectUserCommandInput, DisconnectUserCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
|
|
5
5
|
import { GetLoggingConfigurationRequest, GetLoggingConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetLoggingConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetLoggingConfigurationCommandInput extends GetLoggingConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetLoggingConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetLoggingConfigurationCommandOutput extends GetLoggingConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the specified logging configuration.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetLoggingConfigurationCommandOutput extends GetLoggingConfigur
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetLoggingConfigurationCommandInput - {@link GetLoggingConfigurationCommandInput}
|
|
34
|
+
* @returns {@link GetLoggingConfigurationCommandOutput}
|
|
28
35
|
* @see {@link GetLoggingConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetLoggingConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetLoggingConfigurationCommandOutput extends GetLoggingConfigur
|
|
|
43
50
|
export declare class GetLoggingConfigurationCommand extends $Command<GetLoggingConfigurationCommandInput, GetLoggingConfigurationCommandOutput, IvschatClientResolvedConfig> {
|
|
44
51
|
readonly input: GetLoggingConfigurationCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetLoggingConfigurationCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLoggingConfigurationCommandInput, GetLoggingConfigurationCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
|
|
5
5
|
import { GetRoomRequest, GetRoomResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetRoomCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetRoomCommandInput extends GetRoomRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetRoomCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetRoomCommandOutput extends GetRoomResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the specified room.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetRoomCommandOutput extends GetRoomResponse, __MetadataBearer
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetRoomCommandInput - {@link GetRoomCommandInput}
|
|
34
|
+
* @returns {@link GetRoomCommandOutput}
|
|
28
35
|
* @see {@link GetRoomCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetRoomCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetRoomCommandOutput extends GetRoomResponse, __MetadataBearer
|
|
|
43
50
|
export declare class GetRoomCommand extends $Command<GetRoomCommandInput, GetRoomCommandOutput, IvschatClientResolvedConfig> {
|
|
44
51
|
readonly input: GetRoomCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetRoomCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRoomCommandInput, GetRoomCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
|
|
5
5
|
import { ListLoggingConfigurationsRequest, ListLoggingConfigurationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListLoggingConfigurationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListLoggingConfigurationsCommandInput extends ListLoggingConfigurationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListLoggingConfigurationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListLoggingConfigurationsCommandOutput extends ListLoggingConfigurationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets summary information about all your logging configurations in the AWS region where
|
|
18
23
|
* the API request is processed.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListLoggingConfigurationsCommandOutput extends ListLoggingConfi
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListLoggingConfigurationsCommandInput - {@link ListLoggingConfigurationsCommandInput}
|
|
35
|
+
* @returns {@link ListLoggingConfigurationsCommandOutput}
|
|
29
36
|
* @see {@link ListLoggingConfigurationsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListLoggingConfigurationsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface ListLoggingConfigurationsCommandOutput extends ListLoggingConfi
|
|
|
41
48
|
export declare class ListLoggingConfigurationsCommand extends $Command<ListLoggingConfigurationsCommandInput, ListLoggingConfigurationsCommandOutput, IvschatClientResolvedConfig> {
|
|
42
49
|
readonly input: ListLoggingConfigurationsCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: ListLoggingConfigurationsCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLoggingConfigurationsCommandInput, ListLoggingConfigurationsCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
|
|
5
5
|
import { ListRoomsRequest, ListRoomsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListRoomsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListRoomsCommandInput extends ListRoomsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListRoomsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListRoomsCommandOutput extends ListRoomsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets summary information about all your rooms in the AWS region where the API request is
|
|
18
23
|
* processed. Results are sorted in descending order of <code>updateTime</code>.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListRoomsCommandOutput extends ListRoomsResponse, __MetadataBea
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListRoomsCommandInput - {@link ListRoomsCommandInput}
|
|
35
|
+
* @returns {@link ListRoomsCommandOutput}
|
|
29
36
|
* @see {@link ListRoomsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListRoomsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface ListRoomsCommandOutput extends ListRoomsResponse, __MetadataBea
|
|
|
44
51
|
export declare class ListRoomsCommand extends $Command<ListRoomsCommandInput, ListRoomsCommandOutput, IvschatClientResolvedConfig> {
|
|
45
52
|
readonly input: ListRoomsCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: ListRoomsCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRoomsCommandInput, ListRoomsCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets information about AWS tags for the specified ARN.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
43
50
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IvschatClientResolvedConfig> {
|
|
44
51
|
readonly input: ListTagsForResourceCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListTagsForResourceCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
|
|
5
5
|
import { SendEventRequest, SendEventResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link SendEventCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface SendEventCommandInput extends SendEventRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link SendEventCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface SendEventCommandOutput extends SendEventResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Sends an event to a room. Use this within your application’s business logic to send
|
|
18
23
|
* events to clients of a room; e.g., to notify clients to change the way the chat UI is
|
|
19
24
|
* rendered.</p>
|
|
@@ -27,6 +32,8 @@ export interface SendEventCommandOutput extends SendEventResponse, __MetadataBea
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param SendEventCommandInput - {@link SendEventCommandInput}
|
|
36
|
+
* @returns {@link SendEventCommandOutput}
|
|
30
37
|
* @see {@link SendEventCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link SendEventCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface SendEventCommandOutput extends SendEventResponse, __MetadataBea
|
|
|
51
58
|
export declare class SendEventCommand extends $Command<SendEventCommandInput, SendEventCommandOutput, IvschatClientResolvedConfig> {
|
|
52
59
|
readonly input: SendEventCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: SendEventCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendEventCommandInput, SendEventCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds or updates tags for the AWS resource with the specified ARN.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
34
|
+
* @returns {@link TagResourceCommandOutput}
|
|
28
35
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
43
50
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IvschatClientResolvedConfig> {
|
|
44
51
|
readonly input: TagResourceCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: TagResourceCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|