@aws-sdk/client-cleanrooms 3.953.0 → 3.955.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 +8 -0
- package/dist-cjs/index.js +85 -5
- package/dist-es/CleanRooms.js +2 -0
- package/dist-es/commands/UpdateCollaborationChangeRequestCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/index.js +2 -0
- package/dist-es/models/enums.js +17 -0
- package/dist-es/schemas/schemas_0.js +47 -5
- package/dist-types/CleanRooms.d.ts +7 -0
- package/dist-types/CleanRoomsClient.d.ts +3 -2
- package/dist-types/commands/CreateCollaborationChangeRequestCommand.d.ts +18 -3
- package/dist-types/commands/CreateCollaborationCommand.d.ts +2 -2
- package/dist-types/commands/GetCollaborationChangeRequestCommand.d.ts +12 -2
- package/dist-types/commands/GetCollaborationCommand.d.ts +1 -1
- package/dist-types/commands/ListCollaborationChangeRequestsCommand.d.ts +12 -2
- package/dist-types/commands/UpdateCollaborationChangeRequestCommand.d.ts +128 -0
- package/dist-types/commands/UpdateCollaborationCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/index.d.ts +2 -2
- package/dist-types/models/enums.d.ts +33 -0
- package/dist-types/models/models_0.d.ts +76 -128
- package/dist-types/models/models_1.d.ts +127 -1
- package/dist-types/schemas/schemas_0.d.ts +5 -0
- package/dist-types/ts3.4/CleanRooms.d.ts +17 -0
- package/dist-types/ts3.4/CleanRoomsClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/UpdateCollaborationChangeRequestCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +21 -0
- package/dist-types/ts3.4/models/models_0.d.ts +27 -69
- package/dist-types/ts3.4/models/models_1.d.ts +72 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
- package/package.json +10 -10
|
@@ -1,5 +1,131 @@
|
|
|
1
1
|
import { AnalysisType, DifferentialPrivacyAggregationType, MemberAbility, MembershipJobLogStatus, MembershipQueryLogStatus, MembershipStatus, PrivacyBudgetTemplateAutoRefresh, PrivacyBudgetType, ProtectedJobAnalysisType, ProtectedJobStatus, ProtectedJobType, ProtectedQueryStatus, ProtectedQueryType, TargetProtectedJobStatus, TargetProtectedQueryStatus } from "./enums";
|
|
2
|
-
import { type ComputeConfiguration, type DifferentialPrivacyParameters, type Membership, type MembershipPaymentConfiguration, type MembershipProtectedJobResultConfiguration, type MembershipProtectedQueryResultConfiguration, type MLMemberAbilities, type PrivacyBudget, type PrivacyBudgetTemplateParametersOutput, type ProtectedJob, type ProtectedJobComputeConfiguration, type ProtectedJobParameters, type ProtectedQueryError,
|
|
2
|
+
import { type ComputeConfiguration, type DifferentialPrivacyParameters, type Membership, type MembershipPaymentConfiguration, type MembershipProtectedJobResultConfiguration, type MembershipProtectedQueryResultConfiguration, type MLMemberAbilities, type PrivacyBudget, type PrivacyBudgetTemplateParametersOutput, type ProtectedJob, type ProtectedJobComputeConfiguration, type ProtectedJobParameters, type ProtectedQueryError, AccessBudgetsPrivacyTemplateParametersInput, AccessBudgetsPrivacyTemplateUpdateParameters, ProtectedQueryDistributeOutput, ProtectedQueryS3Output, ProtectedQueryS3OutputConfiguration, ProtectedQuerySingleMemberOutput } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* <p>Contains details about the protected query output.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export type ProtectedQueryOutput = ProtectedQueryOutput.DistributeMember | ProtectedQueryOutput.MemberListMember | ProtectedQueryOutput.S3Member | ProtectedQueryOutput.$UnknownMember;
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export declare namespace ProtectedQueryOutput {
|
|
12
|
+
/**
|
|
13
|
+
* <p>If present, the output for a protected query with an <code>S3</code> output type.</p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
interface S3Member {
|
|
17
|
+
s3: ProtectedQueryS3Output;
|
|
18
|
+
memberList?: never;
|
|
19
|
+
distribute?: never;
|
|
20
|
+
$unknown?: never;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* <p>The list of member Amazon Web Services account(s) that received the results of the query. </p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
interface MemberListMember {
|
|
27
|
+
s3?: never;
|
|
28
|
+
memberList: ProtectedQuerySingleMemberOutput[];
|
|
29
|
+
distribute?: never;
|
|
30
|
+
$unknown?: never;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* <p>Contains output information for protected queries that use a <code>distribute</code> output type. This output type lets you send query results to multiple locations - either to S3 or to collaboration members. </p> <note> <p> You can only use the <code>distribute</code> output type with the Spark analytics engine. </p> </note>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
interface DistributeMember {
|
|
37
|
+
s3?: never;
|
|
38
|
+
memberList?: never;
|
|
39
|
+
distribute: ProtectedQueryDistributeOutput;
|
|
40
|
+
$unknown?: never;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
interface $UnknownMember {
|
|
46
|
+
s3?: never;
|
|
47
|
+
memberList?: never;
|
|
48
|
+
distribute?: never;
|
|
49
|
+
$unknown: [string, any];
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* @deprecated unused in schema-serde mode.
|
|
53
|
+
*
|
|
54
|
+
*/
|
|
55
|
+
interface Visitor<T> {
|
|
56
|
+
s3: (value: ProtectedQueryS3Output) => T;
|
|
57
|
+
memberList: (value: ProtectedQuerySingleMemberOutput[]) => T;
|
|
58
|
+
distribute: (value: ProtectedQueryDistributeOutput) => T;
|
|
59
|
+
_: (name: string, value: any) => T;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* <p>Details about the query results.</p>
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
export interface ProtectedQueryResult {
|
|
67
|
+
/**
|
|
68
|
+
* <p>The output of the protected query.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
output: ProtectedQueryOutput | undefined;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* <p> Contains configuration details for the protected query member output.</p>
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
export interface ProtectedQueryMemberOutputConfiguration {
|
|
78
|
+
/**
|
|
79
|
+
* <p>The unique identifier for the account.</p>
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
accountId: string | undefined;
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* <p> Specifies where you'll distribute the results of your protected query. You must configure either an S3 destination or a collaboration member destination.</p>
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
export type ProtectedQueryDistributeOutputConfigurationLocation = ProtectedQueryDistributeOutputConfigurationLocation.MemberMember | ProtectedQueryDistributeOutputConfigurationLocation.S3Member | ProtectedQueryDistributeOutputConfigurationLocation.$UnknownMember;
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export declare namespace ProtectedQueryDistributeOutputConfigurationLocation {
|
|
93
|
+
/**
|
|
94
|
+
* <p>Contains the configuration to write the query results to S3.</p>
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
interface S3Member {
|
|
98
|
+
s3: ProtectedQueryS3OutputConfiguration;
|
|
99
|
+
member?: never;
|
|
100
|
+
$unknown?: never;
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* <p> Contains configuration details for the protected query member output.</p>
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
interface MemberMember {
|
|
107
|
+
s3?: never;
|
|
108
|
+
member: ProtectedQueryMemberOutputConfiguration;
|
|
109
|
+
$unknown?: never;
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
*/
|
|
114
|
+
interface $UnknownMember {
|
|
115
|
+
s3?: never;
|
|
116
|
+
member?: never;
|
|
117
|
+
$unknown: [string, any];
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* @deprecated unused in schema-serde mode.
|
|
121
|
+
*
|
|
122
|
+
*/
|
|
123
|
+
interface Visitor<T> {
|
|
124
|
+
s3: (value: ProtectedQueryS3OutputConfiguration) => T;
|
|
125
|
+
member: (value: ProtectedQueryMemberOutputConfiguration) => T;
|
|
126
|
+
_: (name: string, value: any) => T;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
3
129
|
/**
|
|
4
130
|
* <p> Specifies the configuration for distributing protected query results to multiple receivers, including S3 and collaboration members.</p>
|
|
5
131
|
* @public
|
|
@@ -21,6 +21,7 @@ export declare var AnalysisTemplateArtifacts$: StaticStructureSchema;
|
|
|
21
21
|
export declare var AnalysisTemplateSummary$: StaticStructureSchema;
|
|
22
22
|
export declare var AnalysisTemplateValidationStatusDetail$: StaticStructureSchema;
|
|
23
23
|
export declare var AnalysisTemplateValidationStatusReason$: StaticStructureSchema;
|
|
24
|
+
export declare var ApprovalStatusDetails$: StaticStructureSchema;
|
|
24
25
|
export declare var AthenaTableReference$: StaticStructureSchema;
|
|
25
26
|
export declare var BatchGetCollaborationAnalysisTemplateError$: StaticStructureSchema;
|
|
26
27
|
export declare var BatchGetCollaborationAnalysisTemplateInput$: StaticStructureSchema;
|
|
@@ -41,6 +42,7 @@ export declare var CollaborationAnalysisTemplate$: StaticStructureSchema;
|
|
|
41
42
|
export declare var CollaborationAnalysisTemplateSummary$: StaticStructureSchema;
|
|
42
43
|
export declare var CollaborationChangeRequest$: StaticStructureSchema;
|
|
43
44
|
export declare var CollaborationChangeRequestSummary$: StaticStructureSchema;
|
|
45
|
+
export declare var CollaborationChangeSpecification$: StaticStructureSchema;
|
|
44
46
|
export declare var CollaborationConfiguredAudienceModelAssociation$: StaticStructureSchema;
|
|
45
47
|
export declare var CollaborationConfiguredAudienceModelAssociationSummary$: StaticStructureSchema;
|
|
46
48
|
export declare var CollaborationIdNamespaceAssociation$: StaticStructureSchema;
|
|
@@ -310,6 +312,8 @@ export declare var UntagResourceInput$: StaticStructureSchema;
|
|
|
310
312
|
export declare var UntagResourceOutput$: StaticStructureSchema;
|
|
311
313
|
export declare var UpdateAnalysisTemplateInput$: StaticStructureSchema;
|
|
312
314
|
export declare var UpdateAnalysisTemplateOutput$: StaticStructureSchema;
|
|
315
|
+
export declare var UpdateCollaborationChangeRequestInput$: StaticStructureSchema;
|
|
316
|
+
export declare var UpdateCollaborationChangeRequestOutput$: StaticStructureSchema;
|
|
313
317
|
export declare var UpdateCollaborationInput$: StaticStructureSchema;
|
|
314
318
|
export declare var UpdateCollaborationOutput$: StaticStructureSchema;
|
|
315
319
|
export declare var UpdateConfiguredAudienceModelAssociationInput$: StaticStructureSchema;
|
|
@@ -449,6 +453,7 @@ export declare var TagResource$: StaticOperationSchema;
|
|
|
449
453
|
export declare var UntagResource$: StaticOperationSchema;
|
|
450
454
|
export declare var UpdateAnalysisTemplate$: StaticOperationSchema;
|
|
451
455
|
export declare var UpdateCollaboration$: StaticOperationSchema;
|
|
456
|
+
export declare var UpdateCollaborationChangeRequest$: StaticOperationSchema;
|
|
452
457
|
export declare var UpdateConfiguredAudienceModelAssociation$: StaticOperationSchema;
|
|
453
458
|
export declare var UpdateConfiguredTable$: StaticOperationSchema;
|
|
454
459
|
export declare var UpdateConfiguredTableAnalysisRule$: StaticOperationSchema;
|
|
@@ -300,6 +300,10 @@ import {
|
|
|
300
300
|
UpdateAnalysisTemplateCommandInput,
|
|
301
301
|
UpdateAnalysisTemplateCommandOutput,
|
|
302
302
|
} from "./commands/UpdateAnalysisTemplateCommand";
|
|
303
|
+
import {
|
|
304
|
+
UpdateCollaborationChangeRequestCommandInput,
|
|
305
|
+
UpdateCollaborationChangeRequestCommandOutput,
|
|
306
|
+
} from "./commands/UpdateCollaborationChangeRequestCommand";
|
|
303
307
|
import {
|
|
304
308
|
UpdateCollaborationCommandInput,
|
|
305
309
|
UpdateCollaborationCommandOutput,
|
|
@@ -1442,6 +1446,19 @@ export interface CleanRooms {
|
|
|
1442
1446
|
options: __HttpHandlerOptions,
|
|
1443
1447
|
cb: (err: any, data?: UpdateCollaborationCommandOutput) => void
|
|
1444
1448
|
): void;
|
|
1449
|
+
updateCollaborationChangeRequest(
|
|
1450
|
+
args: UpdateCollaborationChangeRequestCommandInput,
|
|
1451
|
+
options?: __HttpHandlerOptions
|
|
1452
|
+
): Promise<UpdateCollaborationChangeRequestCommandOutput>;
|
|
1453
|
+
updateCollaborationChangeRequest(
|
|
1454
|
+
args: UpdateCollaborationChangeRequestCommandInput,
|
|
1455
|
+
cb: (err: any, data?: UpdateCollaborationChangeRequestCommandOutput) => void
|
|
1456
|
+
): void;
|
|
1457
|
+
updateCollaborationChangeRequest(
|
|
1458
|
+
args: UpdateCollaborationChangeRequestCommandInput,
|
|
1459
|
+
options: __HttpHandlerOptions,
|
|
1460
|
+
cb: (err: any, data?: UpdateCollaborationChangeRequestCommandOutput) => void
|
|
1461
|
+
): void;
|
|
1445
1462
|
updateConfiguredAudienceModelAssociation(
|
|
1446
1463
|
args: UpdateConfiguredAudienceModelAssociationCommandInput,
|
|
1447
1464
|
options?: __HttpHandlerOptions
|
|
@@ -345,6 +345,10 @@ import {
|
|
|
345
345
|
UpdateAnalysisTemplateCommandInput,
|
|
346
346
|
UpdateAnalysisTemplateCommandOutput,
|
|
347
347
|
} from "./commands/UpdateAnalysisTemplateCommand";
|
|
348
|
+
import {
|
|
349
|
+
UpdateCollaborationChangeRequestCommandInput,
|
|
350
|
+
UpdateCollaborationChangeRequestCommandOutput,
|
|
351
|
+
} from "./commands/UpdateCollaborationChangeRequestCommand";
|
|
348
352
|
import {
|
|
349
353
|
UpdateCollaborationCommandInput,
|
|
350
354
|
UpdateCollaborationCommandOutput,
|
|
@@ -476,6 +480,7 @@ export type ServiceInputTypes =
|
|
|
476
480
|
| TagResourceCommandInput
|
|
477
481
|
| UntagResourceCommandInput
|
|
478
482
|
| UpdateAnalysisTemplateCommandInput
|
|
483
|
+
| UpdateCollaborationChangeRequestCommandInput
|
|
479
484
|
| UpdateCollaborationCommandInput
|
|
480
485
|
| UpdateConfiguredAudienceModelAssociationCommandInput
|
|
481
486
|
| UpdateConfiguredTableAnalysisRuleCommandInput
|
|
@@ -564,6 +569,7 @@ export type ServiceOutputTypes =
|
|
|
564
569
|
| TagResourceCommandOutput
|
|
565
570
|
| UntagResourceCommandOutput
|
|
566
571
|
| UpdateAnalysisTemplateCommandOutput
|
|
572
|
+
| UpdateCollaborationChangeRequestCommandOutput
|
|
567
573
|
| UpdateCollaborationCommandOutput
|
|
568
574
|
| UpdateConfiguredAudienceModelAssociationCommandOutput
|
|
569
575
|
| UpdateConfiguredTableAnalysisRuleCommandOutput
|
|
@@ -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
|
+
UpdateCollaborationChangeRequestInput,
|
|
10
|
+
UpdateCollaborationChangeRequestOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateCollaborationChangeRequestCommandInput
|
|
15
|
+
extends UpdateCollaborationChangeRequestInput {}
|
|
16
|
+
export interface UpdateCollaborationChangeRequestCommandOutput
|
|
17
|
+
extends UpdateCollaborationChangeRequestOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateCollaborationChangeRequestCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateCollaborationChangeRequestCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateCollaborationChangeRequestCommandInput,
|
|
24
|
+
UpdateCollaborationChangeRequestCommandOutput,
|
|
25
|
+
CleanRoomsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateCollaborationChangeRequestCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateCollaborationChangeRequestCommandInput,
|
|
33
|
+
UpdateCollaborationChangeRequestCommandOutput,
|
|
34
|
+
CleanRoomsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateCollaborationChangeRequestCommand extends UpdateCollaborationChangeRequestCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateCollaborationChangeRequestInput;
|
|
44
|
+
output: UpdateCollaborationChangeRequestOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateCollaborationChangeRequestCommandInput;
|
|
48
|
+
output: UpdateCollaborationChangeRequestCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -73,6 +73,7 @@ export * from "./StartProtectedQueryCommand";
|
|
|
73
73
|
export * from "./TagResourceCommand";
|
|
74
74
|
export * from "./UntagResourceCommand";
|
|
75
75
|
export * from "./UpdateAnalysisTemplateCommand";
|
|
76
|
+
export * from "./UpdateCollaborationChangeRequestCommand";
|
|
76
77
|
export * from "./UpdateCollaborationCommand";
|
|
77
78
|
export * from "./UpdateConfiguredAudienceModelAssociationCommand";
|
|
78
79
|
export * from "./UpdateConfiguredTableAnalysisRuleCommand";
|
|
@@ -221,6 +221,13 @@ export declare const AnalyticsEngine: {
|
|
|
221
221
|
};
|
|
222
222
|
export type AnalyticsEngine =
|
|
223
223
|
(typeof AnalyticsEngine)[keyof typeof AnalyticsEngine];
|
|
224
|
+
export declare const ApprovalStatus: {
|
|
225
|
+
readonly APPROVED: "APPROVED";
|
|
226
|
+
readonly DENIED: "DENIED";
|
|
227
|
+
readonly PENDING: "PENDING";
|
|
228
|
+
};
|
|
229
|
+
export type ApprovalStatus =
|
|
230
|
+
(typeof ApprovalStatus)[keyof typeof ApprovalStatus];
|
|
224
231
|
export declare const CommercialRegion: {
|
|
225
232
|
readonly AF_SOUTH_1: "af-south-1";
|
|
226
233
|
readonly AP_EAST_1: "ap-east-1";
|
|
@@ -260,6 +267,8 @@ export type CommercialRegion =
|
|
|
260
267
|
(typeof CommercialRegion)[keyof typeof CommercialRegion];
|
|
261
268
|
export declare const AutoApprovedChangeType: {
|
|
262
269
|
readonly ADD_MEMBER: "ADD_MEMBER";
|
|
270
|
+
readonly GRANT_RECEIVE_RESULTS_ABILITY: "GRANT_RECEIVE_RESULTS_ABILITY";
|
|
271
|
+
readonly REVOKE_RECEIVE_RESULTS_ABILITY: "REVOKE_RECEIVE_RESULTS_ABILITY";
|
|
263
272
|
};
|
|
264
273
|
export type AutoApprovedChangeType =
|
|
265
274
|
(typeof AutoApprovedChangeType)[keyof typeof AutoApprovedChangeType];
|
|
@@ -337,12 +346,16 @@ export declare const MemberStatus: {
|
|
|
337
346
|
};
|
|
338
347
|
export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
|
|
339
348
|
export declare const ChangeSpecificationType: {
|
|
349
|
+
readonly COLLABORATION: "COLLABORATION";
|
|
340
350
|
readonly MEMBER: "MEMBER";
|
|
341
351
|
};
|
|
342
352
|
export type ChangeSpecificationType =
|
|
343
353
|
(typeof ChangeSpecificationType)[keyof typeof ChangeSpecificationType];
|
|
344
354
|
export declare const ChangeType: {
|
|
345
355
|
readonly ADD_MEMBER: "ADD_MEMBER";
|
|
356
|
+
readonly EDIT_AUTO_APPROVED_CHANGE_TYPES: "EDIT_AUTO_APPROVED_CHANGE_TYPES";
|
|
357
|
+
readonly GRANT_RECEIVE_RESULTS_ABILITY: "GRANT_RECEIVE_RESULTS_ABILITY";
|
|
358
|
+
readonly REVOKE_RECEIVE_RESULTS_ABILITY: "REVOKE_RECEIVE_RESULTS_ABILITY";
|
|
346
359
|
};
|
|
347
360
|
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
|
348
361
|
export declare const ChangeRequestStatus: {
|
|
@@ -381,6 +394,14 @@ export declare const FilterableMemberStatus: {
|
|
|
381
394
|
};
|
|
382
395
|
export type FilterableMemberStatus =
|
|
383
396
|
(typeof FilterableMemberStatus)[keyof typeof FilterableMemberStatus];
|
|
397
|
+
export declare const ChangeRequestAction: {
|
|
398
|
+
readonly APPROVE: "APPROVE";
|
|
399
|
+
readonly CANCEL: "CANCEL";
|
|
400
|
+
readonly COMMIT: "COMMIT";
|
|
401
|
+
readonly DENY: "DENY";
|
|
402
|
+
};
|
|
403
|
+
export type ChangeRequestAction =
|
|
404
|
+
(typeof ChangeRequestAction)[keyof typeof ChangeRequestAction];
|
|
384
405
|
export declare const ConfiguredTableAssociationAnalysisRuleType: {
|
|
385
406
|
readonly AGGREGATION: "AGGREGATION";
|
|
386
407
|
readonly CUSTOM: "CUSTOM";
|
|
@@ -11,8 +11,10 @@ import {
|
|
|
11
11
|
AnalysisTemplateValidationType,
|
|
12
12
|
AnalysisType,
|
|
13
13
|
AnalyticsEngine,
|
|
14
|
+
ApprovalStatus,
|
|
14
15
|
AutoApprovedChangeType,
|
|
15
16
|
AutoRefreshMode,
|
|
17
|
+
ChangeRequestAction,
|
|
16
18
|
ChangeRequestStatus,
|
|
17
19
|
ChangeSpecificationType,
|
|
18
20
|
ChangeType,
|
|
@@ -564,6 +566,9 @@ export interface UpdateAnalysisTemplateInput {
|
|
|
564
566
|
export interface UpdateAnalysisTemplateOutput {
|
|
565
567
|
analysisTemplate: AnalysisTemplate | undefined;
|
|
566
568
|
}
|
|
569
|
+
export interface ApprovalStatusDetails {
|
|
570
|
+
status: ApprovalStatus | undefined;
|
|
571
|
+
}
|
|
567
572
|
export interface AthenaTableReference {
|
|
568
573
|
region?: CommercialRegion | undefined;
|
|
569
574
|
workGroup: string | undefined;
|
|
@@ -770,25 +775,37 @@ export interface Collaboration {
|
|
|
770
775
|
export interface CreateCollaborationOutput {
|
|
771
776
|
collaboration: Collaboration | undefined;
|
|
772
777
|
}
|
|
778
|
+
export interface CollaborationChangeSpecification {
|
|
779
|
+
autoApprovedChangeTypes?: AutoApprovedChangeType[] | undefined;
|
|
780
|
+
}
|
|
773
781
|
export interface MemberChangeSpecification {
|
|
774
782
|
accountId: string | undefined;
|
|
775
783
|
memberAbilities: MemberAbility[] | undefined;
|
|
776
784
|
displayName?: string | undefined;
|
|
777
785
|
}
|
|
778
786
|
export type ChangeSpecification =
|
|
787
|
+
| ChangeSpecification.CollaborationMember
|
|
779
788
|
| ChangeSpecification.MemberMember
|
|
780
789
|
| ChangeSpecification.$UnknownMember;
|
|
781
790
|
export declare namespace ChangeSpecification {
|
|
782
791
|
interface MemberMember {
|
|
783
792
|
member: MemberChangeSpecification;
|
|
793
|
+
collaboration?: never;
|
|
794
|
+
$unknown?: never;
|
|
795
|
+
}
|
|
796
|
+
interface CollaborationMember {
|
|
797
|
+
member?: never;
|
|
798
|
+
collaboration: CollaborationChangeSpecification;
|
|
784
799
|
$unknown?: never;
|
|
785
800
|
}
|
|
786
801
|
interface $UnknownMember {
|
|
787
802
|
member?: never;
|
|
803
|
+
collaboration?: never;
|
|
788
804
|
$unknown: [string, any];
|
|
789
805
|
}
|
|
790
806
|
interface Visitor<T> {
|
|
791
807
|
member: (value: MemberChangeSpecification) => T;
|
|
808
|
+
collaboration: (value: CollaborationChangeSpecification) => T;
|
|
792
809
|
_: (name: string, value: any) => T;
|
|
793
810
|
}
|
|
794
811
|
}
|
|
@@ -813,6 +830,7 @@ export interface CollaborationChangeRequest {
|
|
|
813
830
|
status: ChangeRequestStatus | undefined;
|
|
814
831
|
isAutoApproved: boolean | undefined;
|
|
815
832
|
changes: Change[] | undefined;
|
|
833
|
+
approvals?: Record<string, ApprovalStatusDetails> | undefined;
|
|
816
834
|
}
|
|
817
835
|
export interface CreateCollaborationChangeRequestOutput {
|
|
818
836
|
collaborationChangeRequest: CollaborationChangeRequest | undefined;
|
|
@@ -1008,6 +1026,7 @@ export interface CollaborationChangeRequestSummary {
|
|
|
1008
1026
|
status: ChangeRequestStatus | undefined;
|
|
1009
1027
|
isAutoApproved: boolean | undefined;
|
|
1010
1028
|
changes: Change[] | undefined;
|
|
1029
|
+
approvals?: Record<string, ApprovalStatusDetails> | undefined;
|
|
1011
1030
|
}
|
|
1012
1031
|
export interface ListCollaborationChangeRequestsOutput {
|
|
1013
1032
|
collaborationChangeRequestSummaries:
|
|
@@ -1222,6 +1241,14 @@ export interface UpdateCollaborationInput {
|
|
|
1222
1241
|
export interface UpdateCollaborationOutput {
|
|
1223
1242
|
collaboration: Collaboration | undefined;
|
|
1224
1243
|
}
|
|
1244
|
+
export interface UpdateCollaborationChangeRequestInput {
|
|
1245
|
+
collaborationIdentifier: string | undefined;
|
|
1246
|
+
changeRequestIdentifier: string | undefined;
|
|
1247
|
+
action: ChangeRequestAction | undefined;
|
|
1248
|
+
}
|
|
1249
|
+
export interface UpdateCollaborationChangeRequestOutput {
|
|
1250
|
+
collaborationChangeRequest: CollaborationChangeRequest | undefined;
|
|
1251
|
+
}
|
|
1225
1252
|
export interface CreateConfiguredAudienceModelAssociationInput {
|
|
1226
1253
|
membershipIdentifier: string | undefined;
|
|
1227
1254
|
configuredAudienceModelArn: string | undefined;
|
|
@@ -2119,72 +2146,3 @@ export interface ProtectedQueryDistributeOutput {
|
|
|
2119
2146
|
s3?: ProtectedQueryS3Output | undefined;
|
|
2120
2147
|
memberList?: ProtectedQuerySingleMemberOutput[] | undefined;
|
|
2121
2148
|
}
|
|
2122
|
-
export type ProtectedQueryOutput =
|
|
2123
|
-
| ProtectedQueryOutput.DistributeMember
|
|
2124
|
-
| ProtectedQueryOutput.MemberListMember
|
|
2125
|
-
| ProtectedQueryOutput.S3Member
|
|
2126
|
-
| ProtectedQueryOutput.$UnknownMember;
|
|
2127
|
-
export declare namespace ProtectedQueryOutput {
|
|
2128
|
-
interface S3Member {
|
|
2129
|
-
s3: ProtectedQueryS3Output;
|
|
2130
|
-
memberList?: never;
|
|
2131
|
-
distribute?: never;
|
|
2132
|
-
$unknown?: never;
|
|
2133
|
-
}
|
|
2134
|
-
interface MemberListMember {
|
|
2135
|
-
s3?: never;
|
|
2136
|
-
memberList: ProtectedQuerySingleMemberOutput[];
|
|
2137
|
-
distribute?: never;
|
|
2138
|
-
$unknown?: never;
|
|
2139
|
-
}
|
|
2140
|
-
interface DistributeMember {
|
|
2141
|
-
s3?: never;
|
|
2142
|
-
memberList?: never;
|
|
2143
|
-
distribute: ProtectedQueryDistributeOutput;
|
|
2144
|
-
$unknown?: never;
|
|
2145
|
-
}
|
|
2146
|
-
interface $UnknownMember {
|
|
2147
|
-
s3?: never;
|
|
2148
|
-
memberList?: never;
|
|
2149
|
-
distribute?: never;
|
|
2150
|
-
$unknown: [string, any];
|
|
2151
|
-
}
|
|
2152
|
-
interface Visitor<T> {
|
|
2153
|
-
s3: (value: ProtectedQueryS3Output) => T;
|
|
2154
|
-
memberList: (value: ProtectedQuerySingleMemberOutput[]) => T;
|
|
2155
|
-
distribute: (value: ProtectedQueryDistributeOutput) => T;
|
|
2156
|
-
_: (name: string, value: any) => T;
|
|
2157
|
-
}
|
|
2158
|
-
}
|
|
2159
|
-
export interface ProtectedQueryResult {
|
|
2160
|
-
output: ProtectedQueryOutput | undefined;
|
|
2161
|
-
}
|
|
2162
|
-
export interface ProtectedQueryMemberOutputConfiguration {
|
|
2163
|
-
accountId: string | undefined;
|
|
2164
|
-
}
|
|
2165
|
-
export type ProtectedQueryDistributeOutputConfigurationLocation =
|
|
2166
|
-
| ProtectedQueryDistributeOutputConfigurationLocation.MemberMember
|
|
2167
|
-
| ProtectedQueryDistributeOutputConfigurationLocation.S3Member
|
|
2168
|
-
| ProtectedQueryDistributeOutputConfigurationLocation.$UnknownMember;
|
|
2169
|
-
export declare namespace ProtectedQueryDistributeOutputConfigurationLocation {
|
|
2170
|
-
interface S3Member {
|
|
2171
|
-
s3: ProtectedQueryS3OutputConfiguration;
|
|
2172
|
-
member?: never;
|
|
2173
|
-
$unknown?: never;
|
|
2174
|
-
}
|
|
2175
|
-
interface MemberMember {
|
|
2176
|
-
s3?: never;
|
|
2177
|
-
member: ProtectedQueryMemberOutputConfiguration;
|
|
2178
|
-
$unknown?: never;
|
|
2179
|
-
}
|
|
2180
|
-
interface $UnknownMember {
|
|
2181
|
-
s3?: never;
|
|
2182
|
-
member?: never;
|
|
2183
|
-
$unknown: [string, any];
|
|
2184
|
-
}
|
|
2185
|
-
interface Visitor<T> {
|
|
2186
|
-
s3: (value: ProtectedQueryS3OutputConfiguration) => T;
|
|
2187
|
-
member: (value: ProtectedQueryMemberOutputConfiguration) => T;
|
|
2188
|
-
_: (name: string, value: any) => T;
|
|
2189
|
-
}
|
|
2190
|
-
}
|
|
@@ -29,13 +29,82 @@ import {
|
|
|
29
29
|
ProtectedJobComputeConfiguration,
|
|
30
30
|
ProtectedJobParameters,
|
|
31
31
|
ProtectedQueryError,
|
|
32
|
-
ProtectedQueryResult,
|
|
33
32
|
AccessBudgetsPrivacyTemplateParametersInput,
|
|
34
33
|
AccessBudgetsPrivacyTemplateUpdateParameters,
|
|
35
|
-
|
|
36
|
-
|
|
34
|
+
ProtectedQueryDistributeOutput,
|
|
35
|
+
ProtectedQueryS3Output,
|
|
37
36
|
ProtectedQueryS3OutputConfiguration,
|
|
37
|
+
ProtectedQuerySingleMemberOutput,
|
|
38
38
|
} from "./models_0";
|
|
39
|
+
export type ProtectedQueryOutput =
|
|
40
|
+
| ProtectedQueryOutput.DistributeMember
|
|
41
|
+
| ProtectedQueryOutput.MemberListMember
|
|
42
|
+
| ProtectedQueryOutput.S3Member
|
|
43
|
+
| ProtectedQueryOutput.$UnknownMember;
|
|
44
|
+
export declare namespace ProtectedQueryOutput {
|
|
45
|
+
interface S3Member {
|
|
46
|
+
s3: ProtectedQueryS3Output;
|
|
47
|
+
memberList?: never;
|
|
48
|
+
distribute?: never;
|
|
49
|
+
$unknown?: never;
|
|
50
|
+
}
|
|
51
|
+
interface MemberListMember {
|
|
52
|
+
s3?: never;
|
|
53
|
+
memberList: ProtectedQuerySingleMemberOutput[];
|
|
54
|
+
distribute?: never;
|
|
55
|
+
$unknown?: never;
|
|
56
|
+
}
|
|
57
|
+
interface DistributeMember {
|
|
58
|
+
s3?: never;
|
|
59
|
+
memberList?: never;
|
|
60
|
+
distribute: ProtectedQueryDistributeOutput;
|
|
61
|
+
$unknown?: never;
|
|
62
|
+
}
|
|
63
|
+
interface $UnknownMember {
|
|
64
|
+
s3?: never;
|
|
65
|
+
memberList?: never;
|
|
66
|
+
distribute?: never;
|
|
67
|
+
$unknown: [string, any];
|
|
68
|
+
}
|
|
69
|
+
interface Visitor<T> {
|
|
70
|
+
s3: (value: ProtectedQueryS3Output) => T;
|
|
71
|
+
memberList: (value: ProtectedQuerySingleMemberOutput[]) => T;
|
|
72
|
+
distribute: (value: ProtectedQueryDistributeOutput) => T;
|
|
73
|
+
_: (name: string, value: any) => T;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
export interface ProtectedQueryResult {
|
|
77
|
+
output: ProtectedQueryOutput | undefined;
|
|
78
|
+
}
|
|
79
|
+
export interface ProtectedQueryMemberOutputConfiguration {
|
|
80
|
+
accountId: string | undefined;
|
|
81
|
+
}
|
|
82
|
+
export type ProtectedQueryDistributeOutputConfigurationLocation =
|
|
83
|
+
| ProtectedQueryDistributeOutputConfigurationLocation.MemberMember
|
|
84
|
+
| ProtectedQueryDistributeOutputConfigurationLocation.S3Member
|
|
85
|
+
| ProtectedQueryDistributeOutputConfigurationLocation.$UnknownMember;
|
|
86
|
+
export declare namespace ProtectedQueryDistributeOutputConfigurationLocation {
|
|
87
|
+
interface S3Member {
|
|
88
|
+
s3: ProtectedQueryS3OutputConfiguration;
|
|
89
|
+
member?: never;
|
|
90
|
+
$unknown?: never;
|
|
91
|
+
}
|
|
92
|
+
interface MemberMember {
|
|
93
|
+
s3?: never;
|
|
94
|
+
member: ProtectedQueryMemberOutputConfiguration;
|
|
95
|
+
$unknown?: never;
|
|
96
|
+
}
|
|
97
|
+
interface $UnknownMember {
|
|
98
|
+
s3?: never;
|
|
99
|
+
member?: never;
|
|
100
|
+
$unknown: [string, any];
|
|
101
|
+
}
|
|
102
|
+
interface Visitor<T> {
|
|
103
|
+
s3: (value: ProtectedQueryS3OutputConfiguration) => T;
|
|
104
|
+
member: (value: ProtectedQueryMemberOutputConfiguration) => T;
|
|
105
|
+
_: (name: string, value: any) => T;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
39
108
|
export interface ProtectedQueryDistributeOutputConfiguration {
|
|
40
109
|
locations: ProtectedQueryDistributeOutputConfigurationLocation[] | undefined;
|
|
41
110
|
}
|
|
@@ -25,6 +25,7 @@ export declare var AnalysisTemplateArtifacts$: StaticStructureSchema;
|
|
|
25
25
|
export declare var AnalysisTemplateSummary$: StaticStructureSchema;
|
|
26
26
|
export declare var AnalysisTemplateValidationStatusDetail$: StaticStructureSchema;
|
|
27
27
|
export declare var AnalysisTemplateValidationStatusReason$: StaticStructureSchema;
|
|
28
|
+
export declare var ApprovalStatusDetails$: StaticStructureSchema;
|
|
28
29
|
export declare var AthenaTableReference$: StaticStructureSchema;
|
|
29
30
|
export declare var BatchGetCollaborationAnalysisTemplateError$: StaticStructureSchema;
|
|
30
31
|
export declare var BatchGetCollaborationAnalysisTemplateInput$: StaticStructureSchema;
|
|
@@ -45,6 +46,7 @@ export declare var CollaborationAnalysisTemplate$: StaticStructureSchema;
|
|
|
45
46
|
export declare var CollaborationAnalysisTemplateSummary$: StaticStructureSchema;
|
|
46
47
|
export declare var CollaborationChangeRequest$: StaticStructureSchema;
|
|
47
48
|
export declare var CollaborationChangeRequestSummary$: StaticStructureSchema;
|
|
49
|
+
export declare var CollaborationChangeSpecification$: StaticStructureSchema;
|
|
48
50
|
export declare var CollaborationConfiguredAudienceModelAssociation$: StaticStructureSchema;
|
|
49
51
|
export declare var CollaborationConfiguredAudienceModelAssociationSummary$: StaticStructureSchema;
|
|
50
52
|
export declare var CollaborationIdNamespaceAssociation$: StaticStructureSchema;
|
|
@@ -314,6 +316,8 @@ export declare var UntagResourceInput$: StaticStructureSchema;
|
|
|
314
316
|
export declare var UntagResourceOutput$: StaticStructureSchema;
|
|
315
317
|
export declare var UpdateAnalysisTemplateInput$: StaticStructureSchema;
|
|
316
318
|
export declare var UpdateAnalysisTemplateOutput$: StaticStructureSchema;
|
|
319
|
+
export declare var UpdateCollaborationChangeRequestInput$: StaticStructureSchema;
|
|
320
|
+
export declare var UpdateCollaborationChangeRequestOutput$: StaticStructureSchema;
|
|
317
321
|
export declare var UpdateCollaborationInput$: StaticStructureSchema;
|
|
318
322
|
export declare var UpdateCollaborationOutput$: StaticStructureSchema;
|
|
319
323
|
export declare var UpdateConfiguredAudienceModelAssociationInput$: StaticStructureSchema;
|
|
@@ -453,6 +457,7 @@ export declare var TagResource$: StaticOperationSchema;
|
|
|
453
457
|
export declare var UntagResource$: StaticOperationSchema;
|
|
454
458
|
export declare var UpdateAnalysisTemplate$: StaticOperationSchema;
|
|
455
459
|
export declare var UpdateCollaboration$: StaticOperationSchema;
|
|
460
|
+
export declare var UpdateCollaborationChangeRequest$: StaticOperationSchema;
|
|
456
461
|
export declare var UpdateConfiguredAudienceModelAssociation$: StaticOperationSchema;
|
|
457
462
|
export declare var UpdateConfiguredTable$: StaticOperationSchema;
|
|
458
463
|
export declare var UpdateConfiguredTableAnalysisRule$: StaticOperationSchema;
|
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.955.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cleanrooms",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/core": "3.954.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.955.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.953.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.953.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.953.0",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.954.0",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "3.953.0",
|
|
31
31
|
"@aws-sdk/types": "3.953.0",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.953.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.953.0",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.954.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.4",
|
|
36
36
|
"@smithy/core": "^3.19.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.7",
|
|
38
38
|
"@smithy/hash-node": "^4.2.6",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.6",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.6",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.0",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.16",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.7",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.6",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.6",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.6",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.6",
|
|
48
|
-
"@smithy/smithy-client": "^4.10.
|
|
48
|
+
"@smithy/smithy-client": "^4.10.1",
|
|
49
49
|
"@smithy/types": "^4.10.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.6",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.18",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.6",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.6",
|
|
58
58
|
"@smithy/util-retry": "^4.2.6",
|