@aws-sdk/client-cleanrooms 3.1074.0 → 3.1076.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/dist-cjs/index.js +3937 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/CleanRoomsServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -105
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -3580
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultCleanRoomsHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "cleanrooms",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultCleanRoomsHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,3416 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://cleanrooms-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://cleanrooms-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://cleanrooms.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://cleanrooms.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class CleanRoomsServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, CleanRoomsServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends CleanRoomsServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
reason;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "AccessDeniedException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
150
|
+
this.reason = opts.reason;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class ConflictException extends CleanRoomsServiceException {
|
|
154
|
+
name = "ConflictException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
resourceId;
|
|
157
|
+
resourceType;
|
|
158
|
+
reason;
|
|
159
|
+
constructor(opts) {
|
|
160
|
+
super({
|
|
161
|
+
name: "ConflictException",
|
|
162
|
+
$fault: "client",
|
|
163
|
+
...opts,
|
|
164
|
+
});
|
|
165
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
166
|
+
this.resourceId = opts.resourceId;
|
|
167
|
+
this.resourceType = opts.resourceType;
|
|
168
|
+
this.reason = opts.reason;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
class InternalServerException extends CleanRoomsServiceException {
|
|
172
|
+
name = "InternalServerException";
|
|
173
|
+
$fault = "server";
|
|
174
|
+
constructor(opts) {
|
|
175
|
+
super({
|
|
176
|
+
name: "InternalServerException",
|
|
177
|
+
$fault: "server",
|
|
178
|
+
...opts,
|
|
179
|
+
});
|
|
180
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
class ResourceNotFoundException extends CleanRoomsServiceException {
|
|
184
|
+
name = "ResourceNotFoundException";
|
|
185
|
+
$fault = "client";
|
|
186
|
+
resourceId;
|
|
187
|
+
resourceType;
|
|
188
|
+
constructor(opts) {
|
|
189
|
+
super({
|
|
190
|
+
name: "ResourceNotFoundException",
|
|
191
|
+
$fault: "client",
|
|
192
|
+
...opts,
|
|
193
|
+
});
|
|
194
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
195
|
+
this.resourceId = opts.resourceId;
|
|
196
|
+
this.resourceType = opts.resourceType;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
class ServiceQuotaExceededException extends CleanRoomsServiceException {
|
|
200
|
+
name = "ServiceQuotaExceededException";
|
|
201
|
+
$fault = "client";
|
|
202
|
+
quotaName;
|
|
203
|
+
quotaValue;
|
|
204
|
+
constructor(opts) {
|
|
205
|
+
super({
|
|
206
|
+
name: "ServiceQuotaExceededException",
|
|
207
|
+
$fault: "client",
|
|
208
|
+
...opts,
|
|
209
|
+
});
|
|
210
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
211
|
+
this.quotaName = opts.quotaName;
|
|
212
|
+
this.quotaValue = opts.quotaValue;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
class ThrottlingException extends CleanRoomsServiceException {
|
|
216
|
+
name = "ThrottlingException";
|
|
217
|
+
$fault = "client";
|
|
218
|
+
constructor(opts) {
|
|
219
|
+
super({
|
|
220
|
+
name: "ThrottlingException",
|
|
221
|
+
$fault: "client",
|
|
222
|
+
...opts,
|
|
223
|
+
});
|
|
224
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
class ValidationException extends CleanRoomsServiceException {
|
|
228
|
+
name = "ValidationException";
|
|
229
|
+
$fault = "client";
|
|
230
|
+
reason;
|
|
231
|
+
fieldList;
|
|
232
|
+
constructor(opts) {
|
|
233
|
+
super({
|
|
234
|
+
name: "ValidationException",
|
|
235
|
+
$fault: "client",
|
|
236
|
+
...opts,
|
|
237
|
+
});
|
|
238
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
239
|
+
this.reason = opts.reason;
|
|
240
|
+
this.fieldList = opts.fieldList;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
const _AB = "AccessBudget";
|
|
245
|
+
const _ABD = "AccessBudgetDetails";
|
|
246
|
+
const _ABDL = "AccessBudgetDetailsList";
|
|
247
|
+
const _ABPTPI = "AccessBudgetsPrivacyTemplateParametersInput";
|
|
248
|
+
const _ABPTPO = "AccessBudgetsPrivacyTemplateParametersOutput";
|
|
249
|
+
const _ABPTUP = "AccessBudgetsPrivacyTemplateUpdateParameters";
|
|
250
|
+
const _AC = "AggregateColumn";
|
|
251
|
+
const _ACL = "AggregateColumnList";
|
|
252
|
+
const _ACg = "AggregationConstraint";
|
|
253
|
+
const _ACgg = "AggregationConstraints";
|
|
254
|
+
const _ADE = "AccessDeniedException";
|
|
255
|
+
const _AP = "AnalysisParameter";
|
|
256
|
+
const _APL = "AnalysisParameterList";
|
|
257
|
+
const _AR = "AnalysisRule";
|
|
258
|
+
const _ARA = "AnalysisRuleAggregation";
|
|
259
|
+
const _ARC = "AnalysisRuleCustom";
|
|
260
|
+
const _ARIMT = "AnalysisRuleIdMappingTable";
|
|
261
|
+
const _ARL = "AnalysisRuleList";
|
|
262
|
+
const _ARP = "AnalysisRulePolicy";
|
|
263
|
+
const _ARPV = "AnalysisRulePolicyV1";
|
|
264
|
+
const _AS = "AnalysisSchema";
|
|
265
|
+
const _ASD = "ApprovalStatusDetails";
|
|
266
|
+
const _ASM = "AnalysisSourceMetadata";
|
|
267
|
+
const _ASn = "AnalysisSource";
|
|
268
|
+
const _ASp = "ApprovalStatuses";
|
|
269
|
+
const _AT = "AnalysisTemplate";
|
|
270
|
+
const _ATA = "AnalysisTemplateArtifact";
|
|
271
|
+
const _ATAL = "AnalysisTemplateArtifactList";
|
|
272
|
+
const _ATAM = "AnalysisTemplateArtifactMetadata";
|
|
273
|
+
const _ATAn = "AnalysisTemplateArtifacts";
|
|
274
|
+
const _ATR = "AthenaTableReference";
|
|
275
|
+
const _ATS = "AnalysisTemplateSummary";
|
|
276
|
+
const _ATSL = "AnalysisTemplateSummaryList";
|
|
277
|
+
const _ATT = "AnalysisTemplateText";
|
|
278
|
+
const _ATVSD = "AnalysisTemplateValidationStatusDetail";
|
|
279
|
+
const _ATVSDL = "AnalysisTemplateValidationStatusDetailList";
|
|
280
|
+
const _ATVSR = "AnalysisTemplateValidationStatusReason";
|
|
281
|
+
const _ATVSRL = "AnalysisTemplateValidationStatusReasonList";
|
|
282
|
+
const _BGCAT = "BatchGetCollaborationAnalysisTemplate";
|
|
283
|
+
const _BGCATE = "BatchGetCollaborationAnalysisTemplateError";
|
|
284
|
+
const _BGCATEL = "BatchGetCollaborationAnalysisTemplateErrorList";
|
|
285
|
+
const _BGCATI = "BatchGetCollaborationAnalysisTemplateInput";
|
|
286
|
+
const _BGCATO = "BatchGetCollaborationAnalysisTemplateOutput";
|
|
287
|
+
const _BGS = "BatchGetSchema";
|
|
288
|
+
const _BGSAR = "BatchGetSchemaAnalysisRule";
|
|
289
|
+
const _BGSARE = "BatchGetSchemaAnalysisRuleError";
|
|
290
|
+
const _BGSAREL = "BatchGetSchemaAnalysisRuleErrorList";
|
|
291
|
+
const _BGSARI = "BatchGetSchemaAnalysisRuleInput";
|
|
292
|
+
const _BGSARO = "BatchGetSchemaAnalysisRuleOutput";
|
|
293
|
+
const _BGSE = "BatchGetSchemaError";
|
|
294
|
+
const _BGSEL = "BatchGetSchemaErrorList";
|
|
295
|
+
const _BGSI = "BatchGetSchemaInput";
|
|
296
|
+
const _BGSO = "BatchGetSchemaOutput";
|
|
297
|
+
const _BJRU = "BilledJobResourceUtilization";
|
|
298
|
+
const _BP = "BudgetParameter";
|
|
299
|
+
const _BPu = "BudgetParameters";
|
|
300
|
+
const _BRU = "BilledResourceUtilization";
|
|
301
|
+
const _C = "Change";
|
|
302
|
+
const _CAMA = "ConfiguredAudienceModelAssociation";
|
|
303
|
+
const _CAMAS = "ConfiguredAudienceModelAssociationSummary";
|
|
304
|
+
const _CAMASL = "ConfiguredAudienceModelAssociationSummaryList";
|
|
305
|
+
const _CAT = "CollaborationAnalysisTemplate";
|
|
306
|
+
const _CATI = "CreateAnalysisTemplateInput";
|
|
307
|
+
const _CATL = "CollaborationAnalysisTemplateList";
|
|
308
|
+
const _CATO = "CreateAnalysisTemplateOutput";
|
|
309
|
+
const _CATS = "CollaborationAnalysisTemplateSummary";
|
|
310
|
+
const _CATSL = "CollaborationAnalysisTemplateSummaryList";
|
|
311
|
+
const _CATr = "CreateAnalysisTemplate";
|
|
312
|
+
const _CC = "ComputeConfiguration";
|
|
313
|
+
const _CCAMA = "CollaborationConfiguredAudienceModelAssociation";
|
|
314
|
+
const _CCAMAI = "CreateConfiguredAudienceModelAssociationInput";
|
|
315
|
+
const _CCAMAO = "CreateConfiguredAudienceModelAssociationOutput";
|
|
316
|
+
const _CCAMAS = "CollaborationConfiguredAudienceModelAssociationSummary";
|
|
317
|
+
const _CCAMASL = "CollaborationConfiguredAudienceModelAssociationSummaryList";
|
|
318
|
+
const _CCAMAr = "CreateConfiguredAudienceModelAssociation";
|
|
319
|
+
const _CCCR = "CreateCollaborationChangeRequest";
|
|
320
|
+
const _CCCRI = "CreateCollaborationChangeRequestInput";
|
|
321
|
+
const _CCCRO = "CreateCollaborationChangeRequestOutput";
|
|
322
|
+
const _CCD = "ColumnClassificationDetails";
|
|
323
|
+
const _CCI = "CreateCollaborationInput";
|
|
324
|
+
const _CCO = "CreateCollaborationOutput";
|
|
325
|
+
const _CCR = "CollaborationChangeRequest";
|
|
326
|
+
const _CCRS = "CollaborationChangeRequestSummary";
|
|
327
|
+
const _CCRSL = "CollaborationChangeRequestSummaryList";
|
|
328
|
+
const _CCS = "CollaborationChangeSpecification";
|
|
329
|
+
const _CCT = "CreateConfiguredTable";
|
|
330
|
+
const _CCTA = "CreateConfiguredTableAssociation";
|
|
331
|
+
const _CCTAAR = "CreateConfiguredTableAssociationAnalysisRule";
|
|
332
|
+
const _CCTAARI = "CreateConfiguredTableAssociationAnalysisRuleInput";
|
|
333
|
+
const _CCTAARO = "CreateConfiguredTableAssociationAnalysisRuleOutput";
|
|
334
|
+
const _CCTAI = "CreateConfiguredTableAssociationInput";
|
|
335
|
+
const _CCTAO = "CreateConfiguredTableAssociationOutput";
|
|
336
|
+
const _CCTAR = "CreateConfiguredTableAnalysisRule";
|
|
337
|
+
const _CCTARI = "CreateConfiguredTableAnalysisRuleInput";
|
|
338
|
+
const _CCTARO = "CreateConfiguredTableAnalysisRuleOutput";
|
|
339
|
+
const _CCTI = "CreateConfiguredTableInput";
|
|
340
|
+
const _CCTO = "CreateConfiguredTableOutput";
|
|
341
|
+
const _CCr = "CreateCollaboration";
|
|
342
|
+
const _CD = "ConfigurationDetails";
|
|
343
|
+
const _CE = "ConflictException";
|
|
344
|
+
const _CI = "ChangeInput";
|
|
345
|
+
const _CIL = "ChangeInputList";
|
|
346
|
+
const _CIMT = "CreateIdMappingTable";
|
|
347
|
+
const _CIMTI = "CreateIdMappingTableInput";
|
|
348
|
+
const _CIMTO = "CreateIdMappingTableOutput";
|
|
349
|
+
const _CINA = "CollaborationIdNamespaceAssociation";
|
|
350
|
+
const _CINAI = "CreateIdNamespaceAssociationInput";
|
|
351
|
+
const _CINAO = "CreateIdNamespaceAssociationOutput";
|
|
352
|
+
const _CINAS = "CollaborationIdNamespaceAssociationSummary";
|
|
353
|
+
const _CINASL = "CollaborationIdNamespaceAssociationSummaryList";
|
|
354
|
+
const _CINAr = "CreateIdNamespaceAssociation";
|
|
355
|
+
const _CL = "ChangeList";
|
|
356
|
+
const _CLo = "ColumnList";
|
|
357
|
+
const _CM = "CreateMembership";
|
|
358
|
+
const _CMI = "CreateMembershipInput";
|
|
359
|
+
const _CML = "ColumnMappingList";
|
|
360
|
+
const _CMO = "CreateMembershipOutput";
|
|
361
|
+
const _CP = "ConsolidatedPolicy";
|
|
362
|
+
const _CPA = "ConsolidatedPolicyAggregation";
|
|
363
|
+
const _CPBS = "CollaborationPrivacyBudgetSummary";
|
|
364
|
+
const _CPBSL = "CollaborationPrivacyBudgetSummaryList";
|
|
365
|
+
const _CPBT = "CollaborationPrivacyBudgetTemplate";
|
|
366
|
+
const _CPBTI = "CreatePrivacyBudgetTemplateInput";
|
|
367
|
+
const _CPBTO = "CreatePrivacyBudgetTemplateOutput";
|
|
368
|
+
const _CPBTS = "CollaborationPrivacyBudgetTemplateSummary";
|
|
369
|
+
const _CPBTSL = "CollaborationPrivacyBudgetTemplateSummaryList";
|
|
370
|
+
const _CPBTr = "CreatePrivacyBudgetTemplate";
|
|
371
|
+
const _CPC = "ConsolidatedPolicyCustom";
|
|
372
|
+
const _CPL = "ConsolidatedPolicyList";
|
|
373
|
+
const _CPV = "ConsolidatedPolicyV1";
|
|
374
|
+
const _CS = "CollaborationSummary";
|
|
375
|
+
const _CSL = "CollaborationSummaryList";
|
|
376
|
+
const _CSh = "ChangeSpecification";
|
|
377
|
+
const _CT = "ConfiguredTable";
|
|
378
|
+
const _CTA = "ConfiguredTableAssociation";
|
|
379
|
+
const _CTAAR = "ConfiguredTableAssociationAnalysisRule";
|
|
380
|
+
const _CTAARA = "ConfiguredTableAssociationAnalysisRuleAggregation";
|
|
381
|
+
const _CTAARC = "ConfiguredTableAssociationAnalysisRuleCustom";
|
|
382
|
+
const _CTAARL = "ConfiguredTableAssociationAnalysisRuleList";
|
|
383
|
+
const _CTAARP = "ConfiguredTableAssociationAnalysisRulePolicy";
|
|
384
|
+
const _CTAARPV = "ConfiguredTableAssociationAnalysisRulePolicyV1";
|
|
385
|
+
const _CTAR = "ConfiguredTableAnalysisRule";
|
|
386
|
+
const _CTARP = "ConfiguredTableAnalysisRulePolicy";
|
|
387
|
+
const _CTARPV = "ConfiguredTableAnalysisRulePolicyV1";
|
|
388
|
+
const _CTAS = "ConfiguredTableAssociationSummary";
|
|
389
|
+
const _CTASL = "ConfiguredTableAssociationSummaryList";
|
|
390
|
+
const _CTS = "ConfiguredTableSummary";
|
|
391
|
+
const _CTSL = "ConfiguredTableSummaryList";
|
|
392
|
+
const _Co = "Collaboration";
|
|
393
|
+
const _Col = "Column";
|
|
394
|
+
const _DACD = "DirectAnalysisConfigurationDetails";
|
|
395
|
+
const _DAT = "DeleteAnalysisTemplate";
|
|
396
|
+
const _DATI = "DeleteAnalysisTemplateInput";
|
|
397
|
+
const _DATO = "DeleteAnalysisTemplateOutput";
|
|
398
|
+
const _DC = "DeleteCollaboration";
|
|
399
|
+
const _DCAMA = "DeleteConfiguredAudienceModelAssociation";
|
|
400
|
+
const _DCAMAI = "DeleteConfiguredAudienceModelAssociationInput";
|
|
401
|
+
const _DCAMAO = "DeleteConfiguredAudienceModelAssociationOutput";
|
|
402
|
+
const _DCI = "DeleteCollaborationInput";
|
|
403
|
+
const _DCO = "DeleteCollaborationOutput";
|
|
404
|
+
const _DCT = "DeleteConfiguredTable";
|
|
405
|
+
const _DCTA = "DeleteConfiguredTableAssociation";
|
|
406
|
+
const _DCTAAR = "DeleteConfiguredTableAssociationAnalysisRule";
|
|
407
|
+
const _DCTAARI = "DeleteConfiguredTableAssociationAnalysisRuleInput";
|
|
408
|
+
const _DCTAARO = "DeleteConfiguredTableAssociationAnalysisRuleOutput";
|
|
409
|
+
const _DCTAI = "DeleteConfiguredTableAssociationInput";
|
|
410
|
+
const _DCTAO = "DeleteConfiguredTableAssociationOutput";
|
|
411
|
+
const _DCTAR = "DeleteConfiguredTableAnalysisRule";
|
|
412
|
+
const _DCTARI = "DeleteConfiguredTableAnalysisRuleInput";
|
|
413
|
+
const _DCTARO = "DeleteConfiguredTableAnalysisRuleOutput";
|
|
414
|
+
const _DCTI = "DeleteConfiguredTableInput";
|
|
415
|
+
const _DCTO = "DeleteConfiguredTableOutput";
|
|
416
|
+
const _DEM = "DataEncryptionMetadata";
|
|
417
|
+
const _DIMT = "DeleteIdMappingTable";
|
|
418
|
+
const _DIMTI = "DeleteIdMappingTableInput";
|
|
419
|
+
const _DIMTO = "DeleteIdMappingTableOutput";
|
|
420
|
+
const _DINA = "DeleteIdNamespaceAssociation";
|
|
421
|
+
const _DINAI = "DeleteIdNamespaceAssociationInput";
|
|
422
|
+
const _DINAO = "DeleteIdNamespaceAssociationOutput";
|
|
423
|
+
const _DM = "DeleteMember";
|
|
424
|
+
const _DMI = "DeleteMemberInput";
|
|
425
|
+
const _DMIe = "DeleteMembershipInput";
|
|
426
|
+
const _DMO = "DeleteMemberOutput";
|
|
427
|
+
const _DMOe = "DeleteMembershipOutput";
|
|
428
|
+
const _DMe = "DeleteMembership";
|
|
429
|
+
const _DPBT = "DeletePrivacyBudgetTemplate";
|
|
430
|
+
const _DPBTI = "DeletePrivacyBudgetTemplateInput";
|
|
431
|
+
const _DPBTO = "DeletePrivacyBudgetTemplateOutput";
|
|
432
|
+
const _DPC = "DifferentialPrivacyColumn";
|
|
433
|
+
const _DPCL = "DifferentialPrivacyColumnList";
|
|
434
|
+
const _DPCi = "DifferentialPrivacyConfiguration";
|
|
435
|
+
const _DPP = "DifferentialPrivacyParameters";
|
|
436
|
+
const _DPPA = "DifferentialPrivacyPreviewAggregation";
|
|
437
|
+
const _DPPAL = "DifferentialPrivacyPreviewAggregationList";
|
|
438
|
+
const _DPPB = "DifferentialPrivacyPrivacyBudget";
|
|
439
|
+
const _DPPBA = "DifferentialPrivacyPrivacyBudgetAggregation";
|
|
440
|
+
const _DPPBAL = "DifferentialPrivacyPrivacyBudgetAggregationList";
|
|
441
|
+
const _DPPI = "DifferentialPrivacyPrivacyImpact";
|
|
442
|
+
const _DPPPI = "DifferentialPrivacyPreviewParametersInput";
|
|
443
|
+
const _DPSP = "DifferentialPrivacySensitivityParameters";
|
|
444
|
+
const _DPSPL = "DifferentialPrivacySensitivityParametersList";
|
|
445
|
+
const _DPTPI = "DifferentialPrivacyTemplateParametersInput";
|
|
446
|
+
const _DPTPO = "DifferentialPrivacyTemplateParametersOutput";
|
|
447
|
+
const _DPTUP = "DifferentialPrivacyTemplateUpdateParameters";
|
|
448
|
+
const _EMC = "ErrorMessageConfiguration";
|
|
449
|
+
const _GAT = "GetAnalysisTemplate";
|
|
450
|
+
const _GATI = "GetAnalysisTemplateInput";
|
|
451
|
+
const _GATO = "GetAnalysisTemplateOutput";
|
|
452
|
+
const _GC = "GetCollaboration";
|
|
453
|
+
const _GCAMA = "GetConfiguredAudienceModelAssociation";
|
|
454
|
+
const _GCAMAI = "GetConfiguredAudienceModelAssociationInput";
|
|
455
|
+
const _GCAMAO = "GetConfiguredAudienceModelAssociationOutput";
|
|
456
|
+
const _GCAT = "GetCollaborationAnalysisTemplate";
|
|
457
|
+
const _GCATI = "GetCollaborationAnalysisTemplateInput";
|
|
458
|
+
const _GCATO = "GetCollaborationAnalysisTemplateOutput";
|
|
459
|
+
const _GCCAMA = "GetCollaborationConfiguredAudienceModelAssociation";
|
|
460
|
+
const _GCCAMAI = "GetCollaborationConfiguredAudienceModelAssociationInput";
|
|
461
|
+
const _GCCAMAO = "GetCollaborationConfiguredAudienceModelAssociationOutput";
|
|
462
|
+
const _GCCR = "GetCollaborationChangeRequest";
|
|
463
|
+
const _GCCRI = "GetCollaborationChangeRequestInput";
|
|
464
|
+
const _GCCRO = "GetCollaborationChangeRequestOutput";
|
|
465
|
+
const _GCI = "GetCollaborationInput";
|
|
466
|
+
const _GCINA = "GetCollaborationIdNamespaceAssociation";
|
|
467
|
+
const _GCINAI = "GetCollaborationIdNamespaceAssociationInput";
|
|
468
|
+
const _GCINAO = "GetCollaborationIdNamespaceAssociationOutput";
|
|
469
|
+
const _GCO = "GetCollaborationOutput";
|
|
470
|
+
const _GCPBT = "GetCollaborationPrivacyBudgetTemplate";
|
|
471
|
+
const _GCPBTI = "GetCollaborationPrivacyBudgetTemplateInput";
|
|
472
|
+
const _GCPBTO = "GetCollaborationPrivacyBudgetTemplateOutput";
|
|
473
|
+
const _GCT = "GetConfiguredTable";
|
|
474
|
+
const _GCTA = "GetConfiguredTableAssociation";
|
|
475
|
+
const _GCTAAR = "GetConfiguredTableAssociationAnalysisRule";
|
|
476
|
+
const _GCTAARI = "GetConfiguredTableAssociationAnalysisRuleInput";
|
|
477
|
+
const _GCTAARO = "GetConfiguredTableAssociationAnalysisRuleOutput";
|
|
478
|
+
const _GCTAI = "GetConfiguredTableAssociationInput";
|
|
479
|
+
const _GCTAO = "GetConfiguredTableAssociationOutput";
|
|
480
|
+
const _GCTAR = "GetConfiguredTableAnalysisRule";
|
|
481
|
+
const _GCTARI = "GetConfiguredTableAnalysisRuleInput";
|
|
482
|
+
const _GCTARO = "GetConfiguredTableAnalysisRuleOutput";
|
|
483
|
+
const _GCTI = "GetConfiguredTableInput";
|
|
484
|
+
const _GCTO = "GetConfiguredTableOutput";
|
|
485
|
+
const _GIMT = "GetIdMappingTable";
|
|
486
|
+
const _GIMTI = "GetIdMappingTableInput";
|
|
487
|
+
const _GIMTO = "GetIdMappingTableOutput";
|
|
488
|
+
const _GINA = "GetIdNamespaceAssociation";
|
|
489
|
+
const _GINAI = "GetIdNamespaceAssociationInput";
|
|
490
|
+
const _GINAO = "GetIdNamespaceAssociationOutput";
|
|
491
|
+
const _GM = "GetMembership";
|
|
492
|
+
const _GMI = "GetMembershipInput";
|
|
493
|
+
const _GMO = "GetMembershipOutput";
|
|
494
|
+
const _GPBT = "GetPrivacyBudgetTemplate";
|
|
495
|
+
const _GPBTI = "GetPrivacyBudgetTemplateInput";
|
|
496
|
+
const _GPBTO = "GetPrivacyBudgetTemplateOutput";
|
|
497
|
+
const _GPJ = "GetProtectedJob";
|
|
498
|
+
const _GPJI = "GetProtectedJobInput";
|
|
499
|
+
const _GPJO = "GetProtectedJobOutput";
|
|
500
|
+
const _GPQ = "GetProtectedQuery";
|
|
501
|
+
const _GPQI = "GetProtectedQueryInput";
|
|
502
|
+
const _GPQO = "GetProtectedQueryOutput";
|
|
503
|
+
const _GS = "GetSchema";
|
|
504
|
+
const _GSAR = "GetSchemaAnalysisRule";
|
|
505
|
+
const _GSARI = "GetSchemaAnalysisRuleInput";
|
|
506
|
+
const _GSARO = "GetSchemaAnalysisRuleOutput";
|
|
507
|
+
const _GSI = "GetSchemaInput";
|
|
508
|
+
const _GSO = "GetSchemaOutput";
|
|
509
|
+
const _GTR = "GlueTableReference";
|
|
510
|
+
const _H = "Hash";
|
|
511
|
+
const _HL = "HashList";
|
|
512
|
+
const _IMC = "IdMappingConfig";
|
|
513
|
+
const _IMT = "IdMappingTable";
|
|
514
|
+
const _IMTIRC = "IdMappingTableInputReferenceConfig";
|
|
515
|
+
const _IMTIRP = "IdMappingTableInputReferenceProperties";
|
|
516
|
+
const _IMTIS = "IdMappingTableInputSource";
|
|
517
|
+
const _IMTISL = "IdMappingTableInputSourceList";
|
|
518
|
+
const _IMTS = "IdMappingTableSummary";
|
|
519
|
+
const _IMTSL = "IdMappingTableSummaryList";
|
|
520
|
+
const _IMTSTP = "IdMappingTableSchemaTypeProperties";
|
|
521
|
+
const _INA = "IdNamespaceAssociation";
|
|
522
|
+
const _INAIRC = "IdNamespaceAssociationInputReferenceConfig";
|
|
523
|
+
const _INAIRP = "IdNamespaceAssociationInputReferenceProperties";
|
|
524
|
+
const _INAIRPS = "IdNamespaceAssociationInputReferencePropertiesSummary";
|
|
525
|
+
const _INAS = "IdNamespaceAssociationSummary";
|
|
526
|
+
const _INASL = "IdNamespaceAssociationSummaryList";
|
|
527
|
+
const _ISE = "InternalServerException";
|
|
528
|
+
const _JCPC = "JobComputePaymentConfig";
|
|
529
|
+
const _JPM = "JobParameterMap";
|
|
530
|
+
const _LAT = "ListAnalysisTemplates";
|
|
531
|
+
const _LATI = "ListAnalysisTemplatesInput";
|
|
532
|
+
const _LATO = "ListAnalysisTemplatesOutput";
|
|
533
|
+
const _LC = "ListCollaborations";
|
|
534
|
+
const _LCAMA = "ListConfiguredAudienceModelAssociations";
|
|
535
|
+
const _LCAMAI = "ListConfiguredAudienceModelAssociationsInput";
|
|
536
|
+
const _LCAMAO = "ListConfiguredAudienceModelAssociationsOutput";
|
|
537
|
+
const _LCAT = "ListCollaborationAnalysisTemplates";
|
|
538
|
+
const _LCATI = "ListCollaborationAnalysisTemplatesInput";
|
|
539
|
+
const _LCATO = "ListCollaborationAnalysisTemplatesOutput";
|
|
540
|
+
const _LCCAMA = "ListCollaborationConfiguredAudienceModelAssociations";
|
|
541
|
+
const _LCCAMAI = "ListCollaborationConfiguredAudienceModelAssociationsInput";
|
|
542
|
+
const _LCCAMAO = "ListCollaborationConfiguredAudienceModelAssociationsOutput";
|
|
543
|
+
const _LCCR = "ListCollaborationChangeRequests";
|
|
544
|
+
const _LCCRI = "ListCollaborationChangeRequestsInput";
|
|
545
|
+
const _LCCRO = "ListCollaborationChangeRequestsOutput";
|
|
546
|
+
const _LCI = "ListCollaborationsInput";
|
|
547
|
+
const _LCINA = "ListCollaborationIdNamespaceAssociations";
|
|
548
|
+
const _LCINAI = "ListCollaborationIdNamespaceAssociationsInput";
|
|
549
|
+
const _LCINAO = "ListCollaborationIdNamespaceAssociationsOutput";
|
|
550
|
+
const _LCO = "ListCollaborationsOutput";
|
|
551
|
+
const _LCPB = "ListCollaborationPrivacyBudgets";
|
|
552
|
+
const _LCPBI = "ListCollaborationPrivacyBudgetsInput";
|
|
553
|
+
const _LCPBO = "ListCollaborationPrivacyBudgetsOutput";
|
|
554
|
+
const _LCPBT = "ListCollaborationPrivacyBudgetTemplates";
|
|
555
|
+
const _LCPBTI = "ListCollaborationPrivacyBudgetTemplatesInput";
|
|
556
|
+
const _LCPBTO = "ListCollaborationPrivacyBudgetTemplatesOutput";
|
|
557
|
+
const _LCT = "ListConfiguredTables";
|
|
558
|
+
const _LCTA = "ListConfiguredTableAssociations";
|
|
559
|
+
const _LCTAI = "ListConfiguredTableAssociationsInput";
|
|
560
|
+
const _LCTAO = "ListConfiguredTableAssociationsOutput";
|
|
561
|
+
const _LCTI = "ListConfiguredTablesInput";
|
|
562
|
+
const _LCTO = "ListConfiguredTablesOutput";
|
|
563
|
+
const _LIMT = "ListIdMappingTables";
|
|
564
|
+
const _LIMTI = "ListIdMappingTablesInput";
|
|
565
|
+
const _LIMTO = "ListIdMappingTablesOutput";
|
|
566
|
+
const _LINA = "ListIdNamespaceAssociations";
|
|
567
|
+
const _LINAI = "ListIdNamespaceAssociationsInput";
|
|
568
|
+
const _LINAO = "ListIdNamespaceAssociationsOutput";
|
|
569
|
+
const _LM = "ListMembers";
|
|
570
|
+
const _LMI = "ListMembershipsInput";
|
|
571
|
+
const _LMIi = "ListMembersInput";
|
|
572
|
+
const _LMO = "ListMembershipsOutput";
|
|
573
|
+
const _LMOi = "ListMembersOutput";
|
|
574
|
+
const _LMi = "ListMemberships";
|
|
575
|
+
const _LPB = "ListPrivacyBudgets";
|
|
576
|
+
const _LPBI = "ListPrivacyBudgetsInput";
|
|
577
|
+
const _LPBO = "ListPrivacyBudgetsOutput";
|
|
578
|
+
const _LPBT = "ListPrivacyBudgetTemplates";
|
|
579
|
+
const _LPBTI = "ListPrivacyBudgetTemplatesInput";
|
|
580
|
+
const _LPBTO = "ListPrivacyBudgetTemplatesOutput";
|
|
581
|
+
const _LPJ = "ListProtectedJobs";
|
|
582
|
+
const _LPJI = "ListProtectedJobsInput";
|
|
583
|
+
const _LPJO = "ListProtectedJobsOutput";
|
|
584
|
+
const _LPQ = "ListProtectedQueries";
|
|
585
|
+
const _LPQI = "ListProtectedQueriesInput";
|
|
586
|
+
const _LPQO = "ListProtectedQueriesOutput";
|
|
587
|
+
const _LS = "ListSchemas";
|
|
588
|
+
const _LSI = "ListSchemasInput";
|
|
589
|
+
const _LSO = "ListSchemasOutput";
|
|
590
|
+
const _LTFR = "ListTagsForResource";
|
|
591
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
592
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
593
|
+
const _M = "Membership";
|
|
594
|
+
const _MCS = "MemberChangeSpecification";
|
|
595
|
+
const _MIPC = "ModelInferencePaymentConfig";
|
|
596
|
+
const _MJCPC = "MembershipJobComputePaymentConfig";
|
|
597
|
+
const _ML = "MemberList";
|
|
598
|
+
const _MLMA = "MLMemberAbilities";
|
|
599
|
+
const _MLPC = "MLPaymentConfig";
|
|
600
|
+
const _MLSDP = "MLSyntheticDataParameters";
|
|
601
|
+
const _MMIPC = "MembershipModelInferencePaymentConfig";
|
|
602
|
+
const _MMLPC = "MembershipMLPaymentConfig";
|
|
603
|
+
const _MMTPC = "MembershipModelTrainingPaymentConfig";
|
|
604
|
+
const _MPC = "MembershipPaymentConfiguration";
|
|
605
|
+
const _MPJOC = "MembershipProtectedJobOutputConfiguration";
|
|
606
|
+
const _MPJRC = "MembershipProtectedJobResultConfiguration";
|
|
607
|
+
const _MPQOC = "MembershipProtectedQueryOutputConfiguration";
|
|
608
|
+
const _MPQRC = "MembershipProtectedQueryResultConfiguration";
|
|
609
|
+
const _MQCPC = "MembershipQueryComputePaymentConfig";
|
|
610
|
+
const _MS = "MembershipSummary";
|
|
611
|
+
const _MSDGPC = "MembershipSyntheticDataGenerationPaymentConfig";
|
|
612
|
+
const _MSL = "MembershipSummaryList";
|
|
613
|
+
const _MSLe = "MemberSummaryList";
|
|
614
|
+
const _MSe = "MemberSpecification";
|
|
615
|
+
const _MSem = "MemberSummary";
|
|
616
|
+
const _MTPC = "ModelTrainingPaymentConfig";
|
|
617
|
+
const _PB = "PrivacyBudget";
|
|
618
|
+
const _PBS = "PrivacyBudgetSummary";
|
|
619
|
+
const _PBSL = "PrivacyBudgetSummaryList";
|
|
620
|
+
const _PBT = "PrivacyBudgetTemplate";
|
|
621
|
+
const _PBTPI = "PrivacyBudgetTemplateParametersInput";
|
|
622
|
+
const _PBTPO = "PrivacyBudgetTemplateParametersOutput";
|
|
623
|
+
const _PBTS = "PrivacyBudgetTemplateSummary";
|
|
624
|
+
const _PBTSL = "PrivacyBudgetTemplateSummaryList";
|
|
625
|
+
const _PBTUP = "PrivacyBudgetTemplateUpdateParameters";
|
|
626
|
+
const _PC = "PaymentConfiguration";
|
|
627
|
+
const _PI = "PrivacyImpact";
|
|
628
|
+
const _PIMT = "PopulateIdMappingTable";
|
|
629
|
+
const _PIMTI = "PopulateIdMappingTableInput";
|
|
630
|
+
const _PIMTO = "PopulateIdMappingTableOutput";
|
|
631
|
+
const _PJ = "ProtectedJob";
|
|
632
|
+
const _PJCC = "ProtectedJobComputeConfiguration";
|
|
633
|
+
const _PJCD = "ProtectedJobConfigurationDetails";
|
|
634
|
+
const _PJDACD = "ProtectedJobDirectAnalysisConfigurationDetails";
|
|
635
|
+
const _PJE = "ProtectedJobError";
|
|
636
|
+
const _PJMOCI = "ProtectedJobMemberOutputConfigurationInput";
|
|
637
|
+
const _PJMOCO = "ProtectedJobMemberOutputConfigurationOutput";
|
|
638
|
+
const _PJMOL = "ProtectedJobMemberOutputList";
|
|
639
|
+
const _PJO = "ProtectedJobOutput";
|
|
640
|
+
const _PJOCI = "ProtectedJobOutputConfigurationInput";
|
|
641
|
+
const _PJOCO = "ProtectedJobOutputConfigurationOutput";
|
|
642
|
+
const _PJP = "ProtectedJobParameters";
|
|
643
|
+
const _PJR = "ProtectedJobResult";
|
|
644
|
+
const _PJRC = "ProtectedJobReceiverConfiguration";
|
|
645
|
+
const _PJRCI = "ProtectedJobResultConfigurationInput";
|
|
646
|
+
const _PJRCO = "ProtectedJobResultConfigurationOutput";
|
|
647
|
+
const _PJRCr = "ProtectedJobReceiverConfigurations";
|
|
648
|
+
const _PJS = "ProtectedJobStatistics";
|
|
649
|
+
const _PJSL = "ProtectedJobSummaryList";
|
|
650
|
+
const _PJSMO = "ProtectedJobSingleMemberOutput";
|
|
651
|
+
const _PJSO = "ProtectedJobS3Output";
|
|
652
|
+
const _PJSOCI = "ProtectedJobS3OutputConfigurationInput";
|
|
653
|
+
const _PJSOCO = "ProtectedJobS3OutputConfigurationOutput";
|
|
654
|
+
const _PJSr = "ProtectedJobSummary";
|
|
655
|
+
const _PJWCC = "ProtectedJobWorkerComputeConfiguration";
|
|
656
|
+
const _PPI = "PreviewPrivacyImpact";
|
|
657
|
+
const _PPII = "PreviewPrivacyImpactInput";
|
|
658
|
+
const _PPIO = "PreviewPrivacyImpactOutput";
|
|
659
|
+
const _PPIPI = "PreviewPrivacyImpactParametersInput";
|
|
660
|
+
const _PQ = "ProtectedQuery";
|
|
661
|
+
const _PQDO = "ProtectedQueryDistributeOutput";
|
|
662
|
+
const _PQDOC = "ProtectedQueryDistributeOutputConfiguration";
|
|
663
|
+
const _PQDOCL = "ProtectedQueryDistributeOutputConfigurationLocations";
|
|
664
|
+
const _PQDOCLr = "ProtectedQueryDistributeOutputConfigurationLocation";
|
|
665
|
+
const _PQE = "ProtectedQueryError";
|
|
666
|
+
const _PQMOC = "ProtectedQueryMemberOutputConfiguration";
|
|
667
|
+
const _PQMOL = "ProtectedQueryMemberOutputList";
|
|
668
|
+
const _PQO = "ProtectedQueryOutput";
|
|
669
|
+
const _PQOC = "ProtectedQueryOutputConfiguration";
|
|
670
|
+
const _PQR = "ProtectedQueryResult";
|
|
671
|
+
const _PQRC = "ProtectedQueryResultConfiguration";
|
|
672
|
+
const _PQS = "ProtectedQueryStatistics";
|
|
673
|
+
const _PQSL = "ProtectedQuerySummaryList";
|
|
674
|
+
const _PQSMO = "ProtectedQuerySingleMemberOutput";
|
|
675
|
+
const _PQSO = "ProtectedQueryS3Output";
|
|
676
|
+
const _PQSOC = "ProtectedQueryS3OutputConfiguration";
|
|
677
|
+
const _PQSQLP = "ProtectedQuerySQLParameters";
|
|
678
|
+
const _PQSr = "ProtectedQuerySummary";
|
|
679
|
+
const _QC = "QueryConstraint";
|
|
680
|
+
const _QCL = "QueryConstraintList";
|
|
681
|
+
const _QCPC = "QueryComputePaymentConfig";
|
|
682
|
+
const _QCRO = "QueryConstraintRequireOverlap";
|
|
683
|
+
const _RC = "ReceiverConfiguration";
|
|
684
|
+
const _RCL = "ReceiverConfigurationsList";
|
|
685
|
+
const _RNFE = "ResourceNotFoundException";
|
|
686
|
+
const _S = "Schema";
|
|
687
|
+
const _SARL = "SchemaAnalysisRuleList";
|
|
688
|
+
const _SARR = "SchemaAnalysisRuleRequest";
|
|
689
|
+
const _SARRL = "SchemaAnalysisRuleRequestList";
|
|
690
|
+
const _SDCP = "SyntheticDataColumnProperties";
|
|
691
|
+
const _SDGPC = "SyntheticDataGenerationPaymentConfig";
|
|
692
|
+
const _SDP = "SyntheticDataParameters";
|
|
693
|
+
const _SL = "S3Location";
|
|
694
|
+
const _SLc = "SchemaList";
|
|
695
|
+
const _SPJ = "StartProtectedJob";
|
|
696
|
+
const _SPJI = "StartProtectedJobInput";
|
|
697
|
+
const _SPJO = "StartProtectedJobOutput";
|
|
698
|
+
const _SPQ = "StartProtectedQuery";
|
|
699
|
+
const _SPQI = "StartProtectedQueryInput";
|
|
700
|
+
const _SPQO = "StartProtectedQueryOutput";
|
|
701
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
702
|
+
const _SS = "SchemaSummary";
|
|
703
|
+
const _SSD = "SchemaStatusDetail";
|
|
704
|
+
const _SSDL = "SchemaStatusDetailList";
|
|
705
|
+
const _SSL = "SchemaSummaryList";
|
|
706
|
+
const _SSR = "SchemaStatusReason";
|
|
707
|
+
const _SSRL = "SchemaStatusReasonList";
|
|
708
|
+
const _STP = "SchemaTypeProperties";
|
|
709
|
+
const _STR = "SnowflakeTableReference";
|
|
710
|
+
const _STS = "SnowflakeTableSchema";
|
|
711
|
+
const _STSL = "SnowflakeTableSchemaList";
|
|
712
|
+
const _STSV = "SnowflakeTableSchemaV1";
|
|
713
|
+
const _TE = "ThrottlingException";
|
|
714
|
+
const _TR = "TableReference";
|
|
715
|
+
const _TRI = "TagResourceInput";
|
|
716
|
+
const _TRO = "TagResourceOutput";
|
|
717
|
+
const _TRa = "TagResource";
|
|
718
|
+
const _UAT = "UpdateAnalysisTemplate";
|
|
719
|
+
const _UATI = "UpdateAnalysisTemplateInput";
|
|
720
|
+
const _UATO = "UpdateAnalysisTemplateOutput";
|
|
721
|
+
const _UC = "UpdateCollaboration";
|
|
722
|
+
const _UCAMA = "UpdateConfiguredAudienceModelAssociation";
|
|
723
|
+
const _UCAMAI = "UpdateConfiguredAudienceModelAssociationInput";
|
|
724
|
+
const _UCAMAO = "UpdateConfiguredAudienceModelAssociationOutput";
|
|
725
|
+
const _UCCR = "UpdateCollaborationChangeRequest";
|
|
726
|
+
const _UCCRI = "UpdateCollaborationChangeRequestInput";
|
|
727
|
+
const _UCCRO = "UpdateCollaborationChangeRequestOutput";
|
|
728
|
+
const _UCI = "UpdateCollaborationInput";
|
|
729
|
+
const _UCO = "UpdateCollaborationOutput";
|
|
730
|
+
const _UCT = "UpdateConfiguredTable";
|
|
731
|
+
const _UCTA = "UpdateConfiguredTableAssociation";
|
|
732
|
+
const _UCTAAR = "UpdateConfiguredTableAssociationAnalysisRule";
|
|
733
|
+
const _UCTAARI = "UpdateConfiguredTableAssociationAnalysisRuleInput";
|
|
734
|
+
const _UCTAARO = "UpdateConfiguredTableAssociationAnalysisRuleOutput";
|
|
735
|
+
const _UCTAI = "UpdateConfiguredTableAssociationInput";
|
|
736
|
+
const _UCTAO = "UpdateConfiguredTableAssociationOutput";
|
|
737
|
+
const _UCTAR = "UpdateConfiguredTableAnalysisRule";
|
|
738
|
+
const _UCTARI = "UpdateConfiguredTableAnalysisRuleInput";
|
|
739
|
+
const _UCTARO = "UpdateConfiguredTableAnalysisRuleOutput";
|
|
740
|
+
const _UCTI = "UpdateConfiguredTableInput";
|
|
741
|
+
const _UCTO = "UpdateConfiguredTableOutput";
|
|
742
|
+
const _UIMT = "UpdateIdMappingTable";
|
|
743
|
+
const _UIMTI = "UpdateIdMappingTableInput";
|
|
744
|
+
const _UIMTO = "UpdateIdMappingTableOutput";
|
|
745
|
+
const _UINA = "UpdateIdNamespaceAssociation";
|
|
746
|
+
const _UINAI = "UpdateIdNamespaceAssociationInput";
|
|
747
|
+
const _UINAO = "UpdateIdNamespaceAssociationOutput";
|
|
748
|
+
const _UM = "UpdateMembership";
|
|
749
|
+
const _UMI = "UpdateMembershipInput";
|
|
750
|
+
const _UMO = "UpdateMembershipOutput";
|
|
751
|
+
const _UMPC = "UpdateMembershipPaymentConfiguration";
|
|
752
|
+
const _UPBT = "UpdatePrivacyBudgetTemplate";
|
|
753
|
+
const _UPBTI = "UpdatePrivacyBudgetTemplateInput";
|
|
754
|
+
const _UPBTO = "UpdatePrivacyBudgetTemplateOutput";
|
|
755
|
+
const _UPJ = "UpdateProtectedJob";
|
|
756
|
+
const _UPJI = "UpdateProtectedJobInput";
|
|
757
|
+
const _UPJO = "UpdateProtectedJobOutput";
|
|
758
|
+
const _UPQ = "UpdateProtectedQuery";
|
|
759
|
+
const _UPQI = "UpdateProtectedQueryInput";
|
|
760
|
+
const _UPQO = "UpdateProtectedQueryOutput";
|
|
761
|
+
const _UR = "UntagResource";
|
|
762
|
+
const _URI = "UntagResourceInput";
|
|
763
|
+
const _URO = "UntagResourceOutput";
|
|
764
|
+
const _VE = "ValidationException";
|
|
765
|
+
const _VEF = "ValidationExceptionField";
|
|
766
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
767
|
+
const _WCC = "WorkerComputeConfiguration";
|
|
768
|
+
const _WCCP = "WorkerComputeConfigurationProperties";
|
|
769
|
+
const _a = "arn";
|
|
770
|
+
const _aA = "additionalAnalyses";
|
|
771
|
+
const _aAA = "allowedAdditionalAnalyses";
|
|
772
|
+
const _aACRT = "autoApprovedChangeRequestTypes";
|
|
773
|
+
const _aACT = "autoApprovedChangeTypes";
|
|
774
|
+
const _aAH = "additionalArtifactHashes";
|
|
775
|
+
const _aAP = "allowedAnalysisProviders";
|
|
776
|
+
const _aAd = "additionalArtifacts";
|
|
777
|
+
const _aAl = "allowedAnalyses";
|
|
778
|
+
const _aB = "accessBudget";
|
|
779
|
+
const _aBRA = "accessBudgetResourceArn";
|
|
780
|
+
const _aC = "aggregateColumns";
|
|
781
|
+
const _aCl = "allowedColumns";
|
|
782
|
+
const _aCll = "allowCleartext";
|
|
783
|
+
const _aD = "allowDuplicates";
|
|
784
|
+
const _aE = "analyticsEngine";
|
|
785
|
+
const _aEg = "aggregationExpression";
|
|
786
|
+
const _aI = "accountId";
|
|
787
|
+
const _aIc = "accountIdentifier";
|
|
788
|
+
const _aJO = "allowedJoinOperators";
|
|
789
|
+
const _aJOCWDN = "allowJoinsOnColumnsWithDifferentNames";
|
|
790
|
+
const _aM = "analysisMethod";
|
|
791
|
+
const _aP = "analysisParameters";
|
|
792
|
+
const _aR = "autoRefresh";
|
|
793
|
+
const _aRB = "aggregateRemainingBudget";
|
|
794
|
+
const _aRP = "analysisRulePolicy";
|
|
795
|
+
const _aRR = "allowedResultRegions";
|
|
796
|
+
const _aRRl = "allowedResultReceivers";
|
|
797
|
+
const _aRT = "analysisRuleTypes";
|
|
798
|
+
const _aRTn = "analysisRuleType";
|
|
799
|
+
const _aRn = "analysisRules";
|
|
800
|
+
const _aRna = "analysisRule";
|
|
801
|
+
const _aT = "analysisTemplate";
|
|
802
|
+
const _aTA = "analysisTemplateArns";
|
|
803
|
+
const _aTAn = "analysisTemplateArn";
|
|
804
|
+
const _aTI = "analysisTemplateIdentifier";
|
|
805
|
+
const _aTS = "analysisTemplateSummaries";
|
|
806
|
+
const _aTg = "aggregationType";
|
|
807
|
+
const _aTn = "analysisType";
|
|
808
|
+
const _aUADC = "allowUseAsDimensionColumn";
|
|
809
|
+
const _ab = "abilities";
|
|
810
|
+
const _ac = "action";
|
|
811
|
+
const _ag = "aggregations";
|
|
812
|
+
const _agg = "aggregation";
|
|
813
|
+
const _ap = "approvals";
|
|
814
|
+
const _ar = "artifacts";
|
|
815
|
+
const _at = "athena";
|
|
816
|
+
const _b = "budget";
|
|
817
|
+
const _bP = "budgetParameters";
|
|
818
|
+
const _bRU = "billedResourceUtilization";
|
|
819
|
+
const _bT = "budgetType";
|
|
820
|
+
const _bu = "bucket";
|
|
821
|
+
const _c = "client";
|
|
822
|
+
const _cA = "collaborationArn";
|
|
823
|
+
const _cAI = "creatorAccountId";
|
|
824
|
+
const _cAMA = "configuredAudienceModelArn";
|
|
825
|
+
const _cAMAI = "configuredAudienceModelAssociationIdentifier";
|
|
826
|
+
const _cAMAN = "configuredAudienceModelAssociationName";
|
|
827
|
+
const _cAMAS = "configuredAudienceModelAssociationSummaries";
|
|
828
|
+
const _cAMAo = "configuredAudienceModelAssociation";
|
|
829
|
+
const _cAT = "collaborationAnalysisTemplates";
|
|
830
|
+
const _cATS = "collaborationAnalysisTemplateSummaries";
|
|
831
|
+
const _cATo = "collaborationAnalysisTemplate";
|
|
832
|
+
const _cC = "columnClassification";
|
|
833
|
+
const _cCAI = "collaborationCreatorAccountId";
|
|
834
|
+
const _cCAMA = "collaborationConfiguredAudienceModelAssociation";
|
|
835
|
+
const _cCAMAS = "collaborationConfiguredAudienceModelAssociationSummaries";
|
|
836
|
+
const _cCDN = "collaborationCreatorDisplayName";
|
|
837
|
+
const _cCR = "collaborationChangeRequest";
|
|
838
|
+
const _cCRS = "collaborationChangeRequestSummaries";
|
|
839
|
+
const _cCo = "computeConfiguration";
|
|
840
|
+
const _cD = "configurationDetails";
|
|
841
|
+
const _cDN = "creatorDisplayName";
|
|
842
|
+
const _cI = "collaborationId";
|
|
843
|
+
const _cINA = "collaborationIdNamespaceAssociation";
|
|
844
|
+
const _cINAS = "collaborationIdNamespaceAssociationSummaries";
|
|
845
|
+
const _cIo = "collaborationIdentifier";
|
|
846
|
+
const _cL = "collaborationList";
|
|
847
|
+
const _cM = "columnMapping";
|
|
848
|
+
const _cMA = "creatorMemberAbilities";
|
|
849
|
+
const _cMLMA = "creatorMLMemberAbilities";
|
|
850
|
+
const _cMLMAu = "customMLMemberAbilities";
|
|
851
|
+
const _cN = "columnNames";
|
|
852
|
+
const _cNa = "catalogName";
|
|
853
|
+
const _cNo = "columnName";
|
|
854
|
+
const _cNol = "collaborationName";
|
|
855
|
+
const _cP = "collaborationPolicy";
|
|
856
|
+
const _cPBS = "collaborationPrivacyBudgetSummaries";
|
|
857
|
+
const _cPBT = "collaborationPrivacyBudgetTemplate";
|
|
858
|
+
const _cPBTS = "collaborationPrivacyBudgetTemplateSummaries";
|
|
859
|
+
const _cPC = "creatorPaymentConfiguration";
|
|
860
|
+
const _cPo = "consolidatedPolicy";
|
|
861
|
+
const _cRI = "changeRequestIdentifier";
|
|
862
|
+
const _cT = "createTime";
|
|
863
|
+
const _cTA = "configuredTableArn";
|
|
864
|
+
const _cTAA = "configuredTableAssociationArn";
|
|
865
|
+
const _cTAI = "configuredTableAssociationId";
|
|
866
|
+
const _cTAIo = "configuredTableAssociationIdentifier";
|
|
867
|
+
const _cTAS = "configuredTableAssociationSummaries";
|
|
868
|
+
const _cTAo = "configuredTableAssociation";
|
|
869
|
+
const _cTI = "configuredTableId";
|
|
870
|
+
const _cTIo = "configuredTableIdentifier";
|
|
871
|
+
const _cTS = "configuredTableSummaries";
|
|
872
|
+
const _cTo = "configuredTable";
|
|
873
|
+
const _cTol = "columnType";
|
|
874
|
+
const _ch = "changes";
|
|
875
|
+
const _co = "code";
|
|
876
|
+
const _col = "collaboration";
|
|
877
|
+
const _colu = "columns";
|
|
878
|
+
const _con = "configurations";
|
|
879
|
+
const _cu = "custom";
|
|
880
|
+
const _d = "details";
|
|
881
|
+
const _dACD = "directAnalysisConfigurationDetails";
|
|
882
|
+
const _dC = "dimensionColumns";
|
|
883
|
+
const _dEM = "dataEncryptionMetadata";
|
|
884
|
+
const _dJRC = "defaultJobResultConfiguration";
|
|
885
|
+
const _dN = "databaseName";
|
|
886
|
+
const _dNi = "displayName";
|
|
887
|
+
const _dOC = "disallowedOutputColumns";
|
|
888
|
+
const _dP = "differentialPrivacy";
|
|
889
|
+
const _dRC = "defaultResultConfiguration";
|
|
890
|
+
const _dV = "defaultValue";
|
|
891
|
+
const _de = "description";
|
|
892
|
+
const _di = "distribute";
|
|
893
|
+
const _e = "error";
|
|
894
|
+
const _eMC = "errorMessageConfiguration";
|
|
895
|
+
const _eP = "entryPoint";
|
|
896
|
+
const _ePH = "entryPointHash";
|
|
897
|
+
const _eT = "endTime";
|
|
898
|
+
const _ep = "epsilon";
|
|
899
|
+
const _er = "errors";
|
|
900
|
+
const _f = "function";
|
|
901
|
+
const _fL = "fieldList";
|
|
902
|
+
const _fo = "format";
|
|
903
|
+
const _g = "glue";
|
|
904
|
+
const _h = "http";
|
|
905
|
+
const _hE = "httpError";
|
|
906
|
+
const _hQ = "httpQuery";
|
|
907
|
+
const _i = "id";
|
|
908
|
+
const _iAA = "isAutoApproved";
|
|
909
|
+
const _iMC = "idMappingConfig";
|
|
910
|
+
const _iME = "isMetricsEnabled";
|
|
911
|
+
const _iMJI = "idMappingJobId";
|
|
912
|
+
const _iMT = "idMappingTable";
|
|
913
|
+
const _iMTI = "idMappingTableIdentifier";
|
|
914
|
+
const _iMTIS = "idMappingTableInputSource";
|
|
915
|
+
const _iMTS = "idMappingTableSummaries";
|
|
916
|
+
const _iMWS = "idMappingWorkflowsSupported";
|
|
917
|
+
const _iNA = "idNamespaceAssociation";
|
|
918
|
+
const _iNAI = "idNamespaceAssociationIdentifier";
|
|
919
|
+
const _iNAId = "idNamespaceAssociationId";
|
|
920
|
+
const _iNAS = "idNamespaceAssociationSummaries";
|
|
921
|
+
const _iNT = "idNamespaceType";
|
|
922
|
+
const _iPV = "isPredictiveValue";
|
|
923
|
+
const _iR = "isResponsible";
|
|
924
|
+
const _iRA = "inputReferenceArn";
|
|
925
|
+
const _iRC = "inputReferenceConfig";
|
|
926
|
+
const _iRP = "inputReferenceProperties";
|
|
927
|
+
const _iSD = "isSyntheticData";
|
|
928
|
+
const _jC = "joinColumns";
|
|
929
|
+
const _jCPAI = "jobComputePayerAccountId";
|
|
930
|
+
const _jCo = "jobCompute";
|
|
931
|
+
const _jLS = "jobLogStatus";
|
|
932
|
+
const _jP = "jobParameters";
|
|
933
|
+
const _jR = "joinRequired";
|
|
934
|
+
const _jT = "jobType";
|
|
935
|
+
const _k = "key";
|
|
936
|
+
const _kKA = "kmsKeyArn";
|
|
937
|
+
const _kP = "keyPrefix";
|
|
938
|
+
const _l = "location";
|
|
939
|
+
const _lC = "listColumns";
|
|
940
|
+
const _li = "list";
|
|
941
|
+
const _lo = "locations";
|
|
942
|
+
const _m = "message";
|
|
943
|
+
const _mA = "membershipArn";
|
|
944
|
+
const _mAe = "memberAbilities";
|
|
945
|
+
const _mAl = "mlAbilities";
|
|
946
|
+
const _mC = "maxCount";
|
|
947
|
+
const _mCV = "minColumnValue";
|
|
948
|
+
const _mCVa = "maxColumnValue";
|
|
949
|
+
const _mI = "membershipId";
|
|
950
|
+
const _mIe = "membershipIdentifier";
|
|
951
|
+
const _mIo = "modelInference";
|
|
952
|
+
const _mL = "machineLearning";
|
|
953
|
+
const _mLe = "memberList";
|
|
954
|
+
const _mMA = "mlMemberAbilities";
|
|
955
|
+
const _mMIAS = "maxMembershipInferenceAttackScore";
|
|
956
|
+
const _mPC = "membershipPaymentConfiguration";
|
|
957
|
+
const _mR = "maxResults";
|
|
958
|
+
const _mRP = "manageResourcePolicies";
|
|
959
|
+
const _mS = "memberStatus";
|
|
960
|
+
const _mSDP = "mlSyntheticDataParameters";
|
|
961
|
+
const _mSe = "membershipSummaries";
|
|
962
|
+
const _mSem = "memberSummaries";
|
|
963
|
+
const _mT = "modelTraining";
|
|
964
|
+
const _me = "members";
|
|
965
|
+
const _mem = "membership";
|
|
966
|
+
const _memb = "member";
|
|
967
|
+
const _mi = "minimum";
|
|
968
|
+
const _n = "name";
|
|
969
|
+
const _nT = "nextToken";
|
|
970
|
+
const _na = "names";
|
|
971
|
+
const _nu = "number";
|
|
972
|
+
const _o = "output";
|
|
973
|
+
const _oC = "outputConstraints";
|
|
974
|
+
const _oCu = "outputConfiguration";
|
|
975
|
+
const _oL = "outputLocation";
|
|
976
|
+
const _p = "policy";
|
|
977
|
+
const _pBS = "privacyBudgetSummaries";
|
|
978
|
+
const _pBT = "privacyBudgetType";
|
|
979
|
+
const _pBTA = "privacyBudgetTemplateArn";
|
|
980
|
+
const _pBTI = "privacyBudgetTemplateId";
|
|
981
|
+
const _pBTIr = "privacyBudgetTemplateIdentifier";
|
|
982
|
+
const _pBTS = "privacyBudgetTemplateSummaries";
|
|
983
|
+
const _pBTr = "privacyBudgetTemplate";
|
|
984
|
+
const _pC = "paymentConfiguration";
|
|
985
|
+
const _pI = "privacyImpact";
|
|
986
|
+
const _pJ = "protectedJob";
|
|
987
|
+
const _pJI = "protectedJobIdentifier";
|
|
988
|
+
const _pJr = "protectedJobs";
|
|
989
|
+
const _pK = "partitionKeys";
|
|
990
|
+
const _pN = "preserveNulls";
|
|
991
|
+
const _pQ = "protectedQuery";
|
|
992
|
+
const _pQI = "protectedQueryIdentifier";
|
|
993
|
+
const _pQr = "protectedQueries";
|
|
994
|
+
const _pa = "parameters";
|
|
995
|
+
const _pr = "properties";
|
|
996
|
+
const _qC = "queryConstraints";
|
|
997
|
+
const _qCPAI = "queryComputePayerAccountId";
|
|
998
|
+
const _qCu = "queryCompute";
|
|
999
|
+
const _qLS = "queryLogStatus";
|
|
1000
|
+
const _qN = "quotaName";
|
|
1001
|
+
const _qS = "queryString";
|
|
1002
|
+
const _qV = "quotaValue";
|
|
1003
|
+
const _r = "reason";
|
|
1004
|
+
const _rA = "resourceArn";
|
|
1005
|
+
const _rAI = "receiverAccountIds";
|
|
1006
|
+
const _rAo = "roleArn";
|
|
1007
|
+
const _rB = "remainingBudget";
|
|
1008
|
+
const _rC = "remainingCount";
|
|
1009
|
+
const _rCe = "resultConfiguration";
|
|
1010
|
+
const _rCec = "receiverConfigurations";
|
|
1011
|
+
const _rF = "resultFormat";
|
|
1012
|
+
const _rI = "resourceId";
|
|
1013
|
+
const _rO = "requireOverlap";
|
|
1014
|
+
const _rT = "resourceType";
|
|
1015
|
+
const _rTe = "referencedTables";
|
|
1016
|
+
const _re = "reasons";
|
|
1017
|
+
const _reg = "region";
|
|
1018
|
+
const _res = "result";
|
|
1019
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.cleanrooms";
|
|
1020
|
+
const _sA = "secretArn";
|
|
1021
|
+
const _sAM = "selectedAnalysisMethods";
|
|
1022
|
+
const _sARR = "schemaAnalysisRuleRequests";
|
|
1023
|
+
const _sDG = "syntheticDataGeneration";
|
|
1024
|
+
const _sDP = "syntheticDataParameters";
|
|
1025
|
+
const _sF = "scalarFunctions";
|
|
1026
|
+
const _sFO = "singleFileOutput";
|
|
1027
|
+
const _sM = "sourceMetadata";
|
|
1028
|
+
const _sN = "schemaName";
|
|
1029
|
+
const _sP = "sensitivityParameters";
|
|
1030
|
+
const _sPq = "sqlParameters";
|
|
1031
|
+
const _sS = "schemaSummaries";
|
|
1032
|
+
const _sSD = "schemaStatusDetails";
|
|
1033
|
+
const _sT = "startTime";
|
|
1034
|
+
const _sTP = "schemaTypeProperties";
|
|
1035
|
+
const _sTc = "schemaType";
|
|
1036
|
+
const _sTp = "specificationType";
|
|
1037
|
+
const _s_ = "s3";
|
|
1038
|
+
const _sc = "schema";
|
|
1039
|
+
const _sch = "schemas";
|
|
1040
|
+
const _se = "server";
|
|
1041
|
+
const _sh = "sha256";
|
|
1042
|
+
const _sn = "snowflake";
|
|
1043
|
+
const _so = "source";
|
|
1044
|
+
const _sp = "specification";
|
|
1045
|
+
const _spa = "spark";
|
|
1046
|
+
const _st = "status";
|
|
1047
|
+
const _sta = "statistics";
|
|
1048
|
+
const _t = "type";
|
|
1049
|
+
const _tDIM = "totalDurationInMillis";
|
|
1050
|
+
const _tK = "tagKeys";
|
|
1051
|
+
const _tN = "tableName";
|
|
1052
|
+
const _tR = "tableReference";
|
|
1053
|
+
const _tS = "tableSchema";
|
|
1054
|
+
const _tSa = "targetStatus";
|
|
1055
|
+
const _ta = "tags";
|
|
1056
|
+
const _te = "text";
|
|
1057
|
+
const _ty = "types";
|
|
1058
|
+
const _u = "units";
|
|
1059
|
+
const _uCL = "userContributionLimit";
|
|
1060
|
+
const _uNPQ = "usersNoisePerQuery";
|
|
1061
|
+
const _uT = "updateTime";
|
|
1062
|
+
const _v = "validations";
|
|
1063
|
+
const _v_ = "v1";
|
|
1064
|
+
const _w = "worker";
|
|
1065
|
+
const _wG = "workGroup";
|
|
1066
|
+
const n0 = "com.amazonaws.cleanrooms";
|
|
1067
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
1068
|
+
var CleanRoomsServiceException$ = [-3, _s, "CleanRoomsServiceException", 0, [], []];
|
|
1069
|
+
_s_registry.registerError(CleanRoomsServiceException$, CleanRoomsServiceException);
|
|
1070
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
1071
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
1072
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
1073
|
+
[_m, _r],
|
|
1074
|
+
[0, 0]
|
|
1075
|
+
];
|
|
1076
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
1077
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
1078
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
1079
|
+
[_m, _rI, _rT, _r],
|
|
1080
|
+
[0, 0, 0, 0]
|
|
1081
|
+
];
|
|
1082
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
1083
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
1084
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
1085
|
+
[_m],
|
|
1086
|
+
[0]
|
|
1087
|
+
];
|
|
1088
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
1089
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1090
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1091
|
+
[_m, _rI, _rT],
|
|
1092
|
+
[0, 0, 0], 3
|
|
1093
|
+
];
|
|
1094
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1095
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1096
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
1097
|
+
[_m, _qN, _qV],
|
|
1098
|
+
[0, 0, 1], 3
|
|
1099
|
+
];
|
|
1100
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1101
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
1102
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
1103
|
+
[_m],
|
|
1104
|
+
[0]
|
|
1105
|
+
];
|
|
1106
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
1107
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
1108
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1109
|
+
[_m, _r, _fL],
|
|
1110
|
+
[0, 0, () => ValidationExceptionFieldList]
|
|
1111
|
+
];
|
|
1112
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
1113
|
+
const errorTypeRegistries = [
|
|
1114
|
+
_s_registry,
|
|
1115
|
+
n0_registry,
|
|
1116
|
+
];
|
|
1117
|
+
var AnalysisTemplateText = [0, n0, _ATT, 8, 0];
|
|
1118
|
+
var AccessBudget$ = [3, n0, _AB,
|
|
1119
|
+
0,
|
|
1120
|
+
[_rA, _d, _aRB],
|
|
1121
|
+
[0, () => AccessBudgetDetailsList, 1], 3
|
|
1122
|
+
];
|
|
1123
|
+
var AccessBudgetDetails$ = [3, n0, _ABD,
|
|
1124
|
+
0,
|
|
1125
|
+
[_sT, _rB, _b, _bT, _eT, _aR],
|
|
1126
|
+
[4, 1, 1, 0, 4, 0], 4
|
|
1127
|
+
];
|
|
1128
|
+
var AccessBudgetsPrivacyTemplateParametersInput$ = [3, n0, _ABPTPI,
|
|
1129
|
+
0,
|
|
1130
|
+
[_bP, _rA],
|
|
1131
|
+
[() => BudgetParameters, 0], 2
|
|
1132
|
+
];
|
|
1133
|
+
var AccessBudgetsPrivacyTemplateParametersOutput$ = [3, n0, _ABPTPO,
|
|
1134
|
+
0,
|
|
1135
|
+
[_bP, _rA],
|
|
1136
|
+
[() => BudgetParameters, 0], 2
|
|
1137
|
+
];
|
|
1138
|
+
var AccessBudgetsPrivacyTemplateUpdateParameters$ = [3, n0, _ABPTUP,
|
|
1139
|
+
0,
|
|
1140
|
+
[_bP],
|
|
1141
|
+
[() => BudgetParameters], 1
|
|
1142
|
+
];
|
|
1143
|
+
var AggregateColumn$ = [3, n0, _AC,
|
|
1144
|
+
0,
|
|
1145
|
+
[_cN, _f],
|
|
1146
|
+
[64 | 0, 0], 2
|
|
1147
|
+
];
|
|
1148
|
+
var AggregationConstraint$ = [3, n0, _ACg,
|
|
1149
|
+
0,
|
|
1150
|
+
[_cNo, _mi, _t],
|
|
1151
|
+
[0, 1, 0], 3
|
|
1152
|
+
];
|
|
1153
|
+
var AnalysisParameter$ = [3, n0, _AP,
|
|
1154
|
+
8,
|
|
1155
|
+
[_n, _t, _dV],
|
|
1156
|
+
[0, 0, 0], 2
|
|
1157
|
+
];
|
|
1158
|
+
var AnalysisRule$ = [3, n0, _AR,
|
|
1159
|
+
0,
|
|
1160
|
+
[_cI, _t, _n, _cT, _uT, _p, _cP, _cPo],
|
|
1161
|
+
[0, 0, 0, 4, 4, () => AnalysisRulePolicy$, () => ConfiguredTableAssociationAnalysisRulePolicy$, () => ConsolidatedPolicy$], 6
|
|
1162
|
+
];
|
|
1163
|
+
var AnalysisRuleAggregation$ = [3, n0, _ARA,
|
|
1164
|
+
0,
|
|
1165
|
+
[_aC, _jC, _dC, _sF, _oC, _jR, _aJO, _aA],
|
|
1166
|
+
[() => AggregateColumnList, 64 | 0, 64 | 0, 64 | 0, () => AggregationConstraints, 0, 64 | 0, 0], 5
|
|
1167
|
+
];
|
|
1168
|
+
var AnalysisRuleCustom$ = [3, n0, _ARC,
|
|
1169
|
+
0,
|
|
1170
|
+
[_aAl, _aAP, _aA, _dOC, _dP],
|
|
1171
|
+
[64 | 0, 64 | 0, 0, 64 | 0, () => DifferentialPrivacyConfiguration$], 1
|
|
1172
|
+
];
|
|
1173
|
+
var AnalysisRuleIdMappingTable$ = [3, n0, _ARIMT,
|
|
1174
|
+
0,
|
|
1175
|
+
[_jC, _qC, _dC],
|
|
1176
|
+
[64 | 0, () => QueryConstraintList, 64 | 0], 2
|
|
1177
|
+
];
|
|
1178
|
+
var AnalysisRuleList$ = [3, n0, _ARL,
|
|
1179
|
+
0,
|
|
1180
|
+
[_jC, _lC, _aJO, _aA],
|
|
1181
|
+
[64 | 0, 64 | 0, 64 | 0, 0], 2
|
|
1182
|
+
];
|
|
1183
|
+
var AnalysisSchema$ = [3, n0, _AS,
|
|
1184
|
+
0,
|
|
1185
|
+
[_rTe],
|
|
1186
|
+
[64 | 0]
|
|
1187
|
+
];
|
|
1188
|
+
var AnalysisTemplate$ = [3, n0, _AT,
|
|
1189
|
+
0,
|
|
1190
|
+
[_i, _a, _cI, _cA, _mI, _mA, _n, _cT, _uT, _sc, _fo, _so, _de, _sM, _aP, _v, _eMC, _sDP],
|
|
1191
|
+
[0, 0, 0, 0, 0, 0, 0, 4, 4, () => AnalysisSchema$, 0, [() => AnalysisSource$, 0], 0, () => AnalysisSourceMetadata$, [() => AnalysisParameterList, 0], () => AnalysisTemplateValidationStatusDetailList, () => ErrorMessageConfiguration$, () => SyntheticDataParameters$], 12
|
|
1192
|
+
];
|
|
1193
|
+
var AnalysisTemplateArtifact$ = [3, n0, _ATA,
|
|
1194
|
+
0,
|
|
1195
|
+
[_l],
|
|
1196
|
+
[() => S3Location$], 1
|
|
1197
|
+
];
|
|
1198
|
+
var AnalysisTemplateArtifactMetadata$ = [3, n0, _ATAM,
|
|
1199
|
+
0,
|
|
1200
|
+
[_ePH, _aAH],
|
|
1201
|
+
[() => Hash$, () => HashList], 1
|
|
1202
|
+
];
|
|
1203
|
+
var AnalysisTemplateArtifacts$ = [3, n0, _ATAn,
|
|
1204
|
+
0,
|
|
1205
|
+
[_eP, _rAo, _aAd],
|
|
1206
|
+
[() => AnalysisTemplateArtifact$, 0, () => AnalysisTemplateArtifactList], 2
|
|
1207
|
+
];
|
|
1208
|
+
var AnalysisTemplateSummary$ = [3, n0, _ATS,
|
|
1209
|
+
0,
|
|
1210
|
+
[_a, _cT, _i, _n, _uT, _mA, _mI, _cA, _cI, _de, _iSD],
|
|
1211
|
+
[0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 2], 9
|
|
1212
|
+
];
|
|
1213
|
+
var AnalysisTemplateValidationStatusDetail$ = [3, n0, _ATVSD,
|
|
1214
|
+
0,
|
|
1215
|
+
[_t, _st, _re],
|
|
1216
|
+
[0, 0, () => AnalysisTemplateValidationStatusReasonList], 2
|
|
1217
|
+
];
|
|
1218
|
+
var AnalysisTemplateValidationStatusReason$ = [3, n0, _ATVSR,
|
|
1219
|
+
0,
|
|
1220
|
+
[_m],
|
|
1221
|
+
[0], 1
|
|
1222
|
+
];
|
|
1223
|
+
var ApprovalStatusDetails$ = [3, n0, _ASD,
|
|
1224
|
+
0,
|
|
1225
|
+
[_st],
|
|
1226
|
+
[0], 1
|
|
1227
|
+
];
|
|
1228
|
+
var AthenaTableReference$ = [3, n0, _ATR,
|
|
1229
|
+
0,
|
|
1230
|
+
[_wG, _dN, _tN, _reg, _oL, _cNa],
|
|
1231
|
+
[0, 0, 0, 0, 0, 0], 3
|
|
1232
|
+
];
|
|
1233
|
+
var BatchGetCollaborationAnalysisTemplateError$ = [3, n0, _BGCATE,
|
|
1234
|
+
0,
|
|
1235
|
+
[_a, _co, _m],
|
|
1236
|
+
[0, 0, 0], 3
|
|
1237
|
+
];
|
|
1238
|
+
var BatchGetCollaborationAnalysisTemplateInput$ = [3, n0, _BGCATI,
|
|
1239
|
+
0,
|
|
1240
|
+
[_cIo, _aTA],
|
|
1241
|
+
[[0, 1], 64 | 0], 2
|
|
1242
|
+
];
|
|
1243
|
+
var BatchGetCollaborationAnalysisTemplateOutput$ = [3, n0, _BGCATO,
|
|
1244
|
+
0,
|
|
1245
|
+
[_cAT, _er],
|
|
1246
|
+
[[() => CollaborationAnalysisTemplateList, 0], () => BatchGetCollaborationAnalysisTemplateErrorList], 2
|
|
1247
|
+
];
|
|
1248
|
+
var BatchGetSchemaAnalysisRuleError$ = [3, n0, _BGSARE,
|
|
1249
|
+
0,
|
|
1250
|
+
[_n, _t, _co, _m],
|
|
1251
|
+
[0, 0, 0, 0], 4
|
|
1252
|
+
];
|
|
1253
|
+
var BatchGetSchemaAnalysisRuleInput$ = [3, n0, _BGSARI,
|
|
1254
|
+
0,
|
|
1255
|
+
[_cIo, _sARR],
|
|
1256
|
+
[[0, 1], () => SchemaAnalysisRuleRequestList], 2
|
|
1257
|
+
];
|
|
1258
|
+
var BatchGetSchemaAnalysisRuleOutput$ = [3, n0, _BGSARO,
|
|
1259
|
+
0,
|
|
1260
|
+
[_aRn, _er],
|
|
1261
|
+
[() => SchemaAnalysisRuleList, () => BatchGetSchemaAnalysisRuleErrorList], 2
|
|
1262
|
+
];
|
|
1263
|
+
var BatchGetSchemaError$ = [3, n0, _BGSE,
|
|
1264
|
+
0,
|
|
1265
|
+
[_n, _co, _m],
|
|
1266
|
+
[0, 0, 0], 3
|
|
1267
|
+
];
|
|
1268
|
+
var BatchGetSchemaInput$ = [3, n0, _BGSI,
|
|
1269
|
+
0,
|
|
1270
|
+
[_cIo, _na],
|
|
1271
|
+
[[0, 1], 64 | 0], 2
|
|
1272
|
+
];
|
|
1273
|
+
var BatchGetSchemaOutput$ = [3, n0, _BGSO,
|
|
1274
|
+
0,
|
|
1275
|
+
[_sch, _er],
|
|
1276
|
+
[() => SchemaList, () => BatchGetSchemaErrorList], 2
|
|
1277
|
+
];
|
|
1278
|
+
var BilledJobResourceUtilization$ = [3, n0, _BJRU,
|
|
1279
|
+
0,
|
|
1280
|
+
[_u],
|
|
1281
|
+
[1], 1
|
|
1282
|
+
];
|
|
1283
|
+
var BilledResourceUtilization$ = [3, n0, _BRU,
|
|
1284
|
+
0,
|
|
1285
|
+
[_u],
|
|
1286
|
+
[1], 1
|
|
1287
|
+
];
|
|
1288
|
+
var BudgetParameter$ = [3, n0, _BP,
|
|
1289
|
+
0,
|
|
1290
|
+
[_t, _b, _aR],
|
|
1291
|
+
[0, 1, 0], 2
|
|
1292
|
+
];
|
|
1293
|
+
var Change$ = [3, n0, _C,
|
|
1294
|
+
0,
|
|
1295
|
+
[_sTp, _sp, _ty],
|
|
1296
|
+
[0, () => ChangeSpecification$, 64 | 0], 3
|
|
1297
|
+
];
|
|
1298
|
+
var ChangeInput$ = [3, n0, _CI,
|
|
1299
|
+
0,
|
|
1300
|
+
[_sTp, _sp],
|
|
1301
|
+
[0, () => ChangeSpecification$], 2
|
|
1302
|
+
];
|
|
1303
|
+
var Collaboration$ = [3, n0, _Co,
|
|
1304
|
+
0,
|
|
1305
|
+
[_i, _a, _n, _cAI, _cDN, _cT, _uT, _mS, _qLS, _de, _mI, _mA, _dEM, _jLS, _aE, _aACT, _aRR, _iME],
|
|
1306
|
+
[0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, () => DataEncryptionMetadata$, 0, 0, 64 | 0, 64 | 0, 2], 9
|
|
1307
|
+
];
|
|
1308
|
+
var CollaborationAnalysisTemplate$ = [3, n0, _CAT,
|
|
1309
|
+
0,
|
|
1310
|
+
[_i, _a, _cI, _cA, _cAI, _n, _cT, _uT, _sc, _fo, _de, _so, _sM, _aP, _v, _eMC, _sDP],
|
|
1311
|
+
[0, 0, 0, 0, 0, 0, 4, 4, () => AnalysisSchema$, 0, 0, [() => AnalysisSource$, 0], () => AnalysisSourceMetadata$, [() => AnalysisParameterList, 0], () => AnalysisTemplateValidationStatusDetailList, () => ErrorMessageConfiguration$, () => SyntheticDataParameters$], 10
|
|
1312
|
+
];
|
|
1313
|
+
var CollaborationAnalysisTemplateSummary$ = [3, n0, _CATS,
|
|
1314
|
+
0,
|
|
1315
|
+
[_a, _cT, _i, _n, _uT, _cA, _cI, _cAI, _de, _iSD],
|
|
1316
|
+
[0, 4, 0, 0, 4, 0, 0, 0, 0, 2], 8
|
|
1317
|
+
];
|
|
1318
|
+
var CollaborationChangeRequest$ = [3, n0, _CCR,
|
|
1319
|
+
0,
|
|
1320
|
+
[_i, _cI, _cT, _uT, _st, _iAA, _ch, _ap],
|
|
1321
|
+
[0, 0, 4, 4, 0, 2, () => ChangeList, () => ApprovalStatuses], 7
|
|
1322
|
+
];
|
|
1323
|
+
var CollaborationChangeRequestSummary$ = [3, n0, _CCRS,
|
|
1324
|
+
0,
|
|
1325
|
+
[_i, _cI, _cT, _uT, _st, _iAA, _ch, _ap],
|
|
1326
|
+
[0, 0, 4, 4, 0, 2, () => ChangeList, () => ApprovalStatuses], 7
|
|
1327
|
+
];
|
|
1328
|
+
var CollaborationChangeSpecification$ = [3, n0, _CCS,
|
|
1329
|
+
0,
|
|
1330
|
+
[_aACT],
|
|
1331
|
+
[64 | 0]
|
|
1332
|
+
];
|
|
1333
|
+
var CollaborationConfiguredAudienceModelAssociation$ = [3, n0, _CCAMA,
|
|
1334
|
+
0,
|
|
1335
|
+
[_i, _a, _cI, _cA, _cAMA, _n, _cAI, _cT, _uT, _de],
|
|
1336
|
+
[0, 0, 0, 0, 0, 0, 0, 4, 4, 0], 9
|
|
1337
|
+
];
|
|
1338
|
+
var CollaborationConfiguredAudienceModelAssociationSummary$ = [3, n0, _CCAMAS,
|
|
1339
|
+
0,
|
|
1340
|
+
[_a, _cT, _i, _n, _uT, _cA, _cI, _cAI, _de],
|
|
1341
|
+
[0, 4, 0, 0, 4, 0, 0, 0, 0], 8
|
|
1342
|
+
];
|
|
1343
|
+
var CollaborationIdNamespaceAssociation$ = [3, n0, _CINA,
|
|
1344
|
+
0,
|
|
1345
|
+
[_i, _a, _cI, _cA, _n, _cAI, _cT, _uT, _iRC, _iRP, _de, _iMC],
|
|
1346
|
+
[0, 0, 0, 0, 0, 0, 4, 4, () => IdNamespaceAssociationInputReferenceConfig$, () => IdNamespaceAssociationInputReferenceProperties$, 0, () => IdMappingConfig$], 10
|
|
1347
|
+
];
|
|
1348
|
+
var CollaborationIdNamespaceAssociationSummary$ = [3, n0, _CINAS,
|
|
1349
|
+
0,
|
|
1350
|
+
[_a, _cT, _i, _uT, _cA, _cI, _cAI, _iRC, _n, _iRP, _de],
|
|
1351
|
+
[0, 4, 0, 4, 0, 0, 0, () => IdNamespaceAssociationInputReferenceConfig$, 0, () => IdNamespaceAssociationInputReferencePropertiesSummary$, 0], 10
|
|
1352
|
+
];
|
|
1353
|
+
var CollaborationPrivacyBudgetSummary$ = [3, n0, _CPBS,
|
|
1354
|
+
0,
|
|
1355
|
+
[_i, _pBTI, _pBTA, _cI, _cA, _cAI, _t, _cT, _uT, _b],
|
|
1356
|
+
[0, 0, 0, 0, 0, 0, 0, 4, 4, () => PrivacyBudget$], 10
|
|
1357
|
+
];
|
|
1358
|
+
var CollaborationPrivacyBudgetTemplate$ = [3, n0, _CPBT,
|
|
1359
|
+
0,
|
|
1360
|
+
[_i, _a, _cI, _cA, _cAI, _cT, _uT, _pBT, _aR, _pa],
|
|
1361
|
+
[0, 0, 0, 0, 0, 4, 4, 0, 0, () => PrivacyBudgetTemplateParametersOutput$], 10
|
|
1362
|
+
];
|
|
1363
|
+
var CollaborationPrivacyBudgetTemplateSummary$ = [3, n0, _CPBTS,
|
|
1364
|
+
0,
|
|
1365
|
+
[_i, _a, _cI, _cA, _cAI, _pBT, _cT, _uT],
|
|
1366
|
+
[0, 0, 0, 0, 0, 0, 4, 4], 8
|
|
1367
|
+
];
|
|
1368
|
+
var CollaborationSummary$ = [3, n0, _CS,
|
|
1369
|
+
0,
|
|
1370
|
+
[_i, _a, _n, _cAI, _cDN, _cT, _uT, _mS, _mI, _mA, _aE],
|
|
1371
|
+
[0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0], 8
|
|
1372
|
+
];
|
|
1373
|
+
var Column$ = [3, n0, _Col,
|
|
1374
|
+
0,
|
|
1375
|
+
[_n, _t],
|
|
1376
|
+
[0, 0], 2
|
|
1377
|
+
];
|
|
1378
|
+
var ColumnClassificationDetails$ = [3, n0, _CCD,
|
|
1379
|
+
0,
|
|
1380
|
+
[_cM],
|
|
1381
|
+
[() => ColumnMappingList], 1
|
|
1382
|
+
];
|
|
1383
|
+
var ConfiguredAudienceModelAssociation$ = [3, n0, _CAMA,
|
|
1384
|
+
0,
|
|
1385
|
+
[_i, _a, _cAMA, _mI, _mA, _cI, _cA, _n, _mRP, _cT, _uT, _de],
|
|
1386
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 0], 11
|
|
1387
|
+
];
|
|
1388
|
+
var ConfiguredAudienceModelAssociationSummary$ = [3, n0, _CAMAS,
|
|
1389
|
+
0,
|
|
1390
|
+
[_mI, _mA, _cA, _cI, _cT, _uT, _i, _a, _n, _cAMA, _de],
|
|
1391
|
+
[0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0], 10
|
|
1392
|
+
];
|
|
1393
|
+
var ConfiguredTable$ = [3, n0, _CT,
|
|
1394
|
+
0,
|
|
1395
|
+
[_i, _a, _n, _tR, _cT, _uT, _aRT, _aM, _aCl, _de, _sAM],
|
|
1396
|
+
[0, 0, 0, () => TableReference$, 4, 4, 64 | 0, 0, 64 | 0, 0, 64 | 0], 9
|
|
1397
|
+
];
|
|
1398
|
+
var ConfiguredTableAnalysisRule$ = [3, n0, _CTAR,
|
|
1399
|
+
0,
|
|
1400
|
+
[_cTI, _cTA, _p, _t, _cT, _uT],
|
|
1401
|
+
[0, 0, () => ConfiguredTableAnalysisRulePolicy$, 0, 4, 4], 6
|
|
1402
|
+
];
|
|
1403
|
+
var ConfiguredTableAssociation$ = [3, n0, _CTA,
|
|
1404
|
+
0,
|
|
1405
|
+
[_a, _i, _cTI, _cTA, _mI, _mA, _rAo, _n, _cT, _uT, _de, _aRT],
|
|
1406
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 64 | 0], 10
|
|
1407
|
+
];
|
|
1408
|
+
var ConfiguredTableAssociationAnalysisRule$ = [3, n0, _CTAAR,
|
|
1409
|
+
0,
|
|
1410
|
+
[_mIe, _cTAI, _cTAA, _p, _t, _cT, _uT],
|
|
1411
|
+
[0, 0, 0, () => ConfiguredTableAssociationAnalysisRulePolicy$, 0, 4, 4], 7
|
|
1412
|
+
];
|
|
1413
|
+
var ConfiguredTableAssociationAnalysisRuleAggregation$ = [3, n0, _CTAARA,
|
|
1414
|
+
0,
|
|
1415
|
+
[_aRRl, _aAA],
|
|
1416
|
+
[64 | 0, 64 | 0]
|
|
1417
|
+
];
|
|
1418
|
+
var ConfiguredTableAssociationAnalysisRuleCustom$ = [3, n0, _CTAARC,
|
|
1419
|
+
0,
|
|
1420
|
+
[_aRRl, _aAA],
|
|
1421
|
+
[64 | 0, 64 | 0]
|
|
1422
|
+
];
|
|
1423
|
+
var ConfiguredTableAssociationAnalysisRuleList$ = [3, n0, _CTAARL,
|
|
1424
|
+
0,
|
|
1425
|
+
[_aRRl, _aAA],
|
|
1426
|
+
[64 | 0, 64 | 0]
|
|
1427
|
+
];
|
|
1428
|
+
var ConfiguredTableAssociationSummary$ = [3, n0, _CTAS,
|
|
1429
|
+
0,
|
|
1430
|
+
[_cTI, _mI, _mA, _n, _cT, _uT, _i, _a, _aRT],
|
|
1431
|
+
[0, 0, 0, 0, 4, 4, 0, 0, 64 | 0], 8
|
|
1432
|
+
];
|
|
1433
|
+
var ConfiguredTableSummary$ = [3, n0, _CTS,
|
|
1434
|
+
0,
|
|
1435
|
+
[_i, _a, _n, _cT, _uT, _aRT, _aM, _sAM],
|
|
1436
|
+
[0, 0, 0, 4, 4, 64 | 0, 0, 64 | 0], 7
|
|
1437
|
+
];
|
|
1438
|
+
var ConsolidatedPolicyAggregation$ = [3, n0, _CPA,
|
|
1439
|
+
0,
|
|
1440
|
+
[_aC, _jC, _dC, _sF, _oC, _jR, _aJO, _aA, _aRRl, _aAA],
|
|
1441
|
+
[() => AggregateColumnList, 64 | 0, 64 | 0, 64 | 0, () => AggregationConstraints, 0, 64 | 0, 0, 64 | 0, 64 | 0], 5
|
|
1442
|
+
];
|
|
1443
|
+
var ConsolidatedPolicyCustom$ = [3, n0, _CPC,
|
|
1444
|
+
0,
|
|
1445
|
+
[_aAl, _aAP, _aA, _dOC, _dP, _aRRl, _aAA],
|
|
1446
|
+
[64 | 0, 64 | 0, 0, 64 | 0, () => DifferentialPrivacyConfiguration$, 64 | 0, 64 | 0], 1
|
|
1447
|
+
];
|
|
1448
|
+
var ConsolidatedPolicyList$ = [3, n0, _CPL,
|
|
1449
|
+
0,
|
|
1450
|
+
[_jC, _lC, _aJO, _aA, _aRRl, _aAA],
|
|
1451
|
+
[64 | 0, 64 | 0, 64 | 0, 0, 64 | 0, 64 | 0], 2
|
|
1452
|
+
];
|
|
1453
|
+
var CreateAnalysisTemplateInput$ = [3, n0, _CATI,
|
|
1454
|
+
0,
|
|
1455
|
+
[_mIe, _n, _fo, _so, _de, _ta, _aP, _sc, _eMC, _sDP],
|
|
1456
|
+
[[0, 1], 0, 0, [() => AnalysisSource$, 0], 0, 128 | 0, [() => AnalysisParameterList, 0], () => AnalysisSchema$, () => ErrorMessageConfiguration$, () => SyntheticDataParameters$], 4
|
|
1457
|
+
];
|
|
1458
|
+
var CreateAnalysisTemplateOutput$ = [3, n0, _CATO,
|
|
1459
|
+
0,
|
|
1460
|
+
[_aT],
|
|
1461
|
+
[[() => AnalysisTemplate$, 0]], 1
|
|
1462
|
+
];
|
|
1463
|
+
var CreateCollaborationChangeRequestInput$ = [3, n0, _CCCRI,
|
|
1464
|
+
0,
|
|
1465
|
+
[_cIo, _ch],
|
|
1466
|
+
[[0, 1], () => ChangeInputList], 2
|
|
1467
|
+
];
|
|
1468
|
+
var CreateCollaborationChangeRequestOutput$ = [3, n0, _CCCRO,
|
|
1469
|
+
0,
|
|
1470
|
+
[_cCR],
|
|
1471
|
+
[() => CollaborationChangeRequest$], 1
|
|
1472
|
+
];
|
|
1473
|
+
var CreateCollaborationInput$ = [3, n0, _CCI,
|
|
1474
|
+
0,
|
|
1475
|
+
[_me, _n, _de, _cMA, _cDN, _qLS, _cMLMA, _dEM, _jLS, _ta, _cPC, _aE, _aACRT, _aRR, _iME],
|
|
1476
|
+
[() => MemberList, 0, 0, 64 | 0, 0, 0, () => MLMemberAbilities$, () => DataEncryptionMetadata$, 0, 128 | 0, () => PaymentConfiguration$, 0, 64 | 0, 64 | 0, 2], 6
|
|
1477
|
+
];
|
|
1478
|
+
var CreateCollaborationOutput$ = [3, n0, _CCO,
|
|
1479
|
+
0,
|
|
1480
|
+
[_col],
|
|
1481
|
+
[() => Collaboration$], 1
|
|
1482
|
+
];
|
|
1483
|
+
var CreateConfiguredAudienceModelAssociationInput$ = [3, n0, _CCAMAI,
|
|
1484
|
+
0,
|
|
1485
|
+
[_mIe, _cAMA, _cAMAN, _mRP, _ta, _de],
|
|
1486
|
+
[[0, 1], 0, 0, 2, 128 | 0, 0], 4
|
|
1487
|
+
];
|
|
1488
|
+
var CreateConfiguredAudienceModelAssociationOutput$ = [3, n0, _CCAMAO,
|
|
1489
|
+
0,
|
|
1490
|
+
[_cAMAo],
|
|
1491
|
+
[() => ConfiguredAudienceModelAssociation$], 1
|
|
1492
|
+
];
|
|
1493
|
+
var CreateConfiguredTableAnalysisRuleInput$ = [3, n0, _CCTARI,
|
|
1494
|
+
0,
|
|
1495
|
+
[_cTIo, _aRTn, _aRP],
|
|
1496
|
+
[[0, 1], 0, () => ConfiguredTableAnalysisRulePolicy$], 3
|
|
1497
|
+
];
|
|
1498
|
+
var CreateConfiguredTableAnalysisRuleOutput$ = [3, n0, _CCTARO,
|
|
1499
|
+
0,
|
|
1500
|
+
[_aRna],
|
|
1501
|
+
[() => ConfiguredTableAnalysisRule$], 1
|
|
1502
|
+
];
|
|
1503
|
+
var CreateConfiguredTableAssociationAnalysisRuleInput$ = [3, n0, _CCTAARI,
|
|
1504
|
+
0,
|
|
1505
|
+
[_mIe, _cTAIo, _aRTn, _aRP],
|
|
1506
|
+
[[0, 1], [0, 1], 0, () => ConfiguredTableAssociationAnalysisRulePolicy$], 4
|
|
1507
|
+
];
|
|
1508
|
+
var CreateConfiguredTableAssociationAnalysisRuleOutput$ = [3, n0, _CCTAARO,
|
|
1509
|
+
0,
|
|
1510
|
+
[_aRna],
|
|
1511
|
+
[() => ConfiguredTableAssociationAnalysisRule$], 1
|
|
1512
|
+
];
|
|
1513
|
+
var CreateConfiguredTableAssociationInput$ = [3, n0, _CCTAI,
|
|
1514
|
+
0,
|
|
1515
|
+
[_n, _mIe, _cTIo, _rAo, _de, _ta],
|
|
1516
|
+
[0, [0, 1], 0, 0, 0, 128 | 0], 4
|
|
1517
|
+
];
|
|
1518
|
+
var CreateConfiguredTableAssociationOutput$ = [3, n0, _CCTAO,
|
|
1519
|
+
0,
|
|
1520
|
+
[_cTAo],
|
|
1521
|
+
[() => ConfiguredTableAssociation$], 1
|
|
1522
|
+
];
|
|
1523
|
+
var CreateConfiguredTableInput$ = [3, n0, _CCTI,
|
|
1524
|
+
0,
|
|
1525
|
+
[_n, _tR, _aCl, _aM, _de, _sAM, _ta],
|
|
1526
|
+
[0, () => TableReference$, 64 | 0, 0, 0, 64 | 0, 128 | 0], 4
|
|
1527
|
+
];
|
|
1528
|
+
var CreateConfiguredTableOutput$ = [3, n0, _CCTO,
|
|
1529
|
+
0,
|
|
1530
|
+
[_cTo],
|
|
1531
|
+
[() => ConfiguredTable$], 1
|
|
1532
|
+
];
|
|
1533
|
+
var CreateIdMappingTableInput$ = [3, n0, _CIMTI,
|
|
1534
|
+
0,
|
|
1535
|
+
[_mIe, _n, _iRC, _de, _ta, _kKA],
|
|
1536
|
+
[[0, 1], 0, () => IdMappingTableInputReferenceConfig$, 0, 128 | 0, 0], 3
|
|
1537
|
+
];
|
|
1538
|
+
var CreateIdMappingTableOutput$ = [3, n0, _CIMTO,
|
|
1539
|
+
0,
|
|
1540
|
+
[_iMT],
|
|
1541
|
+
[() => IdMappingTable$], 1
|
|
1542
|
+
];
|
|
1543
|
+
var CreateIdNamespaceAssociationInput$ = [3, n0, _CINAI,
|
|
1544
|
+
0,
|
|
1545
|
+
[_mIe, _iRC, _n, _ta, _de, _iMC],
|
|
1546
|
+
[[0, 1], () => IdNamespaceAssociationInputReferenceConfig$, 0, 128 | 0, 0, () => IdMappingConfig$], 3
|
|
1547
|
+
];
|
|
1548
|
+
var CreateIdNamespaceAssociationOutput$ = [3, n0, _CINAO,
|
|
1549
|
+
0,
|
|
1550
|
+
[_iNA],
|
|
1551
|
+
[() => IdNamespaceAssociation$], 1
|
|
1552
|
+
];
|
|
1553
|
+
var CreateMembershipInput$ = [3, n0, _CMI,
|
|
1554
|
+
0,
|
|
1555
|
+
[_cIo, _qLS, _jLS, _ta, _dRC, _dJRC, _pC, _iME],
|
|
1556
|
+
[0, 0, 0, 128 | 0, () => MembershipProtectedQueryResultConfiguration$, () => MembershipProtectedJobResultConfiguration$, () => MembershipPaymentConfiguration$, 2], 2
|
|
1557
|
+
];
|
|
1558
|
+
var CreateMembershipOutput$ = [3, n0, _CMO,
|
|
1559
|
+
0,
|
|
1560
|
+
[_mem],
|
|
1561
|
+
[() => Membership$], 1
|
|
1562
|
+
];
|
|
1563
|
+
var CreatePrivacyBudgetTemplateInput$ = [3, n0, _CPBTI,
|
|
1564
|
+
0,
|
|
1565
|
+
[_mIe, _pBT, _pa, _aR, _ta],
|
|
1566
|
+
[[0, 1], 0, () => PrivacyBudgetTemplateParametersInput$, 0, 128 | 0], 3
|
|
1567
|
+
];
|
|
1568
|
+
var CreatePrivacyBudgetTemplateOutput$ = [3, n0, _CPBTO,
|
|
1569
|
+
0,
|
|
1570
|
+
[_pBTr],
|
|
1571
|
+
[() => PrivacyBudgetTemplate$], 1
|
|
1572
|
+
];
|
|
1573
|
+
var DataEncryptionMetadata$ = [3, n0, _DEM,
|
|
1574
|
+
0,
|
|
1575
|
+
[_aCll, _aD, _aJOCWDN, _pN],
|
|
1576
|
+
[2, 2, 2, 2], 4
|
|
1577
|
+
];
|
|
1578
|
+
var DeleteAnalysisTemplateInput$ = [3, n0, _DATI,
|
|
1579
|
+
0,
|
|
1580
|
+
[_mIe, _aTI],
|
|
1581
|
+
[[0, 1], [0, 1]], 2
|
|
1582
|
+
];
|
|
1583
|
+
var DeleteAnalysisTemplateOutput$ = [3, n0, _DATO,
|
|
1584
|
+
0,
|
|
1585
|
+
[],
|
|
1586
|
+
[]
|
|
1587
|
+
];
|
|
1588
|
+
var DeleteCollaborationInput$ = [3, n0, _DCI,
|
|
1589
|
+
0,
|
|
1590
|
+
[_cIo],
|
|
1591
|
+
[[0, 1]], 1
|
|
1592
|
+
];
|
|
1593
|
+
var DeleteCollaborationOutput$ = [3, n0, _DCO,
|
|
1594
|
+
0,
|
|
1595
|
+
[],
|
|
1596
|
+
[]
|
|
1597
|
+
];
|
|
1598
|
+
var DeleteConfiguredAudienceModelAssociationInput$ = [3, n0, _DCAMAI,
|
|
1599
|
+
0,
|
|
1600
|
+
[_cAMAI, _mIe],
|
|
1601
|
+
[[0, 1], [0, 1]], 2
|
|
1602
|
+
];
|
|
1603
|
+
var DeleteConfiguredAudienceModelAssociationOutput$ = [3, n0, _DCAMAO,
|
|
1604
|
+
0,
|
|
1605
|
+
[],
|
|
1606
|
+
[]
|
|
1607
|
+
];
|
|
1608
|
+
var DeleteConfiguredTableAnalysisRuleInput$ = [3, n0, _DCTARI,
|
|
1609
|
+
0,
|
|
1610
|
+
[_cTIo, _aRTn],
|
|
1611
|
+
[[0, 1], [0, 1]], 2
|
|
1612
|
+
];
|
|
1613
|
+
var DeleteConfiguredTableAnalysisRuleOutput$ = [3, n0, _DCTARO,
|
|
1614
|
+
0,
|
|
1615
|
+
[],
|
|
1616
|
+
[]
|
|
1617
|
+
];
|
|
1618
|
+
var DeleteConfiguredTableAssociationAnalysisRuleInput$ = [3, n0, _DCTAARI,
|
|
1619
|
+
0,
|
|
1620
|
+
[_mIe, _cTAIo, _aRTn],
|
|
1621
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
1622
|
+
];
|
|
1623
|
+
var DeleteConfiguredTableAssociationAnalysisRuleOutput$ = [3, n0, _DCTAARO,
|
|
1624
|
+
0,
|
|
1625
|
+
[],
|
|
1626
|
+
[]
|
|
1627
|
+
];
|
|
1628
|
+
var DeleteConfiguredTableAssociationInput$ = [3, n0, _DCTAI,
|
|
1629
|
+
0,
|
|
1630
|
+
[_cTAIo, _mIe],
|
|
1631
|
+
[[0, 1], [0, 1]], 2
|
|
1632
|
+
];
|
|
1633
|
+
var DeleteConfiguredTableAssociationOutput$ = [3, n0, _DCTAO,
|
|
1634
|
+
0,
|
|
1635
|
+
[],
|
|
1636
|
+
[]
|
|
1637
|
+
];
|
|
1638
|
+
var DeleteConfiguredTableInput$ = [3, n0, _DCTI,
|
|
1639
|
+
0,
|
|
1640
|
+
[_cTIo],
|
|
1641
|
+
[[0, 1]], 1
|
|
1642
|
+
];
|
|
1643
|
+
var DeleteConfiguredTableOutput$ = [3, n0, _DCTO,
|
|
1644
|
+
0,
|
|
1645
|
+
[],
|
|
1646
|
+
[]
|
|
1647
|
+
];
|
|
1648
|
+
var DeleteIdMappingTableInput$ = [3, n0, _DIMTI,
|
|
1649
|
+
0,
|
|
1650
|
+
[_iMTI, _mIe],
|
|
1651
|
+
[[0, 1], [0, 1]], 2
|
|
1652
|
+
];
|
|
1653
|
+
var DeleteIdMappingTableOutput$ = [3, n0, _DIMTO,
|
|
1654
|
+
0,
|
|
1655
|
+
[],
|
|
1656
|
+
[]
|
|
1657
|
+
];
|
|
1658
|
+
var DeleteIdNamespaceAssociationInput$ = [3, n0, _DINAI,
|
|
1659
|
+
0,
|
|
1660
|
+
[_iNAI, _mIe],
|
|
1661
|
+
[[0, 1], [0, 1]], 2
|
|
1662
|
+
];
|
|
1663
|
+
var DeleteIdNamespaceAssociationOutput$ = [3, n0, _DINAO,
|
|
1664
|
+
0,
|
|
1665
|
+
[],
|
|
1666
|
+
[]
|
|
1667
|
+
];
|
|
1668
|
+
var DeleteMemberInput$ = [3, n0, _DMI,
|
|
1669
|
+
0,
|
|
1670
|
+
[_cIo, _aI],
|
|
1671
|
+
[[0, 1], [0, 1]], 2
|
|
1672
|
+
];
|
|
1673
|
+
var DeleteMemberOutput$ = [3, n0, _DMO,
|
|
1674
|
+
0,
|
|
1675
|
+
[],
|
|
1676
|
+
[]
|
|
1677
|
+
];
|
|
1678
|
+
var DeleteMembershipInput$ = [3, n0, _DMIe,
|
|
1679
|
+
0,
|
|
1680
|
+
[_mIe],
|
|
1681
|
+
[[0, 1]], 1
|
|
1682
|
+
];
|
|
1683
|
+
var DeleteMembershipOutput$ = [3, n0, _DMOe,
|
|
1684
|
+
0,
|
|
1685
|
+
[],
|
|
1686
|
+
[]
|
|
1687
|
+
];
|
|
1688
|
+
var DeletePrivacyBudgetTemplateInput$ = [3, n0, _DPBTI,
|
|
1689
|
+
0,
|
|
1690
|
+
[_mIe, _pBTIr],
|
|
1691
|
+
[[0, 1], [0, 1]], 2
|
|
1692
|
+
];
|
|
1693
|
+
var DeletePrivacyBudgetTemplateOutput$ = [3, n0, _DPBTO,
|
|
1694
|
+
0,
|
|
1695
|
+
[],
|
|
1696
|
+
[]
|
|
1697
|
+
];
|
|
1698
|
+
var DifferentialPrivacyColumn$ = [3, n0, _DPC,
|
|
1699
|
+
0,
|
|
1700
|
+
[_n],
|
|
1701
|
+
[0], 1
|
|
1702
|
+
];
|
|
1703
|
+
var DifferentialPrivacyConfiguration$ = [3, n0, _DPCi,
|
|
1704
|
+
0,
|
|
1705
|
+
[_colu],
|
|
1706
|
+
[() => DifferentialPrivacyColumnList], 1
|
|
1707
|
+
];
|
|
1708
|
+
var DifferentialPrivacyParameters$ = [3, n0, _DPP,
|
|
1709
|
+
0,
|
|
1710
|
+
[_sP],
|
|
1711
|
+
[() => DifferentialPrivacySensitivityParametersList], 1
|
|
1712
|
+
];
|
|
1713
|
+
var DifferentialPrivacyPreviewAggregation$ = [3, n0, _DPPA,
|
|
1714
|
+
0,
|
|
1715
|
+
[_t, _mC],
|
|
1716
|
+
[0, 1], 2
|
|
1717
|
+
];
|
|
1718
|
+
var DifferentialPrivacyPreviewParametersInput$ = [3, n0, _DPPPI,
|
|
1719
|
+
0,
|
|
1720
|
+
[_ep, _uNPQ],
|
|
1721
|
+
[1, 1], 2
|
|
1722
|
+
];
|
|
1723
|
+
var DifferentialPrivacyPrivacyBudget$ = [3, n0, _DPPB,
|
|
1724
|
+
0,
|
|
1725
|
+
[_ag, _ep],
|
|
1726
|
+
[() => DifferentialPrivacyPrivacyBudgetAggregationList, 1], 2
|
|
1727
|
+
];
|
|
1728
|
+
var DifferentialPrivacyPrivacyBudgetAggregation$ = [3, n0, _DPPBA,
|
|
1729
|
+
0,
|
|
1730
|
+
[_t, _mC, _rC],
|
|
1731
|
+
[0, 1, 1], 3
|
|
1732
|
+
];
|
|
1733
|
+
var DifferentialPrivacyPrivacyImpact$ = [3, n0, _DPPI,
|
|
1734
|
+
0,
|
|
1735
|
+
[_ag],
|
|
1736
|
+
[() => DifferentialPrivacyPreviewAggregationList], 1
|
|
1737
|
+
];
|
|
1738
|
+
var DifferentialPrivacySensitivityParameters$ = [3, n0, _DPSP,
|
|
1739
|
+
0,
|
|
1740
|
+
[_aTg, _aEg, _uCL, _mCV, _mCVa],
|
|
1741
|
+
[0, 0, 1, 1, 1], 3
|
|
1742
|
+
];
|
|
1743
|
+
var DifferentialPrivacyTemplateParametersInput$ = [3, n0, _DPTPI,
|
|
1744
|
+
0,
|
|
1745
|
+
[_ep, _uNPQ],
|
|
1746
|
+
[1, 1], 2
|
|
1747
|
+
];
|
|
1748
|
+
var DifferentialPrivacyTemplateParametersOutput$ = [3, n0, _DPTPO,
|
|
1749
|
+
0,
|
|
1750
|
+
[_ep, _uNPQ],
|
|
1751
|
+
[1, 1], 2
|
|
1752
|
+
];
|
|
1753
|
+
var DifferentialPrivacyTemplateUpdateParameters$ = [3, n0, _DPTUP,
|
|
1754
|
+
0,
|
|
1755
|
+
[_ep, _uNPQ],
|
|
1756
|
+
[1, 1]
|
|
1757
|
+
];
|
|
1758
|
+
var DirectAnalysisConfigurationDetails$ = [3, n0, _DACD,
|
|
1759
|
+
0,
|
|
1760
|
+
[_rAI],
|
|
1761
|
+
[64 | 0]
|
|
1762
|
+
];
|
|
1763
|
+
var ErrorMessageConfiguration$ = [3, n0, _EMC,
|
|
1764
|
+
0,
|
|
1765
|
+
[_t],
|
|
1766
|
+
[0], 1
|
|
1767
|
+
];
|
|
1768
|
+
var GetAnalysisTemplateInput$ = [3, n0, _GATI,
|
|
1769
|
+
0,
|
|
1770
|
+
[_mIe, _aTI],
|
|
1771
|
+
[[0, 1], [0, 1]], 2
|
|
1772
|
+
];
|
|
1773
|
+
var GetAnalysisTemplateOutput$ = [3, n0, _GATO,
|
|
1774
|
+
0,
|
|
1775
|
+
[_aT],
|
|
1776
|
+
[[() => AnalysisTemplate$, 0]], 1
|
|
1777
|
+
];
|
|
1778
|
+
var GetCollaborationAnalysisTemplateInput$ = [3, n0, _GCATI,
|
|
1779
|
+
0,
|
|
1780
|
+
[_cIo, _aTAn],
|
|
1781
|
+
[[0, 1], [0, 1]], 2
|
|
1782
|
+
];
|
|
1783
|
+
var GetCollaborationAnalysisTemplateOutput$ = [3, n0, _GCATO,
|
|
1784
|
+
0,
|
|
1785
|
+
[_cATo],
|
|
1786
|
+
[[() => CollaborationAnalysisTemplate$, 0]], 1
|
|
1787
|
+
];
|
|
1788
|
+
var GetCollaborationChangeRequestInput$ = [3, n0, _GCCRI,
|
|
1789
|
+
0,
|
|
1790
|
+
[_cIo, _cRI],
|
|
1791
|
+
[[0, 1], [0, 1]], 2
|
|
1792
|
+
];
|
|
1793
|
+
var GetCollaborationChangeRequestOutput$ = [3, n0, _GCCRO,
|
|
1794
|
+
0,
|
|
1795
|
+
[_cCR],
|
|
1796
|
+
[() => CollaborationChangeRequest$], 1
|
|
1797
|
+
];
|
|
1798
|
+
var GetCollaborationConfiguredAudienceModelAssociationInput$ = [3, n0, _GCCAMAI,
|
|
1799
|
+
0,
|
|
1800
|
+
[_cIo, _cAMAI],
|
|
1801
|
+
[[0, 1], [0, 1]], 2
|
|
1802
|
+
];
|
|
1803
|
+
var GetCollaborationConfiguredAudienceModelAssociationOutput$ = [3, n0, _GCCAMAO,
|
|
1804
|
+
0,
|
|
1805
|
+
[_cCAMA],
|
|
1806
|
+
[() => CollaborationConfiguredAudienceModelAssociation$], 1
|
|
1807
|
+
];
|
|
1808
|
+
var GetCollaborationIdNamespaceAssociationInput$ = [3, n0, _GCINAI,
|
|
1809
|
+
0,
|
|
1810
|
+
[_cIo, _iNAI],
|
|
1811
|
+
[[0, 1], [0, 1]], 2
|
|
1812
|
+
];
|
|
1813
|
+
var GetCollaborationIdNamespaceAssociationOutput$ = [3, n0, _GCINAO,
|
|
1814
|
+
0,
|
|
1815
|
+
[_cINA],
|
|
1816
|
+
[() => CollaborationIdNamespaceAssociation$], 1
|
|
1817
|
+
];
|
|
1818
|
+
var GetCollaborationInput$ = [3, n0, _GCI,
|
|
1819
|
+
0,
|
|
1820
|
+
[_cIo],
|
|
1821
|
+
[[0, 1]], 1
|
|
1822
|
+
];
|
|
1823
|
+
var GetCollaborationOutput$ = [3, n0, _GCO,
|
|
1824
|
+
0,
|
|
1825
|
+
[_col],
|
|
1826
|
+
[() => Collaboration$], 1
|
|
1827
|
+
];
|
|
1828
|
+
var GetCollaborationPrivacyBudgetTemplateInput$ = [3, n0, _GCPBTI,
|
|
1829
|
+
0,
|
|
1830
|
+
[_cIo, _pBTIr],
|
|
1831
|
+
[[0, 1], [0, 1]], 2
|
|
1832
|
+
];
|
|
1833
|
+
var GetCollaborationPrivacyBudgetTemplateOutput$ = [3, n0, _GCPBTO,
|
|
1834
|
+
0,
|
|
1835
|
+
[_cPBT],
|
|
1836
|
+
[() => CollaborationPrivacyBudgetTemplate$], 1
|
|
1837
|
+
];
|
|
1838
|
+
var GetConfiguredAudienceModelAssociationInput$ = [3, n0, _GCAMAI,
|
|
1839
|
+
0,
|
|
1840
|
+
[_cAMAI, _mIe],
|
|
1841
|
+
[[0, 1], [0, 1]], 2
|
|
1842
|
+
];
|
|
1843
|
+
var GetConfiguredAudienceModelAssociationOutput$ = [3, n0, _GCAMAO,
|
|
1844
|
+
0,
|
|
1845
|
+
[_cAMAo],
|
|
1846
|
+
[() => ConfiguredAudienceModelAssociation$], 1
|
|
1847
|
+
];
|
|
1848
|
+
var GetConfiguredTableAnalysisRuleInput$ = [3, n0, _GCTARI,
|
|
1849
|
+
0,
|
|
1850
|
+
[_cTIo, _aRTn],
|
|
1851
|
+
[[0, 1], [0, 1]], 2
|
|
1852
|
+
];
|
|
1853
|
+
var GetConfiguredTableAnalysisRuleOutput$ = [3, n0, _GCTARO,
|
|
1854
|
+
0,
|
|
1855
|
+
[_aRna],
|
|
1856
|
+
[() => ConfiguredTableAnalysisRule$], 1
|
|
1857
|
+
];
|
|
1858
|
+
var GetConfiguredTableAssociationAnalysisRuleInput$ = [3, n0, _GCTAARI,
|
|
1859
|
+
0,
|
|
1860
|
+
[_mIe, _cTAIo, _aRTn],
|
|
1861
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
1862
|
+
];
|
|
1863
|
+
var GetConfiguredTableAssociationAnalysisRuleOutput$ = [3, n0, _GCTAARO,
|
|
1864
|
+
0,
|
|
1865
|
+
[_aRna],
|
|
1866
|
+
[() => ConfiguredTableAssociationAnalysisRule$], 1
|
|
1867
|
+
];
|
|
1868
|
+
var GetConfiguredTableAssociationInput$ = [3, n0, _GCTAI,
|
|
1869
|
+
0,
|
|
1870
|
+
[_cTAIo, _mIe],
|
|
1871
|
+
[[0, 1], [0, 1]], 2
|
|
1872
|
+
];
|
|
1873
|
+
var GetConfiguredTableAssociationOutput$ = [3, n0, _GCTAO,
|
|
1874
|
+
0,
|
|
1875
|
+
[_cTAo],
|
|
1876
|
+
[() => ConfiguredTableAssociation$], 1
|
|
1877
|
+
];
|
|
1878
|
+
var GetConfiguredTableInput$ = [3, n0, _GCTI,
|
|
1879
|
+
0,
|
|
1880
|
+
[_cTIo],
|
|
1881
|
+
[[0, 1]], 1
|
|
1882
|
+
];
|
|
1883
|
+
var GetConfiguredTableOutput$ = [3, n0, _GCTO,
|
|
1884
|
+
0,
|
|
1885
|
+
[_cTo],
|
|
1886
|
+
[() => ConfiguredTable$], 1
|
|
1887
|
+
];
|
|
1888
|
+
var GetIdMappingTableInput$ = [3, n0, _GIMTI,
|
|
1889
|
+
0,
|
|
1890
|
+
[_iMTI, _mIe],
|
|
1891
|
+
[[0, 1], [0, 1]], 2
|
|
1892
|
+
];
|
|
1893
|
+
var GetIdMappingTableOutput$ = [3, n0, _GIMTO,
|
|
1894
|
+
0,
|
|
1895
|
+
[_iMT],
|
|
1896
|
+
[() => IdMappingTable$], 1
|
|
1897
|
+
];
|
|
1898
|
+
var GetIdNamespaceAssociationInput$ = [3, n0, _GINAI,
|
|
1899
|
+
0,
|
|
1900
|
+
[_iNAI, _mIe],
|
|
1901
|
+
[[0, 1], [0, 1]], 2
|
|
1902
|
+
];
|
|
1903
|
+
var GetIdNamespaceAssociationOutput$ = [3, n0, _GINAO,
|
|
1904
|
+
0,
|
|
1905
|
+
[_iNA],
|
|
1906
|
+
[() => IdNamespaceAssociation$], 1
|
|
1907
|
+
];
|
|
1908
|
+
var GetMembershipInput$ = [3, n0, _GMI,
|
|
1909
|
+
0,
|
|
1910
|
+
[_mIe],
|
|
1911
|
+
[[0, 1]], 1
|
|
1912
|
+
];
|
|
1913
|
+
var GetMembershipOutput$ = [3, n0, _GMO,
|
|
1914
|
+
0,
|
|
1915
|
+
[_mem],
|
|
1916
|
+
[() => Membership$], 1
|
|
1917
|
+
];
|
|
1918
|
+
var GetPrivacyBudgetTemplateInput$ = [3, n0, _GPBTI,
|
|
1919
|
+
0,
|
|
1920
|
+
[_mIe, _pBTIr],
|
|
1921
|
+
[[0, 1], [0, 1]], 2
|
|
1922
|
+
];
|
|
1923
|
+
var GetPrivacyBudgetTemplateOutput$ = [3, n0, _GPBTO,
|
|
1924
|
+
0,
|
|
1925
|
+
[_pBTr],
|
|
1926
|
+
[() => PrivacyBudgetTemplate$], 1
|
|
1927
|
+
];
|
|
1928
|
+
var GetProtectedJobInput$ = [3, n0, _GPJI,
|
|
1929
|
+
0,
|
|
1930
|
+
[_mIe, _pJI],
|
|
1931
|
+
[[0, 1], [0, 1]], 2
|
|
1932
|
+
];
|
|
1933
|
+
var GetProtectedJobOutput$ = [3, n0, _GPJO,
|
|
1934
|
+
0,
|
|
1935
|
+
[_pJ],
|
|
1936
|
+
[[() => ProtectedJob$, 0]], 1
|
|
1937
|
+
];
|
|
1938
|
+
var GetProtectedQueryInput$ = [3, n0, _GPQI,
|
|
1939
|
+
0,
|
|
1940
|
+
[_mIe, _pQI],
|
|
1941
|
+
[[0, 1], [0, 1]], 2
|
|
1942
|
+
];
|
|
1943
|
+
var GetProtectedQueryOutput$ = [3, n0, _GPQO,
|
|
1944
|
+
0,
|
|
1945
|
+
[_pQ],
|
|
1946
|
+
[[() => ProtectedQuery$, 0]], 1
|
|
1947
|
+
];
|
|
1948
|
+
var GetSchemaAnalysisRuleInput$ = [3, n0, _GSARI,
|
|
1949
|
+
0,
|
|
1950
|
+
[_cIo, _n, _t],
|
|
1951
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
1952
|
+
];
|
|
1953
|
+
var GetSchemaAnalysisRuleOutput$ = [3, n0, _GSARO,
|
|
1954
|
+
0,
|
|
1955
|
+
[_aRna],
|
|
1956
|
+
[() => AnalysisRule$], 1
|
|
1957
|
+
];
|
|
1958
|
+
var GetSchemaInput$ = [3, n0, _GSI,
|
|
1959
|
+
0,
|
|
1960
|
+
[_cIo, _n],
|
|
1961
|
+
[[0, 1], [0, 1]], 2
|
|
1962
|
+
];
|
|
1963
|
+
var GetSchemaOutput$ = [3, n0, _GSO,
|
|
1964
|
+
0,
|
|
1965
|
+
[_sc],
|
|
1966
|
+
[() => Schema$], 1
|
|
1967
|
+
];
|
|
1968
|
+
var GlueTableReference$ = [3, n0, _GTR,
|
|
1969
|
+
0,
|
|
1970
|
+
[_tN, _dN, _reg],
|
|
1971
|
+
[0, 0, 0], 2
|
|
1972
|
+
];
|
|
1973
|
+
var Hash$ = [3, n0, _H,
|
|
1974
|
+
0,
|
|
1975
|
+
[_sh],
|
|
1976
|
+
[0]
|
|
1977
|
+
];
|
|
1978
|
+
var IdMappingConfig$ = [3, n0, _IMC,
|
|
1979
|
+
0,
|
|
1980
|
+
[_aUADC],
|
|
1981
|
+
[2], 1
|
|
1982
|
+
];
|
|
1983
|
+
var IdMappingTable$ = [3, n0, _IMT,
|
|
1984
|
+
0,
|
|
1985
|
+
[_i, _a, _iRC, _mI, _mA, _cI, _cA, _n, _cT, _uT, _iRP, _de, _kKA],
|
|
1986
|
+
[0, 0, () => IdMappingTableInputReferenceConfig$, 0, 0, 0, 0, 0, 4, 4, () => IdMappingTableInputReferenceProperties$, 0, 0], 11
|
|
1987
|
+
];
|
|
1988
|
+
var IdMappingTableInputReferenceConfig$ = [3, n0, _IMTIRC,
|
|
1989
|
+
0,
|
|
1990
|
+
[_iRA, _mRP],
|
|
1991
|
+
[0, 2], 2
|
|
1992
|
+
];
|
|
1993
|
+
var IdMappingTableInputReferenceProperties$ = [3, n0, _IMTIRP,
|
|
1994
|
+
0,
|
|
1995
|
+
[_iMTIS],
|
|
1996
|
+
[() => IdMappingTableInputSourceList], 1
|
|
1997
|
+
];
|
|
1998
|
+
var IdMappingTableInputSource$ = [3, n0, _IMTIS,
|
|
1999
|
+
0,
|
|
2000
|
+
[_iNAId, _t],
|
|
2001
|
+
[0, 0], 2
|
|
2002
|
+
];
|
|
2003
|
+
var IdMappingTableSchemaTypeProperties$ = [3, n0, _IMTSTP,
|
|
2004
|
+
0,
|
|
2005
|
+
[_iMTIS],
|
|
2006
|
+
[() => IdMappingTableInputSourceList], 1
|
|
2007
|
+
];
|
|
2008
|
+
var IdMappingTableSummary$ = [3, n0, _IMTS,
|
|
2009
|
+
0,
|
|
2010
|
+
[_cA, _cI, _mI, _mA, _cT, _uT, _i, _a, _iRC, _n, _de],
|
|
2011
|
+
[0, 0, 0, 0, 4, 4, 0, 0, () => IdMappingTableInputReferenceConfig$, 0, 0], 10
|
|
2012
|
+
];
|
|
2013
|
+
var IdNamespaceAssociation$ = [3, n0, _INA,
|
|
2014
|
+
0,
|
|
2015
|
+
[_i, _a, _mI, _mA, _cI, _cA, _n, _cT, _uT, _iRC, _iRP, _de, _iMC],
|
|
2016
|
+
[0, 0, 0, 0, 0, 0, 0, 4, 4, () => IdNamespaceAssociationInputReferenceConfig$, () => IdNamespaceAssociationInputReferenceProperties$, 0, () => IdMappingConfig$], 11
|
|
2017
|
+
];
|
|
2018
|
+
var IdNamespaceAssociationInputReferenceConfig$ = [3, n0, _INAIRC,
|
|
2019
|
+
0,
|
|
2020
|
+
[_iRA, _mRP],
|
|
2021
|
+
[0, 2], 2
|
|
2022
|
+
];
|
|
2023
|
+
var IdNamespaceAssociationInputReferenceProperties$ = [3, n0, _INAIRP,
|
|
2024
|
+
0,
|
|
2025
|
+
[_iNT, _iMWS],
|
|
2026
|
+
[0, 64 | 15], 2
|
|
2027
|
+
];
|
|
2028
|
+
var IdNamespaceAssociationInputReferencePropertiesSummary$ = [3, n0, _INAIRPS,
|
|
2029
|
+
0,
|
|
2030
|
+
[_iNT],
|
|
2031
|
+
[0], 1
|
|
2032
|
+
];
|
|
2033
|
+
var IdNamespaceAssociationSummary$ = [3, n0, _INAS,
|
|
2034
|
+
0,
|
|
2035
|
+
[_mI, _mA, _cA, _cI, _cT, _uT, _i, _a, _iRC, _n, _iRP, _de],
|
|
2036
|
+
[0, 0, 0, 0, 4, 4, 0, 0, () => IdNamespaceAssociationInputReferenceConfig$, 0, () => IdNamespaceAssociationInputReferencePropertiesSummary$, 0], 11
|
|
2037
|
+
];
|
|
2038
|
+
var JobComputePaymentConfig$ = [3, n0, _JCPC,
|
|
2039
|
+
0,
|
|
2040
|
+
[_iR],
|
|
2041
|
+
[2], 1
|
|
2042
|
+
];
|
|
2043
|
+
var ListAnalysisTemplatesInput$ = [3, n0, _LATI,
|
|
2044
|
+
0,
|
|
2045
|
+
[_mIe, _nT, _mR],
|
|
2046
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
2047
|
+
];
|
|
2048
|
+
var ListAnalysisTemplatesOutput$ = [3, n0, _LATO,
|
|
2049
|
+
0,
|
|
2050
|
+
[_aTS, _nT],
|
|
2051
|
+
[() => AnalysisTemplateSummaryList, 0], 1
|
|
2052
|
+
];
|
|
2053
|
+
var ListCollaborationAnalysisTemplatesInput$ = [3, n0, _LCATI,
|
|
2054
|
+
0,
|
|
2055
|
+
[_cIo, _nT, _mR],
|
|
2056
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
2057
|
+
];
|
|
2058
|
+
var ListCollaborationAnalysisTemplatesOutput$ = [3, n0, _LCATO,
|
|
2059
|
+
0,
|
|
2060
|
+
[_cATS, _nT],
|
|
2061
|
+
[() => CollaborationAnalysisTemplateSummaryList, 0], 1
|
|
2062
|
+
];
|
|
2063
|
+
var ListCollaborationChangeRequestsInput$ = [3, n0, _LCCRI,
|
|
2064
|
+
0,
|
|
2065
|
+
[_cIo, _st, _nT, _mR],
|
|
2066
|
+
[[0, 1], [0, { [_hQ]: _st }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
2067
|
+
];
|
|
2068
|
+
var ListCollaborationChangeRequestsOutput$ = [3, n0, _LCCRO,
|
|
2069
|
+
0,
|
|
2070
|
+
[_cCRS, _nT],
|
|
2071
|
+
[() => CollaborationChangeRequestSummaryList, 0], 1
|
|
2072
|
+
];
|
|
2073
|
+
var ListCollaborationConfiguredAudienceModelAssociationsInput$ = [3, n0, _LCCAMAI,
|
|
2074
|
+
0,
|
|
2075
|
+
[_cIo, _nT, _mR],
|
|
2076
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
2077
|
+
];
|
|
2078
|
+
var ListCollaborationConfiguredAudienceModelAssociationsOutput$ = [3, n0, _LCCAMAO,
|
|
2079
|
+
0,
|
|
2080
|
+
[_cCAMAS, _nT],
|
|
2081
|
+
[() => CollaborationConfiguredAudienceModelAssociationSummaryList, 0], 1
|
|
2082
|
+
];
|
|
2083
|
+
var ListCollaborationIdNamespaceAssociationsInput$ = [3, n0, _LCINAI,
|
|
2084
|
+
0,
|
|
2085
|
+
[_cIo, _nT, _mR],
|
|
2086
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
2087
|
+
];
|
|
2088
|
+
var ListCollaborationIdNamespaceAssociationsOutput$ = [3, n0, _LCINAO,
|
|
2089
|
+
0,
|
|
2090
|
+
[_cINAS, _nT],
|
|
2091
|
+
[() => CollaborationIdNamespaceAssociationSummaryList, 0], 1
|
|
2092
|
+
];
|
|
2093
|
+
var ListCollaborationPrivacyBudgetsInput$ = [3, n0, _LCPBI,
|
|
2094
|
+
0,
|
|
2095
|
+
[_cIo, _pBT, _mR, _nT, _aBRA],
|
|
2096
|
+
[[0, 1], [0, { [_hQ]: _pBT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _aBRA }]], 2
|
|
2097
|
+
];
|
|
2098
|
+
var ListCollaborationPrivacyBudgetsOutput$ = [3, n0, _LCPBO,
|
|
2099
|
+
0,
|
|
2100
|
+
[_cPBS, _nT],
|
|
2101
|
+
[() => CollaborationPrivacyBudgetSummaryList, 0], 1
|
|
2102
|
+
];
|
|
2103
|
+
var ListCollaborationPrivacyBudgetTemplatesInput$ = [3, n0, _LCPBTI,
|
|
2104
|
+
0,
|
|
2105
|
+
[_cIo, _nT, _mR],
|
|
2106
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
2107
|
+
];
|
|
2108
|
+
var ListCollaborationPrivacyBudgetTemplatesOutput$ = [3, n0, _LCPBTO,
|
|
2109
|
+
0,
|
|
2110
|
+
[_cPBTS, _nT],
|
|
2111
|
+
[() => CollaborationPrivacyBudgetTemplateSummaryList, 0], 1
|
|
2112
|
+
];
|
|
2113
|
+
var ListCollaborationsInput$ = [3, n0, _LCI,
|
|
2114
|
+
0,
|
|
2115
|
+
[_nT, _mR, _mS],
|
|
2116
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _mS }]]
|
|
2117
|
+
];
|
|
2118
|
+
var ListCollaborationsOutput$ = [3, n0, _LCO,
|
|
2119
|
+
0,
|
|
2120
|
+
[_cL, _nT],
|
|
2121
|
+
[() => CollaborationSummaryList, 0], 1
|
|
2122
|
+
];
|
|
2123
|
+
var ListConfiguredAudienceModelAssociationsInput$ = [3, n0, _LCAMAI,
|
|
2124
|
+
0,
|
|
2125
|
+
[_mIe, _nT, _mR],
|
|
2126
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
2127
|
+
];
|
|
2128
|
+
var ListConfiguredAudienceModelAssociationsOutput$ = [3, n0, _LCAMAO,
|
|
2129
|
+
0,
|
|
2130
|
+
[_cAMAS, _nT],
|
|
2131
|
+
[() => ConfiguredAudienceModelAssociationSummaryList, 0], 1
|
|
2132
|
+
];
|
|
2133
|
+
var ListConfiguredTableAssociationsInput$ = [3, n0, _LCTAI,
|
|
2134
|
+
0,
|
|
2135
|
+
[_mIe, _nT, _mR],
|
|
2136
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
2137
|
+
];
|
|
2138
|
+
var ListConfiguredTableAssociationsOutput$ = [3, n0, _LCTAO,
|
|
2139
|
+
0,
|
|
2140
|
+
[_cTAS, _nT],
|
|
2141
|
+
[() => ConfiguredTableAssociationSummaryList, 0], 1
|
|
2142
|
+
];
|
|
2143
|
+
var ListConfiguredTablesInput$ = [3, n0, _LCTI,
|
|
2144
|
+
0,
|
|
2145
|
+
[_nT, _mR],
|
|
2146
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
2147
|
+
];
|
|
2148
|
+
var ListConfiguredTablesOutput$ = [3, n0, _LCTO,
|
|
2149
|
+
0,
|
|
2150
|
+
[_cTS, _nT],
|
|
2151
|
+
[() => ConfiguredTableSummaryList, 0], 1
|
|
2152
|
+
];
|
|
2153
|
+
var ListIdMappingTablesInput$ = [3, n0, _LIMTI,
|
|
2154
|
+
0,
|
|
2155
|
+
[_mIe, _nT, _mR],
|
|
2156
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
2157
|
+
];
|
|
2158
|
+
var ListIdMappingTablesOutput$ = [3, n0, _LIMTO,
|
|
2159
|
+
0,
|
|
2160
|
+
[_iMTS, _nT],
|
|
2161
|
+
[() => IdMappingTableSummaryList, 0], 1
|
|
2162
|
+
];
|
|
2163
|
+
var ListIdNamespaceAssociationsInput$ = [3, n0, _LINAI,
|
|
2164
|
+
0,
|
|
2165
|
+
[_mIe, _nT, _mR],
|
|
2166
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
2167
|
+
];
|
|
2168
|
+
var ListIdNamespaceAssociationsOutput$ = [3, n0, _LINAO,
|
|
2169
|
+
0,
|
|
2170
|
+
[_iNAS, _nT],
|
|
2171
|
+
[() => IdNamespaceAssociationSummaryList, 0], 1
|
|
2172
|
+
];
|
|
2173
|
+
var ListMembershipsInput$ = [3, n0, _LMI,
|
|
2174
|
+
0,
|
|
2175
|
+
[_nT, _mR, _st],
|
|
2176
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _st }]]
|
|
2177
|
+
];
|
|
2178
|
+
var ListMembershipsOutput$ = [3, n0, _LMO,
|
|
2179
|
+
0,
|
|
2180
|
+
[_mSe, _nT],
|
|
2181
|
+
[() => MembershipSummaryList, 0], 1
|
|
2182
|
+
];
|
|
2183
|
+
var ListMembersInput$ = [3, n0, _LMIi,
|
|
2184
|
+
0,
|
|
2185
|
+
[_cIo, _nT, _mR],
|
|
2186
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
2187
|
+
];
|
|
2188
|
+
var ListMembersOutput$ = [3, n0, _LMOi,
|
|
2189
|
+
0,
|
|
2190
|
+
[_mSem, _nT],
|
|
2191
|
+
[() => MemberSummaryList, 0], 1
|
|
2192
|
+
];
|
|
2193
|
+
var ListPrivacyBudgetsInput$ = [3, n0, _LPBI,
|
|
2194
|
+
0,
|
|
2195
|
+
[_mIe, _pBT, _nT, _mR, _aBRA],
|
|
2196
|
+
[[0, 1], [0, { [_hQ]: _pBT }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _aBRA }]], 2
|
|
2197
|
+
];
|
|
2198
|
+
var ListPrivacyBudgetsOutput$ = [3, n0, _LPBO,
|
|
2199
|
+
0,
|
|
2200
|
+
[_pBS, _nT],
|
|
2201
|
+
[() => PrivacyBudgetSummaryList, 0], 1
|
|
2202
|
+
];
|
|
2203
|
+
var ListPrivacyBudgetTemplatesInput$ = [3, n0, _LPBTI,
|
|
2204
|
+
0,
|
|
2205
|
+
[_mIe, _nT, _mR],
|
|
2206
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
2207
|
+
];
|
|
2208
|
+
var ListPrivacyBudgetTemplatesOutput$ = [3, n0, _LPBTO,
|
|
2209
|
+
0,
|
|
2210
|
+
[_pBTS, _nT],
|
|
2211
|
+
[() => PrivacyBudgetTemplateSummaryList, 0], 1
|
|
2212
|
+
];
|
|
2213
|
+
var ListProtectedJobsInput$ = [3, n0, _LPJI,
|
|
2214
|
+
0,
|
|
2215
|
+
[_mIe, _st, _nT, _mR],
|
|
2216
|
+
[[0, 1], [0, { [_hQ]: _st }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
2217
|
+
];
|
|
2218
|
+
var ListProtectedJobsOutput$ = [3, n0, _LPJO,
|
|
2219
|
+
0,
|
|
2220
|
+
[_pJr, _nT],
|
|
2221
|
+
[() => ProtectedJobSummaryList, 0], 1
|
|
2222
|
+
];
|
|
2223
|
+
var ListProtectedQueriesInput$ = [3, n0, _LPQI,
|
|
2224
|
+
0,
|
|
2225
|
+
[_mIe, _st, _nT, _mR],
|
|
2226
|
+
[[0, 1], [0, { [_hQ]: _st }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
2227
|
+
];
|
|
2228
|
+
var ListProtectedQueriesOutput$ = [3, n0, _LPQO,
|
|
2229
|
+
0,
|
|
2230
|
+
[_pQr, _nT],
|
|
2231
|
+
[() => ProtectedQuerySummaryList, 0], 1
|
|
2232
|
+
];
|
|
2233
|
+
var ListSchemasInput$ = [3, n0, _LSI,
|
|
2234
|
+
0,
|
|
2235
|
+
[_cIo, _sTc, _nT, _mR],
|
|
2236
|
+
[[0, 1], [0, { [_hQ]: _sTc }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
2237
|
+
];
|
|
2238
|
+
var ListSchemasOutput$ = [3, n0, _LSO,
|
|
2239
|
+
0,
|
|
2240
|
+
[_sS, _nT],
|
|
2241
|
+
[() => SchemaSummaryList, 0], 1
|
|
2242
|
+
];
|
|
2243
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
2244
|
+
0,
|
|
2245
|
+
[_rA],
|
|
2246
|
+
[[0, 1]], 1
|
|
2247
|
+
];
|
|
2248
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
2249
|
+
0,
|
|
2250
|
+
[_ta],
|
|
2251
|
+
[128 | 0], 1
|
|
2252
|
+
];
|
|
2253
|
+
var MemberChangeSpecification$ = [3, n0, _MCS,
|
|
2254
|
+
0,
|
|
2255
|
+
[_aI, _mAe, _mMA, _pC, _dNi],
|
|
2256
|
+
[0, 64 | 0, () => MLMemberAbilities$, () => PaymentConfiguration$, 0], 2
|
|
2257
|
+
];
|
|
2258
|
+
var Membership$ = [3, n0, _M,
|
|
2259
|
+
0,
|
|
2260
|
+
[_i, _a, _cA, _cI, _cCAI, _cCDN, _cNol, _cT, _uT, _st, _mAe, _qLS, _pC, _mMA, _jLS, _dRC, _dJRC, _iME],
|
|
2261
|
+
[0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 64 | 0, 0, () => MembershipPaymentConfiguration$, () => MLMemberAbilities$, 0, () => MembershipProtectedQueryResultConfiguration$, () => MembershipProtectedJobResultConfiguration$, 2], 13
|
|
2262
|
+
];
|
|
2263
|
+
var MembershipJobComputePaymentConfig$ = [3, n0, _MJCPC,
|
|
2264
|
+
0,
|
|
2265
|
+
[_iR],
|
|
2266
|
+
[2], 1
|
|
2267
|
+
];
|
|
2268
|
+
var MembershipMLPaymentConfig$ = [3, n0, _MMLPC,
|
|
2269
|
+
0,
|
|
2270
|
+
[_mT, _mIo, _sDG],
|
|
2271
|
+
[() => MembershipModelTrainingPaymentConfig$, () => MembershipModelInferencePaymentConfig$, () => MembershipSyntheticDataGenerationPaymentConfig$]
|
|
2272
|
+
];
|
|
2273
|
+
var MembershipModelInferencePaymentConfig$ = [3, n0, _MMIPC,
|
|
2274
|
+
0,
|
|
2275
|
+
[_iR],
|
|
2276
|
+
[2], 1
|
|
2277
|
+
];
|
|
2278
|
+
var MembershipModelTrainingPaymentConfig$ = [3, n0, _MMTPC,
|
|
2279
|
+
0,
|
|
2280
|
+
[_iR],
|
|
2281
|
+
[2], 1
|
|
2282
|
+
];
|
|
2283
|
+
var MembershipPaymentConfiguration$ = [3, n0, _MPC,
|
|
2284
|
+
0,
|
|
2285
|
+
[_qCu, _mL, _jCo],
|
|
2286
|
+
[() => MembershipQueryComputePaymentConfig$, () => MembershipMLPaymentConfig$, () => MembershipJobComputePaymentConfig$], 1
|
|
2287
|
+
];
|
|
2288
|
+
var MembershipProtectedJobResultConfiguration$ = [3, n0, _MPJRC,
|
|
2289
|
+
0,
|
|
2290
|
+
[_oCu, _rAo],
|
|
2291
|
+
[() => MembershipProtectedJobOutputConfiguration$, 0], 2
|
|
2292
|
+
];
|
|
2293
|
+
var MembershipProtectedQueryResultConfiguration$ = [3, n0, _MPQRC,
|
|
2294
|
+
0,
|
|
2295
|
+
[_oCu, _rAo],
|
|
2296
|
+
[() => MembershipProtectedQueryOutputConfiguration$, 0], 1
|
|
2297
|
+
];
|
|
2298
|
+
var MembershipQueryComputePaymentConfig$ = [3, n0, _MQCPC,
|
|
2299
|
+
0,
|
|
2300
|
+
[_iR],
|
|
2301
|
+
[2], 1
|
|
2302
|
+
];
|
|
2303
|
+
var MembershipSummary$ = [3, n0, _MS,
|
|
2304
|
+
0,
|
|
2305
|
+
[_i, _a, _cA, _cI, _cCAI, _cCDN, _cNol, _cT, _uT, _st, _mAe, _pC, _mMA],
|
|
2306
|
+
[0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 64 | 0, () => MembershipPaymentConfiguration$, () => MLMemberAbilities$], 12
|
|
2307
|
+
];
|
|
2308
|
+
var MembershipSyntheticDataGenerationPaymentConfig$ = [3, n0, _MSDGPC,
|
|
2309
|
+
0,
|
|
2310
|
+
[_iR],
|
|
2311
|
+
[2], 1
|
|
2312
|
+
];
|
|
2313
|
+
var MemberSpecification$ = [3, n0, _MSe,
|
|
2314
|
+
0,
|
|
2315
|
+
[_aI, _mAe, _dNi, _mMA, _pC],
|
|
2316
|
+
[0, 64 | 0, 0, () => MLMemberAbilities$, () => PaymentConfiguration$], 3
|
|
2317
|
+
];
|
|
2318
|
+
var MemberSummary$ = [3, n0, _MSem,
|
|
2319
|
+
0,
|
|
2320
|
+
[_aI, _st, _dNi, _ab, _cT, _uT, _pC, _mAl, _mI, _mA],
|
|
2321
|
+
[0, 0, 0, 64 | 0, 4, 4, () => PaymentConfiguration$, () => MLMemberAbilities$, 0, 0], 7
|
|
2322
|
+
];
|
|
2323
|
+
var MLMemberAbilities$ = [3, n0, _MLMA,
|
|
2324
|
+
0,
|
|
2325
|
+
[_cMLMAu],
|
|
2326
|
+
[64 | 0], 1
|
|
2327
|
+
];
|
|
2328
|
+
var MLPaymentConfig$ = [3, n0, _MLPC,
|
|
2329
|
+
0,
|
|
2330
|
+
[_mT, _mIo, _sDG],
|
|
2331
|
+
[() => ModelTrainingPaymentConfig$, () => ModelInferencePaymentConfig$, () => SyntheticDataGenerationPaymentConfig$]
|
|
2332
|
+
];
|
|
2333
|
+
var MLSyntheticDataParameters$ = [3, n0, _MLSDP,
|
|
2334
|
+
0,
|
|
2335
|
+
[_ep, _mMIAS, _cC],
|
|
2336
|
+
[1, 1, () => ColumnClassificationDetails$], 3
|
|
2337
|
+
];
|
|
2338
|
+
var ModelInferencePaymentConfig$ = [3, n0, _MIPC,
|
|
2339
|
+
0,
|
|
2340
|
+
[_iR],
|
|
2341
|
+
[2], 1
|
|
2342
|
+
];
|
|
2343
|
+
var ModelTrainingPaymentConfig$ = [3, n0, _MTPC,
|
|
2344
|
+
0,
|
|
2345
|
+
[_iR],
|
|
2346
|
+
[2], 1
|
|
2347
|
+
];
|
|
2348
|
+
var PaymentConfiguration$ = [3, n0, _PC,
|
|
2349
|
+
0,
|
|
2350
|
+
[_qCu, _mL, _jCo],
|
|
2351
|
+
[() => QueryComputePaymentConfig$, () => MLPaymentConfig$, () => JobComputePaymentConfig$], 1
|
|
2352
|
+
];
|
|
2353
|
+
var PopulateIdMappingTableInput$ = [3, n0, _PIMTI,
|
|
2354
|
+
0,
|
|
2355
|
+
[_iMTI, _mIe, _jT],
|
|
2356
|
+
[[0, 1], [0, 1], 0], 2
|
|
2357
|
+
];
|
|
2358
|
+
var PopulateIdMappingTableOutput$ = [3, n0, _PIMTO,
|
|
2359
|
+
0,
|
|
2360
|
+
[_iMJI],
|
|
2361
|
+
[0], 1
|
|
2362
|
+
];
|
|
2363
|
+
var PreviewPrivacyImpactInput$ = [3, n0, _PPII,
|
|
2364
|
+
0,
|
|
2365
|
+
[_mIe, _pa],
|
|
2366
|
+
[[0, 1], () => PreviewPrivacyImpactParametersInput$], 2
|
|
2367
|
+
];
|
|
2368
|
+
var PreviewPrivacyImpactOutput$ = [3, n0, _PPIO,
|
|
2369
|
+
0,
|
|
2370
|
+
[_pI],
|
|
2371
|
+
[() => PrivacyImpact$], 1
|
|
2372
|
+
];
|
|
2373
|
+
var PrivacyBudgetSummary$ = [3, n0, _PBS,
|
|
2374
|
+
0,
|
|
2375
|
+
[_i, _pBTI, _pBTA, _mI, _mA, _cI, _cA, _t, _cT, _uT, _b],
|
|
2376
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 4, 4, () => PrivacyBudget$], 11
|
|
2377
|
+
];
|
|
2378
|
+
var PrivacyBudgetTemplate$ = [3, n0, _PBT,
|
|
2379
|
+
0,
|
|
2380
|
+
[_i, _a, _mI, _mA, _cI, _cA, _cT, _uT, _pBT, _aR, _pa],
|
|
2381
|
+
[0, 0, 0, 0, 0, 0, 4, 4, 0, 0, () => PrivacyBudgetTemplateParametersOutput$], 11
|
|
2382
|
+
];
|
|
2383
|
+
var PrivacyBudgetTemplateSummary$ = [3, n0, _PBTS,
|
|
2384
|
+
0,
|
|
2385
|
+
[_i, _a, _mI, _mA, _cI, _cA, _pBT, _cT, _uT],
|
|
2386
|
+
[0, 0, 0, 0, 0, 0, 0, 4, 4], 9
|
|
2387
|
+
];
|
|
2388
|
+
var ProtectedJob$ = [3, n0, _PJ,
|
|
2389
|
+
0,
|
|
2390
|
+
[_i, _mI, _mA, _cT, _st, _jP, _rCe, _sta, _res, _e, _cCo, _jCPAI],
|
|
2391
|
+
[0, 0, 0, 4, 0, [() => ProtectedJobParameters$, 0], () => ProtectedJobResultConfigurationOutput$, () => ProtectedJobStatistics$, () => ProtectedJobResult$, () => ProtectedJobError$, () => ProtectedJobComputeConfiguration$, 0], 5
|
|
2392
|
+
];
|
|
2393
|
+
var ProtectedJobDirectAnalysisConfigurationDetails$ = [3, n0, _PJDACD,
|
|
2394
|
+
0,
|
|
2395
|
+
[_rAI],
|
|
2396
|
+
[64 | 0]
|
|
2397
|
+
];
|
|
2398
|
+
var ProtectedJobError$ = [3, n0, _PJE,
|
|
2399
|
+
0,
|
|
2400
|
+
[_m, _co],
|
|
2401
|
+
[0, 0], 2
|
|
2402
|
+
];
|
|
2403
|
+
var ProtectedJobMemberOutputConfigurationInput$ = [3, n0, _PJMOCI,
|
|
2404
|
+
0,
|
|
2405
|
+
[_aI],
|
|
2406
|
+
[0], 1
|
|
2407
|
+
];
|
|
2408
|
+
var ProtectedJobMemberOutputConfigurationOutput$ = [3, n0, _PJMOCO,
|
|
2409
|
+
0,
|
|
2410
|
+
[_aI],
|
|
2411
|
+
[0], 1
|
|
2412
|
+
];
|
|
2413
|
+
var ProtectedJobParameters$ = [3, n0, _PJP,
|
|
2414
|
+
0,
|
|
2415
|
+
[_aTAn, _pa],
|
|
2416
|
+
[0, [() => JobParameterMap, 0]], 1
|
|
2417
|
+
];
|
|
2418
|
+
var ProtectedJobReceiverConfiguration$ = [3, n0, _PJRC,
|
|
2419
|
+
0,
|
|
2420
|
+
[_aTn, _cD],
|
|
2421
|
+
[0, () => ProtectedJobConfigurationDetails$], 1
|
|
2422
|
+
];
|
|
2423
|
+
var ProtectedJobResult$ = [3, n0, _PJR,
|
|
2424
|
+
0,
|
|
2425
|
+
[_o],
|
|
2426
|
+
[() => ProtectedJobOutput$], 1
|
|
2427
|
+
];
|
|
2428
|
+
var ProtectedJobResultConfigurationInput$ = [3, n0, _PJRCI,
|
|
2429
|
+
0,
|
|
2430
|
+
[_oCu],
|
|
2431
|
+
[() => ProtectedJobOutputConfigurationInput$], 1
|
|
2432
|
+
];
|
|
2433
|
+
var ProtectedJobResultConfigurationOutput$ = [3, n0, _PJRCO,
|
|
2434
|
+
0,
|
|
2435
|
+
[_oCu],
|
|
2436
|
+
[() => ProtectedJobOutputConfigurationOutput$], 1
|
|
2437
|
+
];
|
|
2438
|
+
var ProtectedJobS3Output$ = [3, n0, _PJSO,
|
|
2439
|
+
0,
|
|
2440
|
+
[_l],
|
|
2441
|
+
[0], 1
|
|
2442
|
+
];
|
|
2443
|
+
var ProtectedJobS3OutputConfigurationInput$ = [3, n0, _PJSOCI,
|
|
2444
|
+
0,
|
|
2445
|
+
[_bu, _kP],
|
|
2446
|
+
[0, 0], 1
|
|
2447
|
+
];
|
|
2448
|
+
var ProtectedJobS3OutputConfigurationOutput$ = [3, n0, _PJSOCO,
|
|
2449
|
+
0,
|
|
2450
|
+
[_bu, _kP],
|
|
2451
|
+
[0, 0], 1
|
|
2452
|
+
];
|
|
2453
|
+
var ProtectedJobSingleMemberOutput$ = [3, n0, _PJSMO,
|
|
2454
|
+
0,
|
|
2455
|
+
[_aI],
|
|
2456
|
+
[0], 1
|
|
2457
|
+
];
|
|
2458
|
+
var ProtectedJobStatistics$ = [3, n0, _PJS,
|
|
2459
|
+
0,
|
|
2460
|
+
[_tDIM, _bRU],
|
|
2461
|
+
[1, () => BilledJobResourceUtilization$]
|
|
2462
|
+
];
|
|
2463
|
+
var ProtectedJobSummary$ = [3, n0, _PJSr,
|
|
2464
|
+
0,
|
|
2465
|
+
[_i, _mI, _mA, _cT, _st, _rCec, _jCPAI],
|
|
2466
|
+
[0, 0, 0, 4, 0, () => ProtectedJobReceiverConfigurations, 0], 6
|
|
2467
|
+
];
|
|
2468
|
+
var ProtectedJobWorkerComputeConfiguration$ = [3, n0, _PJWCC,
|
|
2469
|
+
0,
|
|
2470
|
+
[_t, _nu, _pr],
|
|
2471
|
+
[0, 1, () => WorkerComputeConfigurationProperties$], 2
|
|
2472
|
+
];
|
|
2473
|
+
var ProtectedQuery$ = [3, n0, _PQ,
|
|
2474
|
+
0,
|
|
2475
|
+
[_i, _mI, _mA, _cT, _st, _sPq, _rCe, _sta, _res, _e, _dP, _cCo, _qCPAI],
|
|
2476
|
+
[0, 0, 0, 4, 0, [() => ProtectedQuerySQLParameters$, 0], () => ProtectedQueryResultConfiguration$, () => ProtectedQueryStatistics$, () => ProtectedQueryResult$, () => ProtectedQueryError$, () => DifferentialPrivacyParameters$, () => ComputeConfiguration$, 0], 5
|
|
2477
|
+
];
|
|
2478
|
+
var ProtectedQueryDistributeOutput$ = [3, n0, _PQDO,
|
|
2479
|
+
0,
|
|
2480
|
+
[_s_, _mLe],
|
|
2481
|
+
[() => ProtectedQueryS3Output$, () => ProtectedQueryMemberOutputList]
|
|
2482
|
+
];
|
|
2483
|
+
var ProtectedQueryDistributeOutputConfiguration$ = [3, n0, _PQDOC,
|
|
2484
|
+
0,
|
|
2485
|
+
[_lo],
|
|
2486
|
+
[() => ProtectedQueryDistributeOutputConfigurationLocations], 1
|
|
2487
|
+
];
|
|
2488
|
+
var ProtectedQueryError$ = [3, n0, _PQE,
|
|
2489
|
+
0,
|
|
2490
|
+
[_m, _co],
|
|
2491
|
+
[0, 0], 2
|
|
2492
|
+
];
|
|
2493
|
+
var ProtectedQueryMemberOutputConfiguration$ = [3, n0, _PQMOC,
|
|
2494
|
+
0,
|
|
2495
|
+
[_aI],
|
|
2496
|
+
[0], 1
|
|
2497
|
+
];
|
|
2498
|
+
var ProtectedQueryResult$ = [3, n0, _PQR,
|
|
2499
|
+
0,
|
|
2500
|
+
[_o],
|
|
2501
|
+
[() => ProtectedQueryOutput$], 1
|
|
2502
|
+
];
|
|
2503
|
+
var ProtectedQueryResultConfiguration$ = [3, n0, _PQRC,
|
|
2504
|
+
0,
|
|
2505
|
+
[_oCu],
|
|
2506
|
+
[() => ProtectedQueryOutputConfiguration$], 1
|
|
2507
|
+
];
|
|
2508
|
+
var ProtectedQueryS3Output$ = [3, n0, _PQSO,
|
|
2509
|
+
0,
|
|
2510
|
+
[_l],
|
|
2511
|
+
[0], 1
|
|
2512
|
+
];
|
|
2513
|
+
var ProtectedQueryS3OutputConfiguration$ = [3, n0, _PQSOC,
|
|
2514
|
+
0,
|
|
2515
|
+
[_rF, _bu, _kP, _sFO],
|
|
2516
|
+
[0, 0, 0, 2], 2
|
|
2517
|
+
];
|
|
2518
|
+
var ProtectedQuerySingleMemberOutput$ = [3, n0, _PQSMO,
|
|
2519
|
+
0,
|
|
2520
|
+
[_aI],
|
|
2521
|
+
[0], 1
|
|
2522
|
+
];
|
|
2523
|
+
var ProtectedQuerySQLParameters$ = [3, n0, _PQSQLP,
|
|
2524
|
+
8,
|
|
2525
|
+
[_qS, _aTAn, _pa],
|
|
2526
|
+
[0, 0, 128 | 0]
|
|
2527
|
+
];
|
|
2528
|
+
var ProtectedQueryStatistics$ = [3, n0, _PQS,
|
|
2529
|
+
0,
|
|
2530
|
+
[_tDIM, _bRU],
|
|
2531
|
+
[1, () => BilledResourceUtilization$]
|
|
2532
|
+
];
|
|
2533
|
+
var ProtectedQuerySummary$ = [3, n0, _PQSr,
|
|
2534
|
+
0,
|
|
2535
|
+
[_i, _mI, _mA, _cT, _st, _rCec, _qCPAI],
|
|
2536
|
+
[0, 0, 0, 4, 0, () => ReceiverConfigurationsList, 0], 6
|
|
2537
|
+
];
|
|
2538
|
+
var QueryComputePaymentConfig$ = [3, n0, _QCPC,
|
|
2539
|
+
0,
|
|
2540
|
+
[_iR],
|
|
2541
|
+
[2], 1
|
|
2542
|
+
];
|
|
2543
|
+
var QueryConstraintRequireOverlap$ = [3, n0, _QCRO,
|
|
2544
|
+
0,
|
|
2545
|
+
[_colu],
|
|
2546
|
+
[64 | 0]
|
|
2547
|
+
];
|
|
2548
|
+
var ReceiverConfiguration$ = [3, n0, _RC,
|
|
2549
|
+
0,
|
|
2550
|
+
[_aTn, _cD],
|
|
2551
|
+
[0, () => ConfigurationDetails$], 1
|
|
2552
|
+
];
|
|
2553
|
+
var S3Location$ = [3, n0, _SL,
|
|
2554
|
+
0,
|
|
2555
|
+
[_bu, _k],
|
|
2556
|
+
[0, 0], 2
|
|
2557
|
+
];
|
|
2558
|
+
var Schema$ = [3, n0, _S,
|
|
2559
|
+
0,
|
|
2560
|
+
[_colu, _pK, _aRT, _cAI, _n, _cI, _cA, _de, _cT, _uT, _t, _sSD, _aM, _sAM, _rA, _sTP],
|
|
2561
|
+
[() => ColumnList, () => ColumnList, 64 | 0, 0, 0, 0, 0, 0, 4, 4, 0, () => SchemaStatusDetailList, 0, 64 | 0, 0, () => SchemaTypeProperties$], 12
|
|
2562
|
+
];
|
|
2563
|
+
var SchemaAnalysisRuleRequest$ = [3, n0, _SARR,
|
|
2564
|
+
0,
|
|
2565
|
+
[_n, _t],
|
|
2566
|
+
[0, 0], 2
|
|
2567
|
+
];
|
|
2568
|
+
var SchemaStatusDetail$ = [3, n0, _SSD,
|
|
2569
|
+
0,
|
|
2570
|
+
[_st, _aTn, _re, _aRTn, _con],
|
|
2571
|
+
[0, 0, () => SchemaStatusReasonList, 0, 64 | 0], 2
|
|
2572
|
+
];
|
|
2573
|
+
var SchemaStatusReason$ = [3, n0, _SSR,
|
|
2574
|
+
0,
|
|
2575
|
+
[_co, _m],
|
|
2576
|
+
[0, 0], 2
|
|
2577
|
+
];
|
|
2578
|
+
var SchemaSummary$ = [3, n0, _SS,
|
|
2579
|
+
0,
|
|
2580
|
+
[_n, _t, _cAI, _cT, _uT, _cI, _cA, _aRT, _aM, _rA, _sAM],
|
|
2581
|
+
[0, 0, 0, 4, 4, 0, 0, 64 | 0, 0, 0, 64 | 0], 8
|
|
2582
|
+
];
|
|
2583
|
+
var SnowflakeTableReference$ = [3, n0, _STR,
|
|
2584
|
+
0,
|
|
2585
|
+
[_sA, _aIc, _dN, _tN, _sN, _tS],
|
|
2586
|
+
[0, 0, 0, 0, 0, () => SnowflakeTableSchema$], 6
|
|
2587
|
+
];
|
|
2588
|
+
var SnowflakeTableSchemaV1$ = [3, n0, _STSV,
|
|
2589
|
+
0,
|
|
2590
|
+
[_cNo, _cTol],
|
|
2591
|
+
[0, 0], 2
|
|
2592
|
+
];
|
|
2593
|
+
var StartProtectedJobInput$ = [3, n0, _SPJI,
|
|
2594
|
+
0,
|
|
2595
|
+
[_t, _mIe, _jP, _rCe, _cCo, _jCPAI],
|
|
2596
|
+
[0, [0, 1], [() => ProtectedJobParameters$, 0], () => ProtectedJobResultConfigurationInput$, () => ProtectedJobComputeConfiguration$, 0], 3
|
|
2597
|
+
];
|
|
2598
|
+
var StartProtectedJobOutput$ = [3, n0, _SPJO,
|
|
2599
|
+
0,
|
|
2600
|
+
[_pJ],
|
|
2601
|
+
[[() => ProtectedJob$, 0]], 1
|
|
2602
|
+
];
|
|
2603
|
+
var StartProtectedQueryInput$ = [3, n0, _SPQI,
|
|
2604
|
+
0,
|
|
2605
|
+
[_t, _mIe, _sPq, _rCe, _cCo, _qCPAI],
|
|
2606
|
+
[0, [0, 1], [() => ProtectedQuerySQLParameters$, 0], () => ProtectedQueryResultConfiguration$, () => ComputeConfiguration$, 0], 3
|
|
2607
|
+
];
|
|
2608
|
+
var StartProtectedQueryOutput$ = [3, n0, _SPQO,
|
|
2609
|
+
0,
|
|
2610
|
+
[_pQ],
|
|
2611
|
+
[[() => ProtectedQuery$, 0]], 1
|
|
2612
|
+
];
|
|
2613
|
+
var SyntheticDataColumnProperties$ = [3, n0, _SDCP,
|
|
2614
|
+
0,
|
|
2615
|
+
[_cNo, _cTol, _iPV],
|
|
2616
|
+
[0, 0, 2], 3
|
|
2617
|
+
];
|
|
2618
|
+
var SyntheticDataGenerationPaymentConfig$ = [3, n0, _SDGPC,
|
|
2619
|
+
0,
|
|
2620
|
+
[_iR],
|
|
2621
|
+
[2], 1
|
|
2622
|
+
];
|
|
2623
|
+
var TagResourceInput$ = [3, n0, _TRI,
|
|
2624
|
+
0,
|
|
2625
|
+
[_rA, _ta],
|
|
2626
|
+
[[0, 1], 128 | 0], 2
|
|
2627
|
+
];
|
|
2628
|
+
var TagResourceOutput$ = [3, n0, _TRO,
|
|
2629
|
+
0,
|
|
2630
|
+
[],
|
|
2631
|
+
[]
|
|
2632
|
+
];
|
|
2633
|
+
var UntagResourceInput$ = [3, n0, _URI,
|
|
2634
|
+
0,
|
|
2635
|
+
[_rA, _tK],
|
|
2636
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
2637
|
+
];
|
|
2638
|
+
var UntagResourceOutput$ = [3, n0, _URO,
|
|
2639
|
+
0,
|
|
2640
|
+
[],
|
|
2641
|
+
[]
|
|
2642
|
+
];
|
|
2643
|
+
var UpdateAnalysisTemplateInput$ = [3, n0, _UATI,
|
|
2644
|
+
0,
|
|
2645
|
+
[_mIe, _aTI, _de],
|
|
2646
|
+
[[0, 1], [0, 1], 0], 2
|
|
2647
|
+
];
|
|
2648
|
+
var UpdateAnalysisTemplateOutput$ = [3, n0, _UATO,
|
|
2649
|
+
0,
|
|
2650
|
+
[_aT],
|
|
2651
|
+
[[() => AnalysisTemplate$, 0]], 1
|
|
2652
|
+
];
|
|
2653
|
+
var UpdateCollaborationChangeRequestInput$ = [3, n0, _UCCRI,
|
|
2654
|
+
0,
|
|
2655
|
+
[_cIo, _cRI, _ac],
|
|
2656
|
+
[[0, 1], [0, 1], 0], 3
|
|
2657
|
+
];
|
|
2658
|
+
var UpdateCollaborationChangeRequestOutput$ = [3, n0, _UCCRO,
|
|
2659
|
+
0,
|
|
2660
|
+
[_cCR],
|
|
2661
|
+
[() => CollaborationChangeRequest$], 1
|
|
2662
|
+
];
|
|
2663
|
+
var UpdateCollaborationInput$ = [3, n0, _UCI,
|
|
2664
|
+
0,
|
|
2665
|
+
[_cIo, _n, _de, _aE],
|
|
2666
|
+
[[0, 1], 0, 0, 0], 1
|
|
2667
|
+
];
|
|
2668
|
+
var UpdateCollaborationOutput$ = [3, n0, _UCO,
|
|
2669
|
+
0,
|
|
2670
|
+
[_col],
|
|
2671
|
+
[() => Collaboration$], 1
|
|
2672
|
+
];
|
|
2673
|
+
var UpdateConfiguredAudienceModelAssociationInput$ = [3, n0, _UCAMAI,
|
|
2674
|
+
0,
|
|
2675
|
+
[_cAMAI, _mIe, _de, _n],
|
|
2676
|
+
[[0, 1], [0, 1], 0, 0], 2
|
|
2677
|
+
];
|
|
2678
|
+
var UpdateConfiguredAudienceModelAssociationOutput$ = [3, n0, _UCAMAO,
|
|
2679
|
+
0,
|
|
2680
|
+
[_cAMAo],
|
|
2681
|
+
[() => ConfiguredAudienceModelAssociation$], 1
|
|
2682
|
+
];
|
|
2683
|
+
var UpdateConfiguredTableAnalysisRuleInput$ = [3, n0, _UCTARI,
|
|
2684
|
+
0,
|
|
2685
|
+
[_cTIo, _aRTn, _aRP],
|
|
2686
|
+
[[0, 1], [0, 1], () => ConfiguredTableAnalysisRulePolicy$], 3
|
|
2687
|
+
];
|
|
2688
|
+
var UpdateConfiguredTableAnalysisRuleOutput$ = [3, n0, _UCTARO,
|
|
2689
|
+
0,
|
|
2690
|
+
[_aRna],
|
|
2691
|
+
[() => ConfiguredTableAnalysisRule$], 1
|
|
2692
|
+
];
|
|
2693
|
+
var UpdateConfiguredTableAssociationAnalysisRuleInput$ = [3, n0, _UCTAARI,
|
|
2694
|
+
0,
|
|
2695
|
+
[_mIe, _cTAIo, _aRTn, _aRP],
|
|
2696
|
+
[[0, 1], [0, 1], [0, 1], () => ConfiguredTableAssociationAnalysisRulePolicy$], 4
|
|
2697
|
+
];
|
|
2698
|
+
var UpdateConfiguredTableAssociationAnalysisRuleOutput$ = [3, n0, _UCTAARO,
|
|
2699
|
+
0,
|
|
2700
|
+
[_aRna],
|
|
2701
|
+
[() => ConfiguredTableAssociationAnalysisRule$], 1
|
|
2702
|
+
];
|
|
2703
|
+
var UpdateConfiguredTableAssociationInput$ = [3, n0, _UCTAI,
|
|
2704
|
+
0,
|
|
2705
|
+
[_cTAIo, _mIe, _de, _rAo],
|
|
2706
|
+
[[0, 1], [0, 1], 0, 0], 2
|
|
2707
|
+
];
|
|
2708
|
+
var UpdateConfiguredTableAssociationOutput$ = [3, n0, _UCTAO,
|
|
2709
|
+
0,
|
|
2710
|
+
[_cTAo],
|
|
2711
|
+
[() => ConfiguredTableAssociation$], 1
|
|
2712
|
+
];
|
|
2713
|
+
var UpdateConfiguredTableInput$ = [3, n0, _UCTI,
|
|
2714
|
+
0,
|
|
2715
|
+
[_cTIo, _n, _de, _tR, _aCl, _aM, _sAM],
|
|
2716
|
+
[[0, 1], 0, 0, () => TableReference$, 64 | 0, 0, 64 | 0], 1
|
|
2717
|
+
];
|
|
2718
|
+
var UpdateConfiguredTableOutput$ = [3, n0, _UCTO,
|
|
2719
|
+
0,
|
|
2720
|
+
[_cTo],
|
|
2721
|
+
[() => ConfiguredTable$], 1
|
|
2722
|
+
];
|
|
2723
|
+
var UpdateIdMappingTableInput$ = [3, n0, _UIMTI,
|
|
2724
|
+
0,
|
|
2725
|
+
[_iMTI, _mIe, _de, _kKA],
|
|
2726
|
+
[[0, 1], [0, 1], 0, 0], 2
|
|
2727
|
+
];
|
|
2728
|
+
var UpdateIdMappingTableOutput$ = [3, n0, _UIMTO,
|
|
2729
|
+
0,
|
|
2730
|
+
[_iMT],
|
|
2731
|
+
[() => IdMappingTable$], 1
|
|
2732
|
+
];
|
|
2733
|
+
var UpdateIdNamespaceAssociationInput$ = [3, n0, _UINAI,
|
|
2734
|
+
0,
|
|
2735
|
+
[_iNAI, _mIe, _n, _de, _iMC],
|
|
2736
|
+
[[0, 1], [0, 1], 0, 0, () => IdMappingConfig$], 2
|
|
2737
|
+
];
|
|
2738
|
+
var UpdateIdNamespaceAssociationOutput$ = [3, n0, _UINAO,
|
|
2739
|
+
0,
|
|
2740
|
+
[_iNA],
|
|
2741
|
+
[() => IdNamespaceAssociation$], 1
|
|
2742
|
+
];
|
|
2743
|
+
var UpdateMembershipInput$ = [3, n0, _UMI,
|
|
2744
|
+
0,
|
|
2745
|
+
[_mIe, _qLS, _jLS, _dRC, _dJRC, _mPC],
|
|
2746
|
+
[[0, 1], 0, 0, () => MembershipProtectedQueryResultConfiguration$, () => MembershipProtectedJobResultConfiguration$, () => UpdateMembershipPaymentConfiguration$], 1
|
|
2747
|
+
];
|
|
2748
|
+
var UpdateMembershipOutput$ = [3, n0, _UMO,
|
|
2749
|
+
0,
|
|
2750
|
+
[_mem],
|
|
2751
|
+
[() => Membership$], 1
|
|
2752
|
+
];
|
|
2753
|
+
var UpdateMembershipPaymentConfiguration$ = [3, n0, _UMPC,
|
|
2754
|
+
0,
|
|
2755
|
+
[_qCu, _mL, _jCo],
|
|
2756
|
+
[() => MembershipQueryComputePaymentConfig$, () => MembershipMLPaymentConfig$, () => MembershipJobComputePaymentConfig$]
|
|
2757
|
+
];
|
|
2758
|
+
var UpdatePrivacyBudgetTemplateInput$ = [3, n0, _UPBTI,
|
|
2759
|
+
0,
|
|
2760
|
+
[_mIe, _pBTIr, _pBT, _pa],
|
|
2761
|
+
[[0, 1], [0, 1], 0, () => PrivacyBudgetTemplateUpdateParameters$], 3
|
|
2762
|
+
];
|
|
2763
|
+
var UpdatePrivacyBudgetTemplateOutput$ = [3, n0, _UPBTO,
|
|
2764
|
+
0,
|
|
2765
|
+
[_pBTr],
|
|
2766
|
+
[() => PrivacyBudgetTemplate$], 1
|
|
2767
|
+
];
|
|
2768
|
+
var UpdateProtectedJobInput$ = [3, n0, _UPJI,
|
|
2769
|
+
0,
|
|
2770
|
+
[_mIe, _pJI, _tSa],
|
|
2771
|
+
[[0, 1], [0, 1], 0], 3
|
|
2772
|
+
];
|
|
2773
|
+
var UpdateProtectedJobOutput$ = [3, n0, _UPJO,
|
|
2774
|
+
0,
|
|
2775
|
+
[_pJ],
|
|
2776
|
+
[[() => ProtectedJob$, 0]], 1
|
|
2777
|
+
];
|
|
2778
|
+
var UpdateProtectedQueryInput$ = [3, n0, _UPQI,
|
|
2779
|
+
0,
|
|
2780
|
+
[_mIe, _pQI, _tSa],
|
|
2781
|
+
[[0, 1], [0, 1], 0], 3
|
|
2782
|
+
];
|
|
2783
|
+
var UpdateProtectedQueryOutput$ = [3, n0, _UPQO,
|
|
2784
|
+
0,
|
|
2785
|
+
[_pQ],
|
|
2786
|
+
[[() => ProtectedQuery$, 0]], 1
|
|
2787
|
+
];
|
|
2788
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
2789
|
+
0,
|
|
2790
|
+
[_n, _m],
|
|
2791
|
+
[0, 0], 2
|
|
2792
|
+
];
|
|
2793
|
+
var WorkerComputeConfiguration$ = [3, n0, _WCC,
|
|
2794
|
+
0,
|
|
2795
|
+
[_t, _nu, _pr],
|
|
2796
|
+
[0, 1, () => WorkerComputeConfigurationProperties$]
|
|
2797
|
+
];
|
|
2798
|
+
var AccessBudgetDetailsList = [1, n0, _ABDL,
|
|
2799
|
+
0, () => AccessBudgetDetails$
|
|
2800
|
+
];
|
|
2801
|
+
var AggregateColumnList = [1, n0, _ACL,
|
|
2802
|
+
0, () => AggregateColumn$
|
|
2803
|
+
];
|
|
2804
|
+
var AggregationConstraints = [1, n0, _ACgg,
|
|
2805
|
+
0, () => AggregationConstraint$
|
|
2806
|
+
];
|
|
2807
|
+
var AnalysisParameterList = [1, n0, _APL,
|
|
2808
|
+
0, [() => AnalysisParameter$,
|
|
2809
|
+
0]
|
|
2810
|
+
];
|
|
2811
|
+
var AnalysisTemplateArtifactList = [1, n0, _ATAL,
|
|
2812
|
+
0, () => AnalysisTemplateArtifact$
|
|
2813
|
+
];
|
|
2814
|
+
var AnalysisTemplateSummaryList = [1, n0, _ATSL,
|
|
2815
|
+
0, () => AnalysisTemplateSummary$
|
|
2816
|
+
];
|
|
2817
|
+
var AnalysisTemplateValidationStatusDetailList = [1, n0, _ATVSDL,
|
|
2818
|
+
0, () => AnalysisTemplateValidationStatusDetail$
|
|
2819
|
+
];
|
|
2820
|
+
var AnalysisTemplateValidationStatusReasonList = [1, n0, _ATVSRL,
|
|
2821
|
+
0, () => AnalysisTemplateValidationStatusReason$
|
|
2822
|
+
];
|
|
2823
|
+
var BatchGetCollaborationAnalysisTemplateErrorList = [1, n0, _BGCATEL,
|
|
2824
|
+
0, () => BatchGetCollaborationAnalysisTemplateError$
|
|
2825
|
+
];
|
|
2826
|
+
var BatchGetSchemaAnalysisRuleErrorList = [1, n0, _BGSAREL,
|
|
2827
|
+
0, () => BatchGetSchemaAnalysisRuleError$
|
|
2828
|
+
];
|
|
2829
|
+
var BatchGetSchemaErrorList = [1, n0, _BGSEL,
|
|
2830
|
+
0, () => BatchGetSchemaError$
|
|
2831
|
+
];
|
|
2832
|
+
var BudgetParameters = [1, n0, _BPu,
|
|
2833
|
+
0, () => BudgetParameter$
|
|
2834
|
+
];
|
|
2835
|
+
var ChangeInputList = [1, n0, _CIL,
|
|
2836
|
+
0, () => ChangeInput$
|
|
2837
|
+
];
|
|
2838
|
+
var ChangeList = [1, n0, _CL,
|
|
2839
|
+
0, () => Change$
|
|
2840
|
+
];
|
|
2841
|
+
var CollaborationAnalysisTemplateList = [1, n0, _CATL,
|
|
2842
|
+
0, [() => CollaborationAnalysisTemplate$,
|
|
2843
|
+
0]
|
|
2844
|
+
];
|
|
2845
|
+
var CollaborationAnalysisTemplateSummaryList = [1, n0, _CATSL,
|
|
2846
|
+
0, () => CollaborationAnalysisTemplateSummary$
|
|
2847
|
+
];
|
|
2848
|
+
var CollaborationChangeRequestSummaryList = [1, n0, _CCRSL,
|
|
2849
|
+
0, () => CollaborationChangeRequestSummary$
|
|
2850
|
+
];
|
|
2851
|
+
var CollaborationConfiguredAudienceModelAssociationSummaryList = [1, n0, _CCAMASL,
|
|
2852
|
+
0, () => CollaborationConfiguredAudienceModelAssociationSummary$
|
|
2853
|
+
];
|
|
2854
|
+
var CollaborationIdNamespaceAssociationSummaryList = [1, n0, _CINASL,
|
|
2855
|
+
0, () => CollaborationIdNamespaceAssociationSummary$
|
|
2856
|
+
];
|
|
2857
|
+
var CollaborationPrivacyBudgetSummaryList = [1, n0, _CPBSL,
|
|
2858
|
+
0, () => CollaborationPrivacyBudgetSummary$
|
|
2859
|
+
];
|
|
2860
|
+
var CollaborationPrivacyBudgetTemplateSummaryList = [1, n0, _CPBTSL,
|
|
2861
|
+
0, () => CollaborationPrivacyBudgetTemplateSummary$
|
|
2862
|
+
];
|
|
2863
|
+
var CollaborationSummaryList = [1, n0, _CSL,
|
|
2864
|
+
0, () => CollaborationSummary$
|
|
2865
|
+
];
|
|
2866
|
+
var ColumnList = [1, n0, _CLo,
|
|
2867
|
+
0, () => Column$
|
|
2868
|
+
];
|
|
2869
|
+
var ColumnMappingList = [1, n0, _CML,
|
|
2870
|
+
0, () => SyntheticDataColumnProperties$
|
|
2871
|
+
];
|
|
2872
|
+
var ConfiguredAudienceModelAssociationSummaryList = [1, n0, _CAMASL,
|
|
2873
|
+
0, () => ConfiguredAudienceModelAssociationSummary$
|
|
2874
|
+
];
|
|
2875
|
+
var ConfiguredTableAssociationSummaryList = [1, n0, _CTASL,
|
|
2876
|
+
0, () => ConfiguredTableAssociationSummary$
|
|
2877
|
+
];
|
|
2878
|
+
var ConfiguredTableSummaryList = [1, n0, _CTSL,
|
|
2879
|
+
0, () => ConfiguredTableSummary$
|
|
2880
|
+
];
|
|
2881
|
+
var DifferentialPrivacyColumnList = [1, n0, _DPCL,
|
|
2882
|
+
0, () => DifferentialPrivacyColumn$
|
|
2883
|
+
];
|
|
2884
|
+
var DifferentialPrivacyPreviewAggregationList = [1, n0, _DPPAL,
|
|
2885
|
+
0, () => DifferentialPrivacyPreviewAggregation$
|
|
2886
|
+
];
|
|
2887
|
+
var DifferentialPrivacyPrivacyBudgetAggregationList = [1, n0, _DPPBAL,
|
|
2888
|
+
0, () => DifferentialPrivacyPrivacyBudgetAggregation$
|
|
2889
|
+
];
|
|
2890
|
+
var DifferentialPrivacySensitivityParametersList = [1, n0, _DPSPL,
|
|
2891
|
+
0, () => DifferentialPrivacySensitivityParameters$
|
|
2892
|
+
];
|
|
2893
|
+
var HashList = [1, n0, _HL,
|
|
2894
|
+
0, () => Hash$
|
|
2895
|
+
];
|
|
2896
|
+
var IdMappingTableInputSourceList = [1, n0, _IMTISL,
|
|
2897
|
+
0, () => IdMappingTableInputSource$
|
|
2898
|
+
];
|
|
2899
|
+
var IdMappingTableSummaryList = [1, n0, _IMTSL,
|
|
2900
|
+
0, () => IdMappingTableSummary$
|
|
2901
|
+
];
|
|
2902
|
+
var IdNamespaceAssociationSummaryList = [1, n0, _INASL,
|
|
2903
|
+
0, () => IdNamespaceAssociationSummary$
|
|
2904
|
+
];
|
|
2905
|
+
var MemberList = [1, n0, _ML,
|
|
2906
|
+
0, () => MemberSpecification$
|
|
2907
|
+
];
|
|
2908
|
+
var MembershipSummaryList = [1, n0, _MSL,
|
|
2909
|
+
0, () => MembershipSummary$
|
|
2910
|
+
];
|
|
2911
|
+
var MemberSummaryList = [1, n0, _MSLe,
|
|
2912
|
+
0, () => MemberSummary$
|
|
2913
|
+
];
|
|
2914
|
+
var PrivacyBudgetSummaryList = [1, n0, _PBSL,
|
|
2915
|
+
0, () => PrivacyBudgetSummary$
|
|
2916
|
+
];
|
|
2917
|
+
var PrivacyBudgetTemplateSummaryList = [1, n0, _PBTSL,
|
|
2918
|
+
0, () => PrivacyBudgetTemplateSummary$
|
|
2919
|
+
];
|
|
2920
|
+
var ProtectedJobMemberOutputList = [1, n0, _PJMOL,
|
|
2921
|
+
0, () => ProtectedJobSingleMemberOutput$
|
|
2922
|
+
];
|
|
2923
|
+
var ProtectedJobReceiverConfigurations = [1, n0, _PJRCr,
|
|
2924
|
+
0, () => ProtectedJobReceiverConfiguration$
|
|
2925
|
+
];
|
|
2926
|
+
var ProtectedJobSummaryList = [1, n0, _PJSL,
|
|
2927
|
+
0, () => ProtectedJobSummary$
|
|
2928
|
+
];
|
|
2929
|
+
var ProtectedQueryDistributeOutputConfigurationLocations = [1, n0, _PQDOCL,
|
|
2930
|
+
0, () => ProtectedQueryDistributeOutputConfigurationLocation$
|
|
2931
|
+
];
|
|
2932
|
+
var ProtectedQueryMemberOutputList = [1, n0, _PQMOL,
|
|
2933
|
+
0, () => ProtectedQuerySingleMemberOutput$
|
|
2934
|
+
];
|
|
2935
|
+
var ProtectedQuerySummaryList = [1, n0, _PQSL,
|
|
2936
|
+
0, () => ProtectedQuerySummary$
|
|
2937
|
+
];
|
|
2938
|
+
var QueryConstraintList = [1, n0, _QCL,
|
|
2939
|
+
0, () => QueryConstraint$
|
|
2940
|
+
];
|
|
2941
|
+
var ReceiverConfigurationsList = [1, n0, _RCL,
|
|
2942
|
+
0, () => ReceiverConfiguration$
|
|
2943
|
+
];
|
|
2944
|
+
var SchemaAnalysisRuleList = [1, n0, _SARL,
|
|
2945
|
+
0, () => AnalysisRule$
|
|
2946
|
+
];
|
|
2947
|
+
var SchemaAnalysisRuleRequestList = [1, n0, _SARRL,
|
|
2948
|
+
0, () => SchemaAnalysisRuleRequest$
|
|
2949
|
+
];
|
|
2950
|
+
var SchemaList = [1, n0, _SLc,
|
|
2951
|
+
0, () => Schema$
|
|
2952
|
+
];
|
|
2953
|
+
var SchemaStatusDetailList = [1, n0, _SSDL,
|
|
2954
|
+
0, () => SchemaStatusDetail$
|
|
2955
|
+
];
|
|
2956
|
+
var SchemaStatusReasonList = [1, n0, _SSRL,
|
|
2957
|
+
0, () => SchemaStatusReason$
|
|
2958
|
+
];
|
|
2959
|
+
var SchemaSummaryList = [1, n0, _SSL,
|
|
2960
|
+
0, () => SchemaSummary$
|
|
2961
|
+
];
|
|
2962
|
+
var SnowflakeTableSchemaList = [1, n0, _STSL,
|
|
2963
|
+
0, () => SnowflakeTableSchemaV1$
|
|
2964
|
+
];
|
|
2965
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
2966
|
+
0, () => ValidationExceptionField$
|
|
2967
|
+
];
|
|
2968
|
+
var ApprovalStatuses = [2, n0, _ASp,
|
|
2969
|
+
0, 0, () => ApprovalStatusDetails$
|
|
2970
|
+
];
|
|
2971
|
+
var JobParameterMap = [2, n0, _JPM,
|
|
2972
|
+
8, 0, 0
|
|
2973
|
+
];
|
|
2974
|
+
var AnalysisRulePolicy$ = [4, n0, _ARP,
|
|
2975
|
+
0,
|
|
2976
|
+
[_v_],
|
|
2977
|
+
[() => AnalysisRulePolicyV1$]
|
|
2978
|
+
];
|
|
2979
|
+
var AnalysisRulePolicyV1$ = [4, n0, _ARPV,
|
|
2980
|
+
0,
|
|
2981
|
+
[_li, _agg, _cu, _iMT],
|
|
2982
|
+
[() => AnalysisRuleList$, () => AnalysisRuleAggregation$, () => AnalysisRuleCustom$, () => AnalysisRuleIdMappingTable$]
|
|
2983
|
+
];
|
|
2984
|
+
var AnalysisSource$ = [4, n0, _ASn,
|
|
2985
|
+
0,
|
|
2986
|
+
[_te, _ar],
|
|
2987
|
+
[[() => AnalysisTemplateText, 0], () => AnalysisTemplateArtifacts$]
|
|
2988
|
+
];
|
|
2989
|
+
var AnalysisSourceMetadata$ = [4, n0, _ASM,
|
|
2990
|
+
0,
|
|
2991
|
+
[_ar],
|
|
2992
|
+
[() => AnalysisTemplateArtifactMetadata$]
|
|
2993
|
+
];
|
|
2994
|
+
var ChangeSpecification$ = [4, n0, _CSh,
|
|
2995
|
+
0,
|
|
2996
|
+
[_memb, _col],
|
|
2997
|
+
[() => MemberChangeSpecification$, () => CollaborationChangeSpecification$]
|
|
2998
|
+
];
|
|
2999
|
+
var ComputeConfiguration$ = [4, n0, _CC,
|
|
3000
|
+
0,
|
|
3001
|
+
[_w],
|
|
3002
|
+
[() => WorkerComputeConfiguration$]
|
|
3003
|
+
];
|
|
3004
|
+
var ConfigurationDetails$ = [4, n0, _CD,
|
|
3005
|
+
0,
|
|
3006
|
+
[_dACD],
|
|
3007
|
+
[() => DirectAnalysisConfigurationDetails$]
|
|
3008
|
+
];
|
|
3009
|
+
var ConfiguredTableAnalysisRulePolicy$ = [4, n0, _CTARP,
|
|
3010
|
+
0,
|
|
3011
|
+
[_v_],
|
|
3012
|
+
[() => ConfiguredTableAnalysisRulePolicyV1$]
|
|
3013
|
+
];
|
|
3014
|
+
var ConfiguredTableAnalysisRulePolicyV1$ = [4, n0, _CTARPV,
|
|
3015
|
+
0,
|
|
3016
|
+
[_li, _agg, _cu],
|
|
3017
|
+
[() => AnalysisRuleList$, () => AnalysisRuleAggregation$, () => AnalysisRuleCustom$]
|
|
3018
|
+
];
|
|
3019
|
+
var ConfiguredTableAssociationAnalysisRulePolicy$ = [4, n0, _CTAARP,
|
|
3020
|
+
0,
|
|
3021
|
+
[_v_],
|
|
3022
|
+
[() => ConfiguredTableAssociationAnalysisRulePolicyV1$]
|
|
3023
|
+
];
|
|
3024
|
+
var ConfiguredTableAssociationAnalysisRulePolicyV1$ = [4, n0, _CTAARPV,
|
|
3025
|
+
0,
|
|
3026
|
+
[_li, _agg, _cu],
|
|
3027
|
+
[() => ConfiguredTableAssociationAnalysisRuleList$, () => ConfiguredTableAssociationAnalysisRuleAggregation$, () => ConfiguredTableAssociationAnalysisRuleCustom$]
|
|
3028
|
+
];
|
|
3029
|
+
var ConsolidatedPolicy$ = [4, n0, _CP,
|
|
3030
|
+
0,
|
|
3031
|
+
[_v_],
|
|
3032
|
+
[() => ConsolidatedPolicyV1$]
|
|
3033
|
+
];
|
|
3034
|
+
var ConsolidatedPolicyV1$ = [4, n0, _CPV,
|
|
3035
|
+
0,
|
|
3036
|
+
[_li, _agg, _cu],
|
|
3037
|
+
[() => ConsolidatedPolicyList$, () => ConsolidatedPolicyAggregation$, () => ConsolidatedPolicyCustom$]
|
|
3038
|
+
];
|
|
3039
|
+
var MembershipProtectedJobOutputConfiguration$ = [4, n0, _MPJOC,
|
|
3040
|
+
0,
|
|
3041
|
+
[_s_],
|
|
3042
|
+
[() => ProtectedJobS3OutputConfigurationInput$]
|
|
3043
|
+
];
|
|
3044
|
+
var MembershipProtectedQueryOutputConfiguration$ = [4, n0, _MPQOC,
|
|
3045
|
+
0,
|
|
3046
|
+
[_s_],
|
|
3047
|
+
[() => ProtectedQueryS3OutputConfiguration$]
|
|
3048
|
+
];
|
|
3049
|
+
var PreviewPrivacyImpactParametersInput$ = [4, n0, _PPIPI,
|
|
3050
|
+
0,
|
|
3051
|
+
[_dP],
|
|
3052
|
+
[() => DifferentialPrivacyPreviewParametersInput$]
|
|
3053
|
+
];
|
|
3054
|
+
var PrivacyBudget$ = [4, n0, _PB,
|
|
3055
|
+
0,
|
|
3056
|
+
[_dP, _aB],
|
|
3057
|
+
[() => DifferentialPrivacyPrivacyBudget$, () => AccessBudget$]
|
|
3058
|
+
];
|
|
3059
|
+
var PrivacyBudgetTemplateParametersInput$ = [4, n0, _PBTPI,
|
|
3060
|
+
0,
|
|
3061
|
+
[_dP, _aB],
|
|
3062
|
+
[() => DifferentialPrivacyTemplateParametersInput$, () => AccessBudgetsPrivacyTemplateParametersInput$]
|
|
3063
|
+
];
|
|
3064
|
+
var PrivacyBudgetTemplateParametersOutput$ = [4, n0, _PBTPO,
|
|
3065
|
+
0,
|
|
3066
|
+
[_dP, _aB],
|
|
3067
|
+
[() => DifferentialPrivacyTemplateParametersOutput$, () => AccessBudgetsPrivacyTemplateParametersOutput$]
|
|
3068
|
+
];
|
|
3069
|
+
var PrivacyBudgetTemplateUpdateParameters$ = [4, n0, _PBTUP,
|
|
3070
|
+
0,
|
|
3071
|
+
[_dP, _aB],
|
|
3072
|
+
[() => DifferentialPrivacyTemplateUpdateParameters$, () => AccessBudgetsPrivacyTemplateUpdateParameters$]
|
|
3073
|
+
];
|
|
3074
|
+
var PrivacyImpact$ = [4, n0, _PI,
|
|
3075
|
+
0,
|
|
3076
|
+
[_dP],
|
|
3077
|
+
[() => DifferentialPrivacyPrivacyImpact$]
|
|
3078
|
+
];
|
|
3079
|
+
var ProtectedJobComputeConfiguration$ = [4, n0, _PJCC,
|
|
3080
|
+
0,
|
|
3081
|
+
[_w],
|
|
3082
|
+
[() => ProtectedJobWorkerComputeConfiguration$]
|
|
3083
|
+
];
|
|
3084
|
+
var ProtectedJobConfigurationDetails$ = [4, n0, _PJCD,
|
|
3085
|
+
0,
|
|
3086
|
+
[_dACD],
|
|
3087
|
+
[() => ProtectedJobDirectAnalysisConfigurationDetails$]
|
|
3088
|
+
];
|
|
3089
|
+
var ProtectedJobOutput$ = [4, n0, _PJO,
|
|
3090
|
+
0,
|
|
3091
|
+
[_s_, _mLe],
|
|
3092
|
+
[() => ProtectedJobS3Output$, () => ProtectedJobMemberOutputList]
|
|
3093
|
+
];
|
|
3094
|
+
var ProtectedJobOutputConfigurationInput$ = [4, n0, _PJOCI,
|
|
3095
|
+
0,
|
|
3096
|
+
[_memb],
|
|
3097
|
+
[() => ProtectedJobMemberOutputConfigurationInput$]
|
|
3098
|
+
];
|
|
3099
|
+
var ProtectedJobOutputConfigurationOutput$ = [4, n0, _PJOCO,
|
|
3100
|
+
0,
|
|
3101
|
+
[_s_, _memb],
|
|
3102
|
+
[() => ProtectedJobS3OutputConfigurationOutput$, () => ProtectedJobMemberOutputConfigurationOutput$]
|
|
3103
|
+
];
|
|
3104
|
+
var ProtectedQueryDistributeOutputConfigurationLocation$ = [4, n0, _PQDOCLr,
|
|
3105
|
+
0,
|
|
3106
|
+
[_s_, _memb],
|
|
3107
|
+
[() => ProtectedQueryS3OutputConfiguration$, () => ProtectedQueryMemberOutputConfiguration$]
|
|
3108
|
+
];
|
|
3109
|
+
var ProtectedQueryOutput$ = [4, n0, _PQO,
|
|
3110
|
+
0,
|
|
3111
|
+
[_s_, _mLe, _di],
|
|
3112
|
+
[() => ProtectedQueryS3Output$, () => ProtectedQueryMemberOutputList, () => ProtectedQueryDistributeOutput$]
|
|
3113
|
+
];
|
|
3114
|
+
var ProtectedQueryOutputConfiguration$ = [4, n0, _PQOC,
|
|
3115
|
+
0,
|
|
3116
|
+
[_s_, _memb, _di],
|
|
3117
|
+
[() => ProtectedQueryS3OutputConfiguration$, () => ProtectedQueryMemberOutputConfiguration$, () => ProtectedQueryDistributeOutputConfiguration$]
|
|
3118
|
+
];
|
|
3119
|
+
var QueryConstraint$ = [4, n0, _QC,
|
|
3120
|
+
0,
|
|
3121
|
+
[_rO],
|
|
3122
|
+
[() => QueryConstraintRequireOverlap$]
|
|
3123
|
+
];
|
|
3124
|
+
var SchemaTypeProperties$ = [4, n0, _STP,
|
|
3125
|
+
0,
|
|
3126
|
+
[_iMT],
|
|
3127
|
+
[() => IdMappingTableSchemaTypeProperties$]
|
|
3128
|
+
];
|
|
3129
|
+
var SnowflakeTableSchema$ = [4, n0, _STS,
|
|
3130
|
+
0,
|
|
3131
|
+
[_v_],
|
|
3132
|
+
[() => SnowflakeTableSchemaList]
|
|
3133
|
+
];
|
|
3134
|
+
var SyntheticDataParameters$ = [4, n0, _SDP,
|
|
3135
|
+
0,
|
|
3136
|
+
[_mSDP],
|
|
3137
|
+
[() => MLSyntheticDataParameters$]
|
|
3138
|
+
];
|
|
3139
|
+
var TableReference$ = [4, n0, _TR,
|
|
3140
|
+
0,
|
|
3141
|
+
[_g, _sn, _at],
|
|
3142
|
+
[() => GlueTableReference$, () => SnowflakeTableReference$, () => AthenaTableReference$]
|
|
3143
|
+
];
|
|
3144
|
+
var WorkerComputeConfigurationProperties$ = [4, n0, _WCCP,
|
|
3145
|
+
0,
|
|
3146
|
+
[_spa],
|
|
3147
|
+
[128 | 0]
|
|
3148
|
+
];
|
|
3149
|
+
var BatchGetCollaborationAnalysisTemplate$ = [9, n0, _BGCAT,
|
|
3150
|
+
{ [_h]: ["POST", "/collaborations/{collaborationIdentifier}/batch-analysistemplates", 200] }, () => BatchGetCollaborationAnalysisTemplateInput$, () => BatchGetCollaborationAnalysisTemplateOutput$
|
|
3151
|
+
];
|
|
3152
|
+
var BatchGetSchema$ = [9, n0, _BGS,
|
|
3153
|
+
{ [_h]: ["POST", "/collaborations/{collaborationIdentifier}/batch-schema", 200] }, () => BatchGetSchemaInput$, () => BatchGetSchemaOutput$
|
|
3154
|
+
];
|
|
3155
|
+
var BatchGetSchemaAnalysisRule$ = [9, n0, _BGSAR,
|
|
3156
|
+
{ [_h]: ["POST", "/collaborations/{collaborationIdentifier}/batch-schema-analysis-rule", 200] }, () => BatchGetSchemaAnalysisRuleInput$, () => BatchGetSchemaAnalysisRuleOutput$
|
|
3157
|
+
];
|
|
3158
|
+
var CreateAnalysisTemplate$ = [9, n0, _CATr,
|
|
3159
|
+
{ [_h]: ["POST", "/memberships/{membershipIdentifier}/analysistemplates", 200] }, () => CreateAnalysisTemplateInput$, () => CreateAnalysisTemplateOutput$
|
|
3160
|
+
];
|
|
3161
|
+
var CreateCollaboration$ = [9, n0, _CCr,
|
|
3162
|
+
{ [_h]: ["POST", "/collaborations", 200] }, () => CreateCollaborationInput$, () => CreateCollaborationOutput$
|
|
3163
|
+
];
|
|
3164
|
+
var CreateCollaborationChangeRequest$ = [9, n0, _CCCR,
|
|
3165
|
+
{ [_h]: ["POST", "/collaborations/{collaborationIdentifier}/changeRequests", 200] }, () => CreateCollaborationChangeRequestInput$, () => CreateCollaborationChangeRequestOutput$
|
|
3166
|
+
];
|
|
3167
|
+
var CreateConfiguredAudienceModelAssociation$ = [9, n0, _CCAMAr,
|
|
3168
|
+
{ [_h]: ["POST", "/memberships/{membershipIdentifier}/configuredaudiencemodelassociations", 200] }, () => CreateConfiguredAudienceModelAssociationInput$, () => CreateConfiguredAudienceModelAssociationOutput$
|
|
3169
|
+
];
|
|
3170
|
+
var CreateConfiguredTable$ = [9, n0, _CCT,
|
|
3171
|
+
{ [_h]: ["POST", "/configuredTables", 200] }, () => CreateConfiguredTableInput$, () => CreateConfiguredTableOutput$
|
|
3172
|
+
];
|
|
3173
|
+
var CreateConfiguredTableAnalysisRule$ = [9, n0, _CCTAR,
|
|
3174
|
+
{ [_h]: ["POST", "/configuredTables/{configuredTableIdentifier}/analysisRule", 200] }, () => CreateConfiguredTableAnalysisRuleInput$, () => CreateConfiguredTableAnalysisRuleOutput$
|
|
3175
|
+
];
|
|
3176
|
+
var CreateConfiguredTableAssociation$ = [9, n0, _CCTA,
|
|
3177
|
+
{ [_h]: ["POST", "/memberships/{membershipIdentifier}/configuredTableAssociations", 200] }, () => CreateConfiguredTableAssociationInput$, () => CreateConfiguredTableAssociationOutput$
|
|
3178
|
+
];
|
|
3179
|
+
var CreateConfiguredTableAssociationAnalysisRule$ = [9, n0, _CCTAAR,
|
|
3180
|
+
{ [_h]: ["POST", "/memberships/{membershipIdentifier}/configuredTableAssociations/{configuredTableAssociationIdentifier}/analysisRule", 200] }, () => CreateConfiguredTableAssociationAnalysisRuleInput$, () => CreateConfiguredTableAssociationAnalysisRuleOutput$
|
|
3181
|
+
];
|
|
3182
|
+
var CreateIdMappingTable$ = [9, n0, _CIMT,
|
|
3183
|
+
{ [_h]: ["POST", "/memberships/{membershipIdentifier}/idmappingtables", 200] }, () => CreateIdMappingTableInput$, () => CreateIdMappingTableOutput$
|
|
3184
|
+
];
|
|
3185
|
+
var CreateIdNamespaceAssociation$ = [9, n0, _CINAr,
|
|
3186
|
+
{ [_h]: ["POST", "/memberships/{membershipIdentifier}/idnamespaceassociations", 200] }, () => CreateIdNamespaceAssociationInput$, () => CreateIdNamespaceAssociationOutput$
|
|
3187
|
+
];
|
|
3188
|
+
var CreateMembership$ = [9, n0, _CM,
|
|
3189
|
+
{ [_h]: ["POST", "/memberships", 200] }, () => CreateMembershipInput$, () => CreateMembershipOutput$
|
|
3190
|
+
];
|
|
3191
|
+
var CreatePrivacyBudgetTemplate$ = [9, n0, _CPBTr,
|
|
3192
|
+
{ [_h]: ["POST", "/memberships/{membershipIdentifier}/privacybudgettemplates", 200] }, () => CreatePrivacyBudgetTemplateInput$, () => CreatePrivacyBudgetTemplateOutput$
|
|
3193
|
+
];
|
|
3194
|
+
var DeleteAnalysisTemplate$ = [9, n0, _DAT,
|
|
3195
|
+
{ [_h]: ["DELETE", "/memberships/{membershipIdentifier}/analysistemplates/{analysisTemplateIdentifier}", 204] }, () => DeleteAnalysisTemplateInput$, () => DeleteAnalysisTemplateOutput$
|
|
3196
|
+
];
|
|
3197
|
+
var DeleteCollaboration$ = [9, n0, _DC,
|
|
3198
|
+
{ [_h]: ["DELETE", "/collaborations/{collaborationIdentifier}", 204] }, () => DeleteCollaborationInput$, () => DeleteCollaborationOutput$
|
|
3199
|
+
];
|
|
3200
|
+
var DeleteConfiguredAudienceModelAssociation$ = [9, n0, _DCAMA,
|
|
3201
|
+
{ [_h]: ["DELETE", "/memberships/{membershipIdentifier}/configuredaudiencemodelassociations/{configuredAudienceModelAssociationIdentifier}", 204] }, () => DeleteConfiguredAudienceModelAssociationInput$, () => DeleteConfiguredAudienceModelAssociationOutput$
|
|
3202
|
+
];
|
|
3203
|
+
var DeleteConfiguredTable$ = [9, n0, _DCT,
|
|
3204
|
+
{ [_h]: ["DELETE", "/configuredTables/{configuredTableIdentifier}", 204] }, () => DeleteConfiguredTableInput$, () => DeleteConfiguredTableOutput$
|
|
3205
|
+
];
|
|
3206
|
+
var DeleteConfiguredTableAnalysisRule$ = [9, n0, _DCTAR,
|
|
3207
|
+
{ [_h]: ["DELETE", "/configuredTables/{configuredTableIdentifier}/analysisRule/{analysisRuleType}", 204] }, () => DeleteConfiguredTableAnalysisRuleInput$, () => DeleteConfiguredTableAnalysisRuleOutput$
|
|
3208
|
+
];
|
|
3209
|
+
var DeleteConfiguredTableAssociation$ = [9, n0, _DCTA,
|
|
3210
|
+
{ [_h]: ["DELETE", "/memberships/{membershipIdentifier}/configuredTableAssociations/{configuredTableAssociationIdentifier}", 204] }, () => DeleteConfiguredTableAssociationInput$, () => DeleteConfiguredTableAssociationOutput$
|
|
3211
|
+
];
|
|
3212
|
+
var DeleteConfiguredTableAssociationAnalysisRule$ = [9, n0, _DCTAAR,
|
|
3213
|
+
{ [_h]: ["DELETE", "/memberships/{membershipIdentifier}/configuredTableAssociations/{configuredTableAssociationIdentifier}/analysisRule/{analysisRuleType}", 204] }, () => DeleteConfiguredTableAssociationAnalysisRuleInput$, () => DeleteConfiguredTableAssociationAnalysisRuleOutput$
|
|
3214
|
+
];
|
|
3215
|
+
var DeleteIdMappingTable$ = [9, n0, _DIMT,
|
|
3216
|
+
{ [_h]: ["DELETE", "/memberships/{membershipIdentifier}/idmappingtables/{idMappingTableIdentifier}", 204] }, () => DeleteIdMappingTableInput$, () => DeleteIdMappingTableOutput$
|
|
3217
|
+
];
|
|
3218
|
+
var DeleteIdNamespaceAssociation$ = [9, n0, _DINA,
|
|
3219
|
+
{ [_h]: ["DELETE", "/memberships/{membershipIdentifier}/idnamespaceassociations/{idNamespaceAssociationIdentifier}", 204] }, () => DeleteIdNamespaceAssociationInput$, () => DeleteIdNamespaceAssociationOutput$
|
|
3220
|
+
];
|
|
3221
|
+
var DeleteMember$ = [9, n0, _DM,
|
|
3222
|
+
{ [_h]: ["DELETE", "/collaborations/{collaborationIdentifier}/member/{accountId}", 204] }, () => DeleteMemberInput$, () => DeleteMemberOutput$
|
|
3223
|
+
];
|
|
3224
|
+
var DeleteMembership$ = [9, n0, _DMe,
|
|
3225
|
+
{ [_h]: ["DELETE", "/memberships/{membershipIdentifier}", 204] }, () => DeleteMembershipInput$, () => DeleteMembershipOutput$
|
|
3226
|
+
];
|
|
3227
|
+
var DeletePrivacyBudgetTemplate$ = [9, n0, _DPBT,
|
|
3228
|
+
{ [_h]: ["DELETE", "/memberships/{membershipIdentifier}/privacybudgettemplates/{privacyBudgetTemplateIdentifier}", 204] }, () => DeletePrivacyBudgetTemplateInput$, () => DeletePrivacyBudgetTemplateOutput$
|
|
3229
|
+
];
|
|
3230
|
+
var GetAnalysisTemplate$ = [9, n0, _GAT,
|
|
3231
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/analysistemplates/{analysisTemplateIdentifier}", 200] }, () => GetAnalysisTemplateInput$, () => GetAnalysisTemplateOutput$
|
|
3232
|
+
];
|
|
3233
|
+
var GetCollaboration$ = [9, n0, _GC,
|
|
3234
|
+
{ [_h]: ["GET", "/collaborations/{collaborationIdentifier}", 200] }, () => GetCollaborationInput$, () => GetCollaborationOutput$
|
|
3235
|
+
];
|
|
3236
|
+
var GetCollaborationAnalysisTemplate$ = [9, n0, _GCAT,
|
|
3237
|
+
{ [_h]: ["GET", "/collaborations/{collaborationIdentifier}/analysistemplates/{analysisTemplateArn}", 200] }, () => GetCollaborationAnalysisTemplateInput$, () => GetCollaborationAnalysisTemplateOutput$
|
|
3238
|
+
];
|
|
3239
|
+
var GetCollaborationChangeRequest$ = [9, n0, _GCCR,
|
|
3240
|
+
{ [_h]: ["GET", "/collaborations/{collaborationIdentifier}/changeRequests/{changeRequestIdentifier}", 200] }, () => GetCollaborationChangeRequestInput$, () => GetCollaborationChangeRequestOutput$
|
|
3241
|
+
];
|
|
3242
|
+
var GetCollaborationConfiguredAudienceModelAssociation$ = [9, n0, _GCCAMA,
|
|
3243
|
+
{ [_h]: ["GET", "/collaborations/{collaborationIdentifier}/configuredaudiencemodelassociations/{configuredAudienceModelAssociationIdentifier}", 200] }, () => GetCollaborationConfiguredAudienceModelAssociationInput$, () => GetCollaborationConfiguredAudienceModelAssociationOutput$
|
|
3244
|
+
];
|
|
3245
|
+
var GetCollaborationIdNamespaceAssociation$ = [9, n0, _GCINA,
|
|
3246
|
+
{ [_h]: ["GET", "/collaborations/{collaborationIdentifier}/idnamespaceassociations/{idNamespaceAssociationIdentifier}", 200] }, () => GetCollaborationIdNamespaceAssociationInput$, () => GetCollaborationIdNamespaceAssociationOutput$
|
|
3247
|
+
];
|
|
3248
|
+
var GetCollaborationPrivacyBudgetTemplate$ = [9, n0, _GCPBT,
|
|
3249
|
+
{ [_h]: ["GET", "/collaborations/{collaborationIdentifier}/privacybudgettemplates/{privacyBudgetTemplateIdentifier}", 200] }, () => GetCollaborationPrivacyBudgetTemplateInput$, () => GetCollaborationPrivacyBudgetTemplateOutput$
|
|
3250
|
+
];
|
|
3251
|
+
var GetConfiguredAudienceModelAssociation$ = [9, n0, _GCAMA,
|
|
3252
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/configuredaudiencemodelassociations/{configuredAudienceModelAssociationIdentifier}", 200] }, () => GetConfiguredAudienceModelAssociationInput$, () => GetConfiguredAudienceModelAssociationOutput$
|
|
3253
|
+
];
|
|
3254
|
+
var GetConfiguredTable$ = [9, n0, _GCT,
|
|
3255
|
+
{ [_h]: ["GET", "/configuredTables/{configuredTableIdentifier}", 200] }, () => GetConfiguredTableInput$, () => GetConfiguredTableOutput$
|
|
3256
|
+
];
|
|
3257
|
+
var GetConfiguredTableAnalysisRule$ = [9, n0, _GCTAR,
|
|
3258
|
+
{ [_h]: ["GET", "/configuredTables/{configuredTableIdentifier}/analysisRule/{analysisRuleType}", 200] }, () => GetConfiguredTableAnalysisRuleInput$, () => GetConfiguredTableAnalysisRuleOutput$
|
|
3259
|
+
];
|
|
3260
|
+
var GetConfiguredTableAssociation$ = [9, n0, _GCTA,
|
|
3261
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/configuredTableAssociations/{configuredTableAssociationIdentifier}", 200] }, () => GetConfiguredTableAssociationInput$, () => GetConfiguredTableAssociationOutput$
|
|
3262
|
+
];
|
|
3263
|
+
var GetConfiguredTableAssociationAnalysisRule$ = [9, n0, _GCTAAR,
|
|
3264
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/configuredTableAssociations/{configuredTableAssociationIdentifier}/analysisRule/{analysisRuleType}", 200] }, () => GetConfiguredTableAssociationAnalysisRuleInput$, () => GetConfiguredTableAssociationAnalysisRuleOutput$
|
|
3265
|
+
];
|
|
3266
|
+
var GetIdMappingTable$ = [9, n0, _GIMT,
|
|
3267
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/idmappingtables/{idMappingTableIdentifier}", 200] }, () => GetIdMappingTableInput$, () => GetIdMappingTableOutput$
|
|
3268
|
+
];
|
|
3269
|
+
var GetIdNamespaceAssociation$ = [9, n0, _GINA,
|
|
3270
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/idnamespaceassociations/{idNamespaceAssociationIdentifier}", 200] }, () => GetIdNamespaceAssociationInput$, () => GetIdNamespaceAssociationOutput$
|
|
3271
|
+
];
|
|
3272
|
+
var GetMembership$ = [9, n0, _GM,
|
|
3273
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}", 200] }, () => GetMembershipInput$, () => GetMembershipOutput$
|
|
3274
|
+
];
|
|
3275
|
+
var GetPrivacyBudgetTemplate$ = [9, n0, _GPBT,
|
|
3276
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/privacybudgettemplates/{privacyBudgetTemplateIdentifier}", 200] }, () => GetPrivacyBudgetTemplateInput$, () => GetPrivacyBudgetTemplateOutput$
|
|
3277
|
+
];
|
|
3278
|
+
var GetProtectedJob$ = [9, n0, _GPJ,
|
|
3279
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/protectedJobs/{protectedJobIdentifier}", 200] }, () => GetProtectedJobInput$, () => GetProtectedJobOutput$
|
|
3280
|
+
];
|
|
3281
|
+
var GetProtectedQuery$ = [9, n0, _GPQ,
|
|
3282
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/protectedQueries/{protectedQueryIdentifier}", 200] }, () => GetProtectedQueryInput$, () => GetProtectedQueryOutput$
|
|
3283
|
+
];
|
|
3284
|
+
var GetSchema$ = [9, n0, _GS,
|
|
3285
|
+
{ [_h]: ["GET", "/collaborations/{collaborationIdentifier}/schemas/{name}", 200] }, () => GetSchemaInput$, () => GetSchemaOutput$
|
|
3286
|
+
];
|
|
3287
|
+
var GetSchemaAnalysisRule$ = [9, n0, _GSAR,
|
|
3288
|
+
{ [_h]: ["GET", "/collaborations/{collaborationIdentifier}/schemas/{name}/analysisRule/{type}", 200] }, () => GetSchemaAnalysisRuleInput$, () => GetSchemaAnalysisRuleOutput$
|
|
3289
|
+
];
|
|
3290
|
+
var ListAnalysisTemplates$ = [9, n0, _LAT,
|
|
3291
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/analysistemplates", 200] }, () => ListAnalysisTemplatesInput$, () => ListAnalysisTemplatesOutput$
|
|
3292
|
+
];
|
|
3293
|
+
var ListCollaborationAnalysisTemplates$ = [9, n0, _LCAT,
|
|
3294
|
+
{ [_h]: ["GET", "/collaborations/{collaborationIdentifier}/analysistemplates", 200] }, () => ListCollaborationAnalysisTemplatesInput$, () => ListCollaborationAnalysisTemplatesOutput$
|
|
3295
|
+
];
|
|
3296
|
+
var ListCollaborationChangeRequests$ = [9, n0, _LCCR,
|
|
3297
|
+
{ [_h]: ["GET", "/collaborations/{collaborationIdentifier}/changeRequests", 200] }, () => ListCollaborationChangeRequestsInput$, () => ListCollaborationChangeRequestsOutput$
|
|
3298
|
+
];
|
|
3299
|
+
var ListCollaborationConfiguredAudienceModelAssociations$ = [9, n0, _LCCAMA,
|
|
3300
|
+
{ [_h]: ["GET", "/collaborations/{collaborationIdentifier}/configuredaudiencemodelassociations", 200] }, () => ListCollaborationConfiguredAudienceModelAssociationsInput$, () => ListCollaborationConfiguredAudienceModelAssociationsOutput$
|
|
3301
|
+
];
|
|
3302
|
+
var ListCollaborationIdNamespaceAssociations$ = [9, n0, _LCINA,
|
|
3303
|
+
{ [_h]: ["GET", "/collaborations/{collaborationIdentifier}/idnamespaceassociations", 200] }, () => ListCollaborationIdNamespaceAssociationsInput$, () => ListCollaborationIdNamespaceAssociationsOutput$
|
|
3304
|
+
];
|
|
3305
|
+
var ListCollaborationPrivacyBudgets$ = [9, n0, _LCPB,
|
|
3306
|
+
{ [_h]: ["GET", "/collaborations/{collaborationIdentifier}/privacybudgets", 200] }, () => ListCollaborationPrivacyBudgetsInput$, () => ListCollaborationPrivacyBudgetsOutput$
|
|
3307
|
+
];
|
|
3308
|
+
var ListCollaborationPrivacyBudgetTemplates$ = [9, n0, _LCPBT,
|
|
3309
|
+
{ [_h]: ["GET", "/collaborations/{collaborationIdentifier}/privacybudgettemplates", 200] }, () => ListCollaborationPrivacyBudgetTemplatesInput$, () => ListCollaborationPrivacyBudgetTemplatesOutput$
|
|
3310
|
+
];
|
|
3311
|
+
var ListCollaborations$ = [9, n0, _LC,
|
|
3312
|
+
{ [_h]: ["GET", "/collaborations", 200] }, () => ListCollaborationsInput$, () => ListCollaborationsOutput$
|
|
3313
|
+
];
|
|
3314
|
+
var ListConfiguredAudienceModelAssociations$ = [9, n0, _LCAMA,
|
|
3315
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/configuredaudiencemodelassociations", 200] }, () => ListConfiguredAudienceModelAssociationsInput$, () => ListConfiguredAudienceModelAssociationsOutput$
|
|
3316
|
+
];
|
|
3317
|
+
var ListConfiguredTableAssociations$ = [9, n0, _LCTA,
|
|
3318
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/configuredTableAssociations", 200] }, () => ListConfiguredTableAssociationsInput$, () => ListConfiguredTableAssociationsOutput$
|
|
3319
|
+
];
|
|
3320
|
+
var ListConfiguredTables$ = [9, n0, _LCT,
|
|
3321
|
+
{ [_h]: ["GET", "/configuredTables", 200] }, () => ListConfiguredTablesInput$, () => ListConfiguredTablesOutput$
|
|
3322
|
+
];
|
|
3323
|
+
var ListIdMappingTables$ = [9, n0, _LIMT,
|
|
3324
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/idmappingtables", 200] }, () => ListIdMappingTablesInput$, () => ListIdMappingTablesOutput$
|
|
3325
|
+
];
|
|
3326
|
+
var ListIdNamespaceAssociations$ = [9, n0, _LINA,
|
|
3327
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/idnamespaceassociations", 200] }, () => ListIdNamespaceAssociationsInput$, () => ListIdNamespaceAssociationsOutput$
|
|
3328
|
+
];
|
|
3329
|
+
var ListMembers$ = [9, n0, _LM,
|
|
3330
|
+
{ [_h]: ["GET", "/collaborations/{collaborationIdentifier}/members", 200] }, () => ListMembersInput$, () => ListMembersOutput$
|
|
3331
|
+
];
|
|
3332
|
+
var ListMemberships$ = [9, n0, _LMi,
|
|
3333
|
+
{ [_h]: ["GET", "/memberships", 200] }, () => ListMembershipsInput$, () => ListMembershipsOutput$
|
|
3334
|
+
];
|
|
3335
|
+
var ListPrivacyBudgets$ = [9, n0, _LPB,
|
|
3336
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/privacybudgets", 200] }, () => ListPrivacyBudgetsInput$, () => ListPrivacyBudgetsOutput$
|
|
3337
|
+
];
|
|
3338
|
+
var ListPrivacyBudgetTemplates$ = [9, n0, _LPBT,
|
|
3339
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/privacybudgettemplates", 200] }, () => ListPrivacyBudgetTemplatesInput$, () => ListPrivacyBudgetTemplatesOutput$
|
|
3340
|
+
];
|
|
3341
|
+
var ListProtectedJobs$ = [9, n0, _LPJ,
|
|
3342
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/protectedJobs", 200] }, () => ListProtectedJobsInput$, () => ListProtectedJobsOutput$
|
|
3343
|
+
];
|
|
3344
|
+
var ListProtectedQueries$ = [9, n0, _LPQ,
|
|
3345
|
+
{ [_h]: ["GET", "/memberships/{membershipIdentifier}/protectedQueries", 200] }, () => ListProtectedQueriesInput$, () => ListProtectedQueriesOutput$
|
|
3346
|
+
];
|
|
3347
|
+
var ListSchemas$ = [9, n0, _LS,
|
|
3348
|
+
{ [_h]: ["GET", "/collaborations/{collaborationIdentifier}/schemas", 200] }, () => ListSchemasInput$, () => ListSchemasOutput$
|
|
3349
|
+
];
|
|
3350
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
3351
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
3352
|
+
];
|
|
3353
|
+
var PopulateIdMappingTable$ = [9, n0, _PIMT,
|
|
3354
|
+
{ [_h]: ["POST", "/memberships/{membershipIdentifier}/idmappingtables/{idMappingTableIdentifier}/populate", 200] }, () => PopulateIdMappingTableInput$, () => PopulateIdMappingTableOutput$
|
|
3355
|
+
];
|
|
3356
|
+
var PreviewPrivacyImpact$ = [9, n0, _PPI,
|
|
3357
|
+
{ [_h]: ["POST", "/memberships/{membershipIdentifier}/previewprivacyimpact", 200] }, () => PreviewPrivacyImpactInput$, () => PreviewPrivacyImpactOutput$
|
|
3358
|
+
];
|
|
3359
|
+
var StartProtectedJob$ = [9, n0, _SPJ,
|
|
3360
|
+
{ [_h]: ["POST", "/memberships/{membershipIdentifier}/protectedJobs", 200] }, () => StartProtectedJobInput$, () => StartProtectedJobOutput$
|
|
3361
|
+
];
|
|
3362
|
+
var StartProtectedQuery$ = [9, n0, _SPQ,
|
|
3363
|
+
{ [_h]: ["POST", "/memberships/{membershipIdentifier}/protectedQueries", 200] }, () => StartProtectedQueryInput$, () => StartProtectedQueryOutput$
|
|
3364
|
+
];
|
|
3365
|
+
var TagResource$ = [9, n0, _TRa,
|
|
3366
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceInput$, () => TagResourceOutput$
|
|
3367
|
+
];
|
|
3368
|
+
var UntagResource$ = [9, n0, _UR,
|
|
3369
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
3370
|
+
];
|
|
3371
|
+
var UpdateAnalysisTemplate$ = [9, n0, _UAT,
|
|
3372
|
+
{ [_h]: ["PATCH", "/memberships/{membershipIdentifier}/analysistemplates/{analysisTemplateIdentifier}", 200] }, () => UpdateAnalysisTemplateInput$, () => UpdateAnalysisTemplateOutput$
|
|
3373
|
+
];
|
|
3374
|
+
var UpdateCollaboration$ = [9, n0, _UC,
|
|
3375
|
+
{ [_h]: ["PATCH", "/collaborations/{collaborationIdentifier}", 200] }, () => UpdateCollaborationInput$, () => UpdateCollaborationOutput$
|
|
3376
|
+
];
|
|
3377
|
+
var UpdateCollaborationChangeRequest$ = [9, n0, _UCCR,
|
|
3378
|
+
{ [_h]: ["PATCH", "/collaborations/{collaborationIdentifier}/changeRequests/{changeRequestIdentifier}", 200] }, () => UpdateCollaborationChangeRequestInput$, () => UpdateCollaborationChangeRequestOutput$
|
|
3379
|
+
];
|
|
3380
|
+
var UpdateConfiguredAudienceModelAssociation$ = [9, n0, _UCAMA,
|
|
3381
|
+
{ [_h]: ["PATCH", "/memberships/{membershipIdentifier}/configuredaudiencemodelassociations/{configuredAudienceModelAssociationIdentifier}", 200] }, () => UpdateConfiguredAudienceModelAssociationInput$, () => UpdateConfiguredAudienceModelAssociationOutput$
|
|
3382
|
+
];
|
|
3383
|
+
var UpdateConfiguredTable$ = [9, n0, _UCT,
|
|
3384
|
+
{ [_h]: ["PATCH", "/configuredTables/{configuredTableIdentifier}", 200] }, () => UpdateConfiguredTableInput$, () => UpdateConfiguredTableOutput$
|
|
3385
|
+
];
|
|
3386
|
+
var UpdateConfiguredTableAnalysisRule$ = [9, n0, _UCTAR,
|
|
3387
|
+
{ [_h]: ["PATCH", "/configuredTables/{configuredTableIdentifier}/analysisRule/{analysisRuleType}", 200] }, () => UpdateConfiguredTableAnalysisRuleInput$, () => UpdateConfiguredTableAnalysisRuleOutput$
|
|
3388
|
+
];
|
|
3389
|
+
var UpdateConfiguredTableAssociation$ = [9, n0, _UCTA,
|
|
3390
|
+
{ [_h]: ["PATCH", "/memberships/{membershipIdentifier}/configuredTableAssociations/{configuredTableAssociationIdentifier}", 200] }, () => UpdateConfiguredTableAssociationInput$, () => UpdateConfiguredTableAssociationOutput$
|
|
3391
|
+
];
|
|
3392
|
+
var UpdateConfiguredTableAssociationAnalysisRule$ = [9, n0, _UCTAAR,
|
|
3393
|
+
{ [_h]: ["PATCH", "/memberships/{membershipIdentifier}/configuredTableAssociations/{configuredTableAssociationIdentifier}/analysisRule/{analysisRuleType}", 200] }, () => UpdateConfiguredTableAssociationAnalysisRuleInput$, () => UpdateConfiguredTableAssociationAnalysisRuleOutput$
|
|
3394
|
+
];
|
|
3395
|
+
var UpdateIdMappingTable$ = [9, n0, _UIMT,
|
|
3396
|
+
{ [_h]: ["PATCH", "/memberships/{membershipIdentifier}/idmappingtables/{idMappingTableIdentifier}", 200] }, () => UpdateIdMappingTableInput$, () => UpdateIdMappingTableOutput$
|
|
3397
|
+
];
|
|
3398
|
+
var UpdateIdNamespaceAssociation$ = [9, n0, _UINA,
|
|
3399
|
+
{ [_h]: ["PATCH", "/memberships/{membershipIdentifier}/idnamespaceassociations/{idNamespaceAssociationIdentifier}", 200] }, () => UpdateIdNamespaceAssociationInput$, () => UpdateIdNamespaceAssociationOutput$
|
|
3400
|
+
];
|
|
3401
|
+
var UpdateMembership$ = [9, n0, _UM,
|
|
3402
|
+
{ [_h]: ["PATCH", "/memberships/{membershipIdentifier}", 200] }, () => UpdateMembershipInput$, () => UpdateMembershipOutput$
|
|
3403
|
+
];
|
|
3404
|
+
var UpdatePrivacyBudgetTemplate$ = [9, n0, _UPBT,
|
|
3405
|
+
{ [_h]: ["PATCH", "/memberships/{membershipIdentifier}/privacybudgettemplates/{privacyBudgetTemplateIdentifier}", 200] }, () => UpdatePrivacyBudgetTemplateInput$, () => UpdatePrivacyBudgetTemplateOutput$
|
|
3406
|
+
];
|
|
3407
|
+
var UpdateProtectedJob$ = [9, n0, _UPJ,
|
|
3408
|
+
{ [_h]: ["PATCH", "/memberships/{membershipIdentifier}/protectedJobs/{protectedJobIdentifier}", 200] }, () => UpdateProtectedJobInput$, () => UpdateProtectedJobOutput$
|
|
3409
|
+
];
|
|
3410
|
+
var UpdateProtectedQuery$ = [9, n0, _UPQ,
|
|
3411
|
+
{ [_h]: ["PATCH", "/memberships/{membershipIdentifier}/protectedQueries/{protectedQueryIdentifier}", 200] }, () => UpdateProtectedQueryInput$, () => UpdateProtectedQueryOutput$
|
|
3412
|
+
];
|
|
3413
|
+
|
|
3414
|
+
const getRuntimeConfig$1 = (config) => {
|
|
3415
|
+
return {
|
|
3416
|
+
apiVersion: "2022-02-17",
|
|
3417
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
3418
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
3419
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
3420
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
3421
|
+
extensions: config?.extensions ?? [],
|
|
3422
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultCleanRoomsHttpAuthSchemeProvider,
|
|
3423
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
3424
|
+
{
|
|
3425
|
+
schemeId: "aws.auth#sigv4",
|
|
3426
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
3427
|
+
signer: new AwsSdkSigV4Signer(),
|
|
3428
|
+
},
|
|
3429
|
+
],
|
|
3430
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
3431
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
3432
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
3433
|
+
defaultNamespace: "com.amazonaws.cleanrooms",
|
|
3434
|
+
errorTypeRegistries,
|
|
3435
|
+
version: "2022-02-17",
|
|
3436
|
+
serviceTarget: "AWSBastionControlPlaneServiceLambda",
|
|
3437
|
+
},
|
|
3438
|
+
serviceId: config?.serviceId ?? "CleanRooms",
|
|
3439
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
3440
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
3441
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
3442
|
+
};
|
|
3443
|
+
};
|
|
3444
|
+
|
|
3445
|
+
const getRuntimeConfig = (config) => {
|
|
3446
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
3447
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
3448
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
3449
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
3450
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
3451
|
+
const loaderConfig = {
|
|
3452
|
+
profile: config?.profile,
|
|
3453
|
+
logger: clientSharedValues.logger,
|
|
3454
|
+
};
|
|
3455
|
+
return {
|
|
3456
|
+
...clientSharedValues,
|
|
3457
|
+
...config,
|
|
3458
|
+
runtime: "node",
|
|
3459
|
+
defaultsMode,
|
|
3460
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
3461
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
3462
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
3463
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
3464
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
3465
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
3466
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
3467
|
+
retryMode: config?.retryMode ??
|
|
3468
|
+
loadConfig({
|
|
3469
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
3470
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
3471
|
+
}, config),
|
|
3472
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
3473
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
3474
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
3475
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
3476
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
3477
|
+
};
|
|
3478
|
+
};
|
|
3479
|
+
|
|
34
3480
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
3481
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
3482
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1725,157 +5171,633 @@ const TargetProtectedQueryStatus = {
|
|
|
1725
5171
|
CANCELLED: "CANCELLED",
|
|
1726
5172
|
};
|
|
1727
5173
|
|
|
5174
|
+
exports.AccessBudget$ = AccessBudget$;
|
|
5175
|
+
exports.AccessBudgetDetails$ = AccessBudgetDetails$;
|
|
1728
5176
|
exports.AccessBudgetType = AccessBudgetType;
|
|
5177
|
+
exports.AccessBudgetsPrivacyTemplateParametersInput$ = AccessBudgetsPrivacyTemplateParametersInput$;
|
|
5178
|
+
exports.AccessBudgetsPrivacyTemplateParametersOutput$ = AccessBudgetsPrivacyTemplateParametersOutput$;
|
|
5179
|
+
exports.AccessBudgetsPrivacyTemplateUpdateParameters$ = AccessBudgetsPrivacyTemplateUpdateParameters$;
|
|
5180
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
5181
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1729
5182
|
exports.AccessDeniedExceptionReason = AccessDeniedExceptionReason;
|
|
1730
5183
|
exports.AdditionalAnalyses = AdditionalAnalyses;
|
|
5184
|
+
exports.AggregateColumn$ = AggregateColumn$;
|
|
1731
5185
|
exports.AggregateFunctionName = AggregateFunctionName;
|
|
5186
|
+
exports.AggregationConstraint$ = AggregationConstraint$;
|
|
1732
5187
|
exports.AggregationType = AggregationType;
|
|
1733
5188
|
exports.AnalysisFormat = AnalysisFormat;
|
|
1734
5189
|
exports.AnalysisMethod = AnalysisMethod;
|
|
5190
|
+
exports.AnalysisParameter$ = AnalysisParameter$;
|
|
5191
|
+
exports.AnalysisRule$ = AnalysisRule$;
|
|
5192
|
+
exports.AnalysisRuleAggregation$ = AnalysisRuleAggregation$;
|
|
5193
|
+
exports.AnalysisRuleCustom$ = AnalysisRuleCustom$;
|
|
5194
|
+
exports.AnalysisRuleIdMappingTable$ = AnalysisRuleIdMappingTable$;
|
|
5195
|
+
exports.AnalysisRuleList$ = AnalysisRuleList$;
|
|
5196
|
+
exports.AnalysisRulePolicy$ = AnalysisRulePolicy$;
|
|
5197
|
+
exports.AnalysisRulePolicyV1$ = AnalysisRulePolicyV1$;
|
|
1735
5198
|
exports.AnalysisRuleType = AnalysisRuleType;
|
|
5199
|
+
exports.AnalysisSchema$ = AnalysisSchema$;
|
|
5200
|
+
exports.AnalysisSource$ = AnalysisSource$;
|
|
5201
|
+
exports.AnalysisSourceMetadata$ = AnalysisSourceMetadata$;
|
|
5202
|
+
exports.AnalysisTemplate$ = AnalysisTemplate$;
|
|
5203
|
+
exports.AnalysisTemplateArtifact$ = AnalysisTemplateArtifact$;
|
|
5204
|
+
exports.AnalysisTemplateArtifactMetadata$ = AnalysisTemplateArtifactMetadata$;
|
|
5205
|
+
exports.AnalysisTemplateArtifacts$ = AnalysisTemplateArtifacts$;
|
|
5206
|
+
exports.AnalysisTemplateSummary$ = AnalysisTemplateSummary$;
|
|
1736
5207
|
exports.AnalysisTemplateValidationStatus = AnalysisTemplateValidationStatus;
|
|
5208
|
+
exports.AnalysisTemplateValidationStatusDetail$ = AnalysisTemplateValidationStatusDetail$;
|
|
5209
|
+
exports.AnalysisTemplateValidationStatusReason$ = AnalysisTemplateValidationStatusReason$;
|
|
1737
5210
|
exports.AnalysisTemplateValidationType = AnalysisTemplateValidationType;
|
|
1738
5211
|
exports.AnalysisType = AnalysisType;
|
|
1739
5212
|
exports.AnalyticsEngine = AnalyticsEngine;
|
|
1740
5213
|
exports.ApprovalStatus = ApprovalStatus;
|
|
5214
|
+
exports.ApprovalStatusDetails$ = ApprovalStatusDetails$;
|
|
5215
|
+
exports.AthenaTableReference$ = AthenaTableReference$;
|
|
1741
5216
|
exports.AutoApprovedChangeType = AutoApprovedChangeType;
|
|
1742
5217
|
exports.AutoRefreshMode = AutoRefreshMode;
|
|
5218
|
+
exports.BatchGetCollaborationAnalysisTemplate$ = BatchGetCollaborationAnalysisTemplate$;
|
|
1743
5219
|
exports.BatchGetCollaborationAnalysisTemplateCommand = BatchGetCollaborationAnalysisTemplateCommand;
|
|
5220
|
+
exports.BatchGetCollaborationAnalysisTemplateError$ = BatchGetCollaborationAnalysisTemplateError$;
|
|
5221
|
+
exports.BatchGetCollaborationAnalysisTemplateInput$ = BatchGetCollaborationAnalysisTemplateInput$;
|
|
5222
|
+
exports.BatchGetCollaborationAnalysisTemplateOutput$ = BatchGetCollaborationAnalysisTemplateOutput$;
|
|
5223
|
+
exports.BatchGetSchema$ = BatchGetSchema$;
|
|
5224
|
+
exports.BatchGetSchemaAnalysisRule$ = BatchGetSchemaAnalysisRule$;
|
|
1744
5225
|
exports.BatchGetSchemaAnalysisRuleCommand = BatchGetSchemaAnalysisRuleCommand;
|
|
5226
|
+
exports.BatchGetSchemaAnalysisRuleError$ = BatchGetSchemaAnalysisRuleError$;
|
|
5227
|
+
exports.BatchGetSchemaAnalysisRuleInput$ = BatchGetSchemaAnalysisRuleInput$;
|
|
5228
|
+
exports.BatchGetSchemaAnalysisRuleOutput$ = BatchGetSchemaAnalysisRuleOutput$;
|
|
1745
5229
|
exports.BatchGetSchemaCommand = BatchGetSchemaCommand;
|
|
5230
|
+
exports.BatchGetSchemaError$ = BatchGetSchemaError$;
|
|
5231
|
+
exports.BatchGetSchemaInput$ = BatchGetSchemaInput$;
|
|
5232
|
+
exports.BatchGetSchemaOutput$ = BatchGetSchemaOutput$;
|
|
5233
|
+
exports.BilledJobResourceUtilization$ = BilledJobResourceUtilization$;
|
|
5234
|
+
exports.BilledResourceUtilization$ = BilledResourceUtilization$;
|
|
5235
|
+
exports.BudgetParameter$ = BudgetParameter$;
|
|
5236
|
+
exports.Change$ = Change$;
|
|
5237
|
+
exports.ChangeInput$ = ChangeInput$;
|
|
1746
5238
|
exports.ChangeRequestAction = ChangeRequestAction;
|
|
1747
5239
|
exports.ChangeRequestStatus = ChangeRequestStatus;
|
|
5240
|
+
exports.ChangeSpecification$ = ChangeSpecification$;
|
|
1748
5241
|
exports.ChangeSpecificationType = ChangeSpecificationType;
|
|
1749
5242
|
exports.ChangeType = ChangeType;
|
|
1750
5243
|
exports.CleanRooms = CleanRooms;
|
|
1751
5244
|
exports.CleanRoomsClient = CleanRoomsClient;
|
|
5245
|
+
exports.CleanRoomsServiceException = CleanRoomsServiceException;
|
|
5246
|
+
exports.CleanRoomsServiceException$ = CleanRoomsServiceException$;
|
|
5247
|
+
exports.Collaboration$ = Collaboration$;
|
|
5248
|
+
exports.CollaborationAnalysisTemplate$ = CollaborationAnalysisTemplate$;
|
|
5249
|
+
exports.CollaborationAnalysisTemplateSummary$ = CollaborationAnalysisTemplateSummary$;
|
|
5250
|
+
exports.CollaborationChangeRequest$ = CollaborationChangeRequest$;
|
|
5251
|
+
exports.CollaborationChangeRequestSummary$ = CollaborationChangeRequestSummary$;
|
|
5252
|
+
exports.CollaborationChangeSpecification$ = CollaborationChangeSpecification$;
|
|
5253
|
+
exports.CollaborationConfiguredAudienceModelAssociation$ = CollaborationConfiguredAudienceModelAssociation$;
|
|
5254
|
+
exports.CollaborationConfiguredAudienceModelAssociationSummary$ = CollaborationConfiguredAudienceModelAssociationSummary$;
|
|
5255
|
+
exports.CollaborationIdNamespaceAssociation$ = CollaborationIdNamespaceAssociation$;
|
|
5256
|
+
exports.CollaborationIdNamespaceAssociationSummary$ = CollaborationIdNamespaceAssociationSummary$;
|
|
1752
5257
|
exports.CollaborationJobLogStatus = CollaborationJobLogStatus;
|
|
5258
|
+
exports.CollaborationPrivacyBudgetSummary$ = CollaborationPrivacyBudgetSummary$;
|
|
5259
|
+
exports.CollaborationPrivacyBudgetTemplate$ = CollaborationPrivacyBudgetTemplate$;
|
|
5260
|
+
exports.CollaborationPrivacyBudgetTemplateSummary$ = CollaborationPrivacyBudgetTemplateSummary$;
|
|
1753
5261
|
exports.CollaborationQueryLogStatus = CollaborationQueryLogStatus;
|
|
5262
|
+
exports.CollaborationSummary$ = CollaborationSummary$;
|
|
5263
|
+
exports.Column$ = Column$;
|
|
5264
|
+
exports.ColumnClassificationDetails$ = ColumnClassificationDetails$;
|
|
1754
5265
|
exports.CommercialRegion = CommercialRegion;
|
|
5266
|
+
exports.ComputeConfiguration$ = ComputeConfiguration$;
|
|
5267
|
+
exports.ConfigurationDetails$ = ConfigurationDetails$;
|
|
5268
|
+
exports.ConfiguredAudienceModelAssociation$ = ConfiguredAudienceModelAssociation$;
|
|
5269
|
+
exports.ConfiguredAudienceModelAssociationSummary$ = ConfiguredAudienceModelAssociationSummary$;
|
|
5270
|
+
exports.ConfiguredTable$ = ConfiguredTable$;
|
|
5271
|
+
exports.ConfiguredTableAnalysisRule$ = ConfiguredTableAnalysisRule$;
|
|
5272
|
+
exports.ConfiguredTableAnalysisRulePolicy$ = ConfiguredTableAnalysisRulePolicy$;
|
|
5273
|
+
exports.ConfiguredTableAnalysisRulePolicyV1$ = ConfiguredTableAnalysisRulePolicyV1$;
|
|
1755
5274
|
exports.ConfiguredTableAnalysisRuleType = ConfiguredTableAnalysisRuleType;
|
|
5275
|
+
exports.ConfiguredTableAssociation$ = ConfiguredTableAssociation$;
|
|
5276
|
+
exports.ConfiguredTableAssociationAnalysisRule$ = ConfiguredTableAssociationAnalysisRule$;
|
|
5277
|
+
exports.ConfiguredTableAssociationAnalysisRuleAggregation$ = ConfiguredTableAssociationAnalysisRuleAggregation$;
|
|
5278
|
+
exports.ConfiguredTableAssociationAnalysisRuleCustom$ = ConfiguredTableAssociationAnalysisRuleCustom$;
|
|
5279
|
+
exports.ConfiguredTableAssociationAnalysisRuleList$ = ConfiguredTableAssociationAnalysisRuleList$;
|
|
5280
|
+
exports.ConfiguredTableAssociationAnalysisRulePolicy$ = ConfiguredTableAssociationAnalysisRulePolicy$;
|
|
5281
|
+
exports.ConfiguredTableAssociationAnalysisRulePolicyV1$ = ConfiguredTableAssociationAnalysisRulePolicyV1$;
|
|
1756
5282
|
exports.ConfiguredTableAssociationAnalysisRuleType = ConfiguredTableAssociationAnalysisRuleType;
|
|
5283
|
+
exports.ConfiguredTableAssociationSummary$ = ConfiguredTableAssociationSummary$;
|
|
5284
|
+
exports.ConfiguredTableSummary$ = ConfiguredTableSummary$;
|
|
5285
|
+
exports.ConflictException = ConflictException;
|
|
5286
|
+
exports.ConflictException$ = ConflictException$;
|
|
1757
5287
|
exports.ConflictExceptionReason = ConflictExceptionReason;
|
|
5288
|
+
exports.ConsolidatedPolicy$ = ConsolidatedPolicy$;
|
|
5289
|
+
exports.ConsolidatedPolicyAggregation$ = ConsolidatedPolicyAggregation$;
|
|
5290
|
+
exports.ConsolidatedPolicyCustom$ = ConsolidatedPolicyCustom$;
|
|
5291
|
+
exports.ConsolidatedPolicyList$ = ConsolidatedPolicyList$;
|
|
5292
|
+
exports.ConsolidatedPolicyV1$ = ConsolidatedPolicyV1$;
|
|
5293
|
+
exports.CreateAnalysisTemplate$ = CreateAnalysisTemplate$;
|
|
1758
5294
|
exports.CreateAnalysisTemplateCommand = CreateAnalysisTemplateCommand;
|
|
5295
|
+
exports.CreateAnalysisTemplateInput$ = CreateAnalysisTemplateInput$;
|
|
5296
|
+
exports.CreateAnalysisTemplateOutput$ = CreateAnalysisTemplateOutput$;
|
|
5297
|
+
exports.CreateCollaboration$ = CreateCollaboration$;
|
|
5298
|
+
exports.CreateCollaborationChangeRequest$ = CreateCollaborationChangeRequest$;
|
|
1759
5299
|
exports.CreateCollaborationChangeRequestCommand = CreateCollaborationChangeRequestCommand;
|
|
5300
|
+
exports.CreateCollaborationChangeRequestInput$ = CreateCollaborationChangeRequestInput$;
|
|
5301
|
+
exports.CreateCollaborationChangeRequestOutput$ = CreateCollaborationChangeRequestOutput$;
|
|
1760
5302
|
exports.CreateCollaborationCommand = CreateCollaborationCommand;
|
|
5303
|
+
exports.CreateCollaborationInput$ = CreateCollaborationInput$;
|
|
5304
|
+
exports.CreateCollaborationOutput$ = CreateCollaborationOutput$;
|
|
5305
|
+
exports.CreateConfiguredAudienceModelAssociation$ = CreateConfiguredAudienceModelAssociation$;
|
|
1761
5306
|
exports.CreateConfiguredAudienceModelAssociationCommand = CreateConfiguredAudienceModelAssociationCommand;
|
|
5307
|
+
exports.CreateConfiguredAudienceModelAssociationInput$ = CreateConfiguredAudienceModelAssociationInput$;
|
|
5308
|
+
exports.CreateConfiguredAudienceModelAssociationOutput$ = CreateConfiguredAudienceModelAssociationOutput$;
|
|
5309
|
+
exports.CreateConfiguredTable$ = CreateConfiguredTable$;
|
|
5310
|
+
exports.CreateConfiguredTableAnalysisRule$ = CreateConfiguredTableAnalysisRule$;
|
|
1762
5311
|
exports.CreateConfiguredTableAnalysisRuleCommand = CreateConfiguredTableAnalysisRuleCommand;
|
|
5312
|
+
exports.CreateConfiguredTableAnalysisRuleInput$ = CreateConfiguredTableAnalysisRuleInput$;
|
|
5313
|
+
exports.CreateConfiguredTableAnalysisRuleOutput$ = CreateConfiguredTableAnalysisRuleOutput$;
|
|
5314
|
+
exports.CreateConfiguredTableAssociation$ = CreateConfiguredTableAssociation$;
|
|
5315
|
+
exports.CreateConfiguredTableAssociationAnalysisRule$ = CreateConfiguredTableAssociationAnalysisRule$;
|
|
1763
5316
|
exports.CreateConfiguredTableAssociationAnalysisRuleCommand = CreateConfiguredTableAssociationAnalysisRuleCommand;
|
|
5317
|
+
exports.CreateConfiguredTableAssociationAnalysisRuleInput$ = CreateConfiguredTableAssociationAnalysisRuleInput$;
|
|
5318
|
+
exports.CreateConfiguredTableAssociationAnalysisRuleOutput$ = CreateConfiguredTableAssociationAnalysisRuleOutput$;
|
|
1764
5319
|
exports.CreateConfiguredTableAssociationCommand = CreateConfiguredTableAssociationCommand;
|
|
5320
|
+
exports.CreateConfiguredTableAssociationInput$ = CreateConfiguredTableAssociationInput$;
|
|
5321
|
+
exports.CreateConfiguredTableAssociationOutput$ = CreateConfiguredTableAssociationOutput$;
|
|
1765
5322
|
exports.CreateConfiguredTableCommand = CreateConfiguredTableCommand;
|
|
5323
|
+
exports.CreateConfiguredTableInput$ = CreateConfiguredTableInput$;
|
|
5324
|
+
exports.CreateConfiguredTableOutput$ = CreateConfiguredTableOutput$;
|
|
5325
|
+
exports.CreateIdMappingTable$ = CreateIdMappingTable$;
|
|
1766
5326
|
exports.CreateIdMappingTableCommand = CreateIdMappingTableCommand;
|
|
5327
|
+
exports.CreateIdMappingTableInput$ = CreateIdMappingTableInput$;
|
|
5328
|
+
exports.CreateIdMappingTableOutput$ = CreateIdMappingTableOutput$;
|
|
5329
|
+
exports.CreateIdNamespaceAssociation$ = CreateIdNamespaceAssociation$;
|
|
1767
5330
|
exports.CreateIdNamespaceAssociationCommand = CreateIdNamespaceAssociationCommand;
|
|
5331
|
+
exports.CreateIdNamespaceAssociationInput$ = CreateIdNamespaceAssociationInput$;
|
|
5332
|
+
exports.CreateIdNamespaceAssociationOutput$ = CreateIdNamespaceAssociationOutput$;
|
|
5333
|
+
exports.CreateMembership$ = CreateMembership$;
|
|
1768
5334
|
exports.CreateMembershipCommand = CreateMembershipCommand;
|
|
5335
|
+
exports.CreateMembershipInput$ = CreateMembershipInput$;
|
|
5336
|
+
exports.CreateMembershipOutput$ = CreateMembershipOutput$;
|
|
5337
|
+
exports.CreatePrivacyBudgetTemplate$ = CreatePrivacyBudgetTemplate$;
|
|
1769
5338
|
exports.CreatePrivacyBudgetTemplateCommand = CreatePrivacyBudgetTemplateCommand;
|
|
5339
|
+
exports.CreatePrivacyBudgetTemplateInput$ = CreatePrivacyBudgetTemplateInput$;
|
|
5340
|
+
exports.CreatePrivacyBudgetTemplateOutput$ = CreatePrivacyBudgetTemplateOutput$;
|
|
1770
5341
|
exports.CustomMLMemberAbility = CustomMLMemberAbility;
|
|
5342
|
+
exports.DataEncryptionMetadata$ = DataEncryptionMetadata$;
|
|
5343
|
+
exports.DeleteAnalysisTemplate$ = DeleteAnalysisTemplate$;
|
|
1771
5344
|
exports.DeleteAnalysisTemplateCommand = DeleteAnalysisTemplateCommand;
|
|
5345
|
+
exports.DeleteAnalysisTemplateInput$ = DeleteAnalysisTemplateInput$;
|
|
5346
|
+
exports.DeleteAnalysisTemplateOutput$ = DeleteAnalysisTemplateOutput$;
|
|
5347
|
+
exports.DeleteCollaboration$ = DeleteCollaboration$;
|
|
1772
5348
|
exports.DeleteCollaborationCommand = DeleteCollaborationCommand;
|
|
5349
|
+
exports.DeleteCollaborationInput$ = DeleteCollaborationInput$;
|
|
5350
|
+
exports.DeleteCollaborationOutput$ = DeleteCollaborationOutput$;
|
|
5351
|
+
exports.DeleteConfiguredAudienceModelAssociation$ = DeleteConfiguredAudienceModelAssociation$;
|
|
1773
5352
|
exports.DeleteConfiguredAudienceModelAssociationCommand = DeleteConfiguredAudienceModelAssociationCommand;
|
|
5353
|
+
exports.DeleteConfiguredAudienceModelAssociationInput$ = DeleteConfiguredAudienceModelAssociationInput$;
|
|
5354
|
+
exports.DeleteConfiguredAudienceModelAssociationOutput$ = DeleteConfiguredAudienceModelAssociationOutput$;
|
|
5355
|
+
exports.DeleteConfiguredTable$ = DeleteConfiguredTable$;
|
|
5356
|
+
exports.DeleteConfiguredTableAnalysisRule$ = DeleteConfiguredTableAnalysisRule$;
|
|
1774
5357
|
exports.DeleteConfiguredTableAnalysisRuleCommand = DeleteConfiguredTableAnalysisRuleCommand;
|
|
5358
|
+
exports.DeleteConfiguredTableAnalysisRuleInput$ = DeleteConfiguredTableAnalysisRuleInput$;
|
|
5359
|
+
exports.DeleteConfiguredTableAnalysisRuleOutput$ = DeleteConfiguredTableAnalysisRuleOutput$;
|
|
5360
|
+
exports.DeleteConfiguredTableAssociation$ = DeleteConfiguredTableAssociation$;
|
|
5361
|
+
exports.DeleteConfiguredTableAssociationAnalysisRule$ = DeleteConfiguredTableAssociationAnalysisRule$;
|
|
1775
5362
|
exports.DeleteConfiguredTableAssociationAnalysisRuleCommand = DeleteConfiguredTableAssociationAnalysisRuleCommand;
|
|
5363
|
+
exports.DeleteConfiguredTableAssociationAnalysisRuleInput$ = DeleteConfiguredTableAssociationAnalysisRuleInput$;
|
|
5364
|
+
exports.DeleteConfiguredTableAssociationAnalysisRuleOutput$ = DeleteConfiguredTableAssociationAnalysisRuleOutput$;
|
|
1776
5365
|
exports.DeleteConfiguredTableAssociationCommand = DeleteConfiguredTableAssociationCommand;
|
|
5366
|
+
exports.DeleteConfiguredTableAssociationInput$ = DeleteConfiguredTableAssociationInput$;
|
|
5367
|
+
exports.DeleteConfiguredTableAssociationOutput$ = DeleteConfiguredTableAssociationOutput$;
|
|
1777
5368
|
exports.DeleteConfiguredTableCommand = DeleteConfiguredTableCommand;
|
|
5369
|
+
exports.DeleteConfiguredTableInput$ = DeleteConfiguredTableInput$;
|
|
5370
|
+
exports.DeleteConfiguredTableOutput$ = DeleteConfiguredTableOutput$;
|
|
5371
|
+
exports.DeleteIdMappingTable$ = DeleteIdMappingTable$;
|
|
1778
5372
|
exports.DeleteIdMappingTableCommand = DeleteIdMappingTableCommand;
|
|
5373
|
+
exports.DeleteIdMappingTableInput$ = DeleteIdMappingTableInput$;
|
|
5374
|
+
exports.DeleteIdMappingTableOutput$ = DeleteIdMappingTableOutput$;
|
|
5375
|
+
exports.DeleteIdNamespaceAssociation$ = DeleteIdNamespaceAssociation$;
|
|
1779
5376
|
exports.DeleteIdNamespaceAssociationCommand = DeleteIdNamespaceAssociationCommand;
|
|
5377
|
+
exports.DeleteIdNamespaceAssociationInput$ = DeleteIdNamespaceAssociationInput$;
|
|
5378
|
+
exports.DeleteIdNamespaceAssociationOutput$ = DeleteIdNamespaceAssociationOutput$;
|
|
5379
|
+
exports.DeleteMember$ = DeleteMember$;
|
|
1780
5380
|
exports.DeleteMemberCommand = DeleteMemberCommand;
|
|
5381
|
+
exports.DeleteMemberInput$ = DeleteMemberInput$;
|
|
5382
|
+
exports.DeleteMemberOutput$ = DeleteMemberOutput$;
|
|
5383
|
+
exports.DeleteMembership$ = DeleteMembership$;
|
|
1781
5384
|
exports.DeleteMembershipCommand = DeleteMembershipCommand;
|
|
5385
|
+
exports.DeleteMembershipInput$ = DeleteMembershipInput$;
|
|
5386
|
+
exports.DeleteMembershipOutput$ = DeleteMembershipOutput$;
|
|
5387
|
+
exports.DeletePrivacyBudgetTemplate$ = DeletePrivacyBudgetTemplate$;
|
|
1782
5388
|
exports.DeletePrivacyBudgetTemplateCommand = DeletePrivacyBudgetTemplateCommand;
|
|
5389
|
+
exports.DeletePrivacyBudgetTemplateInput$ = DeletePrivacyBudgetTemplateInput$;
|
|
5390
|
+
exports.DeletePrivacyBudgetTemplateOutput$ = DeletePrivacyBudgetTemplateOutput$;
|
|
1783
5391
|
exports.DifferentialPrivacyAggregationType = DifferentialPrivacyAggregationType;
|
|
5392
|
+
exports.DifferentialPrivacyColumn$ = DifferentialPrivacyColumn$;
|
|
5393
|
+
exports.DifferentialPrivacyConfiguration$ = DifferentialPrivacyConfiguration$;
|
|
5394
|
+
exports.DifferentialPrivacyParameters$ = DifferentialPrivacyParameters$;
|
|
5395
|
+
exports.DifferentialPrivacyPreviewAggregation$ = DifferentialPrivacyPreviewAggregation$;
|
|
5396
|
+
exports.DifferentialPrivacyPreviewParametersInput$ = DifferentialPrivacyPreviewParametersInput$;
|
|
5397
|
+
exports.DifferentialPrivacyPrivacyBudget$ = DifferentialPrivacyPrivacyBudget$;
|
|
5398
|
+
exports.DifferentialPrivacyPrivacyBudgetAggregation$ = DifferentialPrivacyPrivacyBudgetAggregation$;
|
|
5399
|
+
exports.DifferentialPrivacyPrivacyImpact$ = DifferentialPrivacyPrivacyImpact$;
|
|
5400
|
+
exports.DifferentialPrivacySensitivityParameters$ = DifferentialPrivacySensitivityParameters$;
|
|
5401
|
+
exports.DifferentialPrivacyTemplateParametersInput$ = DifferentialPrivacyTemplateParametersInput$;
|
|
5402
|
+
exports.DifferentialPrivacyTemplateParametersOutput$ = DifferentialPrivacyTemplateParametersOutput$;
|
|
5403
|
+
exports.DifferentialPrivacyTemplateUpdateParameters$ = DifferentialPrivacyTemplateUpdateParameters$;
|
|
5404
|
+
exports.DirectAnalysisConfigurationDetails$ = DirectAnalysisConfigurationDetails$;
|
|
5405
|
+
exports.ErrorMessageConfiguration$ = ErrorMessageConfiguration$;
|
|
1784
5406
|
exports.ErrorMessageType = ErrorMessageType;
|
|
1785
5407
|
exports.FilterableMemberStatus = FilterableMemberStatus;
|
|
5408
|
+
exports.GetAnalysisTemplate$ = GetAnalysisTemplate$;
|
|
1786
5409
|
exports.GetAnalysisTemplateCommand = GetAnalysisTemplateCommand;
|
|
5410
|
+
exports.GetAnalysisTemplateInput$ = GetAnalysisTemplateInput$;
|
|
5411
|
+
exports.GetAnalysisTemplateOutput$ = GetAnalysisTemplateOutput$;
|
|
5412
|
+
exports.GetCollaboration$ = GetCollaboration$;
|
|
5413
|
+
exports.GetCollaborationAnalysisTemplate$ = GetCollaborationAnalysisTemplate$;
|
|
1787
5414
|
exports.GetCollaborationAnalysisTemplateCommand = GetCollaborationAnalysisTemplateCommand;
|
|
5415
|
+
exports.GetCollaborationAnalysisTemplateInput$ = GetCollaborationAnalysisTemplateInput$;
|
|
5416
|
+
exports.GetCollaborationAnalysisTemplateOutput$ = GetCollaborationAnalysisTemplateOutput$;
|
|
5417
|
+
exports.GetCollaborationChangeRequest$ = GetCollaborationChangeRequest$;
|
|
1788
5418
|
exports.GetCollaborationChangeRequestCommand = GetCollaborationChangeRequestCommand;
|
|
5419
|
+
exports.GetCollaborationChangeRequestInput$ = GetCollaborationChangeRequestInput$;
|
|
5420
|
+
exports.GetCollaborationChangeRequestOutput$ = GetCollaborationChangeRequestOutput$;
|
|
1789
5421
|
exports.GetCollaborationCommand = GetCollaborationCommand;
|
|
5422
|
+
exports.GetCollaborationConfiguredAudienceModelAssociation$ = GetCollaborationConfiguredAudienceModelAssociation$;
|
|
1790
5423
|
exports.GetCollaborationConfiguredAudienceModelAssociationCommand = GetCollaborationConfiguredAudienceModelAssociationCommand;
|
|
5424
|
+
exports.GetCollaborationConfiguredAudienceModelAssociationInput$ = GetCollaborationConfiguredAudienceModelAssociationInput$;
|
|
5425
|
+
exports.GetCollaborationConfiguredAudienceModelAssociationOutput$ = GetCollaborationConfiguredAudienceModelAssociationOutput$;
|
|
5426
|
+
exports.GetCollaborationIdNamespaceAssociation$ = GetCollaborationIdNamespaceAssociation$;
|
|
1791
5427
|
exports.GetCollaborationIdNamespaceAssociationCommand = GetCollaborationIdNamespaceAssociationCommand;
|
|
5428
|
+
exports.GetCollaborationIdNamespaceAssociationInput$ = GetCollaborationIdNamespaceAssociationInput$;
|
|
5429
|
+
exports.GetCollaborationIdNamespaceAssociationOutput$ = GetCollaborationIdNamespaceAssociationOutput$;
|
|
5430
|
+
exports.GetCollaborationInput$ = GetCollaborationInput$;
|
|
5431
|
+
exports.GetCollaborationOutput$ = GetCollaborationOutput$;
|
|
5432
|
+
exports.GetCollaborationPrivacyBudgetTemplate$ = GetCollaborationPrivacyBudgetTemplate$;
|
|
1792
5433
|
exports.GetCollaborationPrivacyBudgetTemplateCommand = GetCollaborationPrivacyBudgetTemplateCommand;
|
|
5434
|
+
exports.GetCollaborationPrivacyBudgetTemplateInput$ = GetCollaborationPrivacyBudgetTemplateInput$;
|
|
5435
|
+
exports.GetCollaborationPrivacyBudgetTemplateOutput$ = GetCollaborationPrivacyBudgetTemplateOutput$;
|
|
5436
|
+
exports.GetConfiguredAudienceModelAssociation$ = GetConfiguredAudienceModelAssociation$;
|
|
1793
5437
|
exports.GetConfiguredAudienceModelAssociationCommand = GetConfiguredAudienceModelAssociationCommand;
|
|
5438
|
+
exports.GetConfiguredAudienceModelAssociationInput$ = GetConfiguredAudienceModelAssociationInput$;
|
|
5439
|
+
exports.GetConfiguredAudienceModelAssociationOutput$ = GetConfiguredAudienceModelAssociationOutput$;
|
|
5440
|
+
exports.GetConfiguredTable$ = GetConfiguredTable$;
|
|
5441
|
+
exports.GetConfiguredTableAnalysisRule$ = GetConfiguredTableAnalysisRule$;
|
|
1794
5442
|
exports.GetConfiguredTableAnalysisRuleCommand = GetConfiguredTableAnalysisRuleCommand;
|
|
5443
|
+
exports.GetConfiguredTableAnalysisRuleInput$ = GetConfiguredTableAnalysisRuleInput$;
|
|
5444
|
+
exports.GetConfiguredTableAnalysisRuleOutput$ = GetConfiguredTableAnalysisRuleOutput$;
|
|
5445
|
+
exports.GetConfiguredTableAssociation$ = GetConfiguredTableAssociation$;
|
|
5446
|
+
exports.GetConfiguredTableAssociationAnalysisRule$ = GetConfiguredTableAssociationAnalysisRule$;
|
|
1795
5447
|
exports.GetConfiguredTableAssociationAnalysisRuleCommand = GetConfiguredTableAssociationAnalysisRuleCommand;
|
|
5448
|
+
exports.GetConfiguredTableAssociationAnalysisRuleInput$ = GetConfiguredTableAssociationAnalysisRuleInput$;
|
|
5449
|
+
exports.GetConfiguredTableAssociationAnalysisRuleOutput$ = GetConfiguredTableAssociationAnalysisRuleOutput$;
|
|
1796
5450
|
exports.GetConfiguredTableAssociationCommand = GetConfiguredTableAssociationCommand;
|
|
5451
|
+
exports.GetConfiguredTableAssociationInput$ = GetConfiguredTableAssociationInput$;
|
|
5452
|
+
exports.GetConfiguredTableAssociationOutput$ = GetConfiguredTableAssociationOutput$;
|
|
1797
5453
|
exports.GetConfiguredTableCommand = GetConfiguredTableCommand;
|
|
5454
|
+
exports.GetConfiguredTableInput$ = GetConfiguredTableInput$;
|
|
5455
|
+
exports.GetConfiguredTableOutput$ = GetConfiguredTableOutput$;
|
|
5456
|
+
exports.GetIdMappingTable$ = GetIdMappingTable$;
|
|
1798
5457
|
exports.GetIdMappingTableCommand = GetIdMappingTableCommand;
|
|
5458
|
+
exports.GetIdMappingTableInput$ = GetIdMappingTableInput$;
|
|
5459
|
+
exports.GetIdMappingTableOutput$ = GetIdMappingTableOutput$;
|
|
5460
|
+
exports.GetIdNamespaceAssociation$ = GetIdNamespaceAssociation$;
|
|
1799
5461
|
exports.GetIdNamespaceAssociationCommand = GetIdNamespaceAssociationCommand;
|
|
5462
|
+
exports.GetIdNamespaceAssociationInput$ = GetIdNamespaceAssociationInput$;
|
|
5463
|
+
exports.GetIdNamespaceAssociationOutput$ = GetIdNamespaceAssociationOutput$;
|
|
5464
|
+
exports.GetMembership$ = GetMembership$;
|
|
1800
5465
|
exports.GetMembershipCommand = GetMembershipCommand;
|
|
5466
|
+
exports.GetMembershipInput$ = GetMembershipInput$;
|
|
5467
|
+
exports.GetMembershipOutput$ = GetMembershipOutput$;
|
|
5468
|
+
exports.GetPrivacyBudgetTemplate$ = GetPrivacyBudgetTemplate$;
|
|
1801
5469
|
exports.GetPrivacyBudgetTemplateCommand = GetPrivacyBudgetTemplateCommand;
|
|
5470
|
+
exports.GetPrivacyBudgetTemplateInput$ = GetPrivacyBudgetTemplateInput$;
|
|
5471
|
+
exports.GetPrivacyBudgetTemplateOutput$ = GetPrivacyBudgetTemplateOutput$;
|
|
5472
|
+
exports.GetProtectedJob$ = GetProtectedJob$;
|
|
1802
5473
|
exports.GetProtectedJobCommand = GetProtectedJobCommand;
|
|
5474
|
+
exports.GetProtectedJobInput$ = GetProtectedJobInput$;
|
|
5475
|
+
exports.GetProtectedJobOutput$ = GetProtectedJobOutput$;
|
|
5476
|
+
exports.GetProtectedQuery$ = GetProtectedQuery$;
|
|
1803
5477
|
exports.GetProtectedQueryCommand = GetProtectedQueryCommand;
|
|
5478
|
+
exports.GetProtectedQueryInput$ = GetProtectedQueryInput$;
|
|
5479
|
+
exports.GetProtectedQueryOutput$ = GetProtectedQueryOutput$;
|
|
5480
|
+
exports.GetSchema$ = GetSchema$;
|
|
5481
|
+
exports.GetSchemaAnalysisRule$ = GetSchemaAnalysisRule$;
|
|
1804
5482
|
exports.GetSchemaAnalysisRuleCommand = GetSchemaAnalysisRuleCommand;
|
|
5483
|
+
exports.GetSchemaAnalysisRuleInput$ = GetSchemaAnalysisRuleInput$;
|
|
5484
|
+
exports.GetSchemaAnalysisRuleOutput$ = GetSchemaAnalysisRuleOutput$;
|
|
1805
5485
|
exports.GetSchemaCommand = GetSchemaCommand;
|
|
5486
|
+
exports.GetSchemaInput$ = GetSchemaInput$;
|
|
5487
|
+
exports.GetSchemaOutput$ = GetSchemaOutput$;
|
|
5488
|
+
exports.GlueTableReference$ = GlueTableReference$;
|
|
5489
|
+
exports.Hash$ = Hash$;
|
|
5490
|
+
exports.IdMappingConfig$ = IdMappingConfig$;
|
|
5491
|
+
exports.IdMappingTable$ = IdMappingTable$;
|
|
5492
|
+
exports.IdMappingTableInputReferenceConfig$ = IdMappingTableInputReferenceConfig$;
|
|
5493
|
+
exports.IdMappingTableInputReferenceProperties$ = IdMappingTableInputReferenceProperties$;
|
|
5494
|
+
exports.IdMappingTableInputSource$ = IdMappingTableInputSource$;
|
|
5495
|
+
exports.IdMappingTableSchemaTypeProperties$ = IdMappingTableSchemaTypeProperties$;
|
|
5496
|
+
exports.IdMappingTableSummary$ = IdMappingTableSummary$;
|
|
5497
|
+
exports.IdNamespaceAssociation$ = IdNamespaceAssociation$;
|
|
5498
|
+
exports.IdNamespaceAssociationInputReferenceConfig$ = IdNamespaceAssociationInputReferenceConfig$;
|
|
5499
|
+
exports.IdNamespaceAssociationInputReferenceProperties$ = IdNamespaceAssociationInputReferenceProperties$;
|
|
5500
|
+
exports.IdNamespaceAssociationInputReferencePropertiesSummary$ = IdNamespaceAssociationInputReferencePropertiesSummary$;
|
|
5501
|
+
exports.IdNamespaceAssociationSummary$ = IdNamespaceAssociationSummary$;
|
|
1806
5502
|
exports.IdNamespaceType = IdNamespaceType;
|
|
5503
|
+
exports.InternalServerException = InternalServerException;
|
|
5504
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
5505
|
+
exports.JobComputePaymentConfig$ = JobComputePaymentConfig$;
|
|
1807
5506
|
exports.JobType = JobType;
|
|
1808
5507
|
exports.JoinOperator = JoinOperator;
|
|
1809
5508
|
exports.JoinRequiredOption = JoinRequiredOption;
|
|
5509
|
+
exports.ListAnalysisTemplates$ = ListAnalysisTemplates$;
|
|
1810
5510
|
exports.ListAnalysisTemplatesCommand = ListAnalysisTemplatesCommand;
|
|
5511
|
+
exports.ListAnalysisTemplatesInput$ = ListAnalysisTemplatesInput$;
|
|
5512
|
+
exports.ListAnalysisTemplatesOutput$ = ListAnalysisTemplatesOutput$;
|
|
5513
|
+
exports.ListCollaborationAnalysisTemplates$ = ListCollaborationAnalysisTemplates$;
|
|
1811
5514
|
exports.ListCollaborationAnalysisTemplatesCommand = ListCollaborationAnalysisTemplatesCommand;
|
|
5515
|
+
exports.ListCollaborationAnalysisTemplatesInput$ = ListCollaborationAnalysisTemplatesInput$;
|
|
5516
|
+
exports.ListCollaborationAnalysisTemplatesOutput$ = ListCollaborationAnalysisTemplatesOutput$;
|
|
5517
|
+
exports.ListCollaborationChangeRequests$ = ListCollaborationChangeRequests$;
|
|
1812
5518
|
exports.ListCollaborationChangeRequestsCommand = ListCollaborationChangeRequestsCommand;
|
|
5519
|
+
exports.ListCollaborationChangeRequestsInput$ = ListCollaborationChangeRequestsInput$;
|
|
5520
|
+
exports.ListCollaborationChangeRequestsOutput$ = ListCollaborationChangeRequestsOutput$;
|
|
5521
|
+
exports.ListCollaborationConfiguredAudienceModelAssociations$ = ListCollaborationConfiguredAudienceModelAssociations$;
|
|
1813
5522
|
exports.ListCollaborationConfiguredAudienceModelAssociationsCommand = ListCollaborationConfiguredAudienceModelAssociationsCommand;
|
|
5523
|
+
exports.ListCollaborationConfiguredAudienceModelAssociationsInput$ = ListCollaborationConfiguredAudienceModelAssociationsInput$;
|
|
5524
|
+
exports.ListCollaborationConfiguredAudienceModelAssociationsOutput$ = ListCollaborationConfiguredAudienceModelAssociationsOutput$;
|
|
5525
|
+
exports.ListCollaborationIdNamespaceAssociations$ = ListCollaborationIdNamespaceAssociations$;
|
|
1814
5526
|
exports.ListCollaborationIdNamespaceAssociationsCommand = ListCollaborationIdNamespaceAssociationsCommand;
|
|
5527
|
+
exports.ListCollaborationIdNamespaceAssociationsInput$ = ListCollaborationIdNamespaceAssociationsInput$;
|
|
5528
|
+
exports.ListCollaborationIdNamespaceAssociationsOutput$ = ListCollaborationIdNamespaceAssociationsOutput$;
|
|
5529
|
+
exports.ListCollaborationPrivacyBudgetTemplates$ = ListCollaborationPrivacyBudgetTemplates$;
|
|
1815
5530
|
exports.ListCollaborationPrivacyBudgetTemplatesCommand = ListCollaborationPrivacyBudgetTemplatesCommand;
|
|
5531
|
+
exports.ListCollaborationPrivacyBudgetTemplatesInput$ = ListCollaborationPrivacyBudgetTemplatesInput$;
|
|
5532
|
+
exports.ListCollaborationPrivacyBudgetTemplatesOutput$ = ListCollaborationPrivacyBudgetTemplatesOutput$;
|
|
5533
|
+
exports.ListCollaborationPrivacyBudgets$ = ListCollaborationPrivacyBudgets$;
|
|
1816
5534
|
exports.ListCollaborationPrivacyBudgetsCommand = ListCollaborationPrivacyBudgetsCommand;
|
|
5535
|
+
exports.ListCollaborationPrivacyBudgetsInput$ = ListCollaborationPrivacyBudgetsInput$;
|
|
5536
|
+
exports.ListCollaborationPrivacyBudgetsOutput$ = ListCollaborationPrivacyBudgetsOutput$;
|
|
5537
|
+
exports.ListCollaborations$ = ListCollaborations$;
|
|
1817
5538
|
exports.ListCollaborationsCommand = ListCollaborationsCommand;
|
|
5539
|
+
exports.ListCollaborationsInput$ = ListCollaborationsInput$;
|
|
5540
|
+
exports.ListCollaborationsOutput$ = ListCollaborationsOutput$;
|
|
5541
|
+
exports.ListConfiguredAudienceModelAssociations$ = ListConfiguredAudienceModelAssociations$;
|
|
1818
5542
|
exports.ListConfiguredAudienceModelAssociationsCommand = ListConfiguredAudienceModelAssociationsCommand;
|
|
5543
|
+
exports.ListConfiguredAudienceModelAssociationsInput$ = ListConfiguredAudienceModelAssociationsInput$;
|
|
5544
|
+
exports.ListConfiguredAudienceModelAssociationsOutput$ = ListConfiguredAudienceModelAssociationsOutput$;
|
|
5545
|
+
exports.ListConfiguredTableAssociations$ = ListConfiguredTableAssociations$;
|
|
1819
5546
|
exports.ListConfiguredTableAssociationsCommand = ListConfiguredTableAssociationsCommand;
|
|
5547
|
+
exports.ListConfiguredTableAssociationsInput$ = ListConfiguredTableAssociationsInput$;
|
|
5548
|
+
exports.ListConfiguredTableAssociationsOutput$ = ListConfiguredTableAssociationsOutput$;
|
|
5549
|
+
exports.ListConfiguredTables$ = ListConfiguredTables$;
|
|
1820
5550
|
exports.ListConfiguredTablesCommand = ListConfiguredTablesCommand;
|
|
5551
|
+
exports.ListConfiguredTablesInput$ = ListConfiguredTablesInput$;
|
|
5552
|
+
exports.ListConfiguredTablesOutput$ = ListConfiguredTablesOutput$;
|
|
5553
|
+
exports.ListIdMappingTables$ = ListIdMappingTables$;
|
|
1821
5554
|
exports.ListIdMappingTablesCommand = ListIdMappingTablesCommand;
|
|
5555
|
+
exports.ListIdMappingTablesInput$ = ListIdMappingTablesInput$;
|
|
5556
|
+
exports.ListIdMappingTablesOutput$ = ListIdMappingTablesOutput$;
|
|
5557
|
+
exports.ListIdNamespaceAssociations$ = ListIdNamespaceAssociations$;
|
|
1822
5558
|
exports.ListIdNamespaceAssociationsCommand = ListIdNamespaceAssociationsCommand;
|
|
5559
|
+
exports.ListIdNamespaceAssociationsInput$ = ListIdNamespaceAssociationsInput$;
|
|
5560
|
+
exports.ListIdNamespaceAssociationsOutput$ = ListIdNamespaceAssociationsOutput$;
|
|
5561
|
+
exports.ListMembers$ = ListMembers$;
|
|
1823
5562
|
exports.ListMembersCommand = ListMembersCommand;
|
|
5563
|
+
exports.ListMembersInput$ = ListMembersInput$;
|
|
5564
|
+
exports.ListMembersOutput$ = ListMembersOutput$;
|
|
5565
|
+
exports.ListMemberships$ = ListMemberships$;
|
|
1824
5566
|
exports.ListMembershipsCommand = ListMembershipsCommand;
|
|
5567
|
+
exports.ListMembershipsInput$ = ListMembershipsInput$;
|
|
5568
|
+
exports.ListMembershipsOutput$ = ListMembershipsOutput$;
|
|
5569
|
+
exports.ListPrivacyBudgetTemplates$ = ListPrivacyBudgetTemplates$;
|
|
1825
5570
|
exports.ListPrivacyBudgetTemplatesCommand = ListPrivacyBudgetTemplatesCommand;
|
|
5571
|
+
exports.ListPrivacyBudgetTemplatesInput$ = ListPrivacyBudgetTemplatesInput$;
|
|
5572
|
+
exports.ListPrivacyBudgetTemplatesOutput$ = ListPrivacyBudgetTemplatesOutput$;
|
|
5573
|
+
exports.ListPrivacyBudgets$ = ListPrivacyBudgets$;
|
|
1826
5574
|
exports.ListPrivacyBudgetsCommand = ListPrivacyBudgetsCommand;
|
|
5575
|
+
exports.ListPrivacyBudgetsInput$ = ListPrivacyBudgetsInput$;
|
|
5576
|
+
exports.ListPrivacyBudgetsOutput$ = ListPrivacyBudgetsOutput$;
|
|
5577
|
+
exports.ListProtectedJobs$ = ListProtectedJobs$;
|
|
1827
5578
|
exports.ListProtectedJobsCommand = ListProtectedJobsCommand;
|
|
5579
|
+
exports.ListProtectedJobsInput$ = ListProtectedJobsInput$;
|
|
5580
|
+
exports.ListProtectedJobsOutput$ = ListProtectedJobsOutput$;
|
|
5581
|
+
exports.ListProtectedQueries$ = ListProtectedQueries$;
|
|
1828
5582
|
exports.ListProtectedQueriesCommand = ListProtectedQueriesCommand;
|
|
5583
|
+
exports.ListProtectedQueriesInput$ = ListProtectedQueriesInput$;
|
|
5584
|
+
exports.ListProtectedQueriesOutput$ = ListProtectedQueriesOutput$;
|
|
5585
|
+
exports.ListSchemas$ = ListSchemas$;
|
|
1829
5586
|
exports.ListSchemasCommand = ListSchemasCommand;
|
|
5587
|
+
exports.ListSchemasInput$ = ListSchemasInput$;
|
|
5588
|
+
exports.ListSchemasOutput$ = ListSchemasOutput$;
|
|
5589
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1830
5590
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
5591
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
5592
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
5593
|
+
exports.MLMemberAbilities$ = MLMemberAbilities$;
|
|
5594
|
+
exports.MLPaymentConfig$ = MLPaymentConfig$;
|
|
5595
|
+
exports.MLSyntheticDataParameters$ = MLSyntheticDataParameters$;
|
|
1831
5596
|
exports.MemberAbility = MemberAbility;
|
|
5597
|
+
exports.MemberChangeSpecification$ = MemberChangeSpecification$;
|
|
5598
|
+
exports.MemberSpecification$ = MemberSpecification$;
|
|
1832
5599
|
exports.MemberStatus = MemberStatus;
|
|
5600
|
+
exports.MemberSummary$ = MemberSummary$;
|
|
5601
|
+
exports.Membership$ = Membership$;
|
|
5602
|
+
exports.MembershipJobComputePaymentConfig$ = MembershipJobComputePaymentConfig$;
|
|
1833
5603
|
exports.MembershipJobLogStatus = MembershipJobLogStatus;
|
|
5604
|
+
exports.MembershipMLPaymentConfig$ = MembershipMLPaymentConfig$;
|
|
5605
|
+
exports.MembershipModelInferencePaymentConfig$ = MembershipModelInferencePaymentConfig$;
|
|
5606
|
+
exports.MembershipModelTrainingPaymentConfig$ = MembershipModelTrainingPaymentConfig$;
|
|
5607
|
+
exports.MembershipPaymentConfiguration$ = MembershipPaymentConfiguration$;
|
|
5608
|
+
exports.MembershipProtectedJobOutputConfiguration$ = MembershipProtectedJobOutputConfiguration$;
|
|
5609
|
+
exports.MembershipProtectedJobResultConfiguration$ = MembershipProtectedJobResultConfiguration$;
|
|
5610
|
+
exports.MembershipProtectedQueryOutputConfiguration$ = MembershipProtectedQueryOutputConfiguration$;
|
|
5611
|
+
exports.MembershipProtectedQueryResultConfiguration$ = MembershipProtectedQueryResultConfiguration$;
|
|
5612
|
+
exports.MembershipQueryComputePaymentConfig$ = MembershipQueryComputePaymentConfig$;
|
|
1834
5613
|
exports.MembershipQueryLogStatus = MembershipQueryLogStatus;
|
|
1835
5614
|
exports.MembershipStatus = MembershipStatus;
|
|
5615
|
+
exports.MembershipSummary$ = MembershipSummary$;
|
|
5616
|
+
exports.MembershipSyntheticDataGenerationPaymentConfig$ = MembershipSyntheticDataGenerationPaymentConfig$;
|
|
5617
|
+
exports.ModelInferencePaymentConfig$ = ModelInferencePaymentConfig$;
|
|
5618
|
+
exports.ModelTrainingPaymentConfig$ = ModelTrainingPaymentConfig$;
|
|
1836
5619
|
exports.ParameterType = ParameterType;
|
|
5620
|
+
exports.PaymentConfiguration$ = PaymentConfiguration$;
|
|
5621
|
+
exports.PopulateIdMappingTable$ = PopulateIdMappingTable$;
|
|
1837
5622
|
exports.PopulateIdMappingTableCommand = PopulateIdMappingTableCommand;
|
|
5623
|
+
exports.PopulateIdMappingTableInput$ = PopulateIdMappingTableInput$;
|
|
5624
|
+
exports.PopulateIdMappingTableOutput$ = PopulateIdMappingTableOutput$;
|
|
5625
|
+
exports.PreviewPrivacyImpact$ = PreviewPrivacyImpact$;
|
|
1838
5626
|
exports.PreviewPrivacyImpactCommand = PreviewPrivacyImpactCommand;
|
|
5627
|
+
exports.PreviewPrivacyImpactInput$ = PreviewPrivacyImpactInput$;
|
|
5628
|
+
exports.PreviewPrivacyImpactOutput$ = PreviewPrivacyImpactOutput$;
|
|
5629
|
+
exports.PreviewPrivacyImpactParametersInput$ = PreviewPrivacyImpactParametersInput$;
|
|
5630
|
+
exports.PrivacyBudget$ = PrivacyBudget$;
|
|
5631
|
+
exports.PrivacyBudgetSummary$ = PrivacyBudgetSummary$;
|
|
5632
|
+
exports.PrivacyBudgetTemplate$ = PrivacyBudgetTemplate$;
|
|
1839
5633
|
exports.PrivacyBudgetTemplateAutoRefresh = PrivacyBudgetTemplateAutoRefresh;
|
|
5634
|
+
exports.PrivacyBudgetTemplateParametersInput$ = PrivacyBudgetTemplateParametersInput$;
|
|
5635
|
+
exports.PrivacyBudgetTemplateParametersOutput$ = PrivacyBudgetTemplateParametersOutput$;
|
|
5636
|
+
exports.PrivacyBudgetTemplateSummary$ = PrivacyBudgetTemplateSummary$;
|
|
5637
|
+
exports.PrivacyBudgetTemplateUpdateParameters$ = PrivacyBudgetTemplateUpdateParameters$;
|
|
1840
5638
|
exports.PrivacyBudgetType = PrivacyBudgetType;
|
|
5639
|
+
exports.PrivacyImpact$ = PrivacyImpact$;
|
|
5640
|
+
exports.ProtectedJob$ = ProtectedJob$;
|
|
1841
5641
|
exports.ProtectedJobAnalysisType = ProtectedJobAnalysisType;
|
|
5642
|
+
exports.ProtectedJobComputeConfiguration$ = ProtectedJobComputeConfiguration$;
|
|
5643
|
+
exports.ProtectedJobConfigurationDetails$ = ProtectedJobConfigurationDetails$;
|
|
5644
|
+
exports.ProtectedJobDirectAnalysisConfigurationDetails$ = ProtectedJobDirectAnalysisConfigurationDetails$;
|
|
5645
|
+
exports.ProtectedJobError$ = ProtectedJobError$;
|
|
5646
|
+
exports.ProtectedJobMemberOutputConfigurationInput$ = ProtectedJobMemberOutputConfigurationInput$;
|
|
5647
|
+
exports.ProtectedJobMemberOutputConfigurationOutput$ = ProtectedJobMemberOutputConfigurationOutput$;
|
|
5648
|
+
exports.ProtectedJobOutput$ = ProtectedJobOutput$;
|
|
5649
|
+
exports.ProtectedJobOutputConfigurationInput$ = ProtectedJobOutputConfigurationInput$;
|
|
5650
|
+
exports.ProtectedJobOutputConfigurationOutput$ = ProtectedJobOutputConfigurationOutput$;
|
|
5651
|
+
exports.ProtectedJobParameters$ = ProtectedJobParameters$;
|
|
5652
|
+
exports.ProtectedJobReceiverConfiguration$ = ProtectedJobReceiverConfiguration$;
|
|
5653
|
+
exports.ProtectedJobResult$ = ProtectedJobResult$;
|
|
5654
|
+
exports.ProtectedJobResultConfigurationInput$ = ProtectedJobResultConfigurationInput$;
|
|
5655
|
+
exports.ProtectedJobResultConfigurationOutput$ = ProtectedJobResultConfigurationOutput$;
|
|
5656
|
+
exports.ProtectedJobS3Output$ = ProtectedJobS3Output$;
|
|
5657
|
+
exports.ProtectedJobS3OutputConfigurationInput$ = ProtectedJobS3OutputConfigurationInput$;
|
|
5658
|
+
exports.ProtectedJobS3OutputConfigurationOutput$ = ProtectedJobS3OutputConfigurationOutput$;
|
|
5659
|
+
exports.ProtectedJobSingleMemberOutput$ = ProtectedJobSingleMemberOutput$;
|
|
5660
|
+
exports.ProtectedJobStatistics$ = ProtectedJobStatistics$;
|
|
1842
5661
|
exports.ProtectedJobStatus = ProtectedJobStatus;
|
|
5662
|
+
exports.ProtectedJobSummary$ = ProtectedJobSummary$;
|
|
1843
5663
|
exports.ProtectedJobType = ProtectedJobType;
|
|
5664
|
+
exports.ProtectedJobWorkerComputeConfiguration$ = ProtectedJobWorkerComputeConfiguration$;
|
|
1844
5665
|
exports.ProtectedJobWorkerComputeType = ProtectedJobWorkerComputeType;
|
|
5666
|
+
exports.ProtectedQuery$ = ProtectedQuery$;
|
|
5667
|
+
exports.ProtectedQueryDistributeOutput$ = ProtectedQueryDistributeOutput$;
|
|
5668
|
+
exports.ProtectedQueryDistributeOutputConfiguration$ = ProtectedQueryDistributeOutputConfiguration$;
|
|
5669
|
+
exports.ProtectedQueryDistributeOutputConfigurationLocation$ = ProtectedQueryDistributeOutputConfigurationLocation$;
|
|
5670
|
+
exports.ProtectedQueryError$ = ProtectedQueryError$;
|
|
5671
|
+
exports.ProtectedQueryMemberOutputConfiguration$ = ProtectedQueryMemberOutputConfiguration$;
|
|
5672
|
+
exports.ProtectedQueryOutput$ = ProtectedQueryOutput$;
|
|
5673
|
+
exports.ProtectedQueryOutputConfiguration$ = ProtectedQueryOutputConfiguration$;
|
|
5674
|
+
exports.ProtectedQueryResult$ = ProtectedQueryResult$;
|
|
5675
|
+
exports.ProtectedQueryResultConfiguration$ = ProtectedQueryResultConfiguration$;
|
|
5676
|
+
exports.ProtectedQueryS3Output$ = ProtectedQueryS3Output$;
|
|
5677
|
+
exports.ProtectedQueryS3OutputConfiguration$ = ProtectedQueryS3OutputConfiguration$;
|
|
5678
|
+
exports.ProtectedQuerySQLParameters$ = ProtectedQuerySQLParameters$;
|
|
5679
|
+
exports.ProtectedQuerySingleMemberOutput$ = ProtectedQuerySingleMemberOutput$;
|
|
5680
|
+
exports.ProtectedQueryStatistics$ = ProtectedQueryStatistics$;
|
|
1845
5681
|
exports.ProtectedQueryStatus = ProtectedQueryStatus;
|
|
5682
|
+
exports.ProtectedQuerySummary$ = ProtectedQuerySummary$;
|
|
1846
5683
|
exports.ProtectedQueryType = ProtectedQueryType;
|
|
5684
|
+
exports.QueryComputePaymentConfig$ = QueryComputePaymentConfig$;
|
|
5685
|
+
exports.QueryConstraint$ = QueryConstraint$;
|
|
5686
|
+
exports.QueryConstraintRequireOverlap$ = QueryConstraintRequireOverlap$;
|
|
5687
|
+
exports.ReceiverConfiguration$ = ReceiverConfiguration$;
|
|
5688
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
5689
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1847
5690
|
exports.ResourceType = ResourceType;
|
|
1848
5691
|
exports.ResultFormat = ResultFormat;
|
|
5692
|
+
exports.S3Location$ = S3Location$;
|
|
1849
5693
|
exports.ScalarFunctions = ScalarFunctions;
|
|
5694
|
+
exports.Schema$ = Schema$;
|
|
5695
|
+
exports.SchemaAnalysisRuleRequest$ = SchemaAnalysisRuleRequest$;
|
|
1850
5696
|
exports.SchemaConfiguration = SchemaConfiguration;
|
|
1851
5697
|
exports.SchemaStatus = SchemaStatus;
|
|
5698
|
+
exports.SchemaStatusDetail$ = SchemaStatusDetail$;
|
|
5699
|
+
exports.SchemaStatusReason$ = SchemaStatusReason$;
|
|
1852
5700
|
exports.SchemaStatusReasonCode = SchemaStatusReasonCode;
|
|
5701
|
+
exports.SchemaSummary$ = SchemaSummary$;
|
|
1853
5702
|
exports.SchemaType = SchemaType;
|
|
5703
|
+
exports.SchemaTypeProperties$ = SchemaTypeProperties$;
|
|
1854
5704
|
exports.SelectedAnalysisMethod = SelectedAnalysisMethod;
|
|
5705
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
5706
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
5707
|
+
exports.SnowflakeTableReference$ = SnowflakeTableReference$;
|
|
5708
|
+
exports.SnowflakeTableSchema$ = SnowflakeTableSchema$;
|
|
5709
|
+
exports.SnowflakeTableSchemaV1$ = SnowflakeTableSchemaV1$;
|
|
5710
|
+
exports.StartProtectedJob$ = StartProtectedJob$;
|
|
1855
5711
|
exports.StartProtectedJobCommand = StartProtectedJobCommand;
|
|
5712
|
+
exports.StartProtectedJobInput$ = StartProtectedJobInput$;
|
|
5713
|
+
exports.StartProtectedJobOutput$ = StartProtectedJobOutput$;
|
|
5714
|
+
exports.StartProtectedQuery$ = StartProtectedQuery$;
|
|
1856
5715
|
exports.StartProtectedQueryCommand = StartProtectedQueryCommand;
|
|
5716
|
+
exports.StartProtectedQueryInput$ = StartProtectedQueryInput$;
|
|
5717
|
+
exports.StartProtectedQueryOutput$ = StartProtectedQueryOutput$;
|
|
1857
5718
|
exports.SupportedS3Region = SupportedS3Region;
|
|
5719
|
+
exports.SyntheticDataColumnProperties$ = SyntheticDataColumnProperties$;
|
|
1858
5720
|
exports.SyntheticDataColumnType = SyntheticDataColumnType;
|
|
5721
|
+
exports.SyntheticDataGenerationPaymentConfig$ = SyntheticDataGenerationPaymentConfig$;
|
|
5722
|
+
exports.SyntheticDataParameters$ = SyntheticDataParameters$;
|
|
5723
|
+
exports.TableReference$ = TableReference$;
|
|
5724
|
+
exports.TagResource$ = TagResource$;
|
|
1859
5725
|
exports.TagResourceCommand = TagResourceCommand;
|
|
5726
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
5727
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
1860
5728
|
exports.TargetProtectedJobStatus = TargetProtectedJobStatus;
|
|
1861
5729
|
exports.TargetProtectedQueryStatus = TargetProtectedQueryStatus;
|
|
5730
|
+
exports.ThrottlingException = ThrottlingException;
|
|
5731
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
5732
|
+
exports.UntagResource$ = UntagResource$;
|
|
1862
5733
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
5734
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
5735
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
5736
|
+
exports.UpdateAnalysisTemplate$ = UpdateAnalysisTemplate$;
|
|
1863
5737
|
exports.UpdateAnalysisTemplateCommand = UpdateAnalysisTemplateCommand;
|
|
5738
|
+
exports.UpdateAnalysisTemplateInput$ = UpdateAnalysisTemplateInput$;
|
|
5739
|
+
exports.UpdateAnalysisTemplateOutput$ = UpdateAnalysisTemplateOutput$;
|
|
5740
|
+
exports.UpdateCollaboration$ = UpdateCollaboration$;
|
|
5741
|
+
exports.UpdateCollaborationChangeRequest$ = UpdateCollaborationChangeRequest$;
|
|
1864
5742
|
exports.UpdateCollaborationChangeRequestCommand = UpdateCollaborationChangeRequestCommand;
|
|
5743
|
+
exports.UpdateCollaborationChangeRequestInput$ = UpdateCollaborationChangeRequestInput$;
|
|
5744
|
+
exports.UpdateCollaborationChangeRequestOutput$ = UpdateCollaborationChangeRequestOutput$;
|
|
1865
5745
|
exports.UpdateCollaborationCommand = UpdateCollaborationCommand;
|
|
5746
|
+
exports.UpdateCollaborationInput$ = UpdateCollaborationInput$;
|
|
5747
|
+
exports.UpdateCollaborationOutput$ = UpdateCollaborationOutput$;
|
|
5748
|
+
exports.UpdateConfiguredAudienceModelAssociation$ = UpdateConfiguredAudienceModelAssociation$;
|
|
1866
5749
|
exports.UpdateConfiguredAudienceModelAssociationCommand = UpdateConfiguredAudienceModelAssociationCommand;
|
|
5750
|
+
exports.UpdateConfiguredAudienceModelAssociationInput$ = UpdateConfiguredAudienceModelAssociationInput$;
|
|
5751
|
+
exports.UpdateConfiguredAudienceModelAssociationOutput$ = UpdateConfiguredAudienceModelAssociationOutput$;
|
|
5752
|
+
exports.UpdateConfiguredTable$ = UpdateConfiguredTable$;
|
|
5753
|
+
exports.UpdateConfiguredTableAnalysisRule$ = UpdateConfiguredTableAnalysisRule$;
|
|
1867
5754
|
exports.UpdateConfiguredTableAnalysisRuleCommand = UpdateConfiguredTableAnalysisRuleCommand;
|
|
5755
|
+
exports.UpdateConfiguredTableAnalysisRuleInput$ = UpdateConfiguredTableAnalysisRuleInput$;
|
|
5756
|
+
exports.UpdateConfiguredTableAnalysisRuleOutput$ = UpdateConfiguredTableAnalysisRuleOutput$;
|
|
5757
|
+
exports.UpdateConfiguredTableAssociation$ = UpdateConfiguredTableAssociation$;
|
|
5758
|
+
exports.UpdateConfiguredTableAssociationAnalysisRule$ = UpdateConfiguredTableAssociationAnalysisRule$;
|
|
1868
5759
|
exports.UpdateConfiguredTableAssociationAnalysisRuleCommand = UpdateConfiguredTableAssociationAnalysisRuleCommand;
|
|
5760
|
+
exports.UpdateConfiguredTableAssociationAnalysisRuleInput$ = UpdateConfiguredTableAssociationAnalysisRuleInput$;
|
|
5761
|
+
exports.UpdateConfiguredTableAssociationAnalysisRuleOutput$ = UpdateConfiguredTableAssociationAnalysisRuleOutput$;
|
|
1869
5762
|
exports.UpdateConfiguredTableAssociationCommand = UpdateConfiguredTableAssociationCommand;
|
|
5763
|
+
exports.UpdateConfiguredTableAssociationInput$ = UpdateConfiguredTableAssociationInput$;
|
|
5764
|
+
exports.UpdateConfiguredTableAssociationOutput$ = UpdateConfiguredTableAssociationOutput$;
|
|
1870
5765
|
exports.UpdateConfiguredTableCommand = UpdateConfiguredTableCommand;
|
|
5766
|
+
exports.UpdateConfiguredTableInput$ = UpdateConfiguredTableInput$;
|
|
5767
|
+
exports.UpdateConfiguredTableOutput$ = UpdateConfiguredTableOutput$;
|
|
5768
|
+
exports.UpdateIdMappingTable$ = UpdateIdMappingTable$;
|
|
1871
5769
|
exports.UpdateIdMappingTableCommand = UpdateIdMappingTableCommand;
|
|
5770
|
+
exports.UpdateIdMappingTableInput$ = UpdateIdMappingTableInput$;
|
|
5771
|
+
exports.UpdateIdMappingTableOutput$ = UpdateIdMappingTableOutput$;
|
|
5772
|
+
exports.UpdateIdNamespaceAssociation$ = UpdateIdNamespaceAssociation$;
|
|
1872
5773
|
exports.UpdateIdNamespaceAssociationCommand = UpdateIdNamespaceAssociationCommand;
|
|
5774
|
+
exports.UpdateIdNamespaceAssociationInput$ = UpdateIdNamespaceAssociationInput$;
|
|
5775
|
+
exports.UpdateIdNamespaceAssociationOutput$ = UpdateIdNamespaceAssociationOutput$;
|
|
5776
|
+
exports.UpdateMembership$ = UpdateMembership$;
|
|
1873
5777
|
exports.UpdateMembershipCommand = UpdateMembershipCommand;
|
|
5778
|
+
exports.UpdateMembershipInput$ = UpdateMembershipInput$;
|
|
5779
|
+
exports.UpdateMembershipOutput$ = UpdateMembershipOutput$;
|
|
5780
|
+
exports.UpdateMembershipPaymentConfiguration$ = UpdateMembershipPaymentConfiguration$;
|
|
5781
|
+
exports.UpdatePrivacyBudgetTemplate$ = UpdatePrivacyBudgetTemplate$;
|
|
1874
5782
|
exports.UpdatePrivacyBudgetTemplateCommand = UpdatePrivacyBudgetTemplateCommand;
|
|
5783
|
+
exports.UpdatePrivacyBudgetTemplateInput$ = UpdatePrivacyBudgetTemplateInput$;
|
|
5784
|
+
exports.UpdatePrivacyBudgetTemplateOutput$ = UpdatePrivacyBudgetTemplateOutput$;
|
|
5785
|
+
exports.UpdateProtectedJob$ = UpdateProtectedJob$;
|
|
1875
5786
|
exports.UpdateProtectedJobCommand = UpdateProtectedJobCommand;
|
|
5787
|
+
exports.UpdateProtectedJobInput$ = UpdateProtectedJobInput$;
|
|
5788
|
+
exports.UpdateProtectedJobOutput$ = UpdateProtectedJobOutput$;
|
|
5789
|
+
exports.UpdateProtectedQuery$ = UpdateProtectedQuery$;
|
|
1876
5790
|
exports.UpdateProtectedQueryCommand = UpdateProtectedQueryCommand;
|
|
5791
|
+
exports.UpdateProtectedQueryInput$ = UpdateProtectedQueryInput$;
|
|
5792
|
+
exports.UpdateProtectedQueryOutput$ = UpdateProtectedQueryOutput$;
|
|
5793
|
+
exports.ValidationException = ValidationException;
|
|
5794
|
+
exports.ValidationException$ = ValidationException$;
|
|
5795
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
1877
5796
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
5797
|
+
exports.WorkerComputeConfiguration$ = WorkerComputeConfiguration$;
|
|
5798
|
+
exports.WorkerComputeConfigurationProperties$ = WorkerComputeConfigurationProperties$;
|
|
1878
5799
|
exports.WorkerComputeType = WorkerComputeType;
|
|
5800
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1879
5801
|
exports.paginateListAnalysisTemplates = paginateListAnalysisTemplates;
|
|
1880
5802
|
exports.paginateListCollaborationAnalysisTemplates = paginateListCollaborationAnalysisTemplates;
|
|
1881
5803
|
exports.paginateListCollaborationChangeRequests = paginateListCollaborationChangeRequests;
|