@aws-sdk/client-cleanrooms 3.876.0 → 3.881.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 +24 -0
- package/dist-cjs/index.js +221 -15
- package/dist-es/CleanRooms.js +6 -0
- package/dist-es/commands/CreateCollaborationChangeRequestCommand.js +22 -0
- package/dist-es/commands/GetCollaborationChangeRequestCommand.js +22 -0
- package/dist-es/commands/ListCollaborationChangeRequestsCommand.js +22 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +24 -15
- package/dist-es/models/models_1.js +15 -0
- package/dist-es/pagination/ListCollaborationChangeRequestsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +113 -0
- package/dist-types/CleanRooms.d.ts +21 -0
- package/dist-types/CleanRoomsClient.d.ts +5 -2
- package/dist-types/commands/CreateCollaborationChangeRequestCommand.d.ts +131 -0
- package/dist-types/commands/CreateCollaborationCommand.d.ts +6 -0
- package/dist-types/commands/CreateMembershipCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMembershipCommand.d.ts +1 -1
- package/dist-types/commands/GetCollaborationChangeRequestCommand.d.ts +112 -0
- package/dist-types/commands/GetCollaborationCommand.d.ts +3 -0
- package/dist-types/commands/GetMembershipCommand.d.ts +1 -1
- package/dist-types/commands/GetProtectedJobCommand.d.ts +1 -2
- package/dist-types/commands/ListCollaborationChangeRequestsCommand.d.ts +117 -0
- package/dist-types/commands/UpdateCollaborationCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +318 -317
- package/dist-types/models/models_1.d.ts +318 -1
- package/dist-types/pagination/ListCollaborationChangeRequestsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/CleanRooms.d.ts +51 -0
- package/dist-types/ts3.4/CleanRoomsClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/CreateCollaborationChangeRequestCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateMembershipCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteMembershipCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCollaborationChangeRequestCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetMembershipCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetProtectedJobCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListCollaborationChangeRequestsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +101 -106
- package/dist-types/ts3.4/models/models_1.d.ts +106 -6
- package/dist-types/ts3.4/pagination/ListCollaborationChangeRequestsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +12 -12
|
@@ -1,4 +1,321 @@
|
|
|
1
|
-
import { AnalysisType, DifferentialPrivacyAggregationType, MemberAbility,
|
|
1
|
+
import { AnalysisType, DifferentialPrivacyAggregationType, MemberAbility, MembershipJobLogStatus, MembershipPaymentConfiguration, MembershipProtectedJobResultConfiguration, MembershipProtectedQueryResultConfiguration, MembershipQueryLogStatus, MLMemberAbilities, PrivacyBudget, PrivacyBudgetTemplateAutoRefresh, PrivacyBudgetTemplateParametersOutput, PrivacyBudgetType, ProtectedQueryS3OutputConfiguration } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface CreateMembershipInput {
|
|
6
|
+
/**
|
|
7
|
+
* <p>The unique ID for the associated collaboration.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
collaborationIdentifier: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* <p>An indicator as to whether query logging has been enabled or disabled for the membership.</p> <p>When <code>ENABLED</code>, Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is <code>DISABLED</code>.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
queryLogStatus: MembershipQueryLogStatus | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>An indicator as to whether job logging has been enabled or disabled for the collaboration. </p> <p>When <code>ENABLED</code>, Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is <code>DISABLED</code>.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
jobLogStatus?: MembershipJobLogStatus | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* <p>An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
tags?: Record<string, string> | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>The default protected query result configuration as specified by the member who can receive results.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>The default job result configuration that determines how job results are protected and managed within this membership. This configuration applies to all jobs.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
defaultJobResultConfiguration?: MembershipProtectedJobResultConfiguration | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* <p>The payment responsibilities accepted by the collaboration member.</p> <p>Not required if the collaboration member has the member ability to run queries. </p> <p>Required if the collaboration member doesn't have the member ability to run queries but is configured as a payer by the collaboration creator. </p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
paymentConfiguration?: MembershipPaymentConfiguration | undefined;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* @public
|
|
44
|
+
* @enum
|
|
45
|
+
*/
|
|
46
|
+
export declare const MembershipStatus: {
|
|
47
|
+
readonly ACTIVE: "ACTIVE";
|
|
48
|
+
readonly COLLABORATION_DELETED: "COLLABORATION_DELETED";
|
|
49
|
+
readonly REMOVED: "REMOVED";
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
export type MembershipStatus = (typeof MembershipStatus)[keyof typeof MembershipStatus];
|
|
55
|
+
/**
|
|
56
|
+
* <p>The membership object.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
export interface Membership {
|
|
60
|
+
/**
|
|
61
|
+
* <p>The unique ID of the membership.</p>
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
id: string | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* <p>The unique ARN for the membership.</p>
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
arn: string | undefined;
|
|
70
|
+
/**
|
|
71
|
+
* <p>The unique ARN for the membership's associated collaboration.</p>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
collaborationArn: string | undefined;
|
|
75
|
+
/**
|
|
76
|
+
* <p>The unique ID for the membership's collaboration.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
collaborationId: string | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* <p>The identifier used to reference members of the collaboration. Currently only supports Amazon Web Services account ID.</p>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
collaborationCreatorAccountId: string | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* <p>The display name of the collaboration creator.</p>
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
collaborationCreatorDisplayName: string | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* <p>The name of the membership's collaboration.</p>
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
collaborationName: string | undefined;
|
|
95
|
+
/**
|
|
96
|
+
* <p>The time when the membership was created.</p>
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
createTime: Date | undefined;
|
|
100
|
+
/**
|
|
101
|
+
* <p>The time the membership metadata was last updated.</p>
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
updateTime: Date | undefined;
|
|
105
|
+
/**
|
|
106
|
+
* <p>The status of the membership.</p>
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
109
|
+
status: MembershipStatus | undefined;
|
|
110
|
+
/**
|
|
111
|
+
* <p>The abilities granted to the collaboration member.</p>
|
|
112
|
+
* @public
|
|
113
|
+
*/
|
|
114
|
+
memberAbilities: MemberAbility[] | undefined;
|
|
115
|
+
/**
|
|
116
|
+
* <p>Specifies the ML member abilities that are granted to a collaboration member.</p>
|
|
117
|
+
* @public
|
|
118
|
+
*/
|
|
119
|
+
mlMemberAbilities?: MLMemberAbilities | undefined;
|
|
120
|
+
/**
|
|
121
|
+
* <p>An indicator as to whether query logging has been enabled or disabled for the membership.</p> <p>When <code>ENABLED</code>, Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is <code>DISABLED</code>.</p>
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
124
|
+
queryLogStatus: MembershipQueryLogStatus | undefined;
|
|
125
|
+
/**
|
|
126
|
+
* <p>An indicator as to whether job logging has been enabled or disabled for the collaboration. </p> <p>When <code>ENABLED</code>, Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is <code>DISABLED</code>.</p>
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
129
|
+
jobLogStatus?: MembershipJobLogStatus | undefined;
|
|
130
|
+
/**
|
|
131
|
+
* <p>The default protected query result configuration as specified by the member who can receive results.</p>
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration | undefined;
|
|
135
|
+
/**
|
|
136
|
+
* <p> The default job result configuration for the membership.</p>
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
defaultJobResultConfiguration?: MembershipProtectedJobResultConfiguration | undefined;
|
|
140
|
+
/**
|
|
141
|
+
* <p>The payment responsibilities accepted by the collaboration member.</p>
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
paymentConfiguration: MembershipPaymentConfiguration | undefined;
|
|
145
|
+
}
|
|
146
|
+
/**
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
149
|
+
export interface CreateMembershipOutput {
|
|
150
|
+
/**
|
|
151
|
+
* <p>The membership that was created.</p>
|
|
152
|
+
* @public
|
|
153
|
+
*/
|
|
154
|
+
membership: Membership | undefined;
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* @public
|
|
158
|
+
*/
|
|
159
|
+
export interface DeleteMembershipInput {
|
|
160
|
+
/**
|
|
161
|
+
* <p>The identifier for a membership resource.</p>
|
|
162
|
+
* @public
|
|
163
|
+
*/
|
|
164
|
+
membershipIdentifier: string | undefined;
|
|
165
|
+
}
|
|
166
|
+
/**
|
|
167
|
+
* @public
|
|
168
|
+
*/
|
|
169
|
+
export interface DeleteMembershipOutput {
|
|
170
|
+
}
|
|
171
|
+
/**
|
|
172
|
+
* @public
|
|
173
|
+
*/
|
|
174
|
+
export interface GetMembershipInput {
|
|
175
|
+
/**
|
|
176
|
+
* <p>The identifier for a membership resource.</p>
|
|
177
|
+
* @public
|
|
178
|
+
*/
|
|
179
|
+
membershipIdentifier: string | undefined;
|
|
180
|
+
}
|
|
181
|
+
/**
|
|
182
|
+
* @public
|
|
183
|
+
*/
|
|
184
|
+
export interface GetMembershipOutput {
|
|
185
|
+
/**
|
|
186
|
+
* <p>The membership retrieved for the provided identifier.</p>
|
|
187
|
+
* @public
|
|
188
|
+
*/
|
|
189
|
+
membership: Membership | undefined;
|
|
190
|
+
}
|
|
191
|
+
/**
|
|
192
|
+
* @public
|
|
193
|
+
*/
|
|
194
|
+
export interface GetProtectedJobInput {
|
|
195
|
+
/**
|
|
196
|
+
* <p> The identifier for a membership in a protected job instance.</p>
|
|
197
|
+
* @public
|
|
198
|
+
*/
|
|
199
|
+
membershipIdentifier: string | undefined;
|
|
200
|
+
/**
|
|
201
|
+
* <p> The identifier for the protected job instance.</p>
|
|
202
|
+
* @public
|
|
203
|
+
*/
|
|
204
|
+
protectedJobIdentifier: string | undefined;
|
|
205
|
+
}
|
|
206
|
+
/**
|
|
207
|
+
* <p>The protected job error.</p>
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
210
|
+
export interface ProtectedJobError {
|
|
211
|
+
/**
|
|
212
|
+
* <p> The message for the protected job error.</p>
|
|
213
|
+
* @public
|
|
214
|
+
*/
|
|
215
|
+
message: string | undefined;
|
|
216
|
+
/**
|
|
217
|
+
* <p> The error code for the protected job.</p>
|
|
218
|
+
* @public
|
|
219
|
+
*/
|
|
220
|
+
code: string | undefined;
|
|
221
|
+
}
|
|
222
|
+
/**
|
|
223
|
+
* <p>The parameters for the protected job.</p>
|
|
224
|
+
* @public
|
|
225
|
+
*/
|
|
226
|
+
export interface ProtectedJobParameters {
|
|
227
|
+
/**
|
|
228
|
+
* <p> The ARN of the analysis template.</p>
|
|
229
|
+
* @public
|
|
230
|
+
*/
|
|
231
|
+
analysisTemplateArn?: string | undefined;
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* <p>Details about the member who received the job result.</p>
|
|
235
|
+
* @public
|
|
236
|
+
*/
|
|
237
|
+
export interface ProtectedJobSingleMemberOutput {
|
|
238
|
+
/**
|
|
239
|
+
* <p>The Amazon Web Services account ID of the member in the collaboration who can receive results from analyses.</p>
|
|
240
|
+
* @public
|
|
241
|
+
*/
|
|
242
|
+
accountId: string | undefined;
|
|
243
|
+
}
|
|
244
|
+
/**
|
|
245
|
+
* <p>Contains output information for protected jobs with an S3 output type.</p>
|
|
246
|
+
* @public
|
|
247
|
+
*/
|
|
248
|
+
export interface ProtectedJobS3Output {
|
|
249
|
+
/**
|
|
250
|
+
* <p> The S3 location for the protected job output.</p>
|
|
251
|
+
* @public
|
|
252
|
+
*/
|
|
253
|
+
location: string | undefined;
|
|
254
|
+
}
|
|
255
|
+
/**
|
|
256
|
+
* <p>Contains details about the protected job output.</p>
|
|
257
|
+
* @public
|
|
258
|
+
*/
|
|
259
|
+
export type ProtectedJobOutput = ProtectedJobOutput.MemberListMember | ProtectedJobOutput.S3Member | ProtectedJobOutput.$UnknownMember;
|
|
260
|
+
/**
|
|
261
|
+
* @public
|
|
262
|
+
*/
|
|
263
|
+
export declare namespace ProtectedJobOutput {
|
|
264
|
+
/**
|
|
265
|
+
* <p>If present, the output for a protected job with an `S3` output type.</p>
|
|
266
|
+
* @public
|
|
267
|
+
*/
|
|
268
|
+
interface S3Member {
|
|
269
|
+
s3: ProtectedJobS3Output;
|
|
270
|
+
memberList?: never;
|
|
271
|
+
$unknown?: never;
|
|
272
|
+
}
|
|
273
|
+
/**
|
|
274
|
+
* <p>The list of member Amazon Web Services account(s) that received the results of the job. </p>
|
|
275
|
+
* @public
|
|
276
|
+
*/
|
|
277
|
+
interface MemberListMember {
|
|
278
|
+
s3?: never;
|
|
279
|
+
memberList: ProtectedJobSingleMemberOutput[];
|
|
280
|
+
$unknown?: never;
|
|
281
|
+
}
|
|
282
|
+
/**
|
|
283
|
+
* @public
|
|
284
|
+
*/
|
|
285
|
+
interface $UnknownMember {
|
|
286
|
+
s3?: never;
|
|
287
|
+
memberList?: never;
|
|
288
|
+
$unknown: [string, any];
|
|
289
|
+
}
|
|
290
|
+
interface Visitor<T> {
|
|
291
|
+
s3: (value: ProtectedJobS3Output) => T;
|
|
292
|
+
memberList: (value: ProtectedJobSingleMemberOutput[]) => T;
|
|
293
|
+
_: (name: string, value: any) => T;
|
|
294
|
+
}
|
|
295
|
+
const visit: <T>(value: ProtectedJobOutput, visitor: Visitor<T>) => T;
|
|
296
|
+
}
|
|
297
|
+
/**
|
|
298
|
+
* <p>Details about the job results.</p>
|
|
299
|
+
* @public
|
|
300
|
+
*/
|
|
301
|
+
export interface ProtectedJobResult {
|
|
302
|
+
/**
|
|
303
|
+
* <p> The output of the protected job.</p>
|
|
304
|
+
* @public
|
|
305
|
+
*/
|
|
306
|
+
output: ProtectedJobOutput | undefined;
|
|
307
|
+
}
|
|
308
|
+
/**
|
|
309
|
+
* <p> The protected job member output configuration output.</p>
|
|
310
|
+
* @public
|
|
311
|
+
*/
|
|
312
|
+
export interface ProtectedJobMemberOutputConfigurationOutput {
|
|
313
|
+
/**
|
|
314
|
+
* <p> The account ID.</p>
|
|
315
|
+
* @public
|
|
316
|
+
*/
|
|
317
|
+
accountId: string | undefined;
|
|
318
|
+
}
|
|
2
319
|
/**
|
|
3
320
|
* <p> The output configuration for a protected job's S3 output.</p>
|
|
4
321
|
* @public
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListCollaborationChangeRequestsCommandInput, ListCollaborationChangeRequestsCommandOutput } from "../commands/ListCollaborationChangeRequestsCommand";
|
|
3
|
+
import { CleanRoomsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListCollaborationChangeRequests: (config: CleanRoomsPaginationConfiguration, input: ListCollaborationChangeRequestsCommandInput, ...rest: any[]) => Paginator<ListCollaborationChangeRequestsCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListAnalysisTemplatesPaginator";
|
|
3
3
|
export * from "./ListCollaborationAnalysisTemplatesPaginator";
|
|
4
|
+
export * from "./ListCollaborationChangeRequestsPaginator";
|
|
4
5
|
export * from "./ListCollaborationConfiguredAudienceModelAssociationsPaginator";
|
|
5
6
|
export * from "./ListCollaborationIdNamespaceAssociationsPaginator";
|
|
6
7
|
export * from "./ListCollaborationPrivacyBudgetTemplatesPaginator";
|
|
@@ -4,6 +4,7 @@ import { BatchGetCollaborationAnalysisTemplateCommandInput, BatchGetCollaboratio
|
|
|
4
4
|
import { BatchGetSchemaAnalysisRuleCommandInput, BatchGetSchemaAnalysisRuleCommandOutput } from "../commands/BatchGetSchemaAnalysisRuleCommand";
|
|
5
5
|
import { BatchGetSchemaCommandInput, BatchGetSchemaCommandOutput } from "../commands/BatchGetSchemaCommand";
|
|
6
6
|
import { CreateAnalysisTemplateCommandInput, CreateAnalysisTemplateCommandOutput } from "../commands/CreateAnalysisTemplateCommand";
|
|
7
|
+
import { CreateCollaborationChangeRequestCommandInput, CreateCollaborationChangeRequestCommandOutput } from "../commands/CreateCollaborationChangeRequestCommand";
|
|
7
8
|
import { CreateCollaborationCommandInput, CreateCollaborationCommandOutput } from "../commands/CreateCollaborationCommand";
|
|
8
9
|
import { CreateConfiguredAudienceModelAssociationCommandInput, CreateConfiguredAudienceModelAssociationCommandOutput } from "../commands/CreateConfiguredAudienceModelAssociationCommand";
|
|
9
10
|
import { CreateConfiguredTableAnalysisRuleCommandInput, CreateConfiguredTableAnalysisRuleCommandOutput } from "../commands/CreateConfiguredTableAnalysisRuleCommand";
|
|
@@ -28,6 +29,7 @@ import { DeleteMembershipCommandInput, DeleteMembershipCommandOutput } from "../
|
|
|
28
29
|
import { DeletePrivacyBudgetTemplateCommandInput, DeletePrivacyBudgetTemplateCommandOutput } from "../commands/DeletePrivacyBudgetTemplateCommand";
|
|
29
30
|
import { GetAnalysisTemplateCommandInput, GetAnalysisTemplateCommandOutput } from "../commands/GetAnalysisTemplateCommand";
|
|
30
31
|
import { GetCollaborationAnalysisTemplateCommandInput, GetCollaborationAnalysisTemplateCommandOutput } from "../commands/GetCollaborationAnalysisTemplateCommand";
|
|
32
|
+
import { GetCollaborationChangeRequestCommandInput, GetCollaborationChangeRequestCommandOutput } from "../commands/GetCollaborationChangeRequestCommand";
|
|
31
33
|
import { GetCollaborationCommandInput, GetCollaborationCommandOutput } from "../commands/GetCollaborationCommand";
|
|
32
34
|
import { GetCollaborationConfiguredAudienceModelAssociationCommandInput, GetCollaborationConfiguredAudienceModelAssociationCommandOutput } from "../commands/GetCollaborationConfiguredAudienceModelAssociationCommand";
|
|
33
35
|
import { GetCollaborationIdNamespaceAssociationCommandInput, GetCollaborationIdNamespaceAssociationCommandOutput } from "../commands/GetCollaborationIdNamespaceAssociationCommand";
|
|
@@ -47,6 +49,7 @@ import { GetSchemaAnalysisRuleCommandInput, GetSchemaAnalysisRuleCommandOutput }
|
|
|
47
49
|
import { GetSchemaCommandInput, GetSchemaCommandOutput } from "../commands/GetSchemaCommand";
|
|
48
50
|
import { ListAnalysisTemplatesCommandInput, ListAnalysisTemplatesCommandOutput } from "../commands/ListAnalysisTemplatesCommand";
|
|
49
51
|
import { ListCollaborationAnalysisTemplatesCommandInput, ListCollaborationAnalysisTemplatesCommandOutput } from "../commands/ListCollaborationAnalysisTemplatesCommand";
|
|
52
|
+
import { ListCollaborationChangeRequestsCommandInput, ListCollaborationChangeRequestsCommandOutput } from "../commands/ListCollaborationChangeRequestsCommand";
|
|
50
53
|
import { ListCollaborationConfiguredAudienceModelAssociationsCommandInput, ListCollaborationConfiguredAudienceModelAssociationsCommandOutput } from "../commands/ListCollaborationConfiguredAudienceModelAssociationsCommand";
|
|
51
54
|
import { ListCollaborationIdNamespaceAssociationsCommandInput, ListCollaborationIdNamespaceAssociationsCommandOutput } from "../commands/ListCollaborationIdNamespaceAssociationsCommand";
|
|
52
55
|
import { ListCollaborationPrivacyBudgetsCommandInput, ListCollaborationPrivacyBudgetsCommandOutput } from "../commands/ListCollaborationPrivacyBudgetsCommand";
|
|
@@ -104,6 +107,10 @@ export declare const se_CreateAnalysisTemplateCommand: (input: CreateAnalysisTem
|
|
|
104
107
|
* serializeAws_restJson1CreateCollaborationCommand
|
|
105
108
|
*/
|
|
106
109
|
export declare const se_CreateCollaborationCommand: (input: CreateCollaborationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
|
+
/**
|
|
111
|
+
* serializeAws_restJson1CreateCollaborationChangeRequestCommand
|
|
112
|
+
*/
|
|
113
|
+
export declare const se_CreateCollaborationChangeRequestCommand: (input: CreateCollaborationChangeRequestCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
114
|
/**
|
|
108
115
|
* serializeAws_restJson1CreateConfiguredAudienceModelAssociationCommand
|
|
109
116
|
*/
|
|
@@ -200,6 +207,10 @@ export declare const se_GetCollaborationCommand: (input: GetCollaborationCommand
|
|
|
200
207
|
* serializeAws_restJson1GetCollaborationAnalysisTemplateCommand
|
|
201
208
|
*/
|
|
202
209
|
export declare const se_GetCollaborationAnalysisTemplateCommand: (input: GetCollaborationAnalysisTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
210
|
+
/**
|
|
211
|
+
* serializeAws_restJson1GetCollaborationChangeRequestCommand
|
|
212
|
+
*/
|
|
213
|
+
export declare const se_GetCollaborationChangeRequestCommand: (input: GetCollaborationChangeRequestCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
203
214
|
/**
|
|
204
215
|
* serializeAws_restJson1GetCollaborationConfiguredAudienceModelAssociationCommand
|
|
205
216
|
*/
|
|
@@ -272,6 +283,10 @@ export declare const se_ListAnalysisTemplatesCommand: (input: ListAnalysisTempla
|
|
|
272
283
|
* serializeAws_restJson1ListCollaborationAnalysisTemplatesCommand
|
|
273
284
|
*/
|
|
274
285
|
export declare const se_ListCollaborationAnalysisTemplatesCommand: (input: ListCollaborationAnalysisTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
286
|
+
/**
|
|
287
|
+
* serializeAws_restJson1ListCollaborationChangeRequestsCommand
|
|
288
|
+
*/
|
|
289
|
+
export declare const se_ListCollaborationChangeRequestsCommand: (input: ListCollaborationChangeRequestsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
275
290
|
/**
|
|
276
291
|
* serializeAws_restJson1ListCollaborationConfiguredAudienceModelAssociationsCommand
|
|
277
292
|
*/
|
|
@@ -440,6 +455,10 @@ export declare const de_CreateAnalysisTemplateCommand: (output: __HttpResponse,
|
|
|
440
455
|
* deserializeAws_restJson1CreateCollaborationCommand
|
|
441
456
|
*/
|
|
442
457
|
export declare const de_CreateCollaborationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCollaborationCommandOutput>;
|
|
458
|
+
/**
|
|
459
|
+
* deserializeAws_restJson1CreateCollaborationChangeRequestCommand
|
|
460
|
+
*/
|
|
461
|
+
export declare const de_CreateCollaborationChangeRequestCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCollaborationChangeRequestCommandOutput>;
|
|
443
462
|
/**
|
|
444
463
|
* deserializeAws_restJson1CreateConfiguredAudienceModelAssociationCommand
|
|
445
464
|
*/
|
|
@@ -536,6 +555,10 @@ export declare const de_GetCollaborationCommand: (output: __HttpResponse, contex
|
|
|
536
555
|
* deserializeAws_restJson1GetCollaborationAnalysisTemplateCommand
|
|
537
556
|
*/
|
|
538
557
|
export declare const de_GetCollaborationAnalysisTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCollaborationAnalysisTemplateCommandOutput>;
|
|
558
|
+
/**
|
|
559
|
+
* deserializeAws_restJson1GetCollaborationChangeRequestCommand
|
|
560
|
+
*/
|
|
561
|
+
export declare const de_GetCollaborationChangeRequestCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCollaborationChangeRequestCommandOutput>;
|
|
539
562
|
/**
|
|
540
563
|
* deserializeAws_restJson1GetCollaborationConfiguredAudienceModelAssociationCommand
|
|
541
564
|
*/
|
|
@@ -608,6 +631,10 @@ export declare const de_ListAnalysisTemplatesCommand: (output: __HttpResponse, c
|
|
|
608
631
|
* deserializeAws_restJson1ListCollaborationAnalysisTemplatesCommand
|
|
609
632
|
*/
|
|
610
633
|
export declare const de_ListCollaborationAnalysisTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCollaborationAnalysisTemplatesCommandOutput>;
|
|
634
|
+
/**
|
|
635
|
+
* deserializeAws_restJson1ListCollaborationChangeRequestsCommand
|
|
636
|
+
*/
|
|
637
|
+
export declare const de_ListCollaborationChangeRequestsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCollaborationChangeRequestsCommandOutput>;
|
|
611
638
|
/**
|
|
612
639
|
* deserializeAws_restJson1ListCollaborationConfiguredAudienceModelAssociationsCommand
|
|
613
640
|
*/
|
|
@@ -16,6 +16,10 @@ import {
|
|
|
16
16
|
CreateAnalysisTemplateCommandInput,
|
|
17
17
|
CreateAnalysisTemplateCommandOutput,
|
|
18
18
|
} from "./commands/CreateAnalysisTemplateCommand";
|
|
19
|
+
import {
|
|
20
|
+
CreateCollaborationChangeRequestCommandInput,
|
|
21
|
+
CreateCollaborationChangeRequestCommandOutput,
|
|
22
|
+
} from "./commands/CreateCollaborationChangeRequestCommand";
|
|
19
23
|
import {
|
|
20
24
|
CreateCollaborationCommandInput,
|
|
21
25
|
CreateCollaborationCommandOutput,
|
|
@@ -112,6 +116,10 @@ import {
|
|
|
112
116
|
GetCollaborationAnalysisTemplateCommandInput,
|
|
113
117
|
GetCollaborationAnalysisTemplateCommandOutput,
|
|
114
118
|
} from "./commands/GetCollaborationAnalysisTemplateCommand";
|
|
119
|
+
import {
|
|
120
|
+
GetCollaborationChangeRequestCommandInput,
|
|
121
|
+
GetCollaborationChangeRequestCommandOutput,
|
|
122
|
+
} from "./commands/GetCollaborationChangeRequestCommand";
|
|
115
123
|
import {
|
|
116
124
|
GetCollaborationCommandInput,
|
|
117
125
|
GetCollaborationCommandOutput,
|
|
@@ -188,6 +196,10 @@ import {
|
|
|
188
196
|
ListCollaborationAnalysisTemplatesCommandInput,
|
|
189
197
|
ListCollaborationAnalysisTemplatesCommandOutput,
|
|
190
198
|
} from "./commands/ListCollaborationAnalysisTemplatesCommand";
|
|
199
|
+
import {
|
|
200
|
+
ListCollaborationChangeRequestsCommandInput,
|
|
201
|
+
ListCollaborationChangeRequestsCommandOutput,
|
|
202
|
+
} from "./commands/ListCollaborationChangeRequestsCommand";
|
|
191
203
|
import {
|
|
192
204
|
ListCollaborationConfiguredAudienceModelAssociationsCommandInput,
|
|
193
205
|
ListCollaborationConfiguredAudienceModelAssociationsCommandOutput,
|
|
@@ -408,6 +420,19 @@ export interface CleanRooms {
|
|
|
408
420
|
options: __HttpHandlerOptions,
|
|
409
421
|
cb: (err: any, data?: CreateCollaborationCommandOutput) => void
|
|
410
422
|
): void;
|
|
423
|
+
createCollaborationChangeRequest(
|
|
424
|
+
args: CreateCollaborationChangeRequestCommandInput,
|
|
425
|
+
options?: __HttpHandlerOptions
|
|
426
|
+
): Promise<CreateCollaborationChangeRequestCommandOutput>;
|
|
427
|
+
createCollaborationChangeRequest(
|
|
428
|
+
args: CreateCollaborationChangeRequestCommandInput,
|
|
429
|
+
cb: (err: any, data?: CreateCollaborationChangeRequestCommandOutput) => void
|
|
430
|
+
): void;
|
|
431
|
+
createCollaborationChangeRequest(
|
|
432
|
+
args: CreateCollaborationChangeRequestCommandInput,
|
|
433
|
+
options: __HttpHandlerOptions,
|
|
434
|
+
cb: (err: any, data?: CreateCollaborationChangeRequestCommandOutput) => void
|
|
435
|
+
): void;
|
|
411
436
|
createConfiguredAudienceModelAssociation(
|
|
412
437
|
args: CreateConfiguredAudienceModelAssociationCommandInput,
|
|
413
438
|
options?: __HttpHandlerOptions
|
|
@@ -756,6 +781,19 @@ export interface CleanRooms {
|
|
|
756
781
|
options: __HttpHandlerOptions,
|
|
757
782
|
cb: (err: any, data?: GetCollaborationAnalysisTemplateCommandOutput) => void
|
|
758
783
|
): void;
|
|
784
|
+
getCollaborationChangeRequest(
|
|
785
|
+
args: GetCollaborationChangeRequestCommandInput,
|
|
786
|
+
options?: __HttpHandlerOptions
|
|
787
|
+
): Promise<GetCollaborationChangeRequestCommandOutput>;
|
|
788
|
+
getCollaborationChangeRequest(
|
|
789
|
+
args: GetCollaborationChangeRequestCommandInput,
|
|
790
|
+
cb: (err: any, data?: GetCollaborationChangeRequestCommandOutput) => void
|
|
791
|
+
): void;
|
|
792
|
+
getCollaborationChangeRequest(
|
|
793
|
+
args: GetCollaborationChangeRequestCommandInput,
|
|
794
|
+
options: __HttpHandlerOptions,
|
|
795
|
+
cb: (err: any, data?: GetCollaborationChangeRequestCommandOutput) => void
|
|
796
|
+
): void;
|
|
759
797
|
getCollaborationConfiguredAudienceModelAssociation(
|
|
760
798
|
args: GetCollaborationConfiguredAudienceModelAssociationCommandInput,
|
|
761
799
|
options?: __HttpHandlerOptions
|
|
@@ -1026,6 +1064,19 @@ export interface CleanRooms {
|
|
|
1026
1064
|
data?: ListCollaborationAnalysisTemplatesCommandOutput
|
|
1027
1065
|
) => void
|
|
1028
1066
|
): void;
|
|
1067
|
+
listCollaborationChangeRequests(
|
|
1068
|
+
args: ListCollaborationChangeRequestsCommandInput,
|
|
1069
|
+
options?: __HttpHandlerOptions
|
|
1070
|
+
): Promise<ListCollaborationChangeRequestsCommandOutput>;
|
|
1071
|
+
listCollaborationChangeRequests(
|
|
1072
|
+
args: ListCollaborationChangeRequestsCommandInput,
|
|
1073
|
+
cb: (err: any, data?: ListCollaborationChangeRequestsCommandOutput) => void
|
|
1074
|
+
): void;
|
|
1075
|
+
listCollaborationChangeRequests(
|
|
1076
|
+
args: ListCollaborationChangeRequestsCommandInput,
|
|
1077
|
+
options: __HttpHandlerOptions,
|
|
1078
|
+
cb: (err: any, data?: ListCollaborationChangeRequestsCommandOutput) => void
|
|
1079
|
+
): void;
|
|
1029
1080
|
listCollaborationConfiguredAudienceModelAssociations(
|
|
1030
1081
|
args: ListCollaborationConfiguredAudienceModelAssociationsCommandInput,
|
|
1031
1082
|
options?: __HttpHandlerOptions
|
|
@@ -61,6 +61,10 @@ import {
|
|
|
61
61
|
CreateAnalysisTemplateCommandInput,
|
|
62
62
|
CreateAnalysisTemplateCommandOutput,
|
|
63
63
|
} from "./commands/CreateAnalysisTemplateCommand";
|
|
64
|
+
import {
|
|
65
|
+
CreateCollaborationChangeRequestCommandInput,
|
|
66
|
+
CreateCollaborationChangeRequestCommandOutput,
|
|
67
|
+
} from "./commands/CreateCollaborationChangeRequestCommand";
|
|
64
68
|
import {
|
|
65
69
|
CreateCollaborationCommandInput,
|
|
66
70
|
CreateCollaborationCommandOutput,
|
|
@@ -157,6 +161,10 @@ import {
|
|
|
157
161
|
GetCollaborationAnalysisTemplateCommandInput,
|
|
158
162
|
GetCollaborationAnalysisTemplateCommandOutput,
|
|
159
163
|
} from "./commands/GetCollaborationAnalysisTemplateCommand";
|
|
164
|
+
import {
|
|
165
|
+
GetCollaborationChangeRequestCommandInput,
|
|
166
|
+
GetCollaborationChangeRequestCommandOutput,
|
|
167
|
+
} from "./commands/GetCollaborationChangeRequestCommand";
|
|
160
168
|
import {
|
|
161
169
|
GetCollaborationCommandInput,
|
|
162
170
|
GetCollaborationCommandOutput,
|
|
@@ -233,6 +241,10 @@ import {
|
|
|
233
241
|
ListCollaborationAnalysisTemplatesCommandInput,
|
|
234
242
|
ListCollaborationAnalysisTemplatesCommandOutput,
|
|
235
243
|
} from "./commands/ListCollaborationAnalysisTemplatesCommand";
|
|
244
|
+
import {
|
|
245
|
+
ListCollaborationChangeRequestsCommandInput,
|
|
246
|
+
ListCollaborationChangeRequestsCommandOutput,
|
|
247
|
+
} from "./commands/ListCollaborationChangeRequestsCommand";
|
|
236
248
|
import {
|
|
237
249
|
ListCollaborationConfiguredAudienceModelAssociationsCommandInput,
|
|
238
250
|
ListCollaborationConfiguredAudienceModelAssociationsCommandOutput,
|
|
@@ -393,6 +405,7 @@ export type ServiceInputTypes =
|
|
|
393
405
|
| BatchGetSchemaAnalysisRuleCommandInput
|
|
394
406
|
| BatchGetSchemaCommandInput
|
|
395
407
|
| CreateAnalysisTemplateCommandInput
|
|
408
|
+
| CreateCollaborationChangeRequestCommandInput
|
|
396
409
|
| CreateCollaborationCommandInput
|
|
397
410
|
| CreateConfiguredAudienceModelAssociationCommandInput
|
|
398
411
|
| CreateConfiguredTableAnalysisRuleCommandInput
|
|
@@ -417,6 +430,7 @@ export type ServiceInputTypes =
|
|
|
417
430
|
| DeletePrivacyBudgetTemplateCommandInput
|
|
418
431
|
| GetAnalysisTemplateCommandInput
|
|
419
432
|
| GetCollaborationAnalysisTemplateCommandInput
|
|
433
|
+
| GetCollaborationChangeRequestCommandInput
|
|
420
434
|
| GetCollaborationCommandInput
|
|
421
435
|
| GetCollaborationConfiguredAudienceModelAssociationCommandInput
|
|
422
436
|
| GetCollaborationIdNamespaceAssociationCommandInput
|
|
@@ -436,6 +450,7 @@ export type ServiceInputTypes =
|
|
|
436
450
|
| GetSchemaCommandInput
|
|
437
451
|
| ListAnalysisTemplatesCommandInput
|
|
438
452
|
| ListCollaborationAnalysisTemplatesCommandInput
|
|
453
|
+
| ListCollaborationChangeRequestsCommandInput
|
|
439
454
|
| ListCollaborationConfiguredAudienceModelAssociationsCommandInput
|
|
440
455
|
| ListCollaborationIdNamespaceAssociationsCommandInput
|
|
441
456
|
| ListCollaborationPrivacyBudgetTemplatesCommandInput
|
|
@@ -478,6 +493,7 @@ export type ServiceOutputTypes =
|
|
|
478
493
|
| BatchGetSchemaAnalysisRuleCommandOutput
|
|
479
494
|
| BatchGetSchemaCommandOutput
|
|
480
495
|
| CreateAnalysisTemplateCommandOutput
|
|
496
|
+
| CreateCollaborationChangeRequestCommandOutput
|
|
481
497
|
| CreateCollaborationCommandOutput
|
|
482
498
|
| CreateConfiguredAudienceModelAssociationCommandOutput
|
|
483
499
|
| CreateConfiguredTableAnalysisRuleCommandOutput
|
|
@@ -502,6 +518,7 @@ export type ServiceOutputTypes =
|
|
|
502
518
|
| DeletePrivacyBudgetTemplateCommandOutput
|
|
503
519
|
| GetAnalysisTemplateCommandOutput
|
|
504
520
|
| GetCollaborationAnalysisTemplateCommandOutput
|
|
521
|
+
| GetCollaborationChangeRequestCommandOutput
|
|
505
522
|
| GetCollaborationCommandOutput
|
|
506
523
|
| GetCollaborationConfiguredAudienceModelAssociationCommandOutput
|
|
507
524
|
| GetCollaborationIdNamespaceAssociationCommandOutput
|
|
@@ -521,6 +538,7 @@ export type ServiceOutputTypes =
|
|
|
521
538
|
| GetSchemaCommandOutput
|
|
522
539
|
| ListAnalysisTemplatesCommandOutput
|
|
523
540
|
| ListCollaborationAnalysisTemplatesCommandOutput
|
|
541
|
+
| ListCollaborationChangeRequestsCommandOutput
|
|
524
542
|
| ListCollaborationConfiguredAudienceModelAssociationsCommandOutput
|
|
525
543
|
| ListCollaborationIdNamespaceAssociationsCommandOutput
|
|
526
544
|
| ListCollaborationPrivacyBudgetTemplatesCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CleanRoomsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CleanRoomsClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateCollaborationChangeRequestInput,
|
|
10
|
+
CreateCollaborationChangeRequestOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateCollaborationChangeRequestCommandInput
|
|
15
|
+
extends CreateCollaborationChangeRequestInput {}
|
|
16
|
+
export interface CreateCollaborationChangeRequestCommandOutput
|
|
17
|
+
extends CreateCollaborationChangeRequestOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateCollaborationChangeRequestCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateCollaborationChangeRequestCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateCollaborationChangeRequestCommandInput,
|
|
24
|
+
CreateCollaborationChangeRequestCommandOutput,
|
|
25
|
+
CleanRoomsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateCollaborationChangeRequestCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateCollaborationChangeRequestCommandInput,
|
|
33
|
+
CreateCollaborationChangeRequestCommandOutput,
|
|
34
|
+
CleanRoomsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateCollaborationChangeRequestCommand extends CreateCollaborationChangeRequestCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateCollaborationChangeRequestInput;
|
|
44
|
+
output: CreateCollaborationChangeRequestOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateCollaborationChangeRequestCommandInput;
|
|
48
|
+
output: CreateCollaborationChangeRequestCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
CreateMembershipInput,
|
|
10
10
|
CreateMembershipOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface CreateMembershipCommandInput extends CreateMembershipInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
DeleteMembershipInput,
|
|
10
10
|
DeleteMembershipOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface DeleteMembershipCommandInput extends DeleteMembershipInput {}
|