@aws-sdk/client-cleanrooms 3.379.1 → 3.381.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/README.md +71 -7
- package/dist-cjs/CleanRooms.js +16 -0
- package/dist-cjs/commands/BatchGetCollaborationAnalysisTemplateCommand.js +47 -0
- package/dist-cjs/commands/CreateAnalysisTemplateCommand.js +47 -0
- package/dist-cjs/commands/DeleteAnalysisTemplateCommand.js +46 -0
- package/dist-cjs/commands/GetAnalysisTemplateCommand.js +47 -0
- package/dist-cjs/commands/GetCollaborationAnalysisTemplateCommand.js +47 -0
- package/dist-cjs/commands/ListAnalysisTemplatesCommand.js +46 -0
- package/dist-cjs/commands/ListCollaborationAnalysisTemplatesCommand.js +46 -0
- package/dist-cjs/commands/UpdateAnalysisTemplateCommand.js +47 -0
- package/dist-cjs/commands/index.js +8 -0
- package/dist-cjs/models/models_0.js +139 -45
- package/dist-cjs/pagination/ListAnalysisTemplatesPaginator.js +29 -0
- package/dist-cjs/pagination/ListCollaborationAnalysisTemplatesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +673 -36
- package/dist-es/CleanRooms.js +16 -0
- package/dist-es/commands/BatchGetCollaborationAnalysisTemplateCommand.js +43 -0
- package/dist-es/commands/CreateAnalysisTemplateCommand.js +43 -0
- package/dist-es/commands/DeleteAnalysisTemplateCommand.js +42 -0
- package/dist-es/commands/GetAnalysisTemplateCommand.js +43 -0
- package/dist-es/commands/GetCollaborationAnalysisTemplateCommand.js +43 -0
- package/dist-es/commands/ListAnalysisTemplatesCommand.js +42 -0
- package/dist-es/commands/ListCollaborationAnalysisTemplatesCommand.js +42 -0
- package/dist-es/commands/UpdateAnalysisTemplateCommand.js +43 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +125 -42
- package/dist-es/pagination/ListAnalysisTemplatesPaginator.js +25 -0
- package/dist-es/pagination/ListCollaborationAnalysisTemplatesPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +698 -77
- package/dist-types/CleanRooms.d.ts +56 -0
- package/dist-types/CleanRoomsClient.d.ts +10 -2
- package/dist-types/commands/BatchGetCollaborationAnalysisTemplateCommand.d.ts +126 -0
- package/dist-types/commands/BatchGetSchemaCommand.d.ts +1 -1
- package/dist-types/commands/CreateAnalysisTemplateCommand.d.ts +137 -0
- package/dist-types/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +18 -2
- package/dist-types/commands/CreateConfiguredTableCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAnalysisTemplateCommand.d.ts +87 -0
- package/dist-types/commands/DeleteConfiguredTableAnalysisRuleCommand.d.ts +1 -1
- package/dist-types/commands/GetAnalysisTemplateCommand.d.ts +116 -0
- package/dist-types/commands/GetCollaborationAnalysisTemplateCommand.d.ts +115 -0
- package/dist-types/commands/GetConfiguredTableAnalysisRuleCommand.d.ts +10 -2
- package/dist-types/commands/GetConfiguredTableCommand.d.ts +1 -1
- package/dist-types/commands/GetProtectedQueryCommand.d.ts +4 -0
- package/dist-types/commands/GetSchemaAnalysisRuleCommand.d.ts +10 -2
- package/dist-types/commands/GetSchemaCommand.d.ts +1 -1
- package/dist-types/commands/ListAnalysisTemplatesCommand.d.ts +104 -0
- package/dist-types/commands/ListCollaborationAnalysisTemplatesCommand.d.ts +103 -0
- package/dist-types/commands/ListConfiguredTablesCommand.d.ts +1 -1
- package/dist-types/commands/ListSchemasCommand.d.ts +1 -1
- package/dist-types/commands/StartProtectedQueryCommand.d.ts +8 -0
- package/dist-types/commands/UpdateAnalysisTemplateCommand.d.ts +117 -0
- package/dist-types/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +18 -2
- package/dist-types/commands/UpdateConfiguredTableCommand.d.ts +1 -1
- package/dist-types/commands/UpdateProtectedQueryCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +793 -166
- package/dist-types/pagination/ListAnalysisTemplatesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCollaborationAnalysisTemplatesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +72 -0
- package/dist-types/ts3.4/CleanRooms.d.ts +148 -0
- package/dist-types/ts3.4/CleanRoomsClient.d.ts +48 -0
- package/dist-types/ts3.4/commands/BatchGetCollaborationAnalysisTemplateCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateAnalysisTemplateCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteAnalysisTemplateCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetAnalysisTemplateCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetCollaborationAnalysisTemplateCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListAnalysisTemplatesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCollaborationAnalysisTemplatesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateAnalysisTemplateCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +294 -58
- package/dist-types/ts3.4/pagination/ListAnalysisTemplatesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCollaborationAnalysisTemplatesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +96 -0
- package/package.json +1 -1
package/dist-es/CleanRooms.js
CHANGED
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
2
2
|
import { CleanRoomsClient } from "./CleanRoomsClient";
|
|
3
|
+
import { BatchGetCollaborationAnalysisTemplateCommand, } from "./commands/BatchGetCollaborationAnalysisTemplateCommand";
|
|
3
4
|
import { BatchGetSchemaCommand, } from "./commands/BatchGetSchemaCommand";
|
|
5
|
+
import { CreateAnalysisTemplateCommand, } from "./commands/CreateAnalysisTemplateCommand";
|
|
4
6
|
import { CreateCollaborationCommand, } from "./commands/CreateCollaborationCommand";
|
|
5
7
|
import { CreateConfiguredTableAnalysisRuleCommand, } from "./commands/CreateConfiguredTableAnalysisRuleCommand";
|
|
6
8
|
import { CreateConfiguredTableAssociationCommand, } from "./commands/CreateConfiguredTableAssociationCommand";
|
|
7
9
|
import { CreateConfiguredTableCommand, } from "./commands/CreateConfiguredTableCommand";
|
|
8
10
|
import { CreateMembershipCommand, } from "./commands/CreateMembershipCommand";
|
|
11
|
+
import { DeleteAnalysisTemplateCommand, } from "./commands/DeleteAnalysisTemplateCommand";
|
|
9
12
|
import { DeleteCollaborationCommand, } from "./commands/DeleteCollaborationCommand";
|
|
10
13
|
import { DeleteConfiguredTableAnalysisRuleCommand, } from "./commands/DeleteConfiguredTableAnalysisRuleCommand";
|
|
11
14
|
import { DeleteConfiguredTableAssociationCommand, } from "./commands/DeleteConfiguredTableAssociationCommand";
|
|
12
15
|
import { DeleteConfiguredTableCommand, } from "./commands/DeleteConfiguredTableCommand";
|
|
13
16
|
import { DeleteMemberCommand, } from "./commands/DeleteMemberCommand";
|
|
14
17
|
import { DeleteMembershipCommand, } from "./commands/DeleteMembershipCommand";
|
|
18
|
+
import { GetAnalysisTemplateCommand, } from "./commands/GetAnalysisTemplateCommand";
|
|
19
|
+
import { GetCollaborationAnalysisTemplateCommand, } from "./commands/GetCollaborationAnalysisTemplateCommand";
|
|
15
20
|
import { GetCollaborationCommand, } from "./commands/GetCollaborationCommand";
|
|
16
21
|
import { GetConfiguredTableAnalysisRuleCommand, } from "./commands/GetConfiguredTableAnalysisRuleCommand";
|
|
17
22
|
import { GetConfiguredTableAssociationCommand, } from "./commands/GetConfiguredTableAssociationCommand";
|
|
@@ -20,6 +25,8 @@ import { GetMembershipCommand, } from "./commands/GetMembershipCommand";
|
|
|
20
25
|
import { GetProtectedQueryCommand, } from "./commands/GetProtectedQueryCommand";
|
|
21
26
|
import { GetSchemaAnalysisRuleCommand, } from "./commands/GetSchemaAnalysisRuleCommand";
|
|
22
27
|
import { GetSchemaCommand } from "./commands/GetSchemaCommand";
|
|
28
|
+
import { ListAnalysisTemplatesCommand, } from "./commands/ListAnalysisTemplatesCommand";
|
|
29
|
+
import { ListCollaborationAnalysisTemplatesCommand, } from "./commands/ListCollaborationAnalysisTemplatesCommand";
|
|
23
30
|
import { ListCollaborationsCommand, } from "./commands/ListCollaborationsCommand";
|
|
24
31
|
import { ListConfiguredTableAssociationsCommand, } from "./commands/ListConfiguredTableAssociationsCommand";
|
|
25
32
|
import { ListConfiguredTablesCommand, } from "./commands/ListConfiguredTablesCommand";
|
|
@@ -31,6 +38,7 @@ import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceComma
|
|
|
31
38
|
import { StartProtectedQueryCommand, } from "./commands/StartProtectedQueryCommand";
|
|
32
39
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
33
40
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
41
|
+
import { UpdateAnalysisTemplateCommand, } from "./commands/UpdateAnalysisTemplateCommand";
|
|
34
42
|
import { UpdateCollaborationCommand, } from "./commands/UpdateCollaborationCommand";
|
|
35
43
|
import { UpdateConfiguredTableAnalysisRuleCommand, } from "./commands/UpdateConfiguredTableAnalysisRuleCommand";
|
|
36
44
|
import { UpdateConfiguredTableAssociationCommand, } from "./commands/UpdateConfiguredTableAssociationCommand";
|
|
@@ -38,19 +46,24 @@ import { UpdateConfiguredTableCommand, } from "./commands/UpdateConfiguredTableC
|
|
|
38
46
|
import { UpdateMembershipCommand, } from "./commands/UpdateMembershipCommand";
|
|
39
47
|
import { UpdateProtectedQueryCommand, } from "./commands/UpdateProtectedQueryCommand";
|
|
40
48
|
const commands = {
|
|
49
|
+
BatchGetCollaborationAnalysisTemplateCommand,
|
|
41
50
|
BatchGetSchemaCommand,
|
|
51
|
+
CreateAnalysisTemplateCommand,
|
|
42
52
|
CreateCollaborationCommand,
|
|
43
53
|
CreateConfiguredTableCommand,
|
|
44
54
|
CreateConfiguredTableAnalysisRuleCommand,
|
|
45
55
|
CreateConfiguredTableAssociationCommand,
|
|
46
56
|
CreateMembershipCommand,
|
|
57
|
+
DeleteAnalysisTemplateCommand,
|
|
47
58
|
DeleteCollaborationCommand,
|
|
48
59
|
DeleteConfiguredTableCommand,
|
|
49
60
|
DeleteConfiguredTableAnalysisRuleCommand,
|
|
50
61
|
DeleteConfiguredTableAssociationCommand,
|
|
51
62
|
DeleteMemberCommand,
|
|
52
63
|
DeleteMembershipCommand,
|
|
64
|
+
GetAnalysisTemplateCommand,
|
|
53
65
|
GetCollaborationCommand,
|
|
66
|
+
GetCollaborationAnalysisTemplateCommand,
|
|
54
67
|
GetConfiguredTableCommand,
|
|
55
68
|
GetConfiguredTableAnalysisRuleCommand,
|
|
56
69
|
GetConfiguredTableAssociationCommand,
|
|
@@ -58,6 +71,8 @@ const commands = {
|
|
|
58
71
|
GetProtectedQueryCommand,
|
|
59
72
|
GetSchemaCommand,
|
|
60
73
|
GetSchemaAnalysisRuleCommand,
|
|
74
|
+
ListAnalysisTemplatesCommand,
|
|
75
|
+
ListCollaborationAnalysisTemplatesCommand,
|
|
61
76
|
ListCollaborationsCommand,
|
|
62
77
|
ListConfiguredTableAssociationsCommand,
|
|
63
78
|
ListConfiguredTablesCommand,
|
|
@@ -69,6 +84,7 @@ const commands = {
|
|
|
69
84
|
StartProtectedQueryCommand,
|
|
70
85
|
TagResourceCommand,
|
|
71
86
|
UntagResourceCommand,
|
|
87
|
+
UpdateAnalysisTemplateCommand,
|
|
72
88
|
UpdateCollaborationCommand,
|
|
73
89
|
UpdateConfiguredTableCommand,
|
|
74
90
|
UpdateConfiguredTableAnalysisRuleCommand,
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { BatchGetCollaborationAnalysisTemplateOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
+
import { de_BatchGetCollaborationAnalysisTemplateCommand, se_BatchGetCollaborationAnalysisTemplateCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class BatchGetCollaborationAnalysisTemplateCommand extends $Command {
|
|
8
|
+
static getEndpointParameterInstructions() {
|
|
9
|
+
return {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
constructor(input) {
|
|
17
|
+
super();
|
|
18
|
+
this.input = input;
|
|
19
|
+
}
|
|
20
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
21
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
22
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, BatchGetCollaborationAnalysisTemplateCommand.getEndpointParameterInstructions()));
|
|
23
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
24
|
+
const { logger } = configuration;
|
|
25
|
+
const clientName = "CleanRoomsClient";
|
|
26
|
+
const commandName = "BatchGetCollaborationAnalysisTemplateCommand";
|
|
27
|
+
const handlerExecutionContext = {
|
|
28
|
+
logger,
|
|
29
|
+
clientName,
|
|
30
|
+
commandName,
|
|
31
|
+
inputFilterSensitiveLog: (_) => _,
|
|
32
|
+
outputFilterSensitiveLog: BatchGetCollaborationAnalysisTemplateOutputFilterSensitiveLog,
|
|
33
|
+
};
|
|
34
|
+
const { requestHandler } = configuration;
|
|
35
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
|
+
}
|
|
37
|
+
serialize(input, context) {
|
|
38
|
+
return se_BatchGetCollaborationAnalysisTemplateCommand(input, context);
|
|
39
|
+
}
|
|
40
|
+
deserialize(output, context) {
|
|
41
|
+
return de_BatchGetCollaborationAnalysisTemplateCommand(output, context);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { CreateAnalysisTemplateInputFilterSensitiveLog, CreateAnalysisTemplateOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
+
import { de_CreateAnalysisTemplateCommand, se_CreateAnalysisTemplateCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class CreateAnalysisTemplateCommand extends $Command {
|
|
8
|
+
static getEndpointParameterInstructions() {
|
|
9
|
+
return {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
constructor(input) {
|
|
17
|
+
super();
|
|
18
|
+
this.input = input;
|
|
19
|
+
}
|
|
20
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
21
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
22
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, CreateAnalysisTemplateCommand.getEndpointParameterInstructions()));
|
|
23
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
24
|
+
const { logger } = configuration;
|
|
25
|
+
const clientName = "CleanRoomsClient";
|
|
26
|
+
const commandName = "CreateAnalysisTemplateCommand";
|
|
27
|
+
const handlerExecutionContext = {
|
|
28
|
+
logger,
|
|
29
|
+
clientName,
|
|
30
|
+
commandName,
|
|
31
|
+
inputFilterSensitiveLog: CreateAnalysisTemplateInputFilterSensitiveLog,
|
|
32
|
+
outputFilterSensitiveLog: CreateAnalysisTemplateOutputFilterSensitiveLog,
|
|
33
|
+
};
|
|
34
|
+
const { requestHandler } = configuration;
|
|
35
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
|
+
}
|
|
37
|
+
serialize(input, context) {
|
|
38
|
+
return se_CreateAnalysisTemplateCommand(input, context);
|
|
39
|
+
}
|
|
40
|
+
deserialize(output, context) {
|
|
41
|
+
return de_CreateAnalysisTemplateCommand(output, context);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { de_DeleteAnalysisTemplateCommand, se_DeleteAnalysisTemplateCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteAnalysisTemplateCommand extends $Command {
|
|
7
|
+
static getEndpointParameterInstructions() {
|
|
8
|
+
return {
|
|
9
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
10
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
11
|
+
Region: { type: "builtInParams", name: "region" },
|
|
12
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
20
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, DeleteAnalysisTemplateCommand.getEndpointParameterInstructions()));
|
|
22
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
23
|
+
const { logger } = configuration;
|
|
24
|
+
const clientName = "CleanRoomsClient";
|
|
25
|
+
const commandName = "DeleteAnalysisTemplateCommand";
|
|
26
|
+
const handlerExecutionContext = {
|
|
27
|
+
logger,
|
|
28
|
+
clientName,
|
|
29
|
+
commandName,
|
|
30
|
+
inputFilterSensitiveLog: (_) => _,
|
|
31
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
|
+
};
|
|
33
|
+
const { requestHandler } = configuration;
|
|
34
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
35
|
+
}
|
|
36
|
+
serialize(input, context) {
|
|
37
|
+
return se_DeleteAnalysisTemplateCommand(input, context);
|
|
38
|
+
}
|
|
39
|
+
deserialize(output, context) {
|
|
40
|
+
return de_DeleteAnalysisTemplateCommand(output, context);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { GetAnalysisTemplateOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
+
import { de_GetAnalysisTemplateCommand, se_GetAnalysisTemplateCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class GetAnalysisTemplateCommand extends $Command {
|
|
8
|
+
static getEndpointParameterInstructions() {
|
|
9
|
+
return {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
constructor(input) {
|
|
17
|
+
super();
|
|
18
|
+
this.input = input;
|
|
19
|
+
}
|
|
20
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
21
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
22
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, GetAnalysisTemplateCommand.getEndpointParameterInstructions()));
|
|
23
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
24
|
+
const { logger } = configuration;
|
|
25
|
+
const clientName = "CleanRoomsClient";
|
|
26
|
+
const commandName = "GetAnalysisTemplateCommand";
|
|
27
|
+
const handlerExecutionContext = {
|
|
28
|
+
logger,
|
|
29
|
+
clientName,
|
|
30
|
+
commandName,
|
|
31
|
+
inputFilterSensitiveLog: (_) => _,
|
|
32
|
+
outputFilterSensitiveLog: GetAnalysisTemplateOutputFilterSensitiveLog,
|
|
33
|
+
};
|
|
34
|
+
const { requestHandler } = configuration;
|
|
35
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
|
+
}
|
|
37
|
+
serialize(input, context) {
|
|
38
|
+
return se_GetAnalysisTemplateCommand(input, context);
|
|
39
|
+
}
|
|
40
|
+
deserialize(output, context) {
|
|
41
|
+
return de_GetAnalysisTemplateCommand(output, context);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { GetCollaborationAnalysisTemplateOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
+
import { de_GetCollaborationAnalysisTemplateCommand, se_GetCollaborationAnalysisTemplateCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class GetCollaborationAnalysisTemplateCommand extends $Command {
|
|
8
|
+
static getEndpointParameterInstructions() {
|
|
9
|
+
return {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
constructor(input) {
|
|
17
|
+
super();
|
|
18
|
+
this.input = input;
|
|
19
|
+
}
|
|
20
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
21
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
22
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, GetCollaborationAnalysisTemplateCommand.getEndpointParameterInstructions()));
|
|
23
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
24
|
+
const { logger } = configuration;
|
|
25
|
+
const clientName = "CleanRoomsClient";
|
|
26
|
+
const commandName = "GetCollaborationAnalysisTemplateCommand";
|
|
27
|
+
const handlerExecutionContext = {
|
|
28
|
+
logger,
|
|
29
|
+
clientName,
|
|
30
|
+
commandName,
|
|
31
|
+
inputFilterSensitiveLog: (_) => _,
|
|
32
|
+
outputFilterSensitiveLog: GetCollaborationAnalysisTemplateOutputFilterSensitiveLog,
|
|
33
|
+
};
|
|
34
|
+
const { requestHandler } = configuration;
|
|
35
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
|
+
}
|
|
37
|
+
serialize(input, context) {
|
|
38
|
+
return se_GetCollaborationAnalysisTemplateCommand(input, context);
|
|
39
|
+
}
|
|
40
|
+
deserialize(output, context) {
|
|
41
|
+
return de_GetCollaborationAnalysisTemplateCommand(output, context);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { de_ListAnalysisTemplatesCommand, se_ListAnalysisTemplatesCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListAnalysisTemplatesCommand extends $Command {
|
|
7
|
+
static getEndpointParameterInstructions() {
|
|
8
|
+
return {
|
|
9
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
10
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
11
|
+
Region: { type: "builtInParams", name: "region" },
|
|
12
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
20
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, ListAnalysisTemplatesCommand.getEndpointParameterInstructions()));
|
|
22
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
23
|
+
const { logger } = configuration;
|
|
24
|
+
const clientName = "CleanRoomsClient";
|
|
25
|
+
const commandName = "ListAnalysisTemplatesCommand";
|
|
26
|
+
const handlerExecutionContext = {
|
|
27
|
+
logger,
|
|
28
|
+
clientName,
|
|
29
|
+
commandName,
|
|
30
|
+
inputFilterSensitiveLog: (_) => _,
|
|
31
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
|
+
};
|
|
33
|
+
const { requestHandler } = configuration;
|
|
34
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
35
|
+
}
|
|
36
|
+
serialize(input, context) {
|
|
37
|
+
return se_ListAnalysisTemplatesCommand(input, context);
|
|
38
|
+
}
|
|
39
|
+
deserialize(output, context) {
|
|
40
|
+
return de_ListAnalysisTemplatesCommand(output, context);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { de_ListCollaborationAnalysisTemplatesCommand, se_ListCollaborationAnalysisTemplatesCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListCollaborationAnalysisTemplatesCommand extends $Command {
|
|
7
|
+
static getEndpointParameterInstructions() {
|
|
8
|
+
return {
|
|
9
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
10
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
11
|
+
Region: { type: "builtInParams", name: "region" },
|
|
12
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
20
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, ListCollaborationAnalysisTemplatesCommand.getEndpointParameterInstructions()));
|
|
22
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
23
|
+
const { logger } = configuration;
|
|
24
|
+
const clientName = "CleanRoomsClient";
|
|
25
|
+
const commandName = "ListCollaborationAnalysisTemplatesCommand";
|
|
26
|
+
const handlerExecutionContext = {
|
|
27
|
+
logger,
|
|
28
|
+
clientName,
|
|
29
|
+
commandName,
|
|
30
|
+
inputFilterSensitiveLog: (_) => _,
|
|
31
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
|
+
};
|
|
33
|
+
const { requestHandler } = configuration;
|
|
34
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
35
|
+
}
|
|
36
|
+
serialize(input, context) {
|
|
37
|
+
return se_ListCollaborationAnalysisTemplatesCommand(input, context);
|
|
38
|
+
}
|
|
39
|
+
deserialize(output, context) {
|
|
40
|
+
return de_ListCollaborationAnalysisTemplatesCommand(output, context);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { UpdateAnalysisTemplateOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
+
import { de_UpdateAnalysisTemplateCommand, se_UpdateAnalysisTemplateCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class UpdateAnalysisTemplateCommand extends $Command {
|
|
8
|
+
static getEndpointParameterInstructions() {
|
|
9
|
+
return {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
constructor(input) {
|
|
17
|
+
super();
|
|
18
|
+
this.input = input;
|
|
19
|
+
}
|
|
20
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
21
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
22
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, UpdateAnalysisTemplateCommand.getEndpointParameterInstructions()));
|
|
23
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
24
|
+
const { logger } = configuration;
|
|
25
|
+
const clientName = "CleanRoomsClient";
|
|
26
|
+
const commandName = "UpdateAnalysisTemplateCommand";
|
|
27
|
+
const handlerExecutionContext = {
|
|
28
|
+
logger,
|
|
29
|
+
clientName,
|
|
30
|
+
commandName,
|
|
31
|
+
inputFilterSensitiveLog: (_) => _,
|
|
32
|
+
outputFilterSensitiveLog: UpdateAnalysisTemplateOutputFilterSensitiveLog,
|
|
33
|
+
};
|
|
34
|
+
const { requestHandler } = configuration;
|
|
35
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
|
+
}
|
|
37
|
+
serialize(input, context) {
|
|
38
|
+
return se_UpdateAnalysisTemplateCommand(input, context);
|
|
39
|
+
}
|
|
40
|
+
deserialize(output, context) {
|
|
41
|
+
return de_UpdateAnalysisTemplateCommand(output, context);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -1,15 +1,20 @@
|
|
|
1
|
+
export * from "./BatchGetCollaborationAnalysisTemplateCommand";
|
|
1
2
|
export * from "./BatchGetSchemaCommand";
|
|
3
|
+
export * from "./CreateAnalysisTemplateCommand";
|
|
2
4
|
export * from "./CreateCollaborationCommand";
|
|
3
5
|
export * from "./CreateConfiguredTableAnalysisRuleCommand";
|
|
4
6
|
export * from "./CreateConfiguredTableAssociationCommand";
|
|
5
7
|
export * from "./CreateConfiguredTableCommand";
|
|
6
8
|
export * from "./CreateMembershipCommand";
|
|
9
|
+
export * from "./DeleteAnalysisTemplateCommand";
|
|
7
10
|
export * from "./DeleteCollaborationCommand";
|
|
8
11
|
export * from "./DeleteConfiguredTableAnalysisRuleCommand";
|
|
9
12
|
export * from "./DeleteConfiguredTableAssociationCommand";
|
|
10
13
|
export * from "./DeleteConfiguredTableCommand";
|
|
11
14
|
export * from "./DeleteMemberCommand";
|
|
12
15
|
export * from "./DeleteMembershipCommand";
|
|
16
|
+
export * from "./GetAnalysisTemplateCommand";
|
|
17
|
+
export * from "./GetCollaborationAnalysisTemplateCommand";
|
|
13
18
|
export * from "./GetCollaborationCommand";
|
|
14
19
|
export * from "./GetConfiguredTableAnalysisRuleCommand";
|
|
15
20
|
export * from "./GetConfiguredTableAssociationCommand";
|
|
@@ -18,6 +23,8 @@ export * from "./GetMembershipCommand";
|
|
|
18
23
|
export * from "./GetProtectedQueryCommand";
|
|
19
24
|
export * from "./GetSchemaAnalysisRuleCommand";
|
|
20
25
|
export * from "./GetSchemaCommand";
|
|
26
|
+
export * from "./ListAnalysisTemplatesCommand";
|
|
27
|
+
export * from "./ListCollaborationAnalysisTemplatesCommand";
|
|
21
28
|
export * from "./ListCollaborationsCommand";
|
|
22
29
|
export * from "./ListConfiguredTableAssociationsCommand";
|
|
23
30
|
export * from "./ListConfiguredTablesCommand";
|
|
@@ -29,6 +36,7 @@ export * from "./ListTagsForResourceCommand";
|
|
|
29
36
|
export * from "./StartProtectedQueryCommand";
|
|
30
37
|
export * from "./TagResourceCommand";
|
|
31
38
|
export * from "./UntagResourceCommand";
|
|
39
|
+
export * from "./UpdateAnalysisTemplateCommand";
|
|
32
40
|
export * from "./UpdateCollaborationCommand";
|
|
33
41
|
export * from "./UpdateConfiguredTableAnalysisRuleCommand";
|
|
34
42
|
export * from "./UpdateConfiguredTableAssociationCommand";
|