@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
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListProtectedJobsCommandInput, ListProtectedJobsCommandOutput } from "../commands/ListProtectedJobsCommand";
|
|
3
|
+
import { CleanRoomsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListProtectedJobs: (config: CleanRoomsPaginationConfiguration, input: ListProtectedJobsCommandInput, ...rest: any[]) => 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";
|
|
@@ -41,6 +41,7 @@ import { GetIdMappingTableCommandInput, GetIdMappingTableCommandOutput } from ".
|
|
|
41
41
|
import { GetIdNamespaceAssociationCommandInput, GetIdNamespaceAssociationCommandOutput } from "../commands/GetIdNamespaceAssociationCommand";
|
|
42
42
|
import { GetMembershipCommandInput, GetMembershipCommandOutput } from "../commands/GetMembershipCommand";
|
|
43
43
|
import { GetPrivacyBudgetTemplateCommandInput, GetPrivacyBudgetTemplateCommandOutput } from "../commands/GetPrivacyBudgetTemplateCommand";
|
|
44
|
+
import { GetProtectedJobCommandInput, GetProtectedJobCommandOutput } from "../commands/GetProtectedJobCommand";
|
|
44
45
|
import { GetProtectedQueryCommandInput, GetProtectedQueryCommandOutput } from "../commands/GetProtectedQueryCommand";
|
|
45
46
|
import { GetSchemaAnalysisRuleCommandInput, GetSchemaAnalysisRuleCommandOutput } from "../commands/GetSchemaAnalysisRuleCommand";
|
|
46
47
|
import { GetSchemaCommandInput, GetSchemaCommandOutput } from "../commands/GetSchemaCommand";
|
|
@@ -60,11 +61,13 @@ import { ListMembersCommandInput, ListMembersCommandOutput } from "../commands/L
|
|
|
60
61
|
import { ListMembershipsCommandInput, ListMembershipsCommandOutput } from "../commands/ListMembershipsCommand";
|
|
61
62
|
import { ListPrivacyBudgetsCommandInput, ListPrivacyBudgetsCommandOutput } from "../commands/ListPrivacyBudgetsCommand";
|
|
62
63
|
import { ListPrivacyBudgetTemplatesCommandInput, ListPrivacyBudgetTemplatesCommandOutput } from "../commands/ListPrivacyBudgetTemplatesCommand";
|
|
64
|
+
import { ListProtectedJobsCommandInput, ListProtectedJobsCommandOutput } from "../commands/ListProtectedJobsCommand";
|
|
63
65
|
import { ListProtectedQueriesCommandInput, ListProtectedQueriesCommandOutput } from "../commands/ListProtectedQueriesCommand";
|
|
64
66
|
import { ListSchemasCommandInput, ListSchemasCommandOutput } from "../commands/ListSchemasCommand";
|
|
65
67
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
66
68
|
import { PopulateIdMappingTableCommandInput, PopulateIdMappingTableCommandOutput } from "../commands/PopulateIdMappingTableCommand";
|
|
67
69
|
import { PreviewPrivacyImpactCommandInput, PreviewPrivacyImpactCommandOutput } from "../commands/PreviewPrivacyImpactCommand";
|
|
70
|
+
import { StartProtectedJobCommandInput, StartProtectedJobCommandOutput } from "../commands/StartProtectedJobCommand";
|
|
68
71
|
import { StartProtectedQueryCommandInput, StartProtectedQueryCommandOutput } from "../commands/StartProtectedQueryCommand";
|
|
69
72
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
70
73
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
@@ -79,6 +82,7 @@ import { UpdateIdMappingTableCommandInput, UpdateIdMappingTableCommandOutput } f
|
|
|
79
82
|
import { UpdateIdNamespaceAssociationCommandInput, UpdateIdNamespaceAssociationCommandOutput } from "../commands/UpdateIdNamespaceAssociationCommand";
|
|
80
83
|
import { UpdateMembershipCommandInput, UpdateMembershipCommandOutput } from "../commands/UpdateMembershipCommand";
|
|
81
84
|
import { UpdatePrivacyBudgetTemplateCommandInput, UpdatePrivacyBudgetTemplateCommandOutput } from "../commands/UpdatePrivacyBudgetTemplateCommand";
|
|
85
|
+
import { UpdateProtectedJobCommandInput, UpdateProtectedJobCommandOutput } from "../commands/UpdateProtectedJobCommand";
|
|
82
86
|
import { UpdateProtectedQueryCommandInput, UpdateProtectedQueryCommandOutput } from "../commands/UpdateProtectedQueryCommand";
|
|
83
87
|
/**
|
|
84
88
|
* serializeAws_restJson1BatchGetCollaborationAnalysisTemplateCommand
|
|
@@ -244,6 +248,10 @@ export declare const se_GetMembershipCommand: (input: GetMembershipCommandInput,
|
|
|
244
248
|
* serializeAws_restJson1GetPrivacyBudgetTemplateCommand
|
|
245
249
|
*/
|
|
246
250
|
export declare const se_GetPrivacyBudgetTemplateCommand: (input: GetPrivacyBudgetTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
251
|
+
/**
|
|
252
|
+
* serializeAws_restJson1GetProtectedJobCommand
|
|
253
|
+
*/
|
|
254
|
+
export declare const se_GetProtectedJobCommand: (input: GetProtectedJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
247
255
|
/**
|
|
248
256
|
* serializeAws_restJson1GetProtectedQueryCommand
|
|
249
257
|
*/
|
|
@@ -320,6 +328,10 @@ export declare const se_ListPrivacyBudgetsCommand: (input: ListPrivacyBudgetsCom
|
|
|
320
328
|
* serializeAws_restJson1ListPrivacyBudgetTemplatesCommand
|
|
321
329
|
*/
|
|
322
330
|
export declare const se_ListPrivacyBudgetTemplatesCommand: (input: ListPrivacyBudgetTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
331
|
+
/**
|
|
332
|
+
* serializeAws_restJson1ListProtectedJobsCommand
|
|
333
|
+
*/
|
|
334
|
+
export declare const se_ListProtectedJobsCommand: (input: ListProtectedJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
323
335
|
/**
|
|
324
336
|
* serializeAws_restJson1ListProtectedQueriesCommand
|
|
325
337
|
*/
|
|
@@ -340,6 +352,10 @@ export declare const se_PopulateIdMappingTableCommand: (input: PopulateIdMapping
|
|
|
340
352
|
* serializeAws_restJson1PreviewPrivacyImpactCommand
|
|
341
353
|
*/
|
|
342
354
|
export declare const se_PreviewPrivacyImpactCommand: (input: PreviewPrivacyImpactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
355
|
+
/**
|
|
356
|
+
* serializeAws_restJson1StartProtectedJobCommand
|
|
357
|
+
*/
|
|
358
|
+
export declare const se_StartProtectedJobCommand: (input: StartProtectedJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
343
359
|
/**
|
|
344
360
|
* serializeAws_restJson1StartProtectedQueryCommand
|
|
345
361
|
*/
|
|
@@ -396,6 +412,10 @@ export declare const se_UpdateMembershipCommand: (input: UpdateMembershipCommand
|
|
|
396
412
|
* serializeAws_restJson1UpdatePrivacyBudgetTemplateCommand
|
|
397
413
|
*/
|
|
398
414
|
export declare const se_UpdatePrivacyBudgetTemplateCommand: (input: UpdatePrivacyBudgetTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
415
|
+
/**
|
|
416
|
+
* serializeAws_restJson1UpdateProtectedJobCommand
|
|
417
|
+
*/
|
|
418
|
+
export declare const se_UpdateProtectedJobCommand: (input: UpdateProtectedJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
399
419
|
/**
|
|
400
420
|
* serializeAws_restJson1UpdateProtectedQueryCommand
|
|
401
421
|
*/
|
|
@@ -564,6 +584,10 @@ export declare const de_GetMembershipCommand: (output: __HttpResponse, context:
|
|
|
564
584
|
* deserializeAws_restJson1GetPrivacyBudgetTemplateCommand
|
|
565
585
|
*/
|
|
566
586
|
export declare const de_GetPrivacyBudgetTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPrivacyBudgetTemplateCommandOutput>;
|
|
587
|
+
/**
|
|
588
|
+
* deserializeAws_restJson1GetProtectedJobCommand
|
|
589
|
+
*/
|
|
590
|
+
export declare const de_GetProtectedJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProtectedJobCommandOutput>;
|
|
567
591
|
/**
|
|
568
592
|
* deserializeAws_restJson1GetProtectedQueryCommand
|
|
569
593
|
*/
|
|
@@ -640,6 +664,10 @@ export declare const de_ListPrivacyBudgetsCommand: (output: __HttpResponse, cont
|
|
|
640
664
|
* deserializeAws_restJson1ListPrivacyBudgetTemplatesCommand
|
|
641
665
|
*/
|
|
642
666
|
export declare const de_ListPrivacyBudgetTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPrivacyBudgetTemplatesCommandOutput>;
|
|
667
|
+
/**
|
|
668
|
+
* deserializeAws_restJson1ListProtectedJobsCommand
|
|
669
|
+
*/
|
|
670
|
+
export declare const de_ListProtectedJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProtectedJobsCommandOutput>;
|
|
643
671
|
/**
|
|
644
672
|
* deserializeAws_restJson1ListProtectedQueriesCommand
|
|
645
673
|
*/
|
|
@@ -660,6 +688,10 @@ export declare const de_PopulateIdMappingTableCommand: (output: __HttpResponse,
|
|
|
660
688
|
* deserializeAws_restJson1PreviewPrivacyImpactCommand
|
|
661
689
|
*/
|
|
662
690
|
export declare const de_PreviewPrivacyImpactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PreviewPrivacyImpactCommandOutput>;
|
|
691
|
+
/**
|
|
692
|
+
* deserializeAws_restJson1StartProtectedJobCommand
|
|
693
|
+
*/
|
|
694
|
+
export declare const de_StartProtectedJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartProtectedJobCommandOutput>;
|
|
663
695
|
/**
|
|
664
696
|
* deserializeAws_restJson1StartProtectedQueryCommand
|
|
665
697
|
*/
|
|
@@ -716,6 +748,10 @@ export declare const de_UpdateMembershipCommand: (output: __HttpResponse, contex
|
|
|
716
748
|
* deserializeAws_restJson1UpdatePrivacyBudgetTemplateCommand
|
|
717
749
|
*/
|
|
718
750
|
export declare const de_UpdatePrivacyBudgetTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePrivacyBudgetTemplateCommandOutput>;
|
|
751
|
+
/**
|
|
752
|
+
* deserializeAws_restJson1UpdateProtectedJobCommand
|
|
753
|
+
*/
|
|
754
|
+
export declare const de_UpdateProtectedJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProtectedJobCommandOutput>;
|
|
719
755
|
/**
|
|
720
756
|
* deserializeAws_restJson1UpdateProtectedQueryCommand
|
|
721
757
|
*/
|
|
@@ -164,6 +164,10 @@ import {
|
|
|
164
164
|
GetPrivacyBudgetTemplateCommandInput,
|
|
165
165
|
GetPrivacyBudgetTemplateCommandOutput,
|
|
166
166
|
} from "./commands/GetPrivacyBudgetTemplateCommand";
|
|
167
|
+
import {
|
|
168
|
+
GetProtectedJobCommandInput,
|
|
169
|
+
GetProtectedJobCommandOutput,
|
|
170
|
+
} from "./commands/GetProtectedJobCommand";
|
|
167
171
|
import {
|
|
168
172
|
GetProtectedQueryCommandInput,
|
|
169
173
|
GetProtectedQueryCommandOutput,
|
|
@@ -240,6 +244,10 @@ import {
|
|
|
240
244
|
ListPrivacyBudgetTemplatesCommandInput,
|
|
241
245
|
ListPrivacyBudgetTemplatesCommandOutput,
|
|
242
246
|
} from "./commands/ListPrivacyBudgetTemplatesCommand";
|
|
247
|
+
import {
|
|
248
|
+
ListProtectedJobsCommandInput,
|
|
249
|
+
ListProtectedJobsCommandOutput,
|
|
250
|
+
} from "./commands/ListProtectedJobsCommand";
|
|
243
251
|
import {
|
|
244
252
|
ListProtectedQueriesCommandInput,
|
|
245
253
|
ListProtectedQueriesCommandOutput,
|
|
@@ -260,6 +268,10 @@ import {
|
|
|
260
268
|
PreviewPrivacyImpactCommandInput,
|
|
261
269
|
PreviewPrivacyImpactCommandOutput,
|
|
262
270
|
} from "./commands/PreviewPrivacyImpactCommand";
|
|
271
|
+
import {
|
|
272
|
+
StartProtectedJobCommandInput,
|
|
273
|
+
StartProtectedJobCommandOutput,
|
|
274
|
+
} from "./commands/StartProtectedJobCommand";
|
|
263
275
|
import {
|
|
264
276
|
StartProtectedQueryCommandInput,
|
|
265
277
|
StartProtectedQueryCommandOutput,
|
|
@@ -316,6 +328,10 @@ import {
|
|
|
316
328
|
UpdatePrivacyBudgetTemplateCommandInput,
|
|
317
329
|
UpdatePrivacyBudgetTemplateCommandOutput,
|
|
318
330
|
} from "./commands/UpdatePrivacyBudgetTemplateCommand";
|
|
331
|
+
import {
|
|
332
|
+
UpdateProtectedJobCommandInput,
|
|
333
|
+
UpdateProtectedJobCommandOutput,
|
|
334
|
+
} from "./commands/UpdateProtectedJobCommand";
|
|
319
335
|
import {
|
|
320
336
|
UpdateProtectedQueryCommandInput,
|
|
321
337
|
UpdateProtectedQueryCommandOutput,
|
|
@@ -926,6 +942,19 @@ export interface CleanRooms {
|
|
|
926
942
|
options: __HttpHandlerOptions,
|
|
927
943
|
cb: (err: any, data?: GetPrivacyBudgetTemplateCommandOutput) => void
|
|
928
944
|
): void;
|
|
945
|
+
getProtectedJob(
|
|
946
|
+
args: GetProtectedJobCommandInput,
|
|
947
|
+
options?: __HttpHandlerOptions
|
|
948
|
+
): Promise<GetProtectedJobCommandOutput>;
|
|
949
|
+
getProtectedJob(
|
|
950
|
+
args: GetProtectedJobCommandInput,
|
|
951
|
+
cb: (err: any, data?: GetProtectedJobCommandOutput) => void
|
|
952
|
+
): void;
|
|
953
|
+
getProtectedJob(
|
|
954
|
+
args: GetProtectedJobCommandInput,
|
|
955
|
+
options: __HttpHandlerOptions,
|
|
956
|
+
cb: (err: any, data?: GetProtectedJobCommandOutput) => void
|
|
957
|
+
): void;
|
|
929
958
|
getProtectedQuery(
|
|
930
959
|
args: GetProtectedQueryCommandInput,
|
|
931
960
|
options?: __HttpHandlerOptions
|
|
@@ -1206,6 +1235,19 @@ export interface CleanRooms {
|
|
|
1206
1235
|
options: __HttpHandlerOptions,
|
|
1207
1236
|
cb: (err: any, data?: ListPrivacyBudgetTemplatesCommandOutput) => void
|
|
1208
1237
|
): void;
|
|
1238
|
+
listProtectedJobs(
|
|
1239
|
+
args: ListProtectedJobsCommandInput,
|
|
1240
|
+
options?: __HttpHandlerOptions
|
|
1241
|
+
): Promise<ListProtectedJobsCommandOutput>;
|
|
1242
|
+
listProtectedJobs(
|
|
1243
|
+
args: ListProtectedJobsCommandInput,
|
|
1244
|
+
cb: (err: any, data?: ListProtectedJobsCommandOutput) => void
|
|
1245
|
+
): void;
|
|
1246
|
+
listProtectedJobs(
|
|
1247
|
+
args: ListProtectedJobsCommandInput,
|
|
1248
|
+
options: __HttpHandlerOptions,
|
|
1249
|
+
cb: (err: any, data?: ListProtectedJobsCommandOutput) => void
|
|
1250
|
+
): void;
|
|
1209
1251
|
listProtectedQueries(
|
|
1210
1252
|
args: ListProtectedQueriesCommandInput,
|
|
1211
1253
|
options?: __HttpHandlerOptions
|
|
@@ -1271,6 +1313,19 @@ export interface CleanRooms {
|
|
|
1271
1313
|
options: __HttpHandlerOptions,
|
|
1272
1314
|
cb: (err: any, data?: PreviewPrivacyImpactCommandOutput) => void
|
|
1273
1315
|
): void;
|
|
1316
|
+
startProtectedJob(
|
|
1317
|
+
args: StartProtectedJobCommandInput,
|
|
1318
|
+
options?: __HttpHandlerOptions
|
|
1319
|
+
): Promise<StartProtectedJobCommandOutput>;
|
|
1320
|
+
startProtectedJob(
|
|
1321
|
+
args: StartProtectedJobCommandInput,
|
|
1322
|
+
cb: (err: any, data?: StartProtectedJobCommandOutput) => void
|
|
1323
|
+
): void;
|
|
1324
|
+
startProtectedJob(
|
|
1325
|
+
args: StartProtectedJobCommandInput,
|
|
1326
|
+
options: __HttpHandlerOptions,
|
|
1327
|
+
cb: (err: any, data?: StartProtectedJobCommandOutput) => void
|
|
1328
|
+
): void;
|
|
1274
1329
|
startProtectedQuery(
|
|
1275
1330
|
args: StartProtectedQueryCommandInput,
|
|
1276
1331
|
options?: __HttpHandlerOptions
|
|
@@ -1471,6 +1526,19 @@ export interface CleanRooms {
|
|
|
1471
1526
|
options: __HttpHandlerOptions,
|
|
1472
1527
|
cb: (err: any, data?: UpdatePrivacyBudgetTemplateCommandOutput) => void
|
|
1473
1528
|
): void;
|
|
1529
|
+
updateProtectedJob(
|
|
1530
|
+
args: UpdateProtectedJobCommandInput,
|
|
1531
|
+
options?: __HttpHandlerOptions
|
|
1532
|
+
): Promise<UpdateProtectedJobCommandOutput>;
|
|
1533
|
+
updateProtectedJob(
|
|
1534
|
+
args: UpdateProtectedJobCommandInput,
|
|
1535
|
+
cb: (err: any, data?: UpdateProtectedJobCommandOutput) => void
|
|
1536
|
+
): void;
|
|
1537
|
+
updateProtectedJob(
|
|
1538
|
+
args: UpdateProtectedJobCommandInput,
|
|
1539
|
+
options: __HttpHandlerOptions,
|
|
1540
|
+
cb: (err: any, data?: UpdateProtectedJobCommandOutput) => void
|
|
1541
|
+
): void;
|
|
1474
1542
|
updateProtectedQuery(
|
|
1475
1543
|
args: UpdateProtectedQueryCommandInput,
|
|
1476
1544
|
options?: __HttpHandlerOptions
|
|
@@ -209,6 +209,10 @@ import {
|
|
|
209
209
|
GetPrivacyBudgetTemplateCommandInput,
|
|
210
210
|
GetPrivacyBudgetTemplateCommandOutput,
|
|
211
211
|
} from "./commands/GetPrivacyBudgetTemplateCommand";
|
|
212
|
+
import {
|
|
213
|
+
GetProtectedJobCommandInput,
|
|
214
|
+
GetProtectedJobCommandOutput,
|
|
215
|
+
} from "./commands/GetProtectedJobCommand";
|
|
212
216
|
import {
|
|
213
217
|
GetProtectedQueryCommandInput,
|
|
214
218
|
GetProtectedQueryCommandOutput,
|
|
@@ -285,6 +289,10 @@ import {
|
|
|
285
289
|
ListPrivacyBudgetTemplatesCommandInput,
|
|
286
290
|
ListPrivacyBudgetTemplatesCommandOutput,
|
|
287
291
|
} from "./commands/ListPrivacyBudgetTemplatesCommand";
|
|
292
|
+
import {
|
|
293
|
+
ListProtectedJobsCommandInput,
|
|
294
|
+
ListProtectedJobsCommandOutput,
|
|
295
|
+
} from "./commands/ListProtectedJobsCommand";
|
|
288
296
|
import {
|
|
289
297
|
ListProtectedQueriesCommandInput,
|
|
290
298
|
ListProtectedQueriesCommandOutput,
|
|
@@ -305,6 +313,10 @@ import {
|
|
|
305
313
|
PreviewPrivacyImpactCommandInput,
|
|
306
314
|
PreviewPrivacyImpactCommandOutput,
|
|
307
315
|
} from "./commands/PreviewPrivacyImpactCommand";
|
|
316
|
+
import {
|
|
317
|
+
StartProtectedJobCommandInput,
|
|
318
|
+
StartProtectedJobCommandOutput,
|
|
319
|
+
} from "./commands/StartProtectedJobCommand";
|
|
308
320
|
import {
|
|
309
321
|
StartProtectedQueryCommandInput,
|
|
310
322
|
StartProtectedQueryCommandOutput,
|
|
@@ -361,6 +373,10 @@ import {
|
|
|
361
373
|
UpdatePrivacyBudgetTemplateCommandInput,
|
|
362
374
|
UpdatePrivacyBudgetTemplateCommandOutput,
|
|
363
375
|
} from "./commands/UpdatePrivacyBudgetTemplateCommand";
|
|
376
|
+
import {
|
|
377
|
+
UpdateProtectedJobCommandInput,
|
|
378
|
+
UpdateProtectedJobCommandOutput,
|
|
379
|
+
} from "./commands/UpdateProtectedJobCommand";
|
|
364
380
|
import {
|
|
365
381
|
UpdateProtectedQueryCommandInput,
|
|
366
382
|
UpdateProtectedQueryCommandOutput,
|
|
@@ -414,6 +430,7 @@ export type ServiceInputTypes =
|
|
|
414
430
|
| GetIdNamespaceAssociationCommandInput
|
|
415
431
|
| GetMembershipCommandInput
|
|
416
432
|
| GetPrivacyBudgetTemplateCommandInput
|
|
433
|
+
| GetProtectedJobCommandInput
|
|
417
434
|
| GetProtectedQueryCommandInput
|
|
418
435
|
| GetSchemaAnalysisRuleCommandInput
|
|
419
436
|
| GetSchemaCommandInput
|
|
@@ -433,11 +450,13 @@ export type ServiceInputTypes =
|
|
|
433
450
|
| ListMembershipsCommandInput
|
|
434
451
|
| ListPrivacyBudgetTemplatesCommandInput
|
|
435
452
|
| ListPrivacyBudgetsCommandInput
|
|
453
|
+
| ListProtectedJobsCommandInput
|
|
436
454
|
| ListProtectedQueriesCommandInput
|
|
437
455
|
| ListSchemasCommandInput
|
|
438
456
|
| ListTagsForResourceCommandInput
|
|
439
457
|
| PopulateIdMappingTableCommandInput
|
|
440
458
|
| PreviewPrivacyImpactCommandInput
|
|
459
|
+
| StartProtectedJobCommandInput
|
|
441
460
|
| StartProtectedQueryCommandInput
|
|
442
461
|
| TagResourceCommandInput
|
|
443
462
|
| UntagResourceCommandInput
|
|
@@ -452,6 +471,7 @@ export type ServiceInputTypes =
|
|
|
452
471
|
| UpdateIdNamespaceAssociationCommandInput
|
|
453
472
|
| UpdateMembershipCommandInput
|
|
454
473
|
| UpdatePrivacyBudgetTemplateCommandInput
|
|
474
|
+
| UpdateProtectedJobCommandInput
|
|
455
475
|
| UpdateProtectedQueryCommandInput;
|
|
456
476
|
export type ServiceOutputTypes =
|
|
457
477
|
| BatchGetCollaborationAnalysisTemplateCommandOutput
|
|
@@ -495,6 +515,7 @@ export type ServiceOutputTypes =
|
|
|
495
515
|
| GetIdNamespaceAssociationCommandOutput
|
|
496
516
|
| GetMembershipCommandOutput
|
|
497
517
|
| GetPrivacyBudgetTemplateCommandOutput
|
|
518
|
+
| GetProtectedJobCommandOutput
|
|
498
519
|
| GetProtectedQueryCommandOutput
|
|
499
520
|
| GetSchemaAnalysisRuleCommandOutput
|
|
500
521
|
| GetSchemaCommandOutput
|
|
@@ -514,11 +535,13 @@ export type ServiceOutputTypes =
|
|
|
514
535
|
| ListMembershipsCommandOutput
|
|
515
536
|
| ListPrivacyBudgetTemplatesCommandOutput
|
|
516
537
|
| ListPrivacyBudgetsCommandOutput
|
|
538
|
+
| ListProtectedJobsCommandOutput
|
|
517
539
|
| ListProtectedQueriesCommandOutput
|
|
518
540
|
| ListSchemasCommandOutput
|
|
519
541
|
| ListTagsForResourceCommandOutput
|
|
520
542
|
| PopulateIdMappingTableCommandOutput
|
|
521
543
|
| PreviewPrivacyImpactCommandOutput
|
|
544
|
+
| StartProtectedJobCommandOutput
|
|
522
545
|
| StartProtectedQueryCommandOutput
|
|
523
546
|
| TagResourceCommandOutput
|
|
524
547
|
| UntagResourceCommandOutput
|
|
@@ -533,6 +556,7 @@ export type ServiceOutputTypes =
|
|
|
533
556
|
| UpdateIdNamespaceAssociationCommandOutput
|
|
534
557
|
| UpdateMembershipCommandOutput
|
|
535
558
|
| UpdatePrivacyBudgetTemplateCommandOutput
|
|
559
|
+
| UpdateProtectedJobCommandOutput
|
|
536
560
|
| UpdateProtectedQueryCommandOutput;
|
|
537
561
|
export interface ClientDefaults
|
|
538
562
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
@@ -0,0 +1,48 @@
|
|
|
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 { GetProtectedJobInput } from "../models/models_0";
|
|
9
|
+
import { GetProtectedJobOutput } from "../models/models_1";
|
|
10
|
+
export { __MetadataBearer };
|
|
11
|
+
export { $Command };
|
|
12
|
+
export interface GetProtectedJobCommandInput extends GetProtectedJobInput {}
|
|
13
|
+
export interface GetProtectedJobCommandOutput
|
|
14
|
+
extends GetProtectedJobOutput,
|
|
15
|
+
__MetadataBearer {}
|
|
16
|
+
declare const GetProtectedJobCommand_base: {
|
|
17
|
+
new (
|
|
18
|
+
input: GetProtectedJobCommandInput
|
|
19
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
20
|
+
GetProtectedJobCommandInput,
|
|
21
|
+
GetProtectedJobCommandOutput,
|
|
22
|
+
CleanRoomsClientResolvedConfig,
|
|
23
|
+
ServiceInputTypes,
|
|
24
|
+
ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
new (
|
|
27
|
+
__0_0: GetProtectedJobCommandInput
|
|
28
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
29
|
+
GetProtectedJobCommandInput,
|
|
30
|
+
GetProtectedJobCommandOutput,
|
|
31
|
+
CleanRoomsClientResolvedConfig,
|
|
32
|
+
ServiceInputTypes,
|
|
33
|
+
ServiceOutputTypes
|
|
34
|
+
>;
|
|
35
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
36
|
+
};
|
|
37
|
+
export declare class GetProtectedJobCommand extends GetProtectedJobCommand_base {
|
|
38
|
+
protected static __types: {
|
|
39
|
+
api: {
|
|
40
|
+
input: GetProtectedJobInput;
|
|
41
|
+
output: GetProtectedJobOutput;
|
|
42
|
+
};
|
|
43
|
+
sdk: {
|
|
44
|
+
input: GetProtectedJobCommandInput;
|
|
45
|
+
output: GetProtectedJobCommandOutput;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
GetProtectedQueryInput,
|
|
10
10
|
GetProtectedQueryOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface GetProtectedQueryCommandInput extends GetProtectedQueryInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListMembershipsInput,
|
|
10
10
|
ListMembershipsOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ListMembershipsCommandInput extends ListMembershipsInput {}
|
|
@@ -0,0 +1,50 @@
|
|
|
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
|
+
ListProtectedJobsInput,
|
|
10
|
+
ListProtectedJobsOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListProtectedJobsCommandInput extends ListProtectedJobsInput {}
|
|
15
|
+
export interface ListProtectedJobsCommandOutput
|
|
16
|
+
extends ListProtectedJobsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListProtectedJobsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListProtectedJobsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListProtectedJobsCommandInput,
|
|
23
|
+
ListProtectedJobsCommandOutput,
|
|
24
|
+
CleanRoomsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListProtectedJobsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListProtectedJobsCommandInput,
|
|
32
|
+
ListProtectedJobsCommandOutput,
|
|
33
|
+
CleanRoomsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListProtectedJobsCommand extends ListProtectedJobsCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListProtectedJobsInput;
|
|
43
|
+
output: ListProtectedJobsOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListProtectedJobsCommandInput;
|
|
47
|
+
output: ListProtectedJobsCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CleanRoomsClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ListProtectedQueriesInput,
|
|
10
|
+
ListProtectedQueriesOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface ListProtectedQueriesCommandInput
|
|
@@ -0,0 +1,50 @@
|
|
|
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
|
+
StartProtectedJobInput,
|
|
10
|
+
StartProtectedJobOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartProtectedJobCommandInput extends StartProtectedJobInput {}
|
|
15
|
+
export interface StartProtectedJobCommandOutput
|
|
16
|
+
extends StartProtectedJobOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const StartProtectedJobCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: StartProtectedJobCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
StartProtectedJobCommandInput,
|
|
23
|
+
StartProtectedJobCommandOutput,
|
|
24
|
+
CleanRoomsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: StartProtectedJobCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
StartProtectedJobCommandInput,
|
|
32
|
+
StartProtectedJobCommandOutput,
|
|
33
|
+
CleanRoomsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class StartProtectedJobCommand extends StartProtectedJobCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: StartProtectedJobInput;
|
|
43
|
+
output: StartProtectedJobOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: StartProtectedJobCommandInput;
|
|
47
|
+
output: StartProtectedJobCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -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
|
+
UpdateProtectedJobInput,
|
|
10
|
+
UpdateProtectedJobOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateProtectedJobCommandInput
|
|
15
|
+
extends UpdateProtectedJobInput {}
|
|
16
|
+
export interface UpdateProtectedJobCommandOutput
|
|
17
|
+
extends UpdateProtectedJobOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateProtectedJobCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateProtectedJobCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateProtectedJobCommandInput,
|
|
24
|
+
UpdateProtectedJobCommandOutput,
|
|
25
|
+
CleanRoomsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateProtectedJobCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateProtectedJobCommandInput,
|
|
33
|
+
UpdateProtectedJobCommandOutput,
|
|
34
|
+
CleanRoomsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateProtectedJobCommand extends UpdateProtectedJobCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateProtectedJobInput;
|
|
44
|
+
output: UpdateProtectedJobOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateProtectedJobCommandInput;
|
|
48
|
+
output: UpdateProtectedJobCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -39,6 +39,7 @@ export * from "./GetIdMappingTableCommand";
|
|
|
39
39
|
export * from "./GetIdNamespaceAssociationCommand";
|
|
40
40
|
export * from "./GetMembershipCommand";
|
|
41
41
|
export * from "./GetPrivacyBudgetTemplateCommand";
|
|
42
|
+
export * from "./GetProtectedJobCommand";
|
|
42
43
|
export * from "./GetProtectedQueryCommand";
|
|
43
44
|
export * from "./GetSchemaAnalysisRuleCommand";
|
|
44
45
|
export * from "./GetSchemaCommand";
|
|
@@ -58,11 +59,13 @@ export * from "./ListMembersCommand";
|
|
|
58
59
|
export * from "./ListMembershipsCommand";
|
|
59
60
|
export * from "./ListPrivacyBudgetTemplatesCommand";
|
|
60
61
|
export * from "./ListPrivacyBudgetsCommand";
|
|
62
|
+
export * from "./ListProtectedJobsCommand";
|
|
61
63
|
export * from "./ListProtectedQueriesCommand";
|
|
62
64
|
export * from "./ListSchemasCommand";
|
|
63
65
|
export * from "./ListTagsForResourceCommand";
|
|
64
66
|
export * from "./PopulateIdMappingTableCommand";
|
|
65
67
|
export * from "./PreviewPrivacyImpactCommand";
|
|
68
|
+
export * from "./StartProtectedJobCommand";
|
|
66
69
|
export * from "./StartProtectedQueryCommand";
|
|
67
70
|
export * from "./TagResourceCommand";
|
|
68
71
|
export * from "./UntagResourceCommand";
|
|
@@ -77,4 +80,5 @@ export * from "./UpdateIdMappingTableCommand";
|
|
|
77
80
|
export * from "./UpdateIdNamespaceAssociationCommand";
|
|
78
81
|
export * from "./UpdateMembershipCommand";
|
|
79
82
|
export * from "./UpdatePrivacyBudgetTemplateCommand";
|
|
83
|
+
export * from "./UpdateProtectedJobCommand";
|
|
80
84
|
export * from "./UpdateProtectedQueryCommand";
|