@aws-sdk/client-cleanrooms 3.511.0 → 3.513.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/auth/httpAuthExtensionConfiguration.js +1 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/index.js +168 -110
- package/dist-cjs/runtimeConfig.shared.js +10 -0
- package/dist-es/CleanRoomsClient.js +17 -4
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/runtimeConfig.shared.js +10 -0
- package/dist-es/runtimeExtensions.js +3 -0
- package/dist-types/CleanRoomsClient.d.ts +13 -11
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/extensionConfiguration.d.ts +2 -1
- package/dist-types/runtimeConfig.browser.d.ts +6 -6
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -4
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/CleanRoomsClient.d.ts +11 -9
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -8
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +7 -7
package/dist-cjs/index.js
CHANGED
|
@@ -175,13 +175,14 @@ module.exports = __toCommonJS(src_exports);
|
|
|
175
175
|
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
176
176
|
var import_middleware_logger = require("@aws-sdk/middleware-logger");
|
|
177
177
|
var import_middleware_recursion_detection = require("@aws-sdk/middleware-recursion-detection");
|
|
178
|
-
var import_middleware_signing = require("@aws-sdk/middleware-signing");
|
|
179
178
|
var import_middleware_user_agent = require("@aws-sdk/middleware-user-agent");
|
|
180
179
|
var import_config_resolver = require("@smithy/config-resolver");
|
|
180
|
+
var import_core = require("@smithy/core");
|
|
181
181
|
var import_middleware_content_length = require("@smithy/middleware-content-length");
|
|
182
182
|
var import_middleware_endpoint = require("@smithy/middleware-endpoint");
|
|
183
183
|
var import_middleware_retry = require("@smithy/middleware-retry");
|
|
184
184
|
|
|
185
|
+
var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
185
186
|
|
|
186
187
|
// src/endpoint/EndpointParameters.ts
|
|
187
188
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
@@ -206,19 +207,62 @@ var import_runtimeConfig = require("././runtimeConfig");
|
|
|
206
207
|
var import_region_config_resolver = require("@aws-sdk/region-config-resolver");
|
|
207
208
|
var import_protocol_http = require("@smithy/protocol-http");
|
|
208
209
|
var import_smithy_client = require("@smithy/smithy-client");
|
|
210
|
+
|
|
211
|
+
// src/auth/httpAuthExtensionConfiguration.ts
|
|
212
|
+
var getHttpAuthExtensionConfiguration = /* @__PURE__ */ __name((runtimeConfig) => {
|
|
213
|
+
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
214
|
+
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
215
|
+
let _credentials = runtimeConfig.credentials;
|
|
216
|
+
return {
|
|
217
|
+
setHttpAuthScheme(httpAuthScheme) {
|
|
218
|
+
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
219
|
+
if (index === -1) {
|
|
220
|
+
_httpAuthSchemes.push(httpAuthScheme);
|
|
221
|
+
} else {
|
|
222
|
+
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
httpAuthSchemes() {
|
|
226
|
+
return _httpAuthSchemes;
|
|
227
|
+
},
|
|
228
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
229
|
+
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
230
|
+
},
|
|
231
|
+
httpAuthSchemeProvider() {
|
|
232
|
+
return _httpAuthSchemeProvider;
|
|
233
|
+
},
|
|
234
|
+
setCredentials(credentials) {
|
|
235
|
+
_credentials = credentials;
|
|
236
|
+
},
|
|
237
|
+
credentials() {
|
|
238
|
+
return _credentials;
|
|
239
|
+
}
|
|
240
|
+
};
|
|
241
|
+
}, "getHttpAuthExtensionConfiguration");
|
|
242
|
+
var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
243
|
+
return {
|
|
244
|
+
httpAuthSchemes: config.httpAuthSchemes(),
|
|
245
|
+
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
246
|
+
credentials: config.credentials()
|
|
247
|
+
};
|
|
248
|
+
}, "resolveHttpAuthRuntimeConfig");
|
|
249
|
+
|
|
250
|
+
// src/runtimeExtensions.ts
|
|
209
251
|
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
210
252
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
211
253
|
const extensionConfiguration = {
|
|
212
254
|
...asPartial((0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig)),
|
|
213
255
|
...asPartial((0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig)),
|
|
214
|
-
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig))
|
|
256
|
+
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
|
|
257
|
+
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig))
|
|
215
258
|
};
|
|
216
259
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
217
260
|
return {
|
|
218
261
|
...runtimeConfig,
|
|
219
262
|
...(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
220
263
|
...(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
221
|
-
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration)
|
|
264
|
+
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
265
|
+
...resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
222
266
|
};
|
|
223
267
|
}, "resolveRuntimeExtensions");
|
|
224
268
|
|
|
@@ -231,8 +275,8 @@ var _CleanRoomsClient = class _CleanRoomsClient extends import_smithy_client.Cli
|
|
|
231
275
|
const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
|
|
232
276
|
const _config_4 = (0, import_middleware_retry.resolveRetryConfig)(_config_3);
|
|
233
277
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
234
|
-
const _config_6 = (0,
|
|
235
|
-
const _config_7 = (0,
|
|
278
|
+
const _config_6 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_5);
|
|
279
|
+
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
236
280
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
237
281
|
super(_config_8);
|
|
238
282
|
this.config = _config_8;
|
|
@@ -241,8 +285,14 @@ var _CleanRoomsClient = class _CleanRoomsClient extends import_smithy_client.Cli
|
|
|
241
285
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
242
286
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
243
287
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
244
|
-
this.middlewareStack.use((0, import_middleware_signing.getAwsAuthPlugin)(this.config));
|
|
245
288
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
289
|
+
this.middlewareStack.use(
|
|
290
|
+
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
291
|
+
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
292
|
+
identityProviderConfigProvider: this.getIdentityProviderConfigProvider()
|
|
293
|
+
})
|
|
294
|
+
);
|
|
295
|
+
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
246
296
|
}
|
|
247
297
|
/**
|
|
248
298
|
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
@@ -252,6 +302,14 @@ var _CleanRoomsClient = class _CleanRoomsClient extends import_smithy_client.Cli
|
|
|
252
302
|
destroy() {
|
|
253
303
|
super.destroy();
|
|
254
304
|
}
|
|
305
|
+
getDefaultHttpAuthSchemeParametersProvider() {
|
|
306
|
+
return import_httpAuthSchemeProvider.defaultCleanRoomsHttpAuthSchemeParametersProvider;
|
|
307
|
+
}
|
|
308
|
+
getIdentityProviderConfigProvider() {
|
|
309
|
+
return async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
310
|
+
"aws.auth#sigv4": config.credentials
|
|
311
|
+
});
|
|
312
|
+
}
|
|
255
313
|
};
|
|
256
314
|
__name(_CleanRoomsClient, "CleanRoomsClient");
|
|
257
315
|
var CleanRoomsClient = _CleanRoomsClient;
|
|
@@ -768,11 +826,11 @@ var UpdateProtectedQueryOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj)
|
|
|
768
826
|
}), "UpdateProtectedQueryOutputFilterSensitiveLog");
|
|
769
827
|
|
|
770
828
|
// src/protocols/Aws_restJson1.ts
|
|
771
|
-
var
|
|
772
|
-
|
|
829
|
+
var import_core2 = require("@aws-sdk/core");
|
|
830
|
+
|
|
773
831
|
|
|
774
832
|
var se_BatchGetCollaborationAnalysisTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
775
|
-
const b = (0,
|
|
833
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
776
834
|
const headers = {
|
|
777
835
|
"content-type": "application/json"
|
|
778
836
|
};
|
|
@@ -788,7 +846,7 @@ var se_BatchGetCollaborationAnalysisTemplateCommand = /* @__PURE__ */ __name(asy
|
|
|
788
846
|
return b.build();
|
|
789
847
|
}, "se_BatchGetCollaborationAnalysisTemplateCommand");
|
|
790
848
|
var se_BatchGetSchemaCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
791
|
-
const b = (0,
|
|
849
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
792
850
|
const headers = {
|
|
793
851
|
"content-type": "application/json"
|
|
794
852
|
};
|
|
@@ -804,7 +862,7 @@ var se_BatchGetSchemaCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
804
862
|
return b.build();
|
|
805
863
|
}, "se_BatchGetSchemaCommand");
|
|
806
864
|
var se_CreateAnalysisTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
807
|
-
const b = (0,
|
|
865
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
808
866
|
const headers = {
|
|
809
867
|
"content-type": "application/json"
|
|
810
868
|
};
|
|
@@ -825,7 +883,7 @@ var se_CreateAnalysisTemplateCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
825
883
|
return b.build();
|
|
826
884
|
}, "se_CreateAnalysisTemplateCommand");
|
|
827
885
|
var se_CreateCollaborationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
828
|
-
const b = (0,
|
|
886
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
829
887
|
const headers = {
|
|
830
888
|
"content-type": "application/json"
|
|
831
889
|
};
|
|
@@ -848,7 +906,7 @@ var se_CreateCollaborationCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
848
906
|
return b.build();
|
|
849
907
|
}, "se_CreateCollaborationCommand");
|
|
850
908
|
var se_CreateConfiguredAudienceModelAssociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
851
|
-
const b = (0,
|
|
909
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
852
910
|
const headers = {
|
|
853
911
|
"content-type": "application/json"
|
|
854
912
|
};
|
|
@@ -868,7 +926,7 @@ var se_CreateConfiguredAudienceModelAssociationCommand = /* @__PURE__ */ __name(
|
|
|
868
926
|
return b.build();
|
|
869
927
|
}, "se_CreateConfiguredAudienceModelAssociationCommand");
|
|
870
928
|
var se_CreateConfiguredTableCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
871
|
-
const b = (0,
|
|
929
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
872
930
|
const headers = {
|
|
873
931
|
"content-type": "application/json"
|
|
874
932
|
};
|
|
@@ -888,7 +946,7 @@ var se_CreateConfiguredTableCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
888
946
|
return b.build();
|
|
889
947
|
}, "se_CreateConfiguredTableCommand");
|
|
890
948
|
var se_CreateConfiguredTableAnalysisRuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
891
|
-
const b = (0,
|
|
949
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
892
950
|
const headers = {
|
|
893
951
|
"content-type": "application/json"
|
|
894
952
|
};
|
|
@@ -905,7 +963,7 @@ var se_CreateConfiguredTableAnalysisRuleCommand = /* @__PURE__ */ __name(async (
|
|
|
905
963
|
return b.build();
|
|
906
964
|
}, "se_CreateConfiguredTableAnalysisRuleCommand");
|
|
907
965
|
var se_CreateConfiguredTableAssociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
908
|
-
const b = (0,
|
|
966
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
909
967
|
const headers = {
|
|
910
968
|
"content-type": "application/json"
|
|
911
969
|
};
|
|
@@ -925,7 +983,7 @@ var se_CreateConfiguredTableAssociationCommand = /* @__PURE__ */ __name(async (i
|
|
|
925
983
|
return b.build();
|
|
926
984
|
}, "se_CreateConfiguredTableAssociationCommand");
|
|
927
985
|
var se_CreateMembershipCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
928
|
-
const b = (0,
|
|
986
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
929
987
|
const headers = {
|
|
930
988
|
"content-type": "application/json"
|
|
931
989
|
};
|
|
@@ -944,7 +1002,7 @@ var se_CreateMembershipCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
944
1002
|
return b.build();
|
|
945
1003
|
}, "se_CreateMembershipCommand");
|
|
946
1004
|
var se_CreatePrivacyBudgetTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
947
|
-
const b = (0,
|
|
1005
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
948
1006
|
const headers = {
|
|
949
1007
|
"content-type": "application/json"
|
|
950
1008
|
};
|
|
@@ -963,7 +1021,7 @@ var se_CreatePrivacyBudgetTemplateCommand = /* @__PURE__ */ __name(async (input,
|
|
|
963
1021
|
return b.build();
|
|
964
1022
|
}, "se_CreatePrivacyBudgetTemplateCommand");
|
|
965
1023
|
var se_DeleteAnalysisTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
966
|
-
const b = (0,
|
|
1024
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
967
1025
|
const headers = {};
|
|
968
1026
|
b.bp("/memberships/{membershipIdentifier}/analysistemplates/{analysisTemplateIdentifier}");
|
|
969
1027
|
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
@@ -973,7 +1031,7 @@ var se_DeleteAnalysisTemplateCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
973
1031
|
return b.build();
|
|
974
1032
|
}, "se_DeleteAnalysisTemplateCommand");
|
|
975
1033
|
var se_DeleteCollaborationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
976
|
-
const b = (0,
|
|
1034
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
977
1035
|
const headers = {};
|
|
978
1036
|
b.bp("/collaborations/{collaborationIdentifier}");
|
|
979
1037
|
b.p("collaborationIdentifier", () => input.collaborationIdentifier, "{collaborationIdentifier}", false);
|
|
@@ -982,7 +1040,7 @@ var se_DeleteCollaborationCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
982
1040
|
return b.build();
|
|
983
1041
|
}, "se_DeleteCollaborationCommand");
|
|
984
1042
|
var se_DeleteConfiguredAudienceModelAssociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
985
|
-
const b = (0,
|
|
1043
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
986
1044
|
const headers = {};
|
|
987
1045
|
b.bp(
|
|
988
1046
|
"/memberships/{membershipIdentifier}/configuredaudiencemodelassociations/{configuredAudienceModelAssociationIdentifier}"
|
|
@@ -999,7 +1057,7 @@ var se_DeleteConfiguredAudienceModelAssociationCommand = /* @__PURE__ */ __name(
|
|
|
999
1057
|
return b.build();
|
|
1000
1058
|
}, "se_DeleteConfiguredAudienceModelAssociationCommand");
|
|
1001
1059
|
var se_DeleteConfiguredTableCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1002
|
-
const b = (0,
|
|
1060
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1003
1061
|
const headers = {};
|
|
1004
1062
|
b.bp("/configuredTables/{configuredTableIdentifier}");
|
|
1005
1063
|
b.p("configuredTableIdentifier", () => input.configuredTableIdentifier, "{configuredTableIdentifier}", false);
|
|
@@ -1008,7 +1066,7 @@ var se_DeleteConfiguredTableCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1008
1066
|
return b.build();
|
|
1009
1067
|
}, "se_DeleteConfiguredTableCommand");
|
|
1010
1068
|
var se_DeleteConfiguredTableAnalysisRuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1011
|
-
const b = (0,
|
|
1069
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1012
1070
|
const headers = {};
|
|
1013
1071
|
b.bp("/configuredTables/{configuredTableIdentifier}/analysisRule/{analysisRuleType}");
|
|
1014
1072
|
b.p("configuredTableIdentifier", () => input.configuredTableIdentifier, "{configuredTableIdentifier}", false);
|
|
@@ -1018,7 +1076,7 @@ var se_DeleteConfiguredTableAnalysisRuleCommand = /* @__PURE__ */ __name(async (
|
|
|
1018
1076
|
return b.build();
|
|
1019
1077
|
}, "se_DeleteConfiguredTableAnalysisRuleCommand");
|
|
1020
1078
|
var se_DeleteConfiguredTableAssociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1021
|
-
const b = (0,
|
|
1079
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1022
1080
|
const headers = {};
|
|
1023
1081
|
b.bp("/memberships/{membershipIdentifier}/configuredTableAssociations/{configuredTableAssociationIdentifier}");
|
|
1024
1082
|
b.p(
|
|
@@ -1033,7 +1091,7 @@ var se_DeleteConfiguredTableAssociationCommand = /* @__PURE__ */ __name(async (i
|
|
|
1033
1091
|
return b.build();
|
|
1034
1092
|
}, "se_DeleteConfiguredTableAssociationCommand");
|
|
1035
1093
|
var se_DeleteMemberCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1036
|
-
const b = (0,
|
|
1094
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1037
1095
|
const headers = {};
|
|
1038
1096
|
b.bp("/collaborations/{collaborationIdentifier}/member/{accountId}");
|
|
1039
1097
|
b.p("collaborationIdentifier", () => input.collaborationIdentifier, "{collaborationIdentifier}", false);
|
|
@@ -1043,7 +1101,7 @@ var se_DeleteMemberCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1043
1101
|
return b.build();
|
|
1044
1102
|
}, "se_DeleteMemberCommand");
|
|
1045
1103
|
var se_DeleteMembershipCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1046
|
-
const b = (0,
|
|
1104
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1047
1105
|
const headers = {};
|
|
1048
1106
|
b.bp("/memberships/{membershipIdentifier}");
|
|
1049
1107
|
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
@@ -1052,7 +1110,7 @@ var se_DeleteMembershipCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1052
1110
|
return b.build();
|
|
1053
1111
|
}, "se_DeleteMembershipCommand");
|
|
1054
1112
|
var se_DeletePrivacyBudgetTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1055
|
-
const b = (0,
|
|
1113
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1056
1114
|
const headers = {};
|
|
1057
1115
|
b.bp("/memberships/{membershipIdentifier}/privacybudgettemplates/{privacyBudgetTemplateIdentifier}");
|
|
1058
1116
|
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
@@ -1067,7 +1125,7 @@ var se_DeletePrivacyBudgetTemplateCommand = /* @__PURE__ */ __name(async (input,
|
|
|
1067
1125
|
return b.build();
|
|
1068
1126
|
}, "se_DeletePrivacyBudgetTemplateCommand");
|
|
1069
1127
|
var se_GetAnalysisTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1070
|
-
const b = (0,
|
|
1128
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1071
1129
|
const headers = {};
|
|
1072
1130
|
b.bp("/memberships/{membershipIdentifier}/analysistemplates/{analysisTemplateIdentifier}");
|
|
1073
1131
|
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
@@ -1077,7 +1135,7 @@ var se_GetAnalysisTemplateCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1077
1135
|
return b.build();
|
|
1078
1136
|
}, "se_GetAnalysisTemplateCommand");
|
|
1079
1137
|
var se_GetCollaborationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1080
|
-
const b = (0,
|
|
1138
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1081
1139
|
const headers = {};
|
|
1082
1140
|
b.bp("/collaborations/{collaborationIdentifier}");
|
|
1083
1141
|
b.p("collaborationIdentifier", () => input.collaborationIdentifier, "{collaborationIdentifier}", false);
|
|
@@ -1086,7 +1144,7 @@ var se_GetCollaborationCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1086
1144
|
return b.build();
|
|
1087
1145
|
}, "se_GetCollaborationCommand");
|
|
1088
1146
|
var se_GetCollaborationAnalysisTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1089
|
-
const b = (0,
|
|
1147
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1090
1148
|
const headers = {};
|
|
1091
1149
|
b.bp("/collaborations/{collaborationIdentifier}/analysistemplates/{analysisTemplateArn}");
|
|
1092
1150
|
b.p("collaborationIdentifier", () => input.collaborationIdentifier, "{collaborationIdentifier}", false);
|
|
@@ -1096,7 +1154,7 @@ var se_GetCollaborationAnalysisTemplateCommand = /* @__PURE__ */ __name(async (i
|
|
|
1096
1154
|
return b.build();
|
|
1097
1155
|
}, "se_GetCollaborationAnalysisTemplateCommand");
|
|
1098
1156
|
var se_GetCollaborationConfiguredAudienceModelAssociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1099
|
-
const b = (0,
|
|
1157
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1100
1158
|
const headers = {};
|
|
1101
1159
|
b.bp(
|
|
1102
1160
|
"/collaborations/{collaborationIdentifier}/configuredaudiencemodelassociations/{configuredAudienceModelAssociationIdentifier}"
|
|
@@ -1113,7 +1171,7 @@ var se_GetCollaborationConfiguredAudienceModelAssociationCommand = /* @__PURE__
|
|
|
1113
1171
|
return b.build();
|
|
1114
1172
|
}, "se_GetCollaborationConfiguredAudienceModelAssociationCommand");
|
|
1115
1173
|
var se_GetCollaborationPrivacyBudgetTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1116
|
-
const b = (0,
|
|
1174
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1117
1175
|
const headers = {};
|
|
1118
1176
|
b.bp("/collaborations/{collaborationIdentifier}/privacybudgettemplates/{privacyBudgetTemplateIdentifier}");
|
|
1119
1177
|
b.p("collaborationIdentifier", () => input.collaborationIdentifier, "{collaborationIdentifier}", false);
|
|
@@ -1128,7 +1186,7 @@ var se_GetCollaborationPrivacyBudgetTemplateCommand = /* @__PURE__ */ __name(asy
|
|
|
1128
1186
|
return b.build();
|
|
1129
1187
|
}, "se_GetCollaborationPrivacyBudgetTemplateCommand");
|
|
1130
1188
|
var se_GetConfiguredAudienceModelAssociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1131
|
-
const b = (0,
|
|
1189
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1132
1190
|
const headers = {};
|
|
1133
1191
|
b.bp(
|
|
1134
1192
|
"/memberships/{membershipIdentifier}/configuredaudiencemodelassociations/{configuredAudienceModelAssociationIdentifier}"
|
|
@@ -1145,7 +1203,7 @@ var se_GetConfiguredAudienceModelAssociationCommand = /* @__PURE__ */ __name(asy
|
|
|
1145
1203
|
return b.build();
|
|
1146
1204
|
}, "se_GetConfiguredAudienceModelAssociationCommand");
|
|
1147
1205
|
var se_GetConfiguredTableCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1148
|
-
const b = (0,
|
|
1206
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1149
1207
|
const headers = {};
|
|
1150
1208
|
b.bp("/configuredTables/{configuredTableIdentifier}");
|
|
1151
1209
|
b.p("configuredTableIdentifier", () => input.configuredTableIdentifier, "{configuredTableIdentifier}", false);
|
|
@@ -1154,7 +1212,7 @@ var se_GetConfiguredTableCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1154
1212
|
return b.build();
|
|
1155
1213
|
}, "se_GetConfiguredTableCommand");
|
|
1156
1214
|
var se_GetConfiguredTableAnalysisRuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1157
|
-
const b = (0,
|
|
1215
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1158
1216
|
const headers = {};
|
|
1159
1217
|
b.bp("/configuredTables/{configuredTableIdentifier}/analysisRule/{analysisRuleType}");
|
|
1160
1218
|
b.p("configuredTableIdentifier", () => input.configuredTableIdentifier, "{configuredTableIdentifier}", false);
|
|
@@ -1164,7 +1222,7 @@ var se_GetConfiguredTableAnalysisRuleCommand = /* @__PURE__ */ __name(async (inp
|
|
|
1164
1222
|
return b.build();
|
|
1165
1223
|
}, "se_GetConfiguredTableAnalysisRuleCommand");
|
|
1166
1224
|
var se_GetConfiguredTableAssociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1167
|
-
const b = (0,
|
|
1225
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1168
1226
|
const headers = {};
|
|
1169
1227
|
b.bp("/memberships/{membershipIdentifier}/configuredTableAssociations/{configuredTableAssociationIdentifier}");
|
|
1170
1228
|
b.p(
|
|
@@ -1179,7 +1237,7 @@ var se_GetConfiguredTableAssociationCommand = /* @__PURE__ */ __name(async (inpu
|
|
|
1179
1237
|
return b.build();
|
|
1180
1238
|
}, "se_GetConfiguredTableAssociationCommand");
|
|
1181
1239
|
var se_GetMembershipCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1182
|
-
const b = (0,
|
|
1240
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1183
1241
|
const headers = {};
|
|
1184
1242
|
b.bp("/memberships/{membershipIdentifier}");
|
|
1185
1243
|
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
@@ -1188,7 +1246,7 @@ var se_GetMembershipCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1188
1246
|
return b.build();
|
|
1189
1247
|
}, "se_GetMembershipCommand");
|
|
1190
1248
|
var se_GetPrivacyBudgetTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1191
|
-
const b = (0,
|
|
1249
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1192
1250
|
const headers = {};
|
|
1193
1251
|
b.bp("/memberships/{membershipIdentifier}/privacybudgettemplates/{privacyBudgetTemplateIdentifier}");
|
|
1194
1252
|
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
@@ -1203,7 +1261,7 @@ var se_GetPrivacyBudgetTemplateCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
1203
1261
|
return b.build();
|
|
1204
1262
|
}, "se_GetPrivacyBudgetTemplateCommand");
|
|
1205
1263
|
var se_GetProtectedQueryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1206
|
-
const b = (0,
|
|
1264
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1207
1265
|
const headers = {};
|
|
1208
1266
|
b.bp("/memberships/{membershipIdentifier}/protectedQueries/{protectedQueryIdentifier}");
|
|
1209
1267
|
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
@@ -1213,7 +1271,7 @@ var se_GetProtectedQueryCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1213
1271
|
return b.build();
|
|
1214
1272
|
}, "se_GetProtectedQueryCommand");
|
|
1215
1273
|
var se_GetSchemaCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1216
|
-
const b = (0,
|
|
1274
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1217
1275
|
const headers = {};
|
|
1218
1276
|
b.bp("/collaborations/{collaborationIdentifier}/schemas/{name}");
|
|
1219
1277
|
b.p("collaborationIdentifier", () => input.collaborationIdentifier, "{collaborationIdentifier}", false);
|
|
@@ -1223,7 +1281,7 @@ var se_GetSchemaCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1223
1281
|
return b.build();
|
|
1224
1282
|
}, "se_GetSchemaCommand");
|
|
1225
1283
|
var se_GetSchemaAnalysisRuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1226
|
-
const b = (0,
|
|
1284
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1227
1285
|
const headers = {};
|
|
1228
1286
|
b.bp("/collaborations/{collaborationIdentifier}/schemas/{name}/analysisRule/{type}");
|
|
1229
1287
|
b.p("collaborationIdentifier", () => input.collaborationIdentifier, "{collaborationIdentifier}", false);
|
|
@@ -1234,7 +1292,7 @@ var se_GetSchemaAnalysisRuleCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1234
1292
|
return b.build();
|
|
1235
1293
|
}, "se_GetSchemaAnalysisRuleCommand");
|
|
1236
1294
|
var se_ListAnalysisTemplatesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1237
|
-
const b = (0,
|
|
1295
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1238
1296
|
const headers = {};
|
|
1239
1297
|
b.bp("/memberships/{membershipIdentifier}/analysistemplates");
|
|
1240
1298
|
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
@@ -1247,7 +1305,7 @@ var se_ListAnalysisTemplatesCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1247
1305
|
return b.build();
|
|
1248
1306
|
}, "se_ListAnalysisTemplatesCommand");
|
|
1249
1307
|
var se_ListCollaborationAnalysisTemplatesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1250
|
-
const b = (0,
|
|
1308
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1251
1309
|
const headers = {};
|
|
1252
1310
|
b.bp("/collaborations/{collaborationIdentifier}/analysistemplates");
|
|
1253
1311
|
b.p("collaborationIdentifier", () => input.collaborationIdentifier, "{collaborationIdentifier}", false);
|
|
@@ -1260,7 +1318,7 @@ var se_ListCollaborationAnalysisTemplatesCommand = /* @__PURE__ */ __name(async
|
|
|
1260
1318
|
return b.build();
|
|
1261
1319
|
}, "se_ListCollaborationAnalysisTemplatesCommand");
|
|
1262
1320
|
var se_ListCollaborationConfiguredAudienceModelAssociationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1263
|
-
const b = (0,
|
|
1321
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1264
1322
|
const headers = {};
|
|
1265
1323
|
b.bp("/collaborations/{collaborationIdentifier}/configuredaudiencemodelassociations");
|
|
1266
1324
|
b.p("collaborationIdentifier", () => input.collaborationIdentifier, "{collaborationIdentifier}", false);
|
|
@@ -1273,7 +1331,7 @@ var se_ListCollaborationConfiguredAudienceModelAssociationsCommand = /* @__PURE_
|
|
|
1273
1331
|
return b.build();
|
|
1274
1332
|
}, "se_ListCollaborationConfiguredAudienceModelAssociationsCommand");
|
|
1275
1333
|
var se_ListCollaborationPrivacyBudgetsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1276
|
-
const b = (0,
|
|
1334
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1277
1335
|
const headers = {};
|
|
1278
1336
|
b.bp("/collaborations/{collaborationIdentifier}/privacybudgets");
|
|
1279
1337
|
b.p("collaborationIdentifier", () => input.collaborationIdentifier, "{collaborationIdentifier}", false);
|
|
@@ -1287,7 +1345,7 @@ var se_ListCollaborationPrivacyBudgetsCommand = /* @__PURE__ */ __name(async (in
|
|
|
1287
1345
|
return b.build();
|
|
1288
1346
|
}, "se_ListCollaborationPrivacyBudgetsCommand");
|
|
1289
1347
|
var se_ListCollaborationPrivacyBudgetTemplatesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1290
|
-
const b = (0,
|
|
1348
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1291
1349
|
const headers = {};
|
|
1292
1350
|
b.bp("/collaborations/{collaborationIdentifier}/privacybudgettemplates");
|
|
1293
1351
|
b.p("collaborationIdentifier", () => input.collaborationIdentifier, "{collaborationIdentifier}", false);
|
|
@@ -1300,7 +1358,7 @@ var se_ListCollaborationPrivacyBudgetTemplatesCommand = /* @__PURE__ */ __name(a
|
|
|
1300
1358
|
return b.build();
|
|
1301
1359
|
}, "se_ListCollaborationPrivacyBudgetTemplatesCommand");
|
|
1302
1360
|
var se_ListCollaborationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1303
|
-
const b = (0,
|
|
1361
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1304
1362
|
const headers = {};
|
|
1305
1363
|
b.bp("/collaborations");
|
|
1306
1364
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1313,7 +1371,7 @@ var se_ListCollaborationsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1313
1371
|
return b.build();
|
|
1314
1372
|
}, "se_ListCollaborationsCommand");
|
|
1315
1373
|
var se_ListConfiguredAudienceModelAssociationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1316
|
-
const b = (0,
|
|
1374
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1317
1375
|
const headers = {};
|
|
1318
1376
|
b.bp("/memberships/{membershipIdentifier}/configuredaudiencemodelassociations");
|
|
1319
1377
|
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
@@ -1326,7 +1384,7 @@ var se_ListConfiguredAudienceModelAssociationsCommand = /* @__PURE__ */ __name(a
|
|
|
1326
1384
|
return b.build();
|
|
1327
1385
|
}, "se_ListConfiguredAudienceModelAssociationsCommand");
|
|
1328
1386
|
var se_ListConfiguredTableAssociationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1329
|
-
const b = (0,
|
|
1387
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1330
1388
|
const headers = {};
|
|
1331
1389
|
b.bp("/memberships/{membershipIdentifier}/configuredTableAssociations");
|
|
1332
1390
|
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
@@ -1339,7 +1397,7 @@ var se_ListConfiguredTableAssociationsCommand = /* @__PURE__ */ __name(async (in
|
|
|
1339
1397
|
return b.build();
|
|
1340
1398
|
}, "se_ListConfiguredTableAssociationsCommand");
|
|
1341
1399
|
var se_ListConfiguredTablesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1342
|
-
const b = (0,
|
|
1400
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1343
1401
|
const headers = {};
|
|
1344
1402
|
b.bp("/configuredTables");
|
|
1345
1403
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1351,7 +1409,7 @@ var se_ListConfiguredTablesCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1351
1409
|
return b.build();
|
|
1352
1410
|
}, "se_ListConfiguredTablesCommand");
|
|
1353
1411
|
var se_ListMembersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1354
|
-
const b = (0,
|
|
1412
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1355
1413
|
const headers = {};
|
|
1356
1414
|
b.bp("/collaborations/{collaborationIdentifier}/members");
|
|
1357
1415
|
b.p("collaborationIdentifier", () => input.collaborationIdentifier, "{collaborationIdentifier}", false);
|
|
@@ -1364,7 +1422,7 @@ var se_ListMembersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1364
1422
|
return b.build();
|
|
1365
1423
|
}, "se_ListMembersCommand");
|
|
1366
1424
|
var se_ListMembershipsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1367
|
-
const b = (0,
|
|
1425
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1368
1426
|
const headers = {};
|
|
1369
1427
|
b.bp("/memberships");
|
|
1370
1428
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1377,7 +1435,7 @@ var se_ListMembershipsCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1377
1435
|
return b.build();
|
|
1378
1436
|
}, "se_ListMembershipsCommand");
|
|
1379
1437
|
var se_ListPrivacyBudgetsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1380
|
-
const b = (0,
|
|
1438
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1381
1439
|
const headers = {};
|
|
1382
1440
|
b.bp("/memberships/{membershipIdentifier}/privacybudgets");
|
|
1383
1441
|
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
@@ -1391,7 +1449,7 @@ var se_ListPrivacyBudgetsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1391
1449
|
return b.build();
|
|
1392
1450
|
}, "se_ListPrivacyBudgetsCommand");
|
|
1393
1451
|
var se_ListPrivacyBudgetTemplatesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1394
|
-
const b = (0,
|
|
1452
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1395
1453
|
const headers = {};
|
|
1396
1454
|
b.bp("/memberships/{membershipIdentifier}/privacybudgettemplates");
|
|
1397
1455
|
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
@@ -1404,7 +1462,7 @@ var se_ListPrivacyBudgetTemplatesCommand = /* @__PURE__ */ __name(async (input,
|
|
|
1404
1462
|
return b.build();
|
|
1405
1463
|
}, "se_ListPrivacyBudgetTemplatesCommand");
|
|
1406
1464
|
var se_ListProtectedQueriesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1407
|
-
const b = (0,
|
|
1465
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1408
1466
|
const headers = {};
|
|
1409
1467
|
b.bp("/memberships/{membershipIdentifier}/protectedQueries");
|
|
1410
1468
|
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
@@ -1418,7 +1476,7 @@ var se_ListProtectedQueriesCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1418
1476
|
return b.build();
|
|
1419
1477
|
}, "se_ListProtectedQueriesCommand");
|
|
1420
1478
|
var se_ListSchemasCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1421
|
-
const b = (0,
|
|
1479
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1422
1480
|
const headers = {};
|
|
1423
1481
|
b.bp("/collaborations/{collaborationIdentifier}/schemas");
|
|
1424
1482
|
b.p("collaborationIdentifier", () => input.collaborationIdentifier, "{collaborationIdentifier}", false);
|
|
@@ -1432,7 +1490,7 @@ var se_ListSchemasCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1432
1490
|
return b.build();
|
|
1433
1491
|
}, "se_ListSchemasCommand");
|
|
1434
1492
|
var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1435
|
-
const b = (0,
|
|
1493
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1436
1494
|
const headers = {};
|
|
1437
1495
|
b.bp("/tags/{resourceArn}");
|
|
1438
1496
|
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
@@ -1441,7 +1499,7 @@ var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1441
1499
|
return b.build();
|
|
1442
1500
|
}, "se_ListTagsForResourceCommand");
|
|
1443
1501
|
var se_PreviewPrivacyImpactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1444
|
-
const b = (0,
|
|
1502
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1445
1503
|
const headers = {
|
|
1446
1504
|
"content-type": "application/json"
|
|
1447
1505
|
};
|
|
@@ -1457,7 +1515,7 @@ var se_PreviewPrivacyImpactCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1457
1515
|
return b.build();
|
|
1458
1516
|
}, "se_PreviewPrivacyImpactCommand");
|
|
1459
1517
|
var se_StartProtectedQueryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1460
|
-
const b = (0,
|
|
1518
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1461
1519
|
const headers = {
|
|
1462
1520
|
"content-type": "application/json"
|
|
1463
1521
|
};
|
|
@@ -1475,7 +1533,7 @@ var se_StartProtectedQueryCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1475
1533
|
return b.build();
|
|
1476
1534
|
}, "se_StartProtectedQueryCommand");
|
|
1477
1535
|
var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1478
|
-
const b = (0,
|
|
1536
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1479
1537
|
const headers = {
|
|
1480
1538
|
"content-type": "application/json"
|
|
1481
1539
|
};
|
|
@@ -1491,7 +1549,7 @@ var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1491
1549
|
return b.build();
|
|
1492
1550
|
}, "se_TagResourceCommand");
|
|
1493
1551
|
var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1494
|
-
const b = (0,
|
|
1552
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1495
1553
|
const headers = {};
|
|
1496
1554
|
b.bp("/tags/{resourceArn}");
|
|
1497
1555
|
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
@@ -1506,7 +1564,7 @@ var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1506
1564
|
return b.build();
|
|
1507
1565
|
}, "se_UntagResourceCommand");
|
|
1508
1566
|
var se_UpdateAnalysisTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1509
|
-
const b = (0,
|
|
1567
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1510
1568
|
const headers = {
|
|
1511
1569
|
"content-type": "application/json"
|
|
1512
1570
|
};
|
|
@@ -1523,7 +1581,7 @@ var se_UpdateAnalysisTemplateCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
1523
1581
|
return b.build();
|
|
1524
1582
|
}, "se_UpdateAnalysisTemplateCommand");
|
|
1525
1583
|
var se_UpdateCollaborationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1526
|
-
const b = (0,
|
|
1584
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1527
1585
|
const headers = {
|
|
1528
1586
|
"content-type": "application/json"
|
|
1529
1587
|
};
|
|
@@ -1540,7 +1598,7 @@ var se_UpdateCollaborationCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1540
1598
|
return b.build();
|
|
1541
1599
|
}, "se_UpdateCollaborationCommand");
|
|
1542
1600
|
var se_UpdateConfiguredAudienceModelAssociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1543
|
-
const b = (0,
|
|
1601
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1544
1602
|
const headers = {
|
|
1545
1603
|
"content-type": "application/json"
|
|
1546
1604
|
};
|
|
@@ -1565,7 +1623,7 @@ var se_UpdateConfiguredAudienceModelAssociationCommand = /* @__PURE__ */ __name(
|
|
|
1565
1623
|
return b.build();
|
|
1566
1624
|
}, "se_UpdateConfiguredAudienceModelAssociationCommand");
|
|
1567
1625
|
var se_UpdateConfiguredTableCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1568
|
-
const b = (0,
|
|
1626
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1569
1627
|
const headers = {
|
|
1570
1628
|
"content-type": "application/json"
|
|
1571
1629
|
};
|
|
@@ -1582,7 +1640,7 @@ var se_UpdateConfiguredTableCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1582
1640
|
return b.build();
|
|
1583
1641
|
}, "se_UpdateConfiguredTableCommand");
|
|
1584
1642
|
var se_UpdateConfiguredTableAnalysisRuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1585
|
-
const b = (0,
|
|
1643
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1586
1644
|
const headers = {
|
|
1587
1645
|
"content-type": "application/json"
|
|
1588
1646
|
};
|
|
@@ -1599,7 +1657,7 @@ var se_UpdateConfiguredTableAnalysisRuleCommand = /* @__PURE__ */ __name(async (
|
|
|
1599
1657
|
return b.build();
|
|
1600
1658
|
}, "se_UpdateConfiguredTableAnalysisRuleCommand");
|
|
1601
1659
|
var se_UpdateConfiguredTableAssociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1602
|
-
const b = (0,
|
|
1660
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1603
1661
|
const headers = {
|
|
1604
1662
|
"content-type": "application/json"
|
|
1605
1663
|
};
|
|
@@ -1622,7 +1680,7 @@ var se_UpdateConfiguredTableAssociationCommand = /* @__PURE__ */ __name(async (i
|
|
|
1622
1680
|
return b.build();
|
|
1623
1681
|
}, "se_UpdateConfiguredTableAssociationCommand");
|
|
1624
1682
|
var se_UpdateMembershipCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1625
|
-
const b = (0,
|
|
1683
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1626
1684
|
const headers = {
|
|
1627
1685
|
"content-type": "application/json"
|
|
1628
1686
|
};
|
|
@@ -1639,7 +1697,7 @@ var se_UpdateMembershipCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1639
1697
|
return b.build();
|
|
1640
1698
|
}, "se_UpdateMembershipCommand");
|
|
1641
1699
|
var se_UpdatePrivacyBudgetTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1642
|
-
const b = (0,
|
|
1700
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1643
1701
|
const headers = {
|
|
1644
1702
|
"content-type": "application/json"
|
|
1645
1703
|
};
|
|
@@ -1662,7 +1720,7 @@ var se_UpdatePrivacyBudgetTemplateCommand = /* @__PURE__ */ __name(async (input,
|
|
|
1662
1720
|
return b.build();
|
|
1663
1721
|
}, "se_UpdatePrivacyBudgetTemplateCommand");
|
|
1664
1722
|
var se_UpdateProtectedQueryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1665
|
-
const b = (0,
|
|
1723
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1666
1724
|
const headers = {
|
|
1667
1725
|
"content-type": "application/json"
|
|
1668
1726
|
};
|
|
@@ -2354,7 +2412,7 @@ var de_PreviewPrivacyImpactCommand = /* @__PURE__ */ __name(async (output, conte
|
|
|
2354
2412
|
});
|
|
2355
2413
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await parseBody(output.body, context)), "body");
|
|
2356
2414
|
const doc = (0, import_smithy_client.take)(data, {
|
|
2357
|
-
privacyImpact: (_) => (0, import_smithy_client._json)((0,
|
|
2415
|
+
privacyImpact: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_))
|
|
2358
2416
|
});
|
|
2359
2417
|
Object.assign(contents, doc);
|
|
2360
2418
|
return contents;
|
|
@@ -2663,7 +2721,7 @@ var de_AnalysisRule = /* @__PURE__ */ __name((output, context) => {
|
|
|
2663
2721
|
collaborationId: import_smithy_client.expectString,
|
|
2664
2722
|
createTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2665
2723
|
name: import_smithy_client.expectString,
|
|
2666
|
-
policy: (_) => (0, import_smithy_client._json)((0,
|
|
2724
|
+
policy: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
2667
2725
|
type: import_smithy_client.expectString,
|
|
2668
2726
|
updateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
2669
2727
|
});
|
|
@@ -2682,7 +2740,7 @@ var de_AnalysisTemplate = /* @__PURE__ */ __name((output, context) => {
|
|
|
2682
2740
|
membershipId: import_smithy_client.expectString,
|
|
2683
2741
|
name: import_smithy_client.expectString,
|
|
2684
2742
|
schema: import_smithy_client._json,
|
|
2685
|
-
source: (_) => (0, import_smithy_client._json)((0,
|
|
2743
|
+
source: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
2686
2744
|
updateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
2687
2745
|
});
|
|
2688
2746
|
}, "de_AnalysisTemplate");
|
|
@@ -2736,7 +2794,7 @@ var de_CollaborationAnalysisTemplate = /* @__PURE__ */ __name((output, context)
|
|
|
2736
2794
|
id: import_smithy_client.expectString,
|
|
2737
2795
|
name: import_smithy_client.expectString,
|
|
2738
2796
|
schema: import_smithy_client._json,
|
|
2739
|
-
source: (_) => (0, import_smithy_client._json)((0,
|
|
2797
|
+
source: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
2740
2798
|
updateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
2741
2799
|
});
|
|
2742
2800
|
}, "de_CollaborationAnalysisTemplate");
|
|
@@ -2800,7 +2858,7 @@ var de_CollaborationConfiguredAudienceModelAssociationSummaryList = /* @__PURE__
|
|
|
2800
2858
|
}, "de_CollaborationConfiguredAudienceModelAssociationSummaryList");
|
|
2801
2859
|
var de_CollaborationPrivacyBudgetSummary = /* @__PURE__ */ __name((output, context) => {
|
|
2802
2860
|
return (0, import_smithy_client.take)(output, {
|
|
2803
|
-
budget: (_) => (0, import_smithy_client._json)((0,
|
|
2861
|
+
budget: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
2804
2862
|
collaborationArn: import_smithy_client.expectString,
|
|
2805
2863
|
collaborationId: import_smithy_client.expectString,
|
|
2806
2864
|
createTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
@@ -2827,7 +2885,7 @@ var de_CollaborationPrivacyBudgetTemplate = /* @__PURE__ */ __name((output, cont
|
|
|
2827
2885
|
createTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2828
2886
|
creatorAccountId: import_smithy_client.expectString,
|
|
2829
2887
|
id: import_smithy_client.expectString,
|
|
2830
|
-
parameters: (_) => (0, import_smithy_client._json)((0,
|
|
2888
|
+
parameters: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
2831
2889
|
privacyBudgetType: import_smithy_client.expectString,
|
|
2832
2890
|
updateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
2833
2891
|
});
|
|
@@ -2917,7 +2975,7 @@ var de_ConfiguredTable = /* @__PURE__ */ __name((output, context) => {
|
|
|
2917
2975
|
description: import_smithy_client.expectString,
|
|
2918
2976
|
id: import_smithy_client.expectString,
|
|
2919
2977
|
name: import_smithy_client.expectString,
|
|
2920
|
-
tableReference: (_) => (0, import_smithy_client._json)((0,
|
|
2978
|
+
tableReference: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
2921
2979
|
updateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
2922
2980
|
});
|
|
2923
2981
|
}, "de_ConfiguredTable");
|
|
@@ -2926,7 +2984,7 @@ var de_ConfiguredTableAnalysisRule = /* @__PURE__ */ __name((output, context) =>
|
|
|
2926
2984
|
configuredTableArn: import_smithy_client.expectString,
|
|
2927
2985
|
configuredTableId: import_smithy_client.expectString,
|
|
2928
2986
|
createTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2929
|
-
policy: (_) => (0, import_smithy_client._json)((0,
|
|
2987
|
+
policy: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
2930
2988
|
type: import_smithy_client.expectString,
|
|
2931
2989
|
updateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
2932
2990
|
});
|
|
@@ -3062,7 +3120,7 @@ var de_MemberSummaryList = /* @__PURE__ */ __name((output, context) => {
|
|
|
3062
3120
|
}, "de_MemberSummaryList");
|
|
3063
3121
|
var de_PrivacyBudgetSummary = /* @__PURE__ */ __name((output, context) => {
|
|
3064
3122
|
return (0, import_smithy_client.take)(output, {
|
|
3065
|
-
budget: (_) => (0, import_smithy_client._json)((0,
|
|
3123
|
+
budget: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
3066
3124
|
collaborationArn: import_smithy_client.expectString,
|
|
3067
3125
|
collaborationId: import_smithy_client.expectString,
|
|
3068
3126
|
createTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
@@ -3091,7 +3149,7 @@ var de_PrivacyBudgetTemplate = /* @__PURE__ */ __name((output, context) => {
|
|
|
3091
3149
|
id: import_smithy_client.expectString,
|
|
3092
3150
|
membershipArn: import_smithy_client.expectString,
|
|
3093
3151
|
membershipId: import_smithy_client.expectString,
|
|
3094
|
-
parameters: (_) => (0, import_smithy_client._json)((0,
|
|
3152
|
+
parameters: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
3095
3153
|
privacyBudgetType: import_smithy_client.expectString,
|
|
3096
3154
|
updateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
3097
3155
|
});
|
|
@@ -4363,16 +4421,16 @@ var CleanRooms = _CleanRooms;
|
|
|
4363
4421
|
(0, import_smithy_client.createAggregatedClient)(commands, CleanRooms);
|
|
4364
4422
|
|
|
4365
4423
|
// src/pagination/ListAnalysisTemplatesPaginator.ts
|
|
4366
|
-
|
|
4367
|
-
var paginateListAnalysisTemplates = (0,
|
|
4424
|
+
|
|
4425
|
+
var paginateListAnalysisTemplates = (0, import_core.createPaginator)(CleanRoomsClient, ListAnalysisTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
4368
4426
|
|
|
4369
4427
|
// src/pagination/ListCollaborationAnalysisTemplatesPaginator.ts
|
|
4370
|
-
|
|
4371
|
-
var paginateListCollaborationAnalysisTemplates = (0,
|
|
4428
|
+
|
|
4429
|
+
var paginateListCollaborationAnalysisTemplates = (0, import_core.createPaginator)(CleanRoomsClient, ListCollaborationAnalysisTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
4372
4430
|
|
|
4373
4431
|
// src/pagination/ListCollaborationConfiguredAudienceModelAssociationsPaginator.ts
|
|
4374
|
-
|
|
4375
|
-
var paginateListCollaborationConfiguredAudienceModelAssociations = (0,
|
|
4432
|
+
|
|
4433
|
+
var paginateListCollaborationConfiguredAudienceModelAssociations = (0, import_core.createPaginator)(
|
|
4376
4434
|
CleanRoomsClient,
|
|
4377
4435
|
ListCollaborationConfiguredAudienceModelAssociationsCommand,
|
|
4378
4436
|
"nextToken",
|
|
@@ -4381,52 +4439,52 @@ var paginateListCollaborationConfiguredAudienceModelAssociations = (0, import_co
|
|
|
4381
4439
|
);
|
|
4382
4440
|
|
|
4383
4441
|
// src/pagination/ListCollaborationPrivacyBudgetTemplatesPaginator.ts
|
|
4384
|
-
|
|
4385
|
-
var paginateListCollaborationPrivacyBudgetTemplates = (0,
|
|
4442
|
+
|
|
4443
|
+
var paginateListCollaborationPrivacyBudgetTemplates = (0, import_core.createPaginator)(CleanRoomsClient, ListCollaborationPrivacyBudgetTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
4386
4444
|
|
|
4387
4445
|
// src/pagination/ListCollaborationPrivacyBudgetsPaginator.ts
|
|
4388
|
-
|
|
4389
|
-
var paginateListCollaborationPrivacyBudgets = (0,
|
|
4446
|
+
|
|
4447
|
+
var paginateListCollaborationPrivacyBudgets = (0, import_core.createPaginator)(CleanRoomsClient, ListCollaborationPrivacyBudgetsCommand, "nextToken", "nextToken", "maxResults");
|
|
4390
4448
|
|
|
4391
4449
|
// src/pagination/ListCollaborationsPaginator.ts
|
|
4392
|
-
|
|
4393
|
-
var paginateListCollaborations = (0,
|
|
4450
|
+
|
|
4451
|
+
var paginateListCollaborations = (0, import_core.createPaginator)(CleanRoomsClient, ListCollaborationsCommand, "nextToken", "nextToken", "maxResults");
|
|
4394
4452
|
|
|
4395
4453
|
// src/pagination/ListConfiguredAudienceModelAssociationsPaginator.ts
|
|
4396
|
-
|
|
4397
|
-
var paginateListConfiguredAudienceModelAssociations = (0,
|
|
4454
|
+
|
|
4455
|
+
var paginateListConfiguredAudienceModelAssociations = (0, import_core.createPaginator)(CleanRoomsClient, ListConfiguredAudienceModelAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
4398
4456
|
|
|
4399
4457
|
// src/pagination/ListConfiguredTableAssociationsPaginator.ts
|
|
4400
|
-
|
|
4401
|
-
var paginateListConfiguredTableAssociations = (0,
|
|
4458
|
+
|
|
4459
|
+
var paginateListConfiguredTableAssociations = (0, import_core.createPaginator)(CleanRoomsClient, ListConfiguredTableAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
4402
4460
|
|
|
4403
4461
|
// src/pagination/ListConfiguredTablesPaginator.ts
|
|
4404
|
-
|
|
4405
|
-
var paginateListConfiguredTables = (0,
|
|
4462
|
+
|
|
4463
|
+
var paginateListConfiguredTables = (0, import_core.createPaginator)(CleanRoomsClient, ListConfiguredTablesCommand, "nextToken", "nextToken", "maxResults");
|
|
4406
4464
|
|
|
4407
4465
|
// src/pagination/ListMembersPaginator.ts
|
|
4408
|
-
|
|
4409
|
-
var paginateListMembers = (0,
|
|
4466
|
+
|
|
4467
|
+
var paginateListMembers = (0, import_core.createPaginator)(CleanRoomsClient, ListMembersCommand, "nextToken", "nextToken", "maxResults");
|
|
4410
4468
|
|
|
4411
4469
|
// src/pagination/ListMembershipsPaginator.ts
|
|
4412
|
-
|
|
4413
|
-
var paginateListMemberships = (0,
|
|
4470
|
+
|
|
4471
|
+
var paginateListMemberships = (0, import_core.createPaginator)(CleanRoomsClient, ListMembershipsCommand, "nextToken", "nextToken", "maxResults");
|
|
4414
4472
|
|
|
4415
4473
|
// src/pagination/ListPrivacyBudgetTemplatesPaginator.ts
|
|
4416
|
-
|
|
4417
|
-
var paginateListPrivacyBudgetTemplates = (0,
|
|
4474
|
+
|
|
4475
|
+
var paginateListPrivacyBudgetTemplates = (0, import_core.createPaginator)(CleanRoomsClient, ListPrivacyBudgetTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
4418
4476
|
|
|
4419
4477
|
// src/pagination/ListPrivacyBudgetsPaginator.ts
|
|
4420
|
-
|
|
4421
|
-
var paginateListPrivacyBudgets = (0,
|
|
4478
|
+
|
|
4479
|
+
var paginateListPrivacyBudgets = (0, import_core.createPaginator)(CleanRoomsClient, ListPrivacyBudgetsCommand, "nextToken", "nextToken", "maxResults");
|
|
4422
4480
|
|
|
4423
4481
|
// src/pagination/ListProtectedQueriesPaginator.ts
|
|
4424
|
-
|
|
4425
|
-
var paginateListProtectedQueries = (0,
|
|
4482
|
+
|
|
4483
|
+
var paginateListProtectedQueries = (0, import_core.createPaginator)(CleanRoomsClient, ListProtectedQueriesCommand, "nextToken", "nextToken", "maxResults");
|
|
4426
4484
|
|
|
4427
4485
|
// src/pagination/ListSchemasPaginator.ts
|
|
4428
|
-
|
|
4429
|
-
var paginateListSchemas = (0,
|
|
4486
|
+
|
|
4487
|
+
var paginateListSchemas = (0, import_core.createPaginator)(CleanRoomsClient, ListSchemasCommand, "nextToken", "nextToken", "maxResults");
|
|
4430
4488
|
|
|
4431
4489
|
// src/index.ts
|
|
4432
4490
|
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|