@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
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
2
|
import { CleanRoomsClient } from "./CleanRoomsClient";
|
|
3
|
+
import { BatchGetCollaborationAnalysisTemplateCommandInput, BatchGetCollaborationAnalysisTemplateCommandOutput } from "./commands/BatchGetCollaborationAnalysisTemplateCommand";
|
|
3
4
|
import { BatchGetSchemaCommandInput, BatchGetSchemaCommandOutput } from "./commands/BatchGetSchemaCommand";
|
|
5
|
+
import { CreateAnalysisTemplateCommandInput, CreateAnalysisTemplateCommandOutput } from "./commands/CreateAnalysisTemplateCommand";
|
|
4
6
|
import { CreateCollaborationCommandInput, CreateCollaborationCommandOutput } from "./commands/CreateCollaborationCommand";
|
|
5
7
|
import { CreateConfiguredTableAnalysisRuleCommandInput, CreateConfiguredTableAnalysisRuleCommandOutput } from "./commands/CreateConfiguredTableAnalysisRuleCommand";
|
|
6
8
|
import { CreateConfiguredTableAssociationCommandInput, CreateConfiguredTableAssociationCommandOutput } from "./commands/CreateConfiguredTableAssociationCommand";
|
|
7
9
|
import { CreateConfiguredTableCommandInput, CreateConfiguredTableCommandOutput } from "./commands/CreateConfiguredTableCommand";
|
|
8
10
|
import { CreateMembershipCommandInput, CreateMembershipCommandOutput } from "./commands/CreateMembershipCommand";
|
|
11
|
+
import { DeleteAnalysisTemplateCommandInput, DeleteAnalysisTemplateCommandOutput } from "./commands/DeleteAnalysisTemplateCommand";
|
|
9
12
|
import { DeleteCollaborationCommandInput, DeleteCollaborationCommandOutput } from "./commands/DeleteCollaborationCommand";
|
|
10
13
|
import { DeleteConfiguredTableAnalysisRuleCommandInput, DeleteConfiguredTableAnalysisRuleCommandOutput } from "./commands/DeleteConfiguredTableAnalysisRuleCommand";
|
|
11
14
|
import { DeleteConfiguredTableAssociationCommandInput, DeleteConfiguredTableAssociationCommandOutput } from "./commands/DeleteConfiguredTableAssociationCommand";
|
|
12
15
|
import { DeleteConfiguredTableCommandInput, DeleteConfiguredTableCommandOutput } from "./commands/DeleteConfiguredTableCommand";
|
|
13
16
|
import { DeleteMemberCommandInput, DeleteMemberCommandOutput } from "./commands/DeleteMemberCommand";
|
|
14
17
|
import { DeleteMembershipCommandInput, DeleteMembershipCommandOutput } from "./commands/DeleteMembershipCommand";
|
|
18
|
+
import { GetAnalysisTemplateCommandInput, GetAnalysisTemplateCommandOutput } from "./commands/GetAnalysisTemplateCommand";
|
|
19
|
+
import { GetCollaborationAnalysisTemplateCommandInput, GetCollaborationAnalysisTemplateCommandOutput } from "./commands/GetCollaborationAnalysisTemplateCommand";
|
|
15
20
|
import { GetCollaborationCommandInput, GetCollaborationCommandOutput } from "./commands/GetCollaborationCommand";
|
|
16
21
|
import { GetConfiguredTableAnalysisRuleCommandInput, GetConfiguredTableAnalysisRuleCommandOutput } from "./commands/GetConfiguredTableAnalysisRuleCommand";
|
|
17
22
|
import { GetConfiguredTableAssociationCommandInput, GetConfiguredTableAssociationCommandOutput } from "./commands/GetConfiguredTableAssociationCommand";
|
|
@@ -20,6 +25,8 @@ import { GetMembershipCommandInput, GetMembershipCommandOutput } from "./command
|
|
|
20
25
|
import { GetProtectedQueryCommandInput, GetProtectedQueryCommandOutput } from "./commands/GetProtectedQueryCommand";
|
|
21
26
|
import { GetSchemaAnalysisRuleCommandInput, GetSchemaAnalysisRuleCommandOutput } from "./commands/GetSchemaAnalysisRuleCommand";
|
|
22
27
|
import { GetSchemaCommandInput, GetSchemaCommandOutput } from "./commands/GetSchemaCommand";
|
|
28
|
+
import { ListAnalysisTemplatesCommandInput, ListAnalysisTemplatesCommandOutput } from "./commands/ListAnalysisTemplatesCommand";
|
|
29
|
+
import { ListCollaborationAnalysisTemplatesCommandInput, ListCollaborationAnalysisTemplatesCommandOutput } from "./commands/ListCollaborationAnalysisTemplatesCommand";
|
|
23
30
|
import { ListCollaborationsCommandInput, ListCollaborationsCommandOutput } from "./commands/ListCollaborationsCommand";
|
|
24
31
|
import { ListConfiguredTableAssociationsCommandInput, ListConfiguredTableAssociationsCommandOutput } from "./commands/ListConfiguredTableAssociationsCommand";
|
|
25
32
|
import { ListConfiguredTablesCommandInput, ListConfiguredTablesCommandOutput } from "./commands/ListConfiguredTablesCommand";
|
|
@@ -31,6 +38,7 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
31
38
|
import { StartProtectedQueryCommandInput, StartProtectedQueryCommandOutput } from "./commands/StartProtectedQueryCommand";
|
|
32
39
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
33
40
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
41
|
+
import { UpdateAnalysisTemplateCommandInput, UpdateAnalysisTemplateCommandOutput } from "./commands/UpdateAnalysisTemplateCommand";
|
|
34
42
|
import { UpdateCollaborationCommandInput, UpdateCollaborationCommandOutput } from "./commands/UpdateCollaborationCommand";
|
|
35
43
|
import { UpdateConfiguredTableAnalysisRuleCommandInput, UpdateConfiguredTableAnalysisRuleCommandOutput } from "./commands/UpdateConfiguredTableAnalysisRuleCommand";
|
|
36
44
|
import { UpdateConfiguredTableAssociationCommandInput, UpdateConfiguredTableAssociationCommandOutput } from "./commands/UpdateConfiguredTableAssociationCommand";
|
|
@@ -38,12 +46,24 @@ import { UpdateConfiguredTableCommandInput, UpdateConfiguredTableCommandOutput }
|
|
|
38
46
|
import { UpdateMembershipCommandInput, UpdateMembershipCommandOutput } from "./commands/UpdateMembershipCommand";
|
|
39
47
|
import { UpdateProtectedQueryCommandInput, UpdateProtectedQueryCommandOutput } from "./commands/UpdateProtectedQueryCommand";
|
|
40
48
|
export interface CleanRooms {
|
|
49
|
+
/**
|
|
50
|
+
* @see {@link BatchGetCollaborationAnalysisTemplateCommand}
|
|
51
|
+
*/
|
|
52
|
+
batchGetCollaborationAnalysisTemplate(args: BatchGetCollaborationAnalysisTemplateCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetCollaborationAnalysisTemplateCommandOutput>;
|
|
53
|
+
batchGetCollaborationAnalysisTemplate(args: BatchGetCollaborationAnalysisTemplateCommandInput, cb: (err: any, data?: BatchGetCollaborationAnalysisTemplateCommandOutput) => void): void;
|
|
54
|
+
batchGetCollaborationAnalysisTemplate(args: BatchGetCollaborationAnalysisTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetCollaborationAnalysisTemplateCommandOutput) => void): void;
|
|
41
55
|
/**
|
|
42
56
|
* @see {@link BatchGetSchemaCommand}
|
|
43
57
|
*/
|
|
44
58
|
batchGetSchema(args: BatchGetSchemaCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetSchemaCommandOutput>;
|
|
45
59
|
batchGetSchema(args: BatchGetSchemaCommandInput, cb: (err: any, data?: BatchGetSchemaCommandOutput) => void): void;
|
|
46
60
|
batchGetSchema(args: BatchGetSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetSchemaCommandOutput) => void): void;
|
|
61
|
+
/**
|
|
62
|
+
* @see {@link CreateAnalysisTemplateCommand}
|
|
63
|
+
*/
|
|
64
|
+
createAnalysisTemplate(args: CreateAnalysisTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateAnalysisTemplateCommandOutput>;
|
|
65
|
+
createAnalysisTemplate(args: CreateAnalysisTemplateCommandInput, cb: (err: any, data?: CreateAnalysisTemplateCommandOutput) => void): void;
|
|
66
|
+
createAnalysisTemplate(args: CreateAnalysisTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAnalysisTemplateCommandOutput) => void): void;
|
|
47
67
|
/**
|
|
48
68
|
* @see {@link CreateCollaborationCommand}
|
|
49
69
|
*/
|
|
@@ -74,6 +94,12 @@ export interface CleanRooms {
|
|
|
74
94
|
createMembership(args: CreateMembershipCommandInput, options?: __HttpHandlerOptions): Promise<CreateMembershipCommandOutput>;
|
|
75
95
|
createMembership(args: CreateMembershipCommandInput, cb: (err: any, data?: CreateMembershipCommandOutput) => void): void;
|
|
76
96
|
createMembership(args: CreateMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMembershipCommandOutput) => void): void;
|
|
97
|
+
/**
|
|
98
|
+
* @see {@link DeleteAnalysisTemplateCommand}
|
|
99
|
+
*/
|
|
100
|
+
deleteAnalysisTemplate(args: DeleteAnalysisTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAnalysisTemplateCommandOutput>;
|
|
101
|
+
deleteAnalysisTemplate(args: DeleteAnalysisTemplateCommandInput, cb: (err: any, data?: DeleteAnalysisTemplateCommandOutput) => void): void;
|
|
102
|
+
deleteAnalysisTemplate(args: DeleteAnalysisTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAnalysisTemplateCommandOutput) => void): void;
|
|
77
103
|
/**
|
|
78
104
|
* @see {@link DeleteCollaborationCommand}
|
|
79
105
|
*/
|
|
@@ -110,12 +136,24 @@ export interface CleanRooms {
|
|
|
110
136
|
deleteMembership(args: DeleteMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMembershipCommandOutput>;
|
|
111
137
|
deleteMembership(args: DeleteMembershipCommandInput, cb: (err: any, data?: DeleteMembershipCommandOutput) => void): void;
|
|
112
138
|
deleteMembership(args: DeleteMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMembershipCommandOutput) => void): void;
|
|
139
|
+
/**
|
|
140
|
+
* @see {@link GetAnalysisTemplateCommand}
|
|
141
|
+
*/
|
|
142
|
+
getAnalysisTemplate(args: GetAnalysisTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetAnalysisTemplateCommandOutput>;
|
|
143
|
+
getAnalysisTemplate(args: GetAnalysisTemplateCommandInput, cb: (err: any, data?: GetAnalysisTemplateCommandOutput) => void): void;
|
|
144
|
+
getAnalysisTemplate(args: GetAnalysisTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAnalysisTemplateCommandOutput) => void): void;
|
|
113
145
|
/**
|
|
114
146
|
* @see {@link GetCollaborationCommand}
|
|
115
147
|
*/
|
|
116
148
|
getCollaboration(args: GetCollaborationCommandInput, options?: __HttpHandlerOptions): Promise<GetCollaborationCommandOutput>;
|
|
117
149
|
getCollaboration(args: GetCollaborationCommandInput, cb: (err: any, data?: GetCollaborationCommandOutput) => void): void;
|
|
118
150
|
getCollaboration(args: GetCollaborationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCollaborationCommandOutput) => void): void;
|
|
151
|
+
/**
|
|
152
|
+
* @see {@link GetCollaborationAnalysisTemplateCommand}
|
|
153
|
+
*/
|
|
154
|
+
getCollaborationAnalysisTemplate(args: GetCollaborationAnalysisTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetCollaborationAnalysisTemplateCommandOutput>;
|
|
155
|
+
getCollaborationAnalysisTemplate(args: GetCollaborationAnalysisTemplateCommandInput, cb: (err: any, data?: GetCollaborationAnalysisTemplateCommandOutput) => void): void;
|
|
156
|
+
getCollaborationAnalysisTemplate(args: GetCollaborationAnalysisTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCollaborationAnalysisTemplateCommandOutput) => void): void;
|
|
119
157
|
/**
|
|
120
158
|
* @see {@link GetConfiguredTableCommand}
|
|
121
159
|
*/
|
|
@@ -158,6 +196,18 @@ export interface CleanRooms {
|
|
|
158
196
|
getSchemaAnalysisRule(args: GetSchemaAnalysisRuleCommandInput, options?: __HttpHandlerOptions): Promise<GetSchemaAnalysisRuleCommandOutput>;
|
|
159
197
|
getSchemaAnalysisRule(args: GetSchemaAnalysisRuleCommandInput, cb: (err: any, data?: GetSchemaAnalysisRuleCommandOutput) => void): void;
|
|
160
198
|
getSchemaAnalysisRule(args: GetSchemaAnalysisRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSchemaAnalysisRuleCommandOutput) => void): void;
|
|
199
|
+
/**
|
|
200
|
+
* @see {@link ListAnalysisTemplatesCommand}
|
|
201
|
+
*/
|
|
202
|
+
listAnalysisTemplates(args: ListAnalysisTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListAnalysisTemplatesCommandOutput>;
|
|
203
|
+
listAnalysisTemplates(args: ListAnalysisTemplatesCommandInput, cb: (err: any, data?: ListAnalysisTemplatesCommandOutput) => void): void;
|
|
204
|
+
listAnalysisTemplates(args: ListAnalysisTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAnalysisTemplatesCommandOutput) => void): void;
|
|
205
|
+
/**
|
|
206
|
+
* @see {@link ListCollaborationAnalysisTemplatesCommand}
|
|
207
|
+
*/
|
|
208
|
+
listCollaborationAnalysisTemplates(args: ListCollaborationAnalysisTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListCollaborationAnalysisTemplatesCommandOutput>;
|
|
209
|
+
listCollaborationAnalysisTemplates(args: ListCollaborationAnalysisTemplatesCommandInput, cb: (err: any, data?: ListCollaborationAnalysisTemplatesCommandOutput) => void): void;
|
|
210
|
+
listCollaborationAnalysisTemplates(args: ListCollaborationAnalysisTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCollaborationAnalysisTemplatesCommandOutput) => void): void;
|
|
161
211
|
/**
|
|
162
212
|
* @see {@link ListCollaborationsCommand}
|
|
163
213
|
*/
|
|
@@ -224,6 +274,12 @@ export interface CleanRooms {
|
|
|
224
274
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
225
275
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
226
276
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
277
|
+
/**
|
|
278
|
+
* @see {@link UpdateAnalysisTemplateCommand}
|
|
279
|
+
*/
|
|
280
|
+
updateAnalysisTemplate(args: UpdateAnalysisTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAnalysisTemplateCommandOutput>;
|
|
281
|
+
updateAnalysisTemplate(args: UpdateAnalysisTemplateCommandInput, cb: (err: any, data?: UpdateAnalysisTemplateCommandOutput) => void): void;
|
|
282
|
+
updateAnalysisTemplate(args: UpdateAnalysisTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAnalysisTemplateCommandOutput) => void): void;
|
|
227
283
|
/**
|
|
228
284
|
* @see {@link UpdateCollaborationCommand}
|
|
229
285
|
*/
|
|
@@ -8,18 +8,23 @@ import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"
|
|
|
8
8
|
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
9
9
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
10
10
|
import { BodyLengthCalculator as __BodyLengthCalculator, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
11
|
+
import { BatchGetCollaborationAnalysisTemplateCommandInput, BatchGetCollaborationAnalysisTemplateCommandOutput } from "./commands/BatchGetCollaborationAnalysisTemplateCommand";
|
|
11
12
|
import { BatchGetSchemaCommandInput, BatchGetSchemaCommandOutput } from "./commands/BatchGetSchemaCommand";
|
|
13
|
+
import { CreateAnalysisTemplateCommandInput, CreateAnalysisTemplateCommandOutput } from "./commands/CreateAnalysisTemplateCommand";
|
|
12
14
|
import { CreateCollaborationCommandInput, CreateCollaborationCommandOutput } from "./commands/CreateCollaborationCommand";
|
|
13
15
|
import { CreateConfiguredTableAnalysisRuleCommandInput, CreateConfiguredTableAnalysisRuleCommandOutput } from "./commands/CreateConfiguredTableAnalysisRuleCommand";
|
|
14
16
|
import { CreateConfiguredTableAssociationCommandInput, CreateConfiguredTableAssociationCommandOutput } from "./commands/CreateConfiguredTableAssociationCommand";
|
|
15
17
|
import { CreateConfiguredTableCommandInput, CreateConfiguredTableCommandOutput } from "./commands/CreateConfiguredTableCommand";
|
|
16
18
|
import { CreateMembershipCommandInput, CreateMembershipCommandOutput } from "./commands/CreateMembershipCommand";
|
|
19
|
+
import { DeleteAnalysisTemplateCommandInput, DeleteAnalysisTemplateCommandOutput } from "./commands/DeleteAnalysisTemplateCommand";
|
|
17
20
|
import { DeleteCollaborationCommandInput, DeleteCollaborationCommandOutput } from "./commands/DeleteCollaborationCommand";
|
|
18
21
|
import { DeleteConfiguredTableAnalysisRuleCommandInput, DeleteConfiguredTableAnalysisRuleCommandOutput } from "./commands/DeleteConfiguredTableAnalysisRuleCommand";
|
|
19
22
|
import { DeleteConfiguredTableAssociationCommandInput, DeleteConfiguredTableAssociationCommandOutput } from "./commands/DeleteConfiguredTableAssociationCommand";
|
|
20
23
|
import { DeleteConfiguredTableCommandInput, DeleteConfiguredTableCommandOutput } from "./commands/DeleteConfiguredTableCommand";
|
|
21
24
|
import { DeleteMemberCommandInput, DeleteMemberCommandOutput } from "./commands/DeleteMemberCommand";
|
|
22
25
|
import { DeleteMembershipCommandInput, DeleteMembershipCommandOutput } from "./commands/DeleteMembershipCommand";
|
|
26
|
+
import { GetAnalysisTemplateCommandInput, GetAnalysisTemplateCommandOutput } from "./commands/GetAnalysisTemplateCommand";
|
|
27
|
+
import { GetCollaborationAnalysisTemplateCommandInput, GetCollaborationAnalysisTemplateCommandOutput } from "./commands/GetCollaborationAnalysisTemplateCommand";
|
|
23
28
|
import { GetCollaborationCommandInput, GetCollaborationCommandOutput } from "./commands/GetCollaborationCommand";
|
|
24
29
|
import { GetConfiguredTableAnalysisRuleCommandInput, GetConfiguredTableAnalysisRuleCommandOutput } from "./commands/GetConfiguredTableAnalysisRuleCommand";
|
|
25
30
|
import { GetConfiguredTableAssociationCommandInput, GetConfiguredTableAssociationCommandOutput } from "./commands/GetConfiguredTableAssociationCommand";
|
|
@@ -28,6 +33,8 @@ import { GetMembershipCommandInput, GetMembershipCommandOutput } from "./command
|
|
|
28
33
|
import { GetProtectedQueryCommandInput, GetProtectedQueryCommandOutput } from "./commands/GetProtectedQueryCommand";
|
|
29
34
|
import { GetSchemaAnalysisRuleCommandInput, GetSchemaAnalysisRuleCommandOutput } from "./commands/GetSchemaAnalysisRuleCommand";
|
|
30
35
|
import { GetSchemaCommandInput, GetSchemaCommandOutput } from "./commands/GetSchemaCommand";
|
|
36
|
+
import { ListAnalysisTemplatesCommandInput, ListAnalysisTemplatesCommandOutput } from "./commands/ListAnalysisTemplatesCommand";
|
|
37
|
+
import { ListCollaborationAnalysisTemplatesCommandInput, ListCollaborationAnalysisTemplatesCommandOutput } from "./commands/ListCollaborationAnalysisTemplatesCommand";
|
|
31
38
|
import { ListCollaborationsCommandInput, ListCollaborationsCommandOutput } from "./commands/ListCollaborationsCommand";
|
|
32
39
|
import { ListConfiguredTableAssociationsCommandInput, ListConfiguredTableAssociationsCommandOutput } from "./commands/ListConfiguredTableAssociationsCommand";
|
|
33
40
|
import { ListConfiguredTablesCommandInput, ListConfiguredTablesCommandOutput } from "./commands/ListConfiguredTablesCommand";
|
|
@@ -39,6 +46,7 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
39
46
|
import { StartProtectedQueryCommandInput, StartProtectedQueryCommandOutput } from "./commands/StartProtectedQueryCommand";
|
|
40
47
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
41
48
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
49
|
+
import { UpdateAnalysisTemplateCommandInput, UpdateAnalysisTemplateCommandOutput } from "./commands/UpdateAnalysisTemplateCommand";
|
|
42
50
|
import { UpdateCollaborationCommandInput, UpdateCollaborationCommandOutput } from "./commands/UpdateCollaborationCommand";
|
|
43
51
|
import { UpdateConfiguredTableAnalysisRuleCommandInput, UpdateConfiguredTableAnalysisRuleCommandOutput } from "./commands/UpdateConfiguredTableAnalysisRuleCommand";
|
|
44
52
|
import { UpdateConfiguredTableAssociationCommandInput, UpdateConfiguredTableAssociationCommandOutput } from "./commands/UpdateConfiguredTableAssociationCommand";
|
|
@@ -50,11 +58,11 @@ export { __Client };
|
|
|
50
58
|
/**
|
|
51
59
|
* @public
|
|
52
60
|
*/
|
|
53
|
-
export type ServiceInputTypes = BatchGetSchemaCommandInput | CreateCollaborationCommandInput | CreateConfiguredTableAnalysisRuleCommandInput | CreateConfiguredTableAssociationCommandInput | CreateConfiguredTableCommandInput | CreateMembershipCommandInput | DeleteCollaborationCommandInput | DeleteConfiguredTableAnalysisRuleCommandInput | DeleteConfiguredTableAssociationCommandInput | DeleteConfiguredTableCommandInput | DeleteMemberCommandInput | DeleteMembershipCommandInput | GetCollaborationCommandInput | GetConfiguredTableAnalysisRuleCommandInput | GetConfiguredTableAssociationCommandInput | GetConfiguredTableCommandInput | GetMembershipCommandInput | GetProtectedQueryCommandInput | GetSchemaAnalysisRuleCommandInput | GetSchemaCommandInput | ListCollaborationsCommandInput | ListConfiguredTableAssociationsCommandInput | ListConfiguredTablesCommandInput | ListMembersCommandInput | ListMembershipsCommandInput | ListProtectedQueriesCommandInput | ListSchemasCommandInput | ListTagsForResourceCommandInput | StartProtectedQueryCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCollaborationCommandInput | UpdateConfiguredTableAnalysisRuleCommandInput | UpdateConfiguredTableAssociationCommandInput | UpdateConfiguredTableCommandInput | UpdateMembershipCommandInput | UpdateProtectedQueryCommandInput;
|
|
61
|
+
export type ServiceInputTypes = BatchGetCollaborationAnalysisTemplateCommandInput | BatchGetSchemaCommandInput | CreateAnalysisTemplateCommandInput | CreateCollaborationCommandInput | CreateConfiguredTableAnalysisRuleCommandInput | CreateConfiguredTableAssociationCommandInput | CreateConfiguredTableCommandInput | CreateMembershipCommandInput | DeleteAnalysisTemplateCommandInput | DeleteCollaborationCommandInput | DeleteConfiguredTableAnalysisRuleCommandInput | DeleteConfiguredTableAssociationCommandInput | DeleteConfiguredTableCommandInput | DeleteMemberCommandInput | DeleteMembershipCommandInput | GetAnalysisTemplateCommandInput | GetCollaborationAnalysisTemplateCommandInput | GetCollaborationCommandInput | GetConfiguredTableAnalysisRuleCommandInput | GetConfiguredTableAssociationCommandInput | GetConfiguredTableCommandInput | GetMembershipCommandInput | GetProtectedQueryCommandInput | GetSchemaAnalysisRuleCommandInput | GetSchemaCommandInput | ListAnalysisTemplatesCommandInput | ListCollaborationAnalysisTemplatesCommandInput | ListCollaborationsCommandInput | ListConfiguredTableAssociationsCommandInput | ListConfiguredTablesCommandInput | ListMembersCommandInput | ListMembershipsCommandInput | ListProtectedQueriesCommandInput | ListSchemasCommandInput | ListTagsForResourceCommandInput | StartProtectedQueryCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAnalysisTemplateCommandInput | UpdateCollaborationCommandInput | UpdateConfiguredTableAnalysisRuleCommandInput | UpdateConfiguredTableAssociationCommandInput | UpdateConfiguredTableCommandInput | UpdateMembershipCommandInput | UpdateProtectedQueryCommandInput;
|
|
54
62
|
/**
|
|
55
63
|
* @public
|
|
56
64
|
*/
|
|
57
|
-
export type ServiceOutputTypes = BatchGetSchemaCommandOutput | CreateCollaborationCommandOutput | CreateConfiguredTableAnalysisRuleCommandOutput | CreateConfiguredTableAssociationCommandOutput | CreateConfiguredTableCommandOutput | CreateMembershipCommandOutput | DeleteCollaborationCommandOutput | DeleteConfiguredTableAnalysisRuleCommandOutput | DeleteConfiguredTableAssociationCommandOutput | DeleteConfiguredTableCommandOutput | DeleteMemberCommandOutput | DeleteMembershipCommandOutput | GetCollaborationCommandOutput | GetConfiguredTableAnalysisRuleCommandOutput | GetConfiguredTableAssociationCommandOutput | GetConfiguredTableCommandOutput | GetMembershipCommandOutput | GetProtectedQueryCommandOutput | GetSchemaAnalysisRuleCommandOutput | GetSchemaCommandOutput | ListCollaborationsCommandOutput | ListConfiguredTableAssociationsCommandOutput | ListConfiguredTablesCommandOutput | ListMembersCommandOutput | ListMembershipsCommandOutput | ListProtectedQueriesCommandOutput | ListSchemasCommandOutput | ListTagsForResourceCommandOutput | StartProtectedQueryCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCollaborationCommandOutput | UpdateConfiguredTableAnalysisRuleCommandOutput | UpdateConfiguredTableAssociationCommandOutput | UpdateConfiguredTableCommandOutput | UpdateMembershipCommandOutput | UpdateProtectedQueryCommandOutput;
|
|
65
|
+
export type ServiceOutputTypes = BatchGetCollaborationAnalysisTemplateCommandOutput | BatchGetSchemaCommandOutput | CreateAnalysisTemplateCommandOutput | CreateCollaborationCommandOutput | CreateConfiguredTableAnalysisRuleCommandOutput | CreateConfiguredTableAssociationCommandOutput | CreateConfiguredTableCommandOutput | CreateMembershipCommandOutput | DeleteAnalysisTemplateCommandOutput | DeleteCollaborationCommandOutput | DeleteConfiguredTableAnalysisRuleCommandOutput | DeleteConfiguredTableAssociationCommandOutput | DeleteConfiguredTableCommandOutput | DeleteMemberCommandOutput | DeleteMembershipCommandOutput | GetAnalysisTemplateCommandOutput | GetCollaborationAnalysisTemplateCommandOutput | GetCollaborationCommandOutput | GetConfiguredTableAnalysisRuleCommandOutput | GetConfiguredTableAssociationCommandOutput | GetConfiguredTableCommandOutput | GetMembershipCommandOutput | GetProtectedQueryCommandOutput | GetSchemaAnalysisRuleCommandOutput | GetSchemaCommandOutput | ListAnalysisTemplatesCommandOutput | ListCollaborationAnalysisTemplatesCommandOutput | ListCollaborationsCommandOutput | ListConfiguredTableAssociationsCommandOutput | ListConfiguredTablesCommandOutput | ListMembersCommandOutput | ListMembershipsCommandOutput | ListProtectedQueriesCommandOutput | ListSchemasCommandOutput | ListTagsForResourceCommandOutput | StartProtectedQueryCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAnalysisTemplateCommandOutput | UpdateCollaborationCommandOutput | UpdateConfiguredTableAnalysisRuleCommandOutput | UpdateConfiguredTableAssociationCommandOutput | UpdateConfiguredTableCommandOutput | UpdateMembershipCommandOutput | UpdateProtectedQueryCommandOutput;
|
|
58
66
|
/**
|
|
59
67
|
* @public
|
|
60
68
|
*/
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
|
+
import { BatchGetCollaborationAnalysisTemplateInput, BatchGetCollaborationAnalysisTemplateOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link BatchGetCollaborationAnalysisTemplateCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface BatchGetCollaborationAnalysisTemplateCommandInput extends BatchGetCollaborationAnalysisTemplateInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link BatchGetCollaborationAnalysisTemplateCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface BatchGetCollaborationAnalysisTemplateCommandOutput extends BatchGetCollaborationAnalysisTemplateOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Retrieves multiple analysis templates within a collaboration by their Amazon Resource Names (ARNs).</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { CleanRoomsClient, BatchGetCollaborationAnalysisTemplateCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
|
|
31
|
+
* // const { CleanRoomsClient, BatchGetCollaborationAnalysisTemplateCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
|
|
32
|
+
* const client = new CleanRoomsClient(config);
|
|
33
|
+
* const input = { // BatchGetCollaborationAnalysisTemplateInput
|
|
34
|
+
* collaborationIdentifier: "STRING_VALUE", // required
|
|
35
|
+
* analysisTemplateArns: [ // AnalysisTemplateArnList // required
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* };
|
|
39
|
+
* const command = new BatchGetCollaborationAnalysisTemplateCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // { // BatchGetCollaborationAnalysisTemplateOutput
|
|
42
|
+
* // collaborationAnalysisTemplates: [ // CollaborationAnalysisTemplateList // required
|
|
43
|
+
* // { // CollaborationAnalysisTemplate
|
|
44
|
+
* // id: "STRING_VALUE", // required
|
|
45
|
+
* // arn: "STRING_VALUE", // required
|
|
46
|
+
* // collaborationId: "STRING_VALUE", // required
|
|
47
|
+
* // collaborationArn: "STRING_VALUE", // required
|
|
48
|
+
* // description: "STRING_VALUE",
|
|
49
|
+
* // creatorAccountId: "STRING_VALUE", // required
|
|
50
|
+
* // name: "STRING_VALUE", // required
|
|
51
|
+
* // createTime: new Date("TIMESTAMP"), // required
|
|
52
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
53
|
+
* // schema: { // AnalysisSchema
|
|
54
|
+
* // referencedTables: [ // QueryTables
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // },
|
|
58
|
+
* // format: "STRING_VALUE", // required
|
|
59
|
+
* // source: { // AnalysisSource Union: only one key present
|
|
60
|
+
* // text: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // analysisParameters: [ // AnalysisParameterList
|
|
63
|
+
* // { // AnalysisParameter
|
|
64
|
+
* // name: "STRING_VALUE", // required
|
|
65
|
+
* // type: "SMALLINT" || "INTEGER" || "BIGINT" || "DECIMAL" || "REAL" || "DOUBLE_PRECISION" || "BOOLEAN" || "CHAR" || "VARCHAR" || "DATE" || "TIMESTAMP" || "TIMESTAMPTZ" || "TIME" || "TIMETZ" || "VARBYTE", // required
|
|
66
|
+
* // defaultValue: "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // errors: [ // BatchGetCollaborationAnalysisTemplateErrorList // required
|
|
72
|
+
* // { // BatchGetCollaborationAnalysisTemplateError
|
|
73
|
+
* // arn: "STRING_VALUE", // required
|
|
74
|
+
* // code: "STRING_VALUE", // required
|
|
75
|
+
* // message: "STRING_VALUE", // required
|
|
76
|
+
* // },
|
|
77
|
+
* // ],
|
|
78
|
+
* // };
|
|
79
|
+
*
|
|
80
|
+
* ```
|
|
81
|
+
*
|
|
82
|
+
* @param BatchGetCollaborationAnalysisTemplateCommandInput - {@link BatchGetCollaborationAnalysisTemplateCommandInput}
|
|
83
|
+
* @returns {@link BatchGetCollaborationAnalysisTemplateCommandOutput}
|
|
84
|
+
* @see {@link BatchGetCollaborationAnalysisTemplateCommandInput} for command's `input` shape.
|
|
85
|
+
* @see {@link BatchGetCollaborationAnalysisTemplateCommandOutput} for command's `response` shape.
|
|
86
|
+
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
89
|
+
* <p>Caller does not have sufficient access to perform this action.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link InternalServerException} (server fault)
|
|
92
|
+
* <p>Unexpected error during processing of request.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
95
|
+
* <p>Request references a resource which does not exist.</p>
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
98
|
+
* <p>Request was denied due to request throttling.</p>
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link ValidationException} (client fault)
|
|
101
|
+
* <p>The input fails to satisfy the specified constraints.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link CleanRoomsServiceException}
|
|
104
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
105
|
+
*
|
|
106
|
+
*/
|
|
107
|
+
export declare class BatchGetCollaborationAnalysisTemplateCommand extends $Command<BatchGetCollaborationAnalysisTemplateCommandInput, BatchGetCollaborationAnalysisTemplateCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
108
|
+
readonly input: BatchGetCollaborationAnalysisTemplateCommandInput;
|
|
109
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
110
|
+
/**
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
113
|
+
constructor(input: BatchGetCollaborationAnalysisTemplateCommandInput);
|
|
114
|
+
/**
|
|
115
|
+
* @internal
|
|
116
|
+
*/
|
|
117
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetCollaborationAnalysisTemplateCommandInput, BatchGetCollaborationAnalysisTemplateCommandOutput>;
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
121
|
+
private serialize;
|
|
122
|
+
/**
|
|
123
|
+
* @internal
|
|
124
|
+
*/
|
|
125
|
+
private deserialize;
|
|
126
|
+
}
|
|
@@ -54,7 +54,7 @@ export interface BatchGetSchemaCommandOutput extends BatchGetSchemaOutput, __Met
|
|
|
54
54
|
* // },
|
|
55
55
|
* // ],
|
|
56
56
|
* // analysisRuleTypes: [ // AnalysisRuleTypeList // required
|
|
57
|
-
* // "AGGREGATION" || "LIST",
|
|
57
|
+
* // "AGGREGATION" || "LIST" || "CUSTOM",
|
|
58
58
|
* // ],
|
|
59
59
|
* // analysisMethod: "STRING_VALUE",
|
|
60
60
|
* // creatorAccountId: "STRING_VALUE", // required
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
|
+
import { CreateAnalysisTemplateInput, CreateAnalysisTemplateOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateAnalysisTemplateCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateAnalysisTemplateCommandInput extends CreateAnalysisTemplateInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateAnalysisTemplateCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateAnalysisTemplateCommandOutput extends CreateAnalysisTemplateOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Creates a new analysis template.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { CleanRoomsClient, CreateAnalysisTemplateCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
|
|
31
|
+
* // const { CleanRoomsClient, CreateAnalysisTemplateCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
|
|
32
|
+
* const client = new CleanRoomsClient(config);
|
|
33
|
+
* const input = { // CreateAnalysisTemplateInput
|
|
34
|
+
* description: "STRING_VALUE",
|
|
35
|
+
* membershipIdentifier: "STRING_VALUE", // required
|
|
36
|
+
* name: "STRING_VALUE", // required
|
|
37
|
+
* format: "STRING_VALUE", // required
|
|
38
|
+
* source: { // AnalysisSource Union: only one key present
|
|
39
|
+
* text: "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* tags: { // TagMap
|
|
42
|
+
* "<keys>": "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* analysisParameters: [ // AnalysisParameterList
|
|
45
|
+
* { // AnalysisParameter
|
|
46
|
+
* name: "STRING_VALUE", // required
|
|
47
|
+
* type: "SMALLINT" || "INTEGER" || "BIGINT" || "DECIMAL" || "REAL" || "DOUBLE_PRECISION" || "BOOLEAN" || "CHAR" || "VARCHAR" || "DATE" || "TIMESTAMP" || "TIMESTAMPTZ" || "TIME" || "TIMETZ" || "VARBYTE", // required
|
|
48
|
+
* defaultValue: "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* ],
|
|
51
|
+
* };
|
|
52
|
+
* const command = new CreateAnalysisTemplateCommand(input);
|
|
53
|
+
* const response = await client.send(command);
|
|
54
|
+
* // { // CreateAnalysisTemplateOutput
|
|
55
|
+
* // analysisTemplate: { // AnalysisTemplate
|
|
56
|
+
* // id: "STRING_VALUE", // required
|
|
57
|
+
* // arn: "STRING_VALUE", // required
|
|
58
|
+
* // collaborationId: "STRING_VALUE", // required
|
|
59
|
+
* // collaborationArn: "STRING_VALUE", // required
|
|
60
|
+
* // membershipId: "STRING_VALUE", // required
|
|
61
|
+
* // membershipArn: "STRING_VALUE", // required
|
|
62
|
+
* // description: "STRING_VALUE",
|
|
63
|
+
* // name: "STRING_VALUE", // required
|
|
64
|
+
* // createTime: new Date("TIMESTAMP"), // required
|
|
65
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
66
|
+
* // schema: { // AnalysisSchema
|
|
67
|
+
* // referencedTables: [ // QueryTables
|
|
68
|
+
* // "STRING_VALUE",
|
|
69
|
+
* // ],
|
|
70
|
+
* // },
|
|
71
|
+
* // format: "STRING_VALUE", // required
|
|
72
|
+
* // source: { // AnalysisSource Union: only one key present
|
|
73
|
+
* // text: "STRING_VALUE",
|
|
74
|
+
* // },
|
|
75
|
+
* // analysisParameters: [ // AnalysisParameterList
|
|
76
|
+
* // { // AnalysisParameter
|
|
77
|
+
* // name: "STRING_VALUE", // required
|
|
78
|
+
* // type: "SMALLINT" || "INTEGER" || "BIGINT" || "DECIMAL" || "REAL" || "DOUBLE_PRECISION" || "BOOLEAN" || "CHAR" || "VARCHAR" || "DATE" || "TIMESTAMP" || "TIMESTAMPTZ" || "TIME" || "TIMETZ" || "VARBYTE", // required
|
|
79
|
+
* // defaultValue: "STRING_VALUE",
|
|
80
|
+
* // },
|
|
81
|
+
* // ],
|
|
82
|
+
* // },
|
|
83
|
+
* // };
|
|
84
|
+
*
|
|
85
|
+
* ```
|
|
86
|
+
*
|
|
87
|
+
* @param CreateAnalysisTemplateCommandInput - {@link CreateAnalysisTemplateCommandInput}
|
|
88
|
+
* @returns {@link CreateAnalysisTemplateCommandOutput}
|
|
89
|
+
* @see {@link CreateAnalysisTemplateCommandInput} for command's `input` shape.
|
|
90
|
+
* @see {@link CreateAnalysisTemplateCommandOutput} for command's `response` shape.
|
|
91
|
+
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
94
|
+
* <p>Caller does not have sufficient access to perform this action.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link ConflictException} (client fault)
|
|
97
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link InternalServerException} (server fault)
|
|
100
|
+
* <p>Unexpected error during processing of request.</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
103
|
+
* <p>Request references a resource which does not exist.</p>
|
|
104
|
+
*
|
|
105
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
106
|
+
* <p>Request denied because service quota has been exceeded.</p>
|
|
107
|
+
*
|
|
108
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
109
|
+
* <p>Request was denied due to request throttling.</p>
|
|
110
|
+
*
|
|
111
|
+
* @throws {@link ValidationException} (client fault)
|
|
112
|
+
* <p>The input fails to satisfy the specified constraints.</p>
|
|
113
|
+
*
|
|
114
|
+
* @throws {@link CleanRoomsServiceException}
|
|
115
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
116
|
+
*
|
|
117
|
+
*/
|
|
118
|
+
export declare class CreateAnalysisTemplateCommand extends $Command<CreateAnalysisTemplateCommandInput, CreateAnalysisTemplateCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
119
|
+
readonly input: CreateAnalysisTemplateCommandInput;
|
|
120
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
121
|
+
/**
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
124
|
+
constructor(input: CreateAnalysisTemplateCommandInput);
|
|
125
|
+
/**
|
|
126
|
+
* @internal
|
|
127
|
+
*/
|
|
128
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAnalysisTemplateCommandInput, CreateAnalysisTemplateCommandOutput>;
|
|
129
|
+
/**
|
|
130
|
+
* @internal
|
|
131
|
+
*/
|
|
132
|
+
private serialize;
|
|
133
|
+
/**
|
|
134
|
+
* @internal
|
|
135
|
+
*/
|
|
136
|
+
private deserialize;
|
|
137
|
+
}
|
|
@@ -33,7 +33,7 @@ export interface CreateConfiguredTableAnalysisRuleCommandOutput extends CreateCo
|
|
|
33
33
|
* const client = new CleanRoomsClient(config);
|
|
34
34
|
* const input = { // CreateConfiguredTableAnalysisRuleInput
|
|
35
35
|
* configuredTableIdentifier: "STRING_VALUE", // required
|
|
36
|
-
* analysisRuleType: "AGGREGATION" || "LIST", // required
|
|
36
|
+
* analysisRuleType: "AGGREGATION" || "LIST" || "CUSTOM", // required
|
|
37
37
|
* analysisRulePolicy: { // ConfiguredTableAnalysisRulePolicy Union: only one key present
|
|
38
38
|
* v1: { // ConfiguredTableAnalysisRulePolicyV1 Union: only one key present
|
|
39
39
|
* list: { // AnalysisRuleList
|
|
@@ -77,6 +77,14 @@ export interface CreateConfiguredTableAnalysisRuleCommandOutput extends CreateCo
|
|
|
77
77
|
* },
|
|
78
78
|
* ],
|
|
79
79
|
* },
|
|
80
|
+
* custom: { // AnalysisRuleCustom
|
|
81
|
+
* allowedAnalyses: [ // AllowedAnalysesList // required
|
|
82
|
+
* "STRING_VALUE",
|
|
83
|
+
* ],
|
|
84
|
+
* allowedAnalysisProviders: [ // AllowedAnalysisProviderList
|
|
85
|
+
* "STRING_VALUE",
|
|
86
|
+
* ],
|
|
87
|
+
* },
|
|
80
88
|
* },
|
|
81
89
|
* },
|
|
82
90
|
* };
|
|
@@ -129,9 +137,17 @@ export interface CreateConfiguredTableAnalysisRuleCommandOutput extends CreateCo
|
|
|
129
137
|
* // },
|
|
130
138
|
* // ],
|
|
131
139
|
* // },
|
|
140
|
+
* // custom: { // AnalysisRuleCustom
|
|
141
|
+
* // allowedAnalyses: [ // AllowedAnalysesList // required
|
|
142
|
+
* // "STRING_VALUE",
|
|
143
|
+
* // ],
|
|
144
|
+
* // allowedAnalysisProviders: [ // AllowedAnalysisProviderList
|
|
145
|
+
* // "STRING_VALUE",
|
|
146
|
+
* // ],
|
|
147
|
+
* // },
|
|
132
148
|
* // },
|
|
133
149
|
* // },
|
|
134
|
-
* // type: "AGGREGATION" || "LIST", // required
|
|
150
|
+
* // type: "AGGREGATION" || "LIST" || "CUSTOM", // required
|
|
135
151
|
* // createTime: new Date("TIMESTAMP"), // required
|
|
136
152
|
* // updateTime: new Date("TIMESTAMP"), // required
|
|
137
153
|
* // },
|
|
@@ -64,7 +64,7 @@ export interface CreateConfiguredTableCommandOutput extends CreateConfiguredTabl
|
|
|
64
64
|
* // createTime: new Date("TIMESTAMP"), // required
|
|
65
65
|
* // updateTime: new Date("TIMESTAMP"), // required
|
|
66
66
|
* // analysisRuleTypes: [ // ConfiguredTableAnalysisRuleTypeList // required
|
|
67
|
-
* // "AGGREGATION" || "LIST",
|
|
67
|
+
* // "AGGREGATION" || "LIST" || "CUSTOM",
|
|
68
68
|
* // ],
|
|
69
69
|
* // analysisMethod: "STRING_VALUE", // required
|
|
70
70
|
* // allowedColumns: [ // AllowedColumnList // required
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
|
+
import { DeleteAnalysisTemplateInput, DeleteAnalysisTemplateOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteAnalysisTemplateCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteAnalysisTemplateCommandInput extends DeleteAnalysisTemplateInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteAnalysisTemplateCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteAnalysisTemplateCommandOutput extends DeleteAnalysisTemplateOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Deletes an analysis template.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { CleanRoomsClient, DeleteAnalysisTemplateCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
|
|
31
|
+
* // const { CleanRoomsClient, DeleteAnalysisTemplateCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
|
|
32
|
+
* const client = new CleanRoomsClient(config);
|
|
33
|
+
* const input = { // DeleteAnalysisTemplateInput
|
|
34
|
+
* membershipIdentifier: "STRING_VALUE", // required
|
|
35
|
+
* analysisTemplateIdentifier: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
37
|
+
* const command = new DeleteAnalysisTemplateCommand(input);
|
|
38
|
+
* const response = await client.send(command);
|
|
39
|
+
* // {};
|
|
40
|
+
*
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* @param DeleteAnalysisTemplateCommandInput - {@link DeleteAnalysisTemplateCommandInput}
|
|
44
|
+
* @returns {@link DeleteAnalysisTemplateCommandOutput}
|
|
45
|
+
* @see {@link DeleteAnalysisTemplateCommandInput} for command's `input` shape.
|
|
46
|
+
* @see {@link DeleteAnalysisTemplateCommandOutput} for command's `response` shape.
|
|
47
|
+
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
50
|
+
* <p>Caller does not have sufficient access to perform this action.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link InternalServerException} (server fault)
|
|
53
|
+
* <p>Unexpected error during processing of request.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
56
|
+
* <p>Request references a resource which does not exist.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
59
|
+
* <p>Request was denied due to request throttling.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ValidationException} (client fault)
|
|
62
|
+
* <p>The input fails to satisfy the specified constraints.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link CleanRoomsServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
66
|
+
*
|
|
67
|
+
*/
|
|
68
|
+
export declare class DeleteAnalysisTemplateCommand extends $Command<DeleteAnalysisTemplateCommandInput, DeleteAnalysisTemplateCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
69
|
+
readonly input: DeleteAnalysisTemplateCommandInput;
|
|
70
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
constructor(input: DeleteAnalysisTemplateCommandInput);
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
78
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAnalysisTemplateCommandInput, DeleteAnalysisTemplateCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
82
|
+
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
private deserialize;
|
|
87
|
+
}
|
|
@@ -32,7 +32,7 @@ export interface DeleteConfiguredTableAnalysisRuleCommandOutput extends DeleteCo
|
|
|
32
32
|
* const client = new CleanRoomsClient(config);
|
|
33
33
|
* const input = { // DeleteConfiguredTableAnalysisRuleInput
|
|
34
34
|
* configuredTableIdentifier: "STRING_VALUE", // required
|
|
35
|
-
* analysisRuleType: "AGGREGATION" || "LIST", // required
|
|
35
|
+
* analysisRuleType: "AGGREGATION" || "LIST" || "CUSTOM", // required
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DeleteConfiguredTableAnalysisRuleCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|