@aws-sdk/client-cleanrooms 3.296.0 → 3.297.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-types/CleanRooms.d.ts +38 -0
- package/dist-types/CleanRoomsClient.d.ts +24 -4
- package/dist-types/commands/BatchGetSchemaCommand.d.ts +16 -0
- package/dist-types/commands/CreateCollaborationCommand.d.ts +16 -0
- package/dist-types/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +16 -0
- package/dist-types/commands/CreateConfiguredTableAssociationCommand.d.ts +16 -0
- package/dist-types/commands/CreateConfiguredTableCommand.d.ts +16 -0
- package/dist-types/commands/CreateMembershipCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCollaborationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfiguredTableAnalysisRuleCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfiguredTableAssociationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfiguredTableCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMemberCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMembershipCommand.d.ts +16 -0
- package/dist-types/commands/GetCollaborationCommand.d.ts +16 -0
- package/dist-types/commands/GetConfiguredTableAnalysisRuleCommand.d.ts +16 -0
- package/dist-types/commands/GetConfiguredTableAssociationCommand.d.ts +16 -0
- package/dist-types/commands/GetConfiguredTableCommand.d.ts +16 -0
- package/dist-types/commands/GetMembershipCommand.d.ts +16 -0
- package/dist-types/commands/GetProtectedQueryCommand.d.ts +16 -0
- package/dist-types/commands/GetSchemaAnalysisRuleCommand.d.ts +16 -0
- package/dist-types/commands/GetSchemaCommand.d.ts +16 -0
- package/dist-types/commands/ListCollaborationsCommand.d.ts +16 -0
- package/dist-types/commands/ListConfiguredTableAssociationsCommand.d.ts +16 -0
- package/dist-types/commands/ListConfiguredTablesCommand.d.ts +16 -0
- package/dist-types/commands/ListMembersCommand.d.ts +16 -0
- package/dist-types/commands/ListMembershipsCommand.d.ts +16 -0
- package/dist-types/commands/ListProtectedQueriesCommand.d.ts +16 -0
- package/dist-types/commands/ListSchemasCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartProtectedQueryCommand.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/UpdateCollaborationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConfiguredTableAssociationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConfiguredTableCommand.d.ts +16 -0
- package/dist-types/commands/UpdateMembershipCommand.d.ts +16 -0
- package/dist-types/commands/UpdateProtectedQueryCommand.d.ts +16 -0
- package/dist-types/models/CleanRoomsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +351 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListCollaborationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListConfiguredTableAssociationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListConfiguredTablesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMembersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMembershipsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProtectedQueriesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSchemasPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { GetSchemaAnalysisRuleInput, GetSchemaAnalysisRuleOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSchemaAnalysisRuleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSchemaAnalysisRuleCommandInput extends GetSchemaAnalysisRuleInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSchemaAnalysisRuleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSchemaAnalysisRuleCommandOutput extends GetSchemaAnalysisRuleOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a schema analysis rule.</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 GetSchemaAnalysisRuleCommandOutput extends GetSchemaAnalysisRul
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetSchemaAnalysisRuleCommandInput - {@link GetSchemaAnalysisRuleCommandInput}
|
|
34
|
+
* @returns {@link GetSchemaAnalysisRuleCommandOutput}
|
|
28
35
|
* @see {@link GetSchemaAnalysisRuleCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetSchemaAnalysisRuleCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetSchemaAnalysisRuleCommandOutput extends GetSchemaAnalysisRul
|
|
|
49
56
|
export declare class GetSchemaAnalysisRuleCommand extends $Command<GetSchemaAnalysisRuleCommandInput, GetSchemaAnalysisRuleCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
50
57
|
readonly input: GetSchemaAnalysisRuleCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetSchemaAnalysisRuleCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSchemaAnalysisRuleCommandInput, GetSchemaAnalysisRuleCommandOutput>;
|
|
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 { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { GetSchemaInput, GetSchemaOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSchemaCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSchemaCommandInput extends GetSchemaInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSchemaCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSchemaCommandOutput extends GetSchemaOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the schema for a relation within a collaboration.</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 GetSchemaCommandOutput extends GetSchemaOutput, __MetadataBeare
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetSchemaCommandInput - {@link GetSchemaCommandInput}
|
|
34
|
+
* @returns {@link GetSchemaCommandOutput}
|
|
28
35
|
* @see {@link GetSchemaCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetSchemaCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetSchemaCommandOutput extends GetSchemaOutput, __MetadataBeare
|
|
|
49
56
|
export declare class GetSchemaCommand extends $Command<GetSchemaCommandInput, GetSchemaCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
50
57
|
readonly input: GetSchemaCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetSchemaCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSchemaCommandInput, GetSchemaCommandOutput>;
|
|
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 { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { ListCollaborationsInput, ListCollaborationsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCollaborationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCollaborationsCommandInput extends ListCollaborationsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCollaborationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCollaborationsCommandOutput extends ListCollaborationsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists collaborations the caller owns, is active in, or has been invited to.</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 ListCollaborationsCommandOutput extends ListCollaborationsOutpu
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListCollaborationsCommandInput - {@link ListCollaborationsCommandInput}
|
|
34
|
+
* @returns {@link ListCollaborationsCommandOutput}
|
|
28
35
|
* @see {@link ListCollaborationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListCollaborationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListCollaborationsCommandOutput extends ListCollaborationsOutpu
|
|
|
46
53
|
export declare class ListCollaborationsCommand extends $Command<ListCollaborationsCommandInput, ListCollaborationsCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
47
54
|
readonly input: ListCollaborationsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListCollaborationsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCollaborationsCommandInput, ListCollaborationsCommandOutput>;
|
|
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 { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { ListConfiguredTableAssociationsInput, ListConfiguredTableAssociationsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListConfiguredTableAssociationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListConfiguredTableAssociationsCommandInput extends ListConfiguredTableAssociationsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListConfiguredTableAssociationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListConfiguredTableAssociationsCommandOutput extends ListConfiguredTableAssociationsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists configured table associations for a membership.</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 ListConfiguredTableAssociationsCommandOutput extends ListConfig
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListConfiguredTableAssociationsCommandInput - {@link ListConfiguredTableAssociationsCommandInput}
|
|
34
|
+
* @returns {@link ListConfiguredTableAssociationsCommandOutput}
|
|
28
35
|
* @see {@link ListConfiguredTableAssociationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListConfiguredTableAssociationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListConfiguredTableAssociationsCommandOutput extends ListConfig
|
|
|
49
56
|
export declare class ListConfiguredTableAssociationsCommand extends $Command<ListConfiguredTableAssociationsCommandInput, ListConfiguredTableAssociationsCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
50
57
|
readonly input: ListConfiguredTableAssociationsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListConfiguredTableAssociationsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConfiguredTableAssociationsCommandInput, ListConfiguredTableAssociationsCommandOutput>;
|
|
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 { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { ListConfiguredTablesInput, ListConfiguredTablesOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListConfiguredTablesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListConfiguredTablesCommandInput extends ListConfiguredTablesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListConfiguredTablesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListConfiguredTablesCommandOutput extends ListConfiguredTablesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists configured tables.</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 ListConfiguredTablesCommandOutput extends ListConfiguredTablesO
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListConfiguredTablesCommandInput - {@link ListConfiguredTablesCommandInput}
|
|
34
|
+
* @returns {@link ListConfiguredTablesCommandOutput}
|
|
28
35
|
* @see {@link ListConfiguredTablesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListConfiguredTablesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListConfiguredTablesCommandOutput extends ListConfiguredTablesO
|
|
|
46
53
|
export declare class ListConfiguredTablesCommand extends $Command<ListConfiguredTablesCommandInput, ListConfiguredTablesCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
47
54
|
readonly input: ListConfiguredTablesCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListConfiguredTablesCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConfiguredTablesCommandInput, ListConfiguredTablesCommandOutput>;
|
|
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 { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { ListMembersInput, ListMembersOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListMembersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListMembersCommandInput extends ListMembersInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListMembersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all members within a collaboration.</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 ListMembersCommandOutput extends ListMembersOutput, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListMembersCommandInput - {@link ListMembersCommandInput}
|
|
34
|
+
* @returns {@link ListMembersCommandOutput}
|
|
28
35
|
* @see {@link ListMembersCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListMembersCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataB
|
|
|
49
56
|
export declare class ListMembersCommand extends $Command<ListMembersCommandInput, ListMembersCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
50
57
|
readonly input: ListMembersCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListMembersCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMembersCommandInput, ListMembersCommandOutput>;
|
|
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 { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { ListMembershipsInput, ListMembershipsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListMembershipsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListMembershipsCommandInput extends ListMembershipsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListMembershipsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListMembershipsCommandOutput extends ListMembershipsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all memberships resources within the caller's account.</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 ListMembershipsCommandOutput extends ListMembershipsOutput, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListMembershipsCommandInput - {@link ListMembershipsCommandInput}
|
|
34
|
+
* @returns {@link ListMembershipsCommandOutput}
|
|
28
35
|
* @see {@link ListMembershipsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListMembershipsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListMembershipsCommandOutput extends ListMembershipsOutput, __M
|
|
|
46
53
|
export declare class ListMembershipsCommand extends $Command<ListMembershipsCommandInput, ListMembershipsCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
47
54
|
readonly input: ListMembershipsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListMembershipsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMembershipsCommandInput, ListMembershipsCommandOutput>;
|
|
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 { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { ListProtectedQueriesInput, ListProtectedQueriesOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListProtectedQueriesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListProtectedQueriesCommandInput extends ListProtectedQueriesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListProtectedQueriesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListProtectedQueriesCommandOutput extends ListProtectedQueriesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists protected queries, sorted by the most recent query.</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 ListProtectedQueriesCommandOutput extends ListProtectedQueriesO
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListProtectedQueriesCommandInput - {@link ListProtectedQueriesCommandInput}
|
|
34
|
+
* @returns {@link ListProtectedQueriesCommandOutput}
|
|
28
35
|
* @see {@link ListProtectedQueriesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListProtectedQueriesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListProtectedQueriesCommandOutput extends ListProtectedQueriesO
|
|
|
49
56
|
export declare class ListProtectedQueriesCommand extends $Command<ListProtectedQueriesCommandInput, ListProtectedQueriesCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
50
57
|
readonly input: ListProtectedQueriesCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListProtectedQueriesCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProtectedQueriesCommandInput, ListProtectedQueriesCommandOutput>;
|
|
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 { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { ListSchemasInput, ListSchemasOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListSchemasCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListSchemasCommandInput extends ListSchemasInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListSchemasCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListSchemasCommandOutput extends ListSchemasOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the schemas for relations within a collaboration.</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 ListSchemasCommandOutput extends ListSchemasOutput, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListSchemasCommandInput - {@link ListSchemasCommandInput}
|
|
34
|
+
* @returns {@link ListSchemasCommandOutput}
|
|
28
35
|
* @see {@link ListSchemasCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListSchemasCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListSchemasCommandOutput extends ListSchemasOutput, __MetadataB
|
|
|
49
56
|
export declare class ListSchemasCommand extends $Command<ListSchemasCommandInput, ListSchemasCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
50
57
|
readonly input: ListSchemasCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListSchemasCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSchemasCommandInput, ListSchemasCommandOutput>;
|
|
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 { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all of the tags that have been added to a resource.</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 ListTagsForResourceOut
|
|
|
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 CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
40
47
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
41
48
|
readonly input: ListTagsForResourceCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: ListTagsForResourceCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { StartProtectedQueryInput, StartProtectedQueryOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartProtectedQueryCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartProtectedQueryCommandInput extends StartProtectedQueryInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartProtectedQueryCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartProtectedQueryCommandOutput extends StartProtectedQueryOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a protected query that is started by AWS Clean Rooms.</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 StartProtectedQueryCommandOutput extends StartProtectedQueryOut
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StartProtectedQueryCommandInput - {@link StartProtectedQueryCommandInput}
|
|
34
|
+
* @returns {@link StartProtectedQueryCommandOutput}
|
|
28
35
|
* @see {@link StartProtectedQueryCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StartProtectedQueryCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface StartProtectedQueryCommandOutput extends StartProtectedQueryOut
|
|
|
52
59
|
export declare class StartProtectedQueryCommand extends $Command<StartProtectedQueryCommandInput, StartProtectedQueryCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
53
60
|
readonly input: StartProtectedQueryCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: StartProtectedQueryCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartProtectedQueryCommandInput, StartProtectedQueryCommandOutput>;
|
|
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 { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Tags a resource.</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 TagResourceOutput, __MetadataB
|
|
|
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 CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
40
47
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
41
48
|
readonly input: TagResourceCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: TagResourceCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes a tag or list of tags from a resource.</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 UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
40
47
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
41
48
|
readonly input: UntagResourceCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: UntagResourceCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|