@aws-sdk/client-cleanrooms 3.750.0 → 3.770.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 +33 -1
- package/dist-cjs/index.js +742 -392
- package/dist-es/CleanRooms.js +8 -0
- package/dist-es/commands/GetProtectedJobCommand.js +22 -0
- package/dist-es/commands/GetProtectedQueryCommand.js +1 -1
- package/dist-es/commands/ListProtectedJobsCommand.js +22 -0
- package/dist-es/commands/StartProtectedJobCommand.js +22 -0
- package/dist-es/commands/UpdateProtectedJobCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +90 -75
- package/dist-es/models/models_1.js +96 -1
- package/dist-es/pagination/ListProtectedJobsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +176 -0
- package/dist-types/CleanRooms.d.ts +29 -1
- package/dist-types/CleanRoomsClient.d.ts +7 -3
- package/dist-types/commands/BatchGetCollaborationAnalysisTemplateCommand.d.ts +30 -1
- package/dist-types/commands/BatchGetSchemaAnalysisRuleCommand.d.ts +98 -0
- package/dist-types/commands/BatchGetSchemaCommand.d.ts +4 -1
- package/dist-types/commands/CreateAnalysisTemplateCommand.d.ts +53 -2
- package/dist-types/commands/CreateCollaborationCommand.d.ts +10 -2
- package/dist-types/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +3 -0
- package/dist-types/commands/CreateConfiguredTableCommand.d.ts +8 -2
- package/dist-types/commands/CreateMembershipCommand.d.ts +29 -3
- package/dist-types/commands/GetAnalysisTemplateCommand.d.ts +30 -1
- package/dist-types/commands/GetCollaborationAnalysisTemplateCommand.d.ts +30 -1
- package/dist-types/commands/GetCollaborationCommand.d.ts +1 -0
- package/dist-types/commands/GetConfiguredTableCommand.d.ts +4 -1
- package/dist-types/commands/GetMembershipCommand.d.ts +15 -2
- package/dist-types/commands/GetProtectedJobCommand.d.ts +130 -0
- package/dist-types/commands/GetProtectedQueryCommand.d.ts +1 -1
- package/dist-types/commands/GetSchemaAnalysisRuleCommand.d.ts +98 -0
- package/dist-types/commands/GetSchemaCommand.d.ts +4 -1
- package/dist-types/commands/ListConfiguredTableAssociationsCommand.d.ts +3 -0
- package/dist-types/commands/ListConfiguredTablesCommand.d.ts +4 -1
- package/dist-types/commands/ListMembersCommand.d.ts +4 -1
- package/dist-types/commands/ListMembershipsCommand.d.ts +5 -2
- package/dist-types/commands/ListPrivacyBudgetsCommand.d.ts +1 -1
- package/dist-types/commands/ListProtectedJobsCommand.d.ts +110 -0
- package/dist-types/commands/ListProtectedQueriesCommand.d.ts +1 -2
- package/dist-types/commands/ListSchemasCommand.d.ts +4 -1
- package/dist-types/commands/StartProtectedJobCommand.d.ts +142 -0
- package/dist-types/commands/UpdateAnalysisTemplateCommand.d.ts +30 -1
- package/dist-types/commands/UpdateCollaborationCommand.d.ts +1 -0
- package/dist-types/commands/UpdateConfiguredTableCommand.d.ts +8 -1
- package/dist-types/commands/UpdateMembershipCommand.d.ts +26 -3
- package/dist-types/commands/UpdateProtectedJobCommand.d.ts +133 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +3468 -3339
- package/dist-types/models/models_1.d.ts +1129 -1
- package/dist-types/pagination/ListProtectedJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/CleanRooms.d.ts +68 -0
- package/dist-types/ts3.4/CleanRoomsClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/GetProtectedJobCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/GetProtectedQueryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMembershipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPrivacyBudgetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProtectedJobsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListProtectedQueriesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/StartProtectedJobCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateProtectedJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +328 -272
- package/dist-types/ts3.4/models/models_1.d.ts +401 -6
- package/dist-types/ts3.4/pagination/ListProtectedJobsPaginator.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 +48 -0
- package/package.json +12 -12
|
@@ -1,19 +1,347 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AnalysisType,
|
|
3
|
-
ComputeConfiguration,
|
|
4
|
-
ConfigurationDetails,
|
|
5
3
|
DifferentialPrivacyAggregationType,
|
|
4
|
+
MemberAbility,
|
|
6
5
|
Membership,
|
|
6
|
+
MembershipJobLogStatus,
|
|
7
|
+
MembershipPaymentConfiguration,
|
|
8
|
+
MembershipProtectedJobResultConfiguration,
|
|
7
9
|
MembershipProtectedQueryResultConfiguration,
|
|
8
10
|
MembershipQueryLogStatus,
|
|
11
|
+
MembershipStatus,
|
|
12
|
+
MLMemberAbilities,
|
|
13
|
+
PrivacyBudget,
|
|
9
14
|
PrivacyBudgetTemplateAutoRefresh,
|
|
10
15
|
PrivacyBudgetTemplateParametersOutput,
|
|
11
16
|
PrivacyBudgetType,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
17
|
+
ProtectedJobError,
|
|
18
|
+
ProtectedJobOutputConfigurationOutput,
|
|
19
|
+
ProtectedJobParameters,
|
|
20
|
+
ProtectedJobResult,
|
|
21
|
+
ProtectedQueryS3OutputConfiguration,
|
|
16
22
|
} from "./models_0";
|
|
23
|
+
export interface ProtectedJobResultConfigurationOutput {
|
|
24
|
+
outputConfiguration: ProtectedJobOutputConfigurationOutput | undefined;
|
|
25
|
+
}
|
|
26
|
+
export interface BilledJobResourceUtilization {
|
|
27
|
+
units: number | undefined;
|
|
28
|
+
}
|
|
29
|
+
export interface ProtectedJobStatistics {
|
|
30
|
+
totalDurationInMillis?: number | undefined;
|
|
31
|
+
billedResourceUtilization?: BilledJobResourceUtilization | undefined;
|
|
32
|
+
}
|
|
33
|
+
export declare const ProtectedJobStatus: {
|
|
34
|
+
readonly CANCELLED: "CANCELLED";
|
|
35
|
+
readonly CANCELLING: "CANCELLING";
|
|
36
|
+
readonly FAILED: "FAILED";
|
|
37
|
+
readonly STARTED: "STARTED";
|
|
38
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
39
|
+
readonly SUCCESS: "SUCCESS";
|
|
40
|
+
};
|
|
41
|
+
export type ProtectedJobStatus =
|
|
42
|
+
(typeof ProtectedJobStatus)[keyof typeof ProtectedJobStatus];
|
|
43
|
+
export interface ProtectedJob {
|
|
44
|
+
id: string | undefined;
|
|
45
|
+
membershipId: string | undefined;
|
|
46
|
+
membershipArn: string | undefined;
|
|
47
|
+
createTime: Date | undefined;
|
|
48
|
+
jobParameters?: ProtectedJobParameters | undefined;
|
|
49
|
+
status: ProtectedJobStatus | undefined;
|
|
50
|
+
resultConfiguration?: ProtectedJobResultConfigurationOutput | undefined;
|
|
51
|
+
statistics?: ProtectedJobStatistics | undefined;
|
|
52
|
+
result?: ProtectedJobResult | undefined;
|
|
53
|
+
error?: ProtectedJobError | undefined;
|
|
54
|
+
}
|
|
55
|
+
export interface GetProtectedJobOutput {
|
|
56
|
+
protectedJob: ProtectedJob | undefined;
|
|
57
|
+
}
|
|
58
|
+
export interface GetProtectedQueryInput {
|
|
59
|
+
membershipIdentifier: string | undefined;
|
|
60
|
+
protectedQueryIdentifier: string | undefined;
|
|
61
|
+
}
|
|
62
|
+
export declare const WorkerComputeType: {
|
|
63
|
+
readonly CR1X: "CR.1X";
|
|
64
|
+
readonly CR4X: "CR.4X";
|
|
65
|
+
};
|
|
66
|
+
export type WorkerComputeType =
|
|
67
|
+
(typeof WorkerComputeType)[keyof typeof WorkerComputeType];
|
|
68
|
+
export interface WorkerComputeConfiguration {
|
|
69
|
+
type?: WorkerComputeType | undefined;
|
|
70
|
+
number?: number | undefined;
|
|
71
|
+
}
|
|
72
|
+
export type ComputeConfiguration =
|
|
73
|
+
| ComputeConfiguration.WorkerMember
|
|
74
|
+
| ComputeConfiguration.$UnknownMember;
|
|
75
|
+
export declare namespace ComputeConfiguration {
|
|
76
|
+
interface WorkerMember {
|
|
77
|
+
worker: WorkerComputeConfiguration;
|
|
78
|
+
$unknown?: never;
|
|
79
|
+
}
|
|
80
|
+
interface $UnknownMember {
|
|
81
|
+
worker?: never;
|
|
82
|
+
$unknown: [string, any];
|
|
83
|
+
}
|
|
84
|
+
interface Visitor<T> {
|
|
85
|
+
worker: (value: WorkerComputeConfiguration) => T;
|
|
86
|
+
_: (name: string, value: any) => T;
|
|
87
|
+
}
|
|
88
|
+
const visit: <T>(value: ComputeConfiguration, visitor: Visitor<T>) => T;
|
|
89
|
+
}
|
|
90
|
+
export interface DifferentialPrivacySensitivityParameters {
|
|
91
|
+
aggregationType: DifferentialPrivacyAggregationType | undefined;
|
|
92
|
+
aggregationExpression: string | undefined;
|
|
93
|
+
userContributionLimit: number | undefined;
|
|
94
|
+
minColumnValue?: number | undefined;
|
|
95
|
+
maxColumnValue?: number | undefined;
|
|
96
|
+
}
|
|
97
|
+
export interface DifferentialPrivacyParameters {
|
|
98
|
+
sensitivityParameters: DifferentialPrivacySensitivityParameters[] | undefined;
|
|
99
|
+
}
|
|
100
|
+
export interface ProtectedQueryError {
|
|
101
|
+
message: string | undefined;
|
|
102
|
+
code: string | undefined;
|
|
103
|
+
}
|
|
104
|
+
export interface ProtectedQuerySingleMemberOutput {
|
|
105
|
+
accountId: string | undefined;
|
|
106
|
+
}
|
|
107
|
+
export interface ProtectedQueryS3Output {
|
|
108
|
+
location: string | undefined;
|
|
109
|
+
}
|
|
110
|
+
export type ProtectedQueryOutput =
|
|
111
|
+
| ProtectedQueryOutput.MemberListMember
|
|
112
|
+
| ProtectedQueryOutput.S3Member
|
|
113
|
+
| ProtectedQueryOutput.$UnknownMember;
|
|
114
|
+
export declare namespace ProtectedQueryOutput {
|
|
115
|
+
interface S3Member {
|
|
116
|
+
s3: ProtectedQueryS3Output;
|
|
117
|
+
memberList?: never;
|
|
118
|
+
$unknown?: never;
|
|
119
|
+
}
|
|
120
|
+
interface MemberListMember {
|
|
121
|
+
s3?: never;
|
|
122
|
+
memberList: ProtectedQuerySingleMemberOutput[];
|
|
123
|
+
$unknown?: never;
|
|
124
|
+
}
|
|
125
|
+
interface $UnknownMember {
|
|
126
|
+
s3?: never;
|
|
127
|
+
memberList?: never;
|
|
128
|
+
$unknown: [string, any];
|
|
129
|
+
}
|
|
130
|
+
interface Visitor<T> {
|
|
131
|
+
s3: (value: ProtectedQueryS3Output) => T;
|
|
132
|
+
memberList: (value: ProtectedQuerySingleMemberOutput[]) => T;
|
|
133
|
+
_: (name: string, value: any) => T;
|
|
134
|
+
}
|
|
135
|
+
const visit: <T>(value: ProtectedQueryOutput, visitor: Visitor<T>) => T;
|
|
136
|
+
}
|
|
137
|
+
export interface ProtectedQueryResult {
|
|
138
|
+
output: ProtectedQueryOutput | undefined;
|
|
139
|
+
}
|
|
140
|
+
export interface ProtectedQueryMemberOutputConfiguration {
|
|
141
|
+
accountId: string | undefined;
|
|
142
|
+
}
|
|
143
|
+
export type ProtectedQueryOutputConfiguration =
|
|
144
|
+
| ProtectedQueryOutputConfiguration.MemberMember
|
|
145
|
+
| ProtectedQueryOutputConfiguration.S3Member
|
|
146
|
+
| ProtectedQueryOutputConfiguration.$UnknownMember;
|
|
147
|
+
export declare namespace ProtectedQueryOutputConfiguration {
|
|
148
|
+
interface S3Member {
|
|
149
|
+
s3: ProtectedQueryS3OutputConfiguration;
|
|
150
|
+
member?: never;
|
|
151
|
+
$unknown?: never;
|
|
152
|
+
}
|
|
153
|
+
interface MemberMember {
|
|
154
|
+
s3?: never;
|
|
155
|
+
member: ProtectedQueryMemberOutputConfiguration;
|
|
156
|
+
$unknown?: never;
|
|
157
|
+
}
|
|
158
|
+
interface $UnknownMember {
|
|
159
|
+
s3?: never;
|
|
160
|
+
member?: never;
|
|
161
|
+
$unknown: [string, any];
|
|
162
|
+
}
|
|
163
|
+
interface Visitor<T> {
|
|
164
|
+
s3: (value: ProtectedQueryS3OutputConfiguration) => T;
|
|
165
|
+
member: (value: ProtectedQueryMemberOutputConfiguration) => T;
|
|
166
|
+
_: (name: string, value: any) => T;
|
|
167
|
+
}
|
|
168
|
+
const visit: <T>(
|
|
169
|
+
value: ProtectedQueryOutputConfiguration,
|
|
170
|
+
visitor: Visitor<T>
|
|
171
|
+
) => T;
|
|
172
|
+
}
|
|
173
|
+
export interface ProtectedQueryResultConfiguration {
|
|
174
|
+
outputConfiguration: ProtectedQueryOutputConfiguration | undefined;
|
|
175
|
+
}
|
|
176
|
+
export interface ProtectedQuerySQLParameters {
|
|
177
|
+
queryString?: string | undefined;
|
|
178
|
+
analysisTemplateArn?: string | undefined;
|
|
179
|
+
parameters?: Record<string, string> | undefined;
|
|
180
|
+
}
|
|
181
|
+
export interface BilledResourceUtilization {
|
|
182
|
+
units: number | undefined;
|
|
183
|
+
}
|
|
184
|
+
export interface ProtectedQueryStatistics {
|
|
185
|
+
totalDurationInMillis?: number | undefined;
|
|
186
|
+
billedResourceUtilization?: BilledResourceUtilization | undefined;
|
|
187
|
+
}
|
|
188
|
+
export declare const ProtectedQueryStatus: {
|
|
189
|
+
readonly CANCELLED: "CANCELLED";
|
|
190
|
+
readonly CANCELLING: "CANCELLING";
|
|
191
|
+
readonly FAILED: "FAILED";
|
|
192
|
+
readonly STARTED: "STARTED";
|
|
193
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
194
|
+
readonly SUCCESS: "SUCCESS";
|
|
195
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
196
|
+
};
|
|
197
|
+
export type ProtectedQueryStatus =
|
|
198
|
+
(typeof ProtectedQueryStatus)[keyof typeof ProtectedQueryStatus];
|
|
199
|
+
export interface ProtectedQuery {
|
|
200
|
+
id: string | undefined;
|
|
201
|
+
membershipId: string | undefined;
|
|
202
|
+
membershipArn: string | undefined;
|
|
203
|
+
createTime: Date | undefined;
|
|
204
|
+
sqlParameters?: ProtectedQuerySQLParameters | undefined;
|
|
205
|
+
status: ProtectedQueryStatus | undefined;
|
|
206
|
+
resultConfiguration?: ProtectedQueryResultConfiguration | undefined;
|
|
207
|
+
statistics?: ProtectedQueryStatistics | undefined;
|
|
208
|
+
result?: ProtectedQueryResult | undefined;
|
|
209
|
+
error?: ProtectedQueryError | undefined;
|
|
210
|
+
differentialPrivacy?: DifferentialPrivacyParameters | undefined;
|
|
211
|
+
computeConfiguration?: ComputeConfiguration | undefined;
|
|
212
|
+
}
|
|
213
|
+
export interface GetProtectedQueryOutput {
|
|
214
|
+
protectedQuery: ProtectedQuery | undefined;
|
|
215
|
+
}
|
|
216
|
+
export interface ListMembershipsInput {
|
|
217
|
+
nextToken?: string | undefined;
|
|
218
|
+
maxResults?: number | undefined;
|
|
219
|
+
status?: MembershipStatus | undefined;
|
|
220
|
+
}
|
|
221
|
+
export interface MembershipSummary {
|
|
222
|
+
id: string | undefined;
|
|
223
|
+
arn: string | undefined;
|
|
224
|
+
collaborationArn: string | undefined;
|
|
225
|
+
collaborationId: string | undefined;
|
|
226
|
+
collaborationCreatorAccountId: string | undefined;
|
|
227
|
+
collaborationCreatorDisplayName: string | undefined;
|
|
228
|
+
collaborationName: string | undefined;
|
|
229
|
+
createTime: Date | undefined;
|
|
230
|
+
updateTime: Date | undefined;
|
|
231
|
+
status: MembershipStatus | undefined;
|
|
232
|
+
memberAbilities: MemberAbility[] | undefined;
|
|
233
|
+
mlMemberAbilities?: MLMemberAbilities | undefined;
|
|
234
|
+
paymentConfiguration: MembershipPaymentConfiguration | undefined;
|
|
235
|
+
}
|
|
236
|
+
export interface ListMembershipsOutput {
|
|
237
|
+
nextToken?: string | undefined;
|
|
238
|
+
membershipSummaries: MembershipSummary[] | undefined;
|
|
239
|
+
}
|
|
240
|
+
export interface ListPrivacyBudgetsInput {
|
|
241
|
+
membershipIdentifier: string | undefined;
|
|
242
|
+
privacyBudgetType: PrivacyBudgetType | undefined;
|
|
243
|
+
nextToken?: string | undefined;
|
|
244
|
+
maxResults?: number | undefined;
|
|
245
|
+
}
|
|
246
|
+
export interface PrivacyBudgetSummary {
|
|
247
|
+
id: string | undefined;
|
|
248
|
+
privacyBudgetTemplateId: string | undefined;
|
|
249
|
+
privacyBudgetTemplateArn: string | undefined;
|
|
250
|
+
membershipId: string | undefined;
|
|
251
|
+
membershipArn: string | undefined;
|
|
252
|
+
collaborationId: string | undefined;
|
|
253
|
+
collaborationArn: string | undefined;
|
|
254
|
+
type: PrivacyBudgetType | undefined;
|
|
255
|
+
createTime: Date | undefined;
|
|
256
|
+
updateTime: Date | undefined;
|
|
257
|
+
budget: PrivacyBudget | undefined;
|
|
258
|
+
}
|
|
259
|
+
export interface ListPrivacyBudgetsOutput {
|
|
260
|
+
privacyBudgetSummaries: PrivacyBudgetSummary[] | undefined;
|
|
261
|
+
nextToken?: string | undefined;
|
|
262
|
+
}
|
|
263
|
+
export interface ListProtectedJobsInput {
|
|
264
|
+
membershipIdentifier: string | undefined;
|
|
265
|
+
status?: ProtectedJobStatus | undefined;
|
|
266
|
+
nextToken?: string | undefined;
|
|
267
|
+
maxResults?: number | undefined;
|
|
268
|
+
}
|
|
269
|
+
export declare const ProtectedJobAnalysisType: {
|
|
270
|
+
readonly DIRECT_ANALYSIS: "DIRECT_ANALYSIS";
|
|
271
|
+
};
|
|
272
|
+
export type ProtectedJobAnalysisType =
|
|
273
|
+
(typeof ProtectedJobAnalysisType)[keyof typeof ProtectedJobAnalysisType];
|
|
274
|
+
export interface ProtectedJobDirectAnalysisConfigurationDetails {
|
|
275
|
+
receiverAccountIds?: string[] | undefined;
|
|
276
|
+
}
|
|
277
|
+
export type ProtectedJobConfigurationDetails =
|
|
278
|
+
| ProtectedJobConfigurationDetails.DirectAnalysisConfigurationDetailsMember
|
|
279
|
+
| ProtectedJobConfigurationDetails.$UnknownMember;
|
|
280
|
+
export declare namespace ProtectedJobConfigurationDetails {
|
|
281
|
+
interface DirectAnalysisConfigurationDetailsMember {
|
|
282
|
+
directAnalysisConfigurationDetails: ProtectedJobDirectAnalysisConfigurationDetails;
|
|
283
|
+
$unknown?: never;
|
|
284
|
+
}
|
|
285
|
+
interface $UnknownMember {
|
|
286
|
+
directAnalysisConfigurationDetails?: never;
|
|
287
|
+
$unknown: [string, any];
|
|
288
|
+
}
|
|
289
|
+
interface Visitor<T> {
|
|
290
|
+
directAnalysisConfigurationDetails: (
|
|
291
|
+
value: ProtectedJobDirectAnalysisConfigurationDetails
|
|
292
|
+
) => T;
|
|
293
|
+
_: (name: string, value: any) => T;
|
|
294
|
+
}
|
|
295
|
+
const visit: <T>(
|
|
296
|
+
value: ProtectedJobConfigurationDetails,
|
|
297
|
+
visitor: Visitor<T>
|
|
298
|
+
) => T;
|
|
299
|
+
}
|
|
300
|
+
export interface ProtectedJobReceiverConfiguration {
|
|
301
|
+
analysisType: ProtectedJobAnalysisType | undefined;
|
|
302
|
+
configurationDetails?: ProtectedJobConfigurationDetails | undefined;
|
|
303
|
+
}
|
|
304
|
+
export interface ProtectedJobSummary {
|
|
305
|
+
id: string | undefined;
|
|
306
|
+
membershipId: string | undefined;
|
|
307
|
+
membershipArn: string | undefined;
|
|
308
|
+
createTime: Date | undefined;
|
|
309
|
+
status: ProtectedJobStatus | undefined;
|
|
310
|
+
receiverConfigurations: ProtectedJobReceiverConfiguration[] | undefined;
|
|
311
|
+
}
|
|
312
|
+
export interface ListProtectedJobsOutput {
|
|
313
|
+
nextToken?: string | undefined;
|
|
314
|
+
protectedJobs: ProtectedJobSummary[] | undefined;
|
|
315
|
+
}
|
|
316
|
+
export interface ListProtectedQueriesInput {
|
|
317
|
+
membershipIdentifier: string | undefined;
|
|
318
|
+
status?: ProtectedQueryStatus | undefined;
|
|
319
|
+
nextToken?: string | undefined;
|
|
320
|
+
maxResults?: number | undefined;
|
|
321
|
+
}
|
|
322
|
+
export interface DirectAnalysisConfigurationDetails {
|
|
323
|
+
receiverAccountIds?: string[] | undefined;
|
|
324
|
+
}
|
|
325
|
+
export type ConfigurationDetails =
|
|
326
|
+
| ConfigurationDetails.DirectAnalysisConfigurationDetailsMember
|
|
327
|
+
| ConfigurationDetails.$UnknownMember;
|
|
328
|
+
export declare namespace ConfigurationDetails {
|
|
329
|
+
interface DirectAnalysisConfigurationDetailsMember {
|
|
330
|
+
directAnalysisConfigurationDetails: DirectAnalysisConfigurationDetails;
|
|
331
|
+
$unknown?: never;
|
|
332
|
+
}
|
|
333
|
+
interface $UnknownMember {
|
|
334
|
+
directAnalysisConfigurationDetails?: never;
|
|
335
|
+
$unknown: [string, any];
|
|
336
|
+
}
|
|
337
|
+
interface Visitor<T> {
|
|
338
|
+
directAnalysisConfigurationDetails: (
|
|
339
|
+
value: DirectAnalysisConfigurationDetails
|
|
340
|
+
) => T;
|
|
341
|
+
_: (name: string, value: any) => T;
|
|
342
|
+
}
|
|
343
|
+
const visit: <T>(value: ConfigurationDetails, visitor: Visitor<T>) => T;
|
|
344
|
+
}
|
|
17
345
|
export interface ReceiverConfiguration {
|
|
18
346
|
analysisType: AnalysisType | undefined;
|
|
19
347
|
configurationDetails?: ConfigurationDetails | undefined;
|
|
@@ -89,6 +417,47 @@ export declare namespace PrivacyImpact {
|
|
|
89
417
|
export interface PreviewPrivacyImpactOutput {
|
|
90
418
|
privacyImpact: PrivacyImpact | undefined;
|
|
91
419
|
}
|
|
420
|
+
export interface ProtectedJobMemberOutputConfigurationInput {
|
|
421
|
+
accountId: string | undefined;
|
|
422
|
+
}
|
|
423
|
+
export type ProtectedJobOutputConfigurationInput =
|
|
424
|
+
| ProtectedJobOutputConfigurationInput.MemberMember
|
|
425
|
+
| ProtectedJobOutputConfigurationInput.$UnknownMember;
|
|
426
|
+
export declare namespace ProtectedJobOutputConfigurationInput {
|
|
427
|
+
interface MemberMember {
|
|
428
|
+
member: ProtectedJobMemberOutputConfigurationInput;
|
|
429
|
+
$unknown?: never;
|
|
430
|
+
}
|
|
431
|
+
interface $UnknownMember {
|
|
432
|
+
member?: never;
|
|
433
|
+
$unknown: [string, any];
|
|
434
|
+
}
|
|
435
|
+
interface Visitor<T> {
|
|
436
|
+
member: (value: ProtectedJobMemberOutputConfigurationInput) => T;
|
|
437
|
+
_: (name: string, value: any) => T;
|
|
438
|
+
}
|
|
439
|
+
const visit: <T>(
|
|
440
|
+
value: ProtectedJobOutputConfigurationInput,
|
|
441
|
+
visitor: Visitor<T>
|
|
442
|
+
) => T;
|
|
443
|
+
}
|
|
444
|
+
export interface ProtectedJobResultConfigurationInput {
|
|
445
|
+
outputConfiguration: ProtectedJobOutputConfigurationInput | undefined;
|
|
446
|
+
}
|
|
447
|
+
export declare const ProtectedJobType: {
|
|
448
|
+
readonly PYSPARK: "PYSPARK";
|
|
449
|
+
};
|
|
450
|
+
export type ProtectedJobType =
|
|
451
|
+
(typeof ProtectedJobType)[keyof typeof ProtectedJobType];
|
|
452
|
+
export interface StartProtectedJobInput {
|
|
453
|
+
type: ProtectedJobType | undefined;
|
|
454
|
+
membershipIdentifier: string | undefined;
|
|
455
|
+
jobParameters: ProtectedJobParameters | undefined;
|
|
456
|
+
resultConfiguration?: ProtectedJobResultConfigurationInput | undefined;
|
|
457
|
+
}
|
|
458
|
+
export interface StartProtectedJobOutput {
|
|
459
|
+
protectedJob: ProtectedJob | undefined;
|
|
460
|
+
}
|
|
92
461
|
export declare const ProtectedQueryType: {
|
|
93
462
|
readonly SQL: "SQL";
|
|
94
463
|
};
|
|
@@ -107,13 +476,30 @@ export interface StartProtectedQueryOutput {
|
|
|
107
476
|
export interface UpdateMembershipInput {
|
|
108
477
|
membershipIdentifier: string | undefined;
|
|
109
478
|
queryLogStatus?: MembershipQueryLogStatus | undefined;
|
|
479
|
+
jobLogStatus?: MembershipJobLogStatus | undefined;
|
|
110
480
|
defaultResultConfiguration?:
|
|
111
481
|
| MembershipProtectedQueryResultConfiguration
|
|
112
482
|
| undefined;
|
|
483
|
+
defaultJobResultConfiguration?:
|
|
484
|
+
| MembershipProtectedJobResultConfiguration
|
|
485
|
+
| undefined;
|
|
113
486
|
}
|
|
114
487
|
export interface UpdateMembershipOutput {
|
|
115
488
|
membership: Membership | undefined;
|
|
116
489
|
}
|
|
490
|
+
export declare const TargetProtectedJobStatus: {
|
|
491
|
+
readonly CANCELLED: "CANCELLED";
|
|
492
|
+
};
|
|
493
|
+
export type TargetProtectedJobStatus =
|
|
494
|
+
(typeof TargetProtectedJobStatus)[keyof typeof TargetProtectedJobStatus];
|
|
495
|
+
export interface UpdateProtectedJobInput {
|
|
496
|
+
membershipIdentifier: string | undefined;
|
|
497
|
+
protectedJobIdentifier: string | undefined;
|
|
498
|
+
targetStatus: TargetProtectedJobStatus | undefined;
|
|
499
|
+
}
|
|
500
|
+
export interface UpdateProtectedJobOutput {
|
|
501
|
+
protectedJob: ProtectedJob | undefined;
|
|
502
|
+
}
|
|
117
503
|
export declare const TargetProtectedQueryStatus: {
|
|
118
504
|
readonly CANCELLED: "CANCELLED";
|
|
119
505
|
};
|
|
@@ -255,6 +641,15 @@ export interface UntagResourceInput {
|
|
|
255
641
|
tagKeys: string[] | undefined;
|
|
256
642
|
}
|
|
257
643
|
export interface UntagResourceOutput {}
|
|
644
|
+
export declare const ProtectedQuerySQLParametersFilterSensitiveLog: (
|
|
645
|
+
obj: ProtectedQuerySQLParameters
|
|
646
|
+
) => any;
|
|
647
|
+
export declare const ProtectedQueryFilterSensitiveLog: (
|
|
648
|
+
obj: ProtectedQuery
|
|
649
|
+
) => any;
|
|
650
|
+
export declare const GetProtectedQueryOutputFilterSensitiveLog: (
|
|
651
|
+
obj: GetProtectedQueryOutput
|
|
652
|
+
) => any;
|
|
258
653
|
export declare const StartProtectedQueryInputFilterSensitiveLog: (
|
|
259
654
|
obj: StartProtectedQueryInput
|
|
260
655
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListProtectedJobsCommandInput,
|
|
4
|
+
ListProtectedJobsCommandOutput,
|
|
5
|
+
} from "../commands/ListProtectedJobsCommand";
|
|
6
|
+
import { CleanRoomsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListProtectedJobs: (
|
|
8
|
+
config: CleanRoomsPaginationConfiguration,
|
|
9
|
+
input: ListProtectedJobsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListProtectedJobsCommandOutput>;
|
|
@@ -15,5 +15,6 @@ export * from "./ListMembersPaginator";
|
|
|
15
15
|
export * from "./ListMembershipsPaginator";
|
|
16
16
|
export * from "./ListPrivacyBudgetTemplatesPaginator";
|
|
17
17
|
export * from "./ListPrivacyBudgetsPaginator";
|
|
18
|
+
export * from "./ListProtectedJobsPaginator";
|
|
18
19
|
export * from "./ListProtectedQueriesPaginator";
|
|
19
20
|
export * from "./ListSchemasPaginator";
|
|
@@ -167,6 +167,10 @@ import {
|
|
|
167
167
|
GetPrivacyBudgetTemplateCommandInput,
|
|
168
168
|
GetPrivacyBudgetTemplateCommandOutput,
|
|
169
169
|
} from "../commands/GetPrivacyBudgetTemplateCommand";
|
|
170
|
+
import {
|
|
171
|
+
GetProtectedJobCommandInput,
|
|
172
|
+
GetProtectedJobCommandOutput,
|
|
173
|
+
} from "../commands/GetProtectedJobCommand";
|
|
170
174
|
import {
|
|
171
175
|
GetProtectedQueryCommandInput,
|
|
172
176
|
GetProtectedQueryCommandOutput,
|
|
@@ -243,6 +247,10 @@ import {
|
|
|
243
247
|
ListPrivacyBudgetTemplatesCommandInput,
|
|
244
248
|
ListPrivacyBudgetTemplatesCommandOutput,
|
|
245
249
|
} from "../commands/ListPrivacyBudgetTemplatesCommand";
|
|
250
|
+
import {
|
|
251
|
+
ListProtectedJobsCommandInput,
|
|
252
|
+
ListProtectedJobsCommandOutput,
|
|
253
|
+
} from "../commands/ListProtectedJobsCommand";
|
|
246
254
|
import {
|
|
247
255
|
ListProtectedQueriesCommandInput,
|
|
248
256
|
ListProtectedQueriesCommandOutput,
|
|
@@ -263,6 +271,10 @@ import {
|
|
|
263
271
|
PreviewPrivacyImpactCommandInput,
|
|
264
272
|
PreviewPrivacyImpactCommandOutput,
|
|
265
273
|
} from "../commands/PreviewPrivacyImpactCommand";
|
|
274
|
+
import {
|
|
275
|
+
StartProtectedJobCommandInput,
|
|
276
|
+
StartProtectedJobCommandOutput,
|
|
277
|
+
} from "../commands/StartProtectedJobCommand";
|
|
266
278
|
import {
|
|
267
279
|
StartProtectedQueryCommandInput,
|
|
268
280
|
StartProtectedQueryCommandOutput,
|
|
@@ -319,6 +331,10 @@ import {
|
|
|
319
331
|
UpdatePrivacyBudgetTemplateCommandInput,
|
|
320
332
|
UpdatePrivacyBudgetTemplateCommandOutput,
|
|
321
333
|
} from "../commands/UpdatePrivacyBudgetTemplateCommand";
|
|
334
|
+
import {
|
|
335
|
+
UpdateProtectedJobCommandInput,
|
|
336
|
+
UpdateProtectedJobCommandOutput,
|
|
337
|
+
} from "../commands/UpdateProtectedJobCommand";
|
|
322
338
|
import {
|
|
323
339
|
UpdateProtectedQueryCommandInput,
|
|
324
340
|
UpdateProtectedQueryCommandOutput,
|
|
@@ -487,6 +503,10 @@ export declare const se_GetPrivacyBudgetTemplateCommand: (
|
|
|
487
503
|
input: GetPrivacyBudgetTemplateCommandInput,
|
|
488
504
|
context: __SerdeContext
|
|
489
505
|
) => Promise<__HttpRequest>;
|
|
506
|
+
export declare const se_GetProtectedJobCommand: (
|
|
507
|
+
input: GetProtectedJobCommandInput,
|
|
508
|
+
context: __SerdeContext
|
|
509
|
+
) => Promise<__HttpRequest>;
|
|
490
510
|
export declare const se_GetProtectedQueryCommand: (
|
|
491
511
|
input: GetProtectedQueryCommandInput,
|
|
492
512
|
context: __SerdeContext
|
|
@@ -563,6 +583,10 @@ export declare const se_ListPrivacyBudgetTemplatesCommand: (
|
|
|
563
583
|
input: ListPrivacyBudgetTemplatesCommandInput,
|
|
564
584
|
context: __SerdeContext
|
|
565
585
|
) => Promise<__HttpRequest>;
|
|
586
|
+
export declare const se_ListProtectedJobsCommand: (
|
|
587
|
+
input: ListProtectedJobsCommandInput,
|
|
588
|
+
context: __SerdeContext
|
|
589
|
+
) => Promise<__HttpRequest>;
|
|
566
590
|
export declare const se_ListProtectedQueriesCommand: (
|
|
567
591
|
input: ListProtectedQueriesCommandInput,
|
|
568
592
|
context: __SerdeContext
|
|
@@ -583,6 +607,10 @@ export declare const se_PreviewPrivacyImpactCommand: (
|
|
|
583
607
|
input: PreviewPrivacyImpactCommandInput,
|
|
584
608
|
context: __SerdeContext
|
|
585
609
|
) => Promise<__HttpRequest>;
|
|
610
|
+
export declare const se_StartProtectedJobCommand: (
|
|
611
|
+
input: StartProtectedJobCommandInput,
|
|
612
|
+
context: __SerdeContext
|
|
613
|
+
) => Promise<__HttpRequest>;
|
|
586
614
|
export declare const se_StartProtectedQueryCommand: (
|
|
587
615
|
input: StartProtectedQueryCommandInput,
|
|
588
616
|
context: __SerdeContext
|
|
@@ -639,6 +667,10 @@ export declare const se_UpdatePrivacyBudgetTemplateCommand: (
|
|
|
639
667
|
input: UpdatePrivacyBudgetTemplateCommandInput,
|
|
640
668
|
context: __SerdeContext
|
|
641
669
|
) => Promise<__HttpRequest>;
|
|
670
|
+
export declare const se_UpdateProtectedJobCommand: (
|
|
671
|
+
input: UpdateProtectedJobCommandInput,
|
|
672
|
+
context: __SerdeContext
|
|
673
|
+
) => Promise<__HttpRequest>;
|
|
642
674
|
export declare const se_UpdateProtectedQueryCommand: (
|
|
643
675
|
input: UpdateProtectedQueryCommandInput,
|
|
644
676
|
context: __SerdeContext
|
|
@@ -807,6 +839,10 @@ export declare const de_GetPrivacyBudgetTemplateCommand: (
|
|
|
807
839
|
output: __HttpResponse,
|
|
808
840
|
context: __SerdeContext
|
|
809
841
|
) => Promise<GetPrivacyBudgetTemplateCommandOutput>;
|
|
842
|
+
export declare const de_GetProtectedJobCommand: (
|
|
843
|
+
output: __HttpResponse,
|
|
844
|
+
context: __SerdeContext
|
|
845
|
+
) => Promise<GetProtectedJobCommandOutput>;
|
|
810
846
|
export declare const de_GetProtectedQueryCommand: (
|
|
811
847
|
output: __HttpResponse,
|
|
812
848
|
context: __SerdeContext
|
|
@@ -883,6 +919,10 @@ export declare const de_ListPrivacyBudgetTemplatesCommand: (
|
|
|
883
919
|
output: __HttpResponse,
|
|
884
920
|
context: __SerdeContext
|
|
885
921
|
) => Promise<ListPrivacyBudgetTemplatesCommandOutput>;
|
|
922
|
+
export declare const de_ListProtectedJobsCommand: (
|
|
923
|
+
output: __HttpResponse,
|
|
924
|
+
context: __SerdeContext
|
|
925
|
+
) => Promise<ListProtectedJobsCommandOutput>;
|
|
886
926
|
export declare const de_ListProtectedQueriesCommand: (
|
|
887
927
|
output: __HttpResponse,
|
|
888
928
|
context: __SerdeContext
|
|
@@ -903,6 +943,10 @@ export declare const de_PreviewPrivacyImpactCommand: (
|
|
|
903
943
|
output: __HttpResponse,
|
|
904
944
|
context: __SerdeContext
|
|
905
945
|
) => Promise<PreviewPrivacyImpactCommandOutput>;
|
|
946
|
+
export declare const de_StartProtectedJobCommand: (
|
|
947
|
+
output: __HttpResponse,
|
|
948
|
+
context: __SerdeContext
|
|
949
|
+
) => Promise<StartProtectedJobCommandOutput>;
|
|
906
950
|
export declare const de_StartProtectedQueryCommand: (
|
|
907
951
|
output: __HttpResponse,
|
|
908
952
|
context: __SerdeContext
|
|
@@ -959,6 +1003,10 @@ export declare const de_UpdatePrivacyBudgetTemplateCommand: (
|
|
|
959
1003
|
output: __HttpResponse,
|
|
960
1004
|
context: __SerdeContext
|
|
961
1005
|
) => Promise<UpdatePrivacyBudgetTemplateCommandOutput>;
|
|
1006
|
+
export declare const de_UpdateProtectedJobCommand: (
|
|
1007
|
+
output: __HttpResponse,
|
|
1008
|
+
context: __SerdeContext
|
|
1009
|
+
) => Promise<UpdateProtectedJobCommandOutput>;
|
|
962
1010
|
export declare const de_UpdateProtectedQueryCommand: (
|
|
963
1011
|
output: __HttpResponse,
|
|
964
1012
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cleanrooms",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cleanrooms Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.770.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cleanrooms",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.758.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.758.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.734.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.758.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
30
30
|
"@aws-sdk/types": "3.734.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.743.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.734.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.758.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.0.1",
|
|
35
|
-
"@smithy/core": "^3.1.
|
|
35
|
+
"@smithy/core": "^3.1.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.1",
|
|
37
37
|
"@smithy/hash-node": "^4.0.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.0.
|
|
41
|
-
"@smithy/middleware-retry": "^4.0.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.0.6",
|
|
41
|
+
"@smithy/middleware-retry": "^4.0.7",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.2",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.1",
|
|
44
44
|
"@smithy/node-config-provider": "^4.0.1",
|
|
45
|
-
"@smithy/node-http-handler": "^4.0.
|
|
45
|
+
"@smithy/node-http-handler": "^4.0.3",
|
|
46
46
|
"@smithy/protocol-http": "^5.0.1",
|
|
47
|
-
"@smithy/smithy-client": "^4.1.
|
|
47
|
+
"@smithy/smithy-client": "^4.1.6",
|
|
48
48
|
"@smithy/types": "^4.1.0",
|
|
49
49
|
"@smithy/url-parser": "^4.0.1",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.7",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.7",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.1",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.1",
|
|
57
57
|
"@smithy/util-retry": "^4.0.1",
|