@aws-sdk/client-clouddirectory 3.511.0 → 3.514.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 +174 -116
- package/dist-cjs/runtimeConfig.shared.js +10 -0
- package/dist-es/CloudDirectoryClient.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/CloudDirectoryClient.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 +5 -3
- 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/CloudDirectoryClient.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
|
@@ -164,13 +164,14 @@ module.exports = __toCommonJS(src_exports);
|
|
|
164
164
|
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
165
165
|
var import_middleware_logger = require("@aws-sdk/middleware-logger");
|
|
166
166
|
var import_middleware_recursion_detection = require("@aws-sdk/middleware-recursion-detection");
|
|
167
|
-
var import_middleware_signing = require("@aws-sdk/middleware-signing");
|
|
168
167
|
var import_middleware_user_agent = require("@aws-sdk/middleware-user-agent");
|
|
169
168
|
var import_config_resolver = require("@smithy/config-resolver");
|
|
169
|
+
var import_core = require("@smithy/core");
|
|
170
170
|
var import_middleware_content_length = require("@smithy/middleware-content-length");
|
|
171
171
|
var import_middleware_endpoint = require("@smithy/middleware-endpoint");
|
|
172
172
|
var import_middleware_retry = require("@smithy/middleware-retry");
|
|
173
173
|
|
|
174
|
+
var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
174
175
|
|
|
175
176
|
// src/endpoint/EndpointParameters.ts
|
|
176
177
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
@@ -195,19 +196,62 @@ var import_runtimeConfig = require("././runtimeConfig");
|
|
|
195
196
|
var import_region_config_resolver = require("@aws-sdk/region-config-resolver");
|
|
196
197
|
var import_protocol_http = require("@smithy/protocol-http");
|
|
197
198
|
var import_smithy_client = require("@smithy/smithy-client");
|
|
199
|
+
|
|
200
|
+
// src/auth/httpAuthExtensionConfiguration.ts
|
|
201
|
+
var getHttpAuthExtensionConfiguration = /* @__PURE__ */ __name((runtimeConfig) => {
|
|
202
|
+
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
203
|
+
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
204
|
+
let _credentials = runtimeConfig.credentials;
|
|
205
|
+
return {
|
|
206
|
+
setHttpAuthScheme(httpAuthScheme) {
|
|
207
|
+
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
208
|
+
if (index === -1) {
|
|
209
|
+
_httpAuthSchemes.push(httpAuthScheme);
|
|
210
|
+
} else {
|
|
211
|
+
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
httpAuthSchemes() {
|
|
215
|
+
return _httpAuthSchemes;
|
|
216
|
+
},
|
|
217
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
218
|
+
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
219
|
+
},
|
|
220
|
+
httpAuthSchemeProvider() {
|
|
221
|
+
return _httpAuthSchemeProvider;
|
|
222
|
+
},
|
|
223
|
+
setCredentials(credentials) {
|
|
224
|
+
_credentials = credentials;
|
|
225
|
+
},
|
|
226
|
+
credentials() {
|
|
227
|
+
return _credentials;
|
|
228
|
+
}
|
|
229
|
+
};
|
|
230
|
+
}, "getHttpAuthExtensionConfiguration");
|
|
231
|
+
var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
232
|
+
return {
|
|
233
|
+
httpAuthSchemes: config.httpAuthSchemes(),
|
|
234
|
+
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
235
|
+
credentials: config.credentials()
|
|
236
|
+
};
|
|
237
|
+
}, "resolveHttpAuthRuntimeConfig");
|
|
238
|
+
|
|
239
|
+
// src/runtimeExtensions.ts
|
|
198
240
|
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
199
241
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
200
242
|
const extensionConfiguration = {
|
|
201
243
|
...asPartial((0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig)),
|
|
202
244
|
...asPartial((0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig)),
|
|
203
|
-
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig))
|
|
245
|
+
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
|
|
246
|
+
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig))
|
|
204
247
|
};
|
|
205
248
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
206
249
|
return {
|
|
207
250
|
...runtimeConfig,
|
|
208
251
|
...(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
209
252
|
...(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
210
|
-
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration)
|
|
253
|
+
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
254
|
+
...resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
211
255
|
};
|
|
212
256
|
}, "resolveRuntimeExtensions");
|
|
213
257
|
|
|
@@ -220,8 +264,8 @@ var _CloudDirectoryClient = class _CloudDirectoryClient extends import_smithy_cl
|
|
|
220
264
|
const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
|
|
221
265
|
const _config_4 = (0, import_middleware_retry.resolveRetryConfig)(_config_3);
|
|
222
266
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
223
|
-
const _config_6 = (0,
|
|
224
|
-
const _config_7 = (0,
|
|
267
|
+
const _config_6 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_5);
|
|
268
|
+
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
225
269
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
226
270
|
super(_config_8);
|
|
227
271
|
this.config = _config_8;
|
|
@@ -230,8 +274,14 @@ var _CloudDirectoryClient = class _CloudDirectoryClient extends import_smithy_cl
|
|
|
230
274
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
231
275
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
232
276
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
233
|
-
this.middlewareStack.use((0, import_middleware_signing.getAwsAuthPlugin)(this.config));
|
|
234
277
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
278
|
+
this.middlewareStack.use(
|
|
279
|
+
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
280
|
+
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
281
|
+
identityProviderConfigProvider: this.getIdentityProviderConfigProvider()
|
|
282
|
+
})
|
|
283
|
+
);
|
|
284
|
+
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
235
285
|
}
|
|
236
286
|
/**
|
|
237
287
|
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
@@ -241,6 +291,14 @@ var _CloudDirectoryClient = class _CloudDirectoryClient extends import_smithy_cl
|
|
|
241
291
|
destroy() {
|
|
242
292
|
super.destroy();
|
|
243
293
|
}
|
|
294
|
+
getDefaultHttpAuthSchemeParametersProvider() {
|
|
295
|
+
return import_httpAuthSchemeProvider.defaultCloudDirectoryHttpAuthSchemeParametersProvider;
|
|
296
|
+
}
|
|
297
|
+
getIdentityProviderConfigProvider() {
|
|
298
|
+
return async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
299
|
+
"aws.auth#sigv4": config.credentials
|
|
300
|
+
});
|
|
301
|
+
}
|
|
244
302
|
};
|
|
245
303
|
__name(_CloudDirectoryClient, "CloudDirectoryClient");
|
|
246
304
|
var CloudDirectoryClient = _CloudDirectoryClient;
|
|
@@ -255,8 +313,8 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
255
313
|
var import_types = require("@smithy/types");
|
|
256
314
|
|
|
257
315
|
// src/protocols/Aws_restJson1.ts
|
|
258
|
-
var
|
|
259
|
-
|
|
316
|
+
var import_core2 = require("@aws-sdk/core");
|
|
317
|
+
|
|
260
318
|
|
|
261
319
|
|
|
262
320
|
// src/models/CloudDirectoryServiceException.ts
|
|
@@ -1008,7 +1066,7 @@ var IncompatibleSchemaException = _IncompatibleSchemaException;
|
|
|
1008
1066
|
|
|
1009
1067
|
// src/protocols/Aws_restJson1.ts
|
|
1010
1068
|
var se_AddFacetToObjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1011
|
-
const b = (0,
|
|
1069
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1012
1070
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1013
1071
|
"content-type": "application/json",
|
|
1014
1072
|
[_xadp]: input[_DA]
|
|
@@ -1026,7 +1084,7 @@ var se_AddFacetToObjectCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1026
1084
|
return b.build();
|
|
1027
1085
|
}, "se_AddFacetToObjectCommand");
|
|
1028
1086
|
var se_ApplySchemaCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1029
|
-
const b = (0,
|
|
1087
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1030
1088
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1031
1089
|
"content-type": "application/json",
|
|
1032
1090
|
[_xadp]: input[_DA]
|
|
@@ -1042,7 +1100,7 @@ var se_ApplySchemaCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1042
1100
|
return b.build();
|
|
1043
1101
|
}, "se_ApplySchemaCommand");
|
|
1044
1102
|
var se_AttachObjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1045
|
-
const b = (0,
|
|
1103
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1046
1104
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1047
1105
|
"content-type": "application/json",
|
|
1048
1106
|
[_xadp]: input[_DA]
|
|
@@ -1060,7 +1118,7 @@ var se_AttachObjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1060
1118
|
return b.build();
|
|
1061
1119
|
}, "se_AttachObjectCommand");
|
|
1062
1120
|
var se_AttachPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1063
|
-
const b = (0,
|
|
1121
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1064
1122
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1065
1123
|
"content-type": "application/json",
|
|
1066
1124
|
[_xadp]: input[_DA]
|
|
@@ -1077,7 +1135,7 @@ var se_AttachPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1077
1135
|
return b.build();
|
|
1078
1136
|
}, "se_AttachPolicyCommand");
|
|
1079
1137
|
var se_AttachToIndexCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1080
|
-
const b = (0,
|
|
1138
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1081
1139
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1082
1140
|
"content-type": "application/json",
|
|
1083
1141
|
[_xadp]: input[_DA]
|
|
@@ -1094,7 +1152,7 @@ var se_AttachToIndexCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1094
1152
|
return b.build();
|
|
1095
1153
|
}, "se_AttachToIndexCommand");
|
|
1096
1154
|
var se_AttachTypedLinkCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1097
|
-
const b = (0,
|
|
1155
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1098
1156
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1099
1157
|
"content-type": "application/json",
|
|
1100
1158
|
[_xadp]: input[_DA]
|
|
@@ -1113,7 +1171,7 @@ var se_AttachTypedLinkCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1113
1171
|
return b.build();
|
|
1114
1172
|
}, "se_AttachTypedLinkCommand");
|
|
1115
1173
|
var se_BatchReadCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1116
|
-
const b = (0,
|
|
1174
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1117
1175
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1118
1176
|
"content-type": "application/json",
|
|
1119
1177
|
[_xadp]: input[_DA],
|
|
@@ -1130,7 +1188,7 @@ var se_BatchReadCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1130
1188
|
return b.build();
|
|
1131
1189
|
}, "se_BatchReadCommand");
|
|
1132
1190
|
var se_BatchWriteCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1133
|
-
const b = (0,
|
|
1191
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1134
1192
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1135
1193
|
"content-type": "application/json",
|
|
1136
1194
|
[_xadp]: input[_DA]
|
|
@@ -1146,7 +1204,7 @@ var se_BatchWriteCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1146
1204
|
return b.build();
|
|
1147
1205
|
}, "se_BatchWriteCommand");
|
|
1148
1206
|
var se_CreateDirectoryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1149
|
-
const b = (0,
|
|
1207
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1150
1208
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1151
1209
|
"content-type": "application/json",
|
|
1152
1210
|
[_xadp]: input[_SA]
|
|
@@ -1162,7 +1220,7 @@ var se_CreateDirectoryCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1162
1220
|
return b.build();
|
|
1163
1221
|
}, "se_CreateDirectoryCommand");
|
|
1164
1222
|
var se_CreateFacetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1165
|
-
const b = (0,
|
|
1223
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1166
1224
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1167
1225
|
"content-type": "application/json",
|
|
1168
1226
|
[_xadp]: input[_SA]
|
|
@@ -1181,7 +1239,7 @@ var se_CreateFacetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1181
1239
|
return b.build();
|
|
1182
1240
|
}, "se_CreateFacetCommand");
|
|
1183
1241
|
var se_CreateIndexCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1184
|
-
const b = (0,
|
|
1242
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1185
1243
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1186
1244
|
"content-type": "application/json",
|
|
1187
1245
|
[_xadp]: input[_DA]
|
|
@@ -1200,7 +1258,7 @@ var se_CreateIndexCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1200
1258
|
return b.build();
|
|
1201
1259
|
}, "se_CreateIndexCommand");
|
|
1202
1260
|
var se_CreateObjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1203
|
-
const b = (0,
|
|
1261
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1204
1262
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1205
1263
|
"content-type": "application/json",
|
|
1206
1264
|
[_xadp]: input[_DA]
|
|
@@ -1219,7 +1277,7 @@ var se_CreateObjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1219
1277
|
return b.build();
|
|
1220
1278
|
}, "se_CreateObjectCommand");
|
|
1221
1279
|
var se_CreateSchemaCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1222
|
-
const b = (0,
|
|
1280
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1223
1281
|
const headers = {
|
|
1224
1282
|
"content-type": "application/json"
|
|
1225
1283
|
};
|
|
@@ -1234,7 +1292,7 @@ var se_CreateSchemaCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1234
1292
|
return b.build();
|
|
1235
1293
|
}, "se_CreateSchemaCommand");
|
|
1236
1294
|
var se_CreateTypedLinkFacetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1237
|
-
const b = (0,
|
|
1295
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1238
1296
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1239
1297
|
"content-type": "application/json",
|
|
1240
1298
|
[_xadp]: input[_SA]
|
|
@@ -1250,7 +1308,7 @@ var se_CreateTypedLinkFacetCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1250
1308
|
return b.build();
|
|
1251
1309
|
}, "se_CreateTypedLinkFacetCommand");
|
|
1252
1310
|
var se_DeleteDirectoryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1253
|
-
const b = (0,
|
|
1311
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1254
1312
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1255
1313
|
[_xadp]: input[_DA]
|
|
1256
1314
|
});
|
|
@@ -1260,7 +1318,7 @@ var se_DeleteDirectoryCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1260
1318
|
return b.build();
|
|
1261
1319
|
}, "se_DeleteDirectoryCommand");
|
|
1262
1320
|
var se_DeleteFacetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1263
|
-
const b = (0,
|
|
1321
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1264
1322
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1265
1323
|
"content-type": "application/json",
|
|
1266
1324
|
[_xadp]: input[_SA]
|
|
@@ -1276,7 +1334,7 @@ var se_DeleteFacetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1276
1334
|
return b.build();
|
|
1277
1335
|
}, "se_DeleteFacetCommand");
|
|
1278
1336
|
var se_DeleteObjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1279
|
-
const b = (0,
|
|
1337
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1280
1338
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1281
1339
|
"content-type": "application/json",
|
|
1282
1340
|
[_xadp]: input[_DA]
|
|
@@ -1292,7 +1350,7 @@ var se_DeleteObjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1292
1350
|
return b.build();
|
|
1293
1351
|
}, "se_DeleteObjectCommand");
|
|
1294
1352
|
var se_DeleteSchemaCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1295
|
-
const b = (0,
|
|
1353
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1296
1354
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1297
1355
|
[_xadp]: input[_SA]
|
|
1298
1356
|
});
|
|
@@ -1302,7 +1360,7 @@ var se_DeleteSchemaCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1302
1360
|
return b.build();
|
|
1303
1361
|
}, "se_DeleteSchemaCommand");
|
|
1304
1362
|
var se_DeleteTypedLinkFacetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1305
|
-
const b = (0,
|
|
1363
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1306
1364
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1307
1365
|
"content-type": "application/json",
|
|
1308
1366
|
[_xadp]: input[_SA]
|
|
@@ -1318,7 +1376,7 @@ var se_DeleteTypedLinkFacetCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1318
1376
|
return b.build();
|
|
1319
1377
|
}, "se_DeleteTypedLinkFacetCommand");
|
|
1320
1378
|
var se_DetachFromIndexCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1321
|
-
const b = (0,
|
|
1379
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1322
1380
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1323
1381
|
"content-type": "application/json",
|
|
1324
1382
|
[_xadp]: input[_DA]
|
|
@@ -1335,7 +1393,7 @@ var se_DetachFromIndexCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1335
1393
|
return b.build();
|
|
1336
1394
|
}, "se_DetachFromIndexCommand");
|
|
1337
1395
|
var se_DetachObjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1338
|
-
const b = (0,
|
|
1396
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1339
1397
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1340
1398
|
"content-type": "application/json",
|
|
1341
1399
|
[_xadp]: input[_DA]
|
|
@@ -1352,7 +1410,7 @@ var se_DetachObjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1352
1410
|
return b.build();
|
|
1353
1411
|
}, "se_DetachObjectCommand");
|
|
1354
1412
|
var se_DetachPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1355
|
-
const b = (0,
|
|
1413
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1356
1414
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1357
1415
|
"content-type": "application/json",
|
|
1358
1416
|
[_xadp]: input[_DA]
|
|
@@ -1369,7 +1427,7 @@ var se_DetachPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1369
1427
|
return b.build();
|
|
1370
1428
|
}, "se_DetachPolicyCommand");
|
|
1371
1429
|
var se_DetachTypedLinkCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1372
|
-
const b = (0,
|
|
1430
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1373
1431
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1374
1432
|
"content-type": "application/json",
|
|
1375
1433
|
[_xadp]: input[_DA]
|
|
@@ -1385,7 +1443,7 @@ var se_DetachTypedLinkCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1385
1443
|
return b.build();
|
|
1386
1444
|
}, "se_DetachTypedLinkCommand");
|
|
1387
1445
|
var se_DisableDirectoryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1388
|
-
const b = (0,
|
|
1446
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1389
1447
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1390
1448
|
[_xadp]: input[_DA]
|
|
1391
1449
|
});
|
|
@@ -1395,7 +1453,7 @@ var se_DisableDirectoryCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1395
1453
|
return b.build();
|
|
1396
1454
|
}, "se_DisableDirectoryCommand");
|
|
1397
1455
|
var se_EnableDirectoryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1398
|
-
const b = (0,
|
|
1456
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1399
1457
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1400
1458
|
[_xadp]: input[_DA]
|
|
1401
1459
|
});
|
|
@@ -1405,7 +1463,7 @@ var se_EnableDirectoryCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1405
1463
|
return b.build();
|
|
1406
1464
|
}, "se_EnableDirectoryCommand");
|
|
1407
1465
|
var se_GetAppliedSchemaVersionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1408
|
-
const b = (0,
|
|
1466
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1409
1467
|
const headers = {
|
|
1410
1468
|
"content-type": "application/json"
|
|
1411
1469
|
};
|
|
@@ -1420,7 +1478,7 @@ var se_GetAppliedSchemaVersionCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
1420
1478
|
return b.build();
|
|
1421
1479
|
}, "se_GetAppliedSchemaVersionCommand");
|
|
1422
1480
|
var se_GetDirectoryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1423
|
-
const b = (0,
|
|
1481
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1424
1482
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1425
1483
|
[_xadp]: input[_DA]
|
|
1426
1484
|
});
|
|
@@ -1430,7 +1488,7 @@ var se_GetDirectoryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1430
1488
|
return b.build();
|
|
1431
1489
|
}, "se_GetDirectoryCommand");
|
|
1432
1490
|
var se_GetFacetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1433
|
-
const b = (0,
|
|
1491
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1434
1492
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1435
1493
|
"content-type": "application/json",
|
|
1436
1494
|
[_xadp]: input[_SA]
|
|
@@ -1446,7 +1504,7 @@ var se_GetFacetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1446
1504
|
return b.build();
|
|
1447
1505
|
}, "se_GetFacetCommand");
|
|
1448
1506
|
var se_GetLinkAttributesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1449
|
-
const b = (0,
|
|
1507
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1450
1508
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1451
1509
|
"content-type": "application/json",
|
|
1452
1510
|
[_xadp]: input[_DA]
|
|
@@ -1464,7 +1522,7 @@ var se_GetLinkAttributesCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1464
1522
|
return b.build();
|
|
1465
1523
|
}, "se_GetLinkAttributesCommand");
|
|
1466
1524
|
var se_GetObjectAttributesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1467
|
-
const b = (0,
|
|
1525
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1468
1526
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1469
1527
|
"content-type": "application/json",
|
|
1470
1528
|
[_xadp]: input[_DA],
|
|
@@ -1483,7 +1541,7 @@ var se_GetObjectAttributesCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1483
1541
|
return b.build();
|
|
1484
1542
|
}, "se_GetObjectAttributesCommand");
|
|
1485
1543
|
var se_GetObjectInformationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1486
|
-
const b = (0,
|
|
1544
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1487
1545
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1488
1546
|
"content-type": "application/json",
|
|
1489
1547
|
[_xadp]: input[_DA],
|
|
@@ -1500,7 +1558,7 @@ var se_GetObjectInformationCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1500
1558
|
return b.build();
|
|
1501
1559
|
}, "se_GetObjectInformationCommand");
|
|
1502
1560
|
var se_GetSchemaAsJsonCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1503
|
-
const b = (0,
|
|
1561
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1504
1562
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1505
1563
|
[_xadp]: input[_SA]
|
|
1506
1564
|
});
|
|
@@ -1510,7 +1568,7 @@ var se_GetSchemaAsJsonCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1510
1568
|
return b.build();
|
|
1511
1569
|
}, "se_GetSchemaAsJsonCommand");
|
|
1512
1570
|
var se_GetTypedLinkFacetInformationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1513
|
-
const b = (0,
|
|
1571
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1514
1572
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1515
1573
|
"content-type": "application/json",
|
|
1516
1574
|
[_xadp]: input[_SA]
|
|
@@ -1526,7 +1584,7 @@ var se_GetTypedLinkFacetInformationCommand = /* @__PURE__ */ __name(async (input
|
|
|
1526
1584
|
return b.build();
|
|
1527
1585
|
}, "se_GetTypedLinkFacetInformationCommand");
|
|
1528
1586
|
var se_ListAppliedSchemaArnsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1529
|
-
const b = (0,
|
|
1587
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1530
1588
|
const headers = {
|
|
1531
1589
|
"content-type": "application/json"
|
|
1532
1590
|
};
|
|
@@ -1544,7 +1602,7 @@ var se_ListAppliedSchemaArnsCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1544
1602
|
return b.build();
|
|
1545
1603
|
}, "se_ListAppliedSchemaArnsCommand");
|
|
1546
1604
|
var se_ListAttachedIndicesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1547
|
-
const b = (0,
|
|
1605
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1548
1606
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1549
1607
|
"content-type": "application/json",
|
|
1550
1608
|
[_xadp]: input[_DA],
|
|
@@ -1563,7 +1621,7 @@ var se_ListAttachedIndicesCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1563
1621
|
return b.build();
|
|
1564
1622
|
}, "se_ListAttachedIndicesCommand");
|
|
1565
1623
|
var se_ListDevelopmentSchemaArnsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1566
|
-
const b = (0,
|
|
1624
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1567
1625
|
const headers = {
|
|
1568
1626
|
"content-type": "application/json"
|
|
1569
1627
|
};
|
|
@@ -1579,7 +1637,7 @@ var se_ListDevelopmentSchemaArnsCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
1579
1637
|
return b.build();
|
|
1580
1638
|
}, "se_ListDevelopmentSchemaArnsCommand");
|
|
1581
1639
|
var se_ListDirectoriesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1582
|
-
const b = (0,
|
|
1640
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1583
1641
|
const headers = {
|
|
1584
1642
|
"content-type": "application/json"
|
|
1585
1643
|
};
|
|
@@ -1596,7 +1654,7 @@ var se_ListDirectoriesCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1596
1654
|
return b.build();
|
|
1597
1655
|
}, "se_ListDirectoriesCommand");
|
|
1598
1656
|
var se_ListFacetAttributesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1599
|
-
const b = (0,
|
|
1657
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1600
1658
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1601
1659
|
"content-type": "application/json",
|
|
1602
1660
|
[_xadp]: input[_SA]
|
|
@@ -1614,7 +1672,7 @@ var se_ListFacetAttributesCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1614
1672
|
return b.build();
|
|
1615
1673
|
}, "se_ListFacetAttributesCommand");
|
|
1616
1674
|
var se_ListFacetNamesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1617
|
-
const b = (0,
|
|
1675
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1618
1676
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1619
1677
|
"content-type": "application/json",
|
|
1620
1678
|
[_xadp]: input[_SA]
|
|
@@ -1631,7 +1689,7 @@ var se_ListFacetNamesCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1631
1689
|
return b.build();
|
|
1632
1690
|
}, "se_ListFacetNamesCommand");
|
|
1633
1691
|
var se_ListIncomingTypedLinksCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1634
|
-
const b = (0,
|
|
1692
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1635
1693
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1636
1694
|
"content-type": "application/json",
|
|
1637
1695
|
[_xadp]: input[_DA]
|
|
@@ -1652,7 +1710,7 @@ var se_ListIncomingTypedLinksCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
1652
1710
|
return b.build();
|
|
1653
1711
|
}, "se_ListIncomingTypedLinksCommand");
|
|
1654
1712
|
var se_ListIndexCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1655
|
-
const b = (0,
|
|
1713
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1656
1714
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1657
1715
|
"content-type": "application/json",
|
|
1658
1716
|
[_xadp]: input[_DA],
|
|
@@ -1672,7 +1730,7 @@ var se_ListIndexCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1672
1730
|
return b.build();
|
|
1673
1731
|
}, "se_ListIndexCommand");
|
|
1674
1732
|
var se_ListManagedSchemaArnsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1675
|
-
const b = (0,
|
|
1733
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1676
1734
|
const headers = {
|
|
1677
1735
|
"content-type": "application/json"
|
|
1678
1736
|
};
|
|
@@ -1689,7 +1747,7 @@ var se_ListManagedSchemaArnsCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1689
1747
|
return b.build();
|
|
1690
1748
|
}, "se_ListManagedSchemaArnsCommand");
|
|
1691
1749
|
var se_ListObjectAttributesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1692
|
-
const b = (0,
|
|
1750
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1693
1751
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1694
1752
|
"content-type": "application/json",
|
|
1695
1753
|
[_xadp]: input[_DA],
|
|
@@ -1709,7 +1767,7 @@ var se_ListObjectAttributesCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1709
1767
|
return b.build();
|
|
1710
1768
|
}, "se_ListObjectAttributesCommand");
|
|
1711
1769
|
var se_ListObjectChildrenCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1712
|
-
const b = (0,
|
|
1770
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1713
1771
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1714
1772
|
"content-type": "application/json",
|
|
1715
1773
|
[_xadp]: input[_DA],
|
|
@@ -1728,7 +1786,7 @@ var se_ListObjectChildrenCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1728
1786
|
return b.build();
|
|
1729
1787
|
}, "se_ListObjectChildrenCommand");
|
|
1730
1788
|
var se_ListObjectParentPathsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1731
|
-
const b = (0,
|
|
1789
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1732
1790
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1733
1791
|
"content-type": "application/json",
|
|
1734
1792
|
[_xadp]: input[_DA]
|
|
@@ -1746,7 +1804,7 @@ var se_ListObjectParentPathsCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1746
1804
|
return b.build();
|
|
1747
1805
|
}, "se_ListObjectParentPathsCommand");
|
|
1748
1806
|
var se_ListObjectParentsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1749
|
-
const b = (0,
|
|
1807
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1750
1808
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1751
1809
|
"content-type": "application/json",
|
|
1752
1810
|
[_xadp]: input[_DA],
|
|
@@ -1766,7 +1824,7 @@ var se_ListObjectParentsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1766
1824
|
return b.build();
|
|
1767
1825
|
}, "se_ListObjectParentsCommand");
|
|
1768
1826
|
var se_ListObjectPoliciesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1769
|
-
const b = (0,
|
|
1827
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1770
1828
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1771
1829
|
"content-type": "application/json",
|
|
1772
1830
|
[_xadp]: input[_DA],
|
|
@@ -1785,7 +1843,7 @@ var se_ListObjectPoliciesCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1785
1843
|
return b.build();
|
|
1786
1844
|
}, "se_ListObjectPoliciesCommand");
|
|
1787
1845
|
var se_ListOutgoingTypedLinksCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1788
|
-
const b = (0,
|
|
1846
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1789
1847
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1790
1848
|
"content-type": "application/json",
|
|
1791
1849
|
[_xadp]: input[_DA]
|
|
@@ -1806,7 +1864,7 @@ var se_ListOutgoingTypedLinksCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
1806
1864
|
return b.build();
|
|
1807
1865
|
}, "se_ListOutgoingTypedLinksCommand");
|
|
1808
1866
|
var se_ListPolicyAttachmentsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1809
|
-
const b = (0,
|
|
1867
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1810
1868
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1811
1869
|
"content-type": "application/json",
|
|
1812
1870
|
[_xadp]: input[_DA],
|
|
@@ -1825,7 +1883,7 @@ var se_ListPolicyAttachmentsCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1825
1883
|
return b.build();
|
|
1826
1884
|
}, "se_ListPolicyAttachmentsCommand");
|
|
1827
1885
|
var se_ListPublishedSchemaArnsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1828
|
-
const b = (0,
|
|
1886
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1829
1887
|
const headers = {
|
|
1830
1888
|
"content-type": "application/json"
|
|
1831
1889
|
};
|
|
@@ -1842,7 +1900,7 @@ var se_ListPublishedSchemaArnsCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
1842
1900
|
return b.build();
|
|
1843
1901
|
}, "se_ListPublishedSchemaArnsCommand");
|
|
1844
1902
|
var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1845
|
-
const b = (0,
|
|
1903
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1846
1904
|
const headers = {
|
|
1847
1905
|
"content-type": "application/json"
|
|
1848
1906
|
};
|
|
@@ -1859,7 +1917,7 @@ var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1859
1917
|
return b.build();
|
|
1860
1918
|
}, "se_ListTagsForResourceCommand");
|
|
1861
1919
|
var se_ListTypedLinkFacetAttributesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1862
|
-
const b = (0,
|
|
1920
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1863
1921
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1864
1922
|
"content-type": "application/json",
|
|
1865
1923
|
[_xadp]: input[_SA]
|
|
@@ -1877,7 +1935,7 @@ var se_ListTypedLinkFacetAttributesCommand = /* @__PURE__ */ __name(async (input
|
|
|
1877
1935
|
return b.build();
|
|
1878
1936
|
}, "se_ListTypedLinkFacetAttributesCommand");
|
|
1879
1937
|
var se_ListTypedLinkFacetNamesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1880
|
-
const b = (0,
|
|
1938
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1881
1939
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1882
1940
|
"content-type": "application/json",
|
|
1883
1941
|
[_xadp]: input[_SA]
|
|
@@ -1894,7 +1952,7 @@ var se_ListTypedLinkFacetNamesCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
1894
1952
|
return b.build();
|
|
1895
1953
|
}, "se_ListTypedLinkFacetNamesCommand");
|
|
1896
1954
|
var se_LookupPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1897
|
-
const b = (0,
|
|
1955
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1898
1956
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1899
1957
|
"content-type": "application/json",
|
|
1900
1958
|
[_xadp]: input[_DA]
|
|
@@ -1912,7 +1970,7 @@ var se_LookupPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1912
1970
|
return b.build();
|
|
1913
1971
|
}, "se_LookupPolicyCommand");
|
|
1914
1972
|
var se_PublishSchemaCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1915
|
-
const b = (0,
|
|
1973
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1916
1974
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1917
1975
|
"content-type": "application/json",
|
|
1918
1976
|
[_xadp]: input[_DSA]
|
|
@@ -1930,7 +1988,7 @@ var se_PublishSchemaCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1930
1988
|
return b.build();
|
|
1931
1989
|
}, "se_PublishSchemaCommand");
|
|
1932
1990
|
var se_PutSchemaFromJsonCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1933
|
-
const b = (0,
|
|
1991
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1934
1992
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1935
1993
|
"content-type": "application/json",
|
|
1936
1994
|
[_xadp]: input[_SA]
|
|
@@ -1946,7 +2004,7 @@ var se_PutSchemaFromJsonCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1946
2004
|
return b.build();
|
|
1947
2005
|
}, "se_PutSchemaFromJsonCommand");
|
|
1948
2006
|
var se_RemoveFacetFromObjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1949
|
-
const b = (0,
|
|
2007
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1950
2008
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1951
2009
|
"content-type": "application/json",
|
|
1952
2010
|
[_xadp]: input[_DA]
|
|
@@ -1963,7 +2021,7 @@ var se_RemoveFacetFromObjectCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1963
2021
|
return b.build();
|
|
1964
2022
|
}, "se_RemoveFacetFromObjectCommand");
|
|
1965
2023
|
var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1966
|
-
const b = (0,
|
|
2024
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1967
2025
|
const headers = {
|
|
1968
2026
|
"content-type": "application/json"
|
|
1969
2027
|
};
|
|
@@ -1979,7 +2037,7 @@ var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1979
2037
|
return b.build();
|
|
1980
2038
|
}, "se_TagResourceCommand");
|
|
1981
2039
|
var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1982
|
-
const b = (0,
|
|
2040
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1983
2041
|
const headers = {
|
|
1984
2042
|
"content-type": "application/json"
|
|
1985
2043
|
};
|
|
@@ -1995,7 +2053,7 @@ var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1995
2053
|
return b.build();
|
|
1996
2054
|
}, "se_UntagResourceCommand");
|
|
1997
2055
|
var se_UpdateFacetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1998
|
-
const b = (0,
|
|
2056
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1999
2057
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
2000
2058
|
"content-type": "application/json",
|
|
2001
2059
|
[_xadp]: input[_SA]
|
|
@@ -2013,7 +2071,7 @@ var se_UpdateFacetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2013
2071
|
return b.build();
|
|
2014
2072
|
}, "se_UpdateFacetCommand");
|
|
2015
2073
|
var se_UpdateLinkAttributesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2016
|
-
const b = (0,
|
|
2074
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2017
2075
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
2018
2076
|
"content-type": "application/json",
|
|
2019
2077
|
[_xadp]: input[_DA]
|
|
@@ -2030,7 +2088,7 @@ var se_UpdateLinkAttributesCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
2030
2088
|
return b.build();
|
|
2031
2089
|
}, "se_UpdateLinkAttributesCommand");
|
|
2032
2090
|
var se_UpdateObjectAttributesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2033
|
-
const b = (0,
|
|
2091
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2034
2092
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
2035
2093
|
"content-type": "application/json",
|
|
2036
2094
|
[_xadp]: input[_DA]
|
|
@@ -2047,7 +2105,7 @@ var se_UpdateObjectAttributesCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
2047
2105
|
return b.build();
|
|
2048
2106
|
}, "se_UpdateObjectAttributesCommand");
|
|
2049
2107
|
var se_UpdateSchemaCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2050
|
-
const b = (0,
|
|
2108
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2051
2109
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
2052
2110
|
"content-type": "application/json",
|
|
2053
2111
|
[_xadp]: input[_SA]
|
|
@@ -2063,7 +2121,7 @@ var se_UpdateSchemaCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2063
2121
|
return b.build();
|
|
2064
2122
|
}, "se_UpdateSchemaCommand");
|
|
2065
2123
|
var se_UpdateTypedLinkFacetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2066
|
-
const b = (0,
|
|
2124
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2067
2125
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
2068
2126
|
"content-type": "application/json",
|
|
2069
2127
|
[_xadp]: input[_SA]
|
|
@@ -2081,7 +2139,7 @@ var se_UpdateTypedLinkFacetCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
2081
2139
|
return b.build();
|
|
2082
2140
|
}, "se_UpdateTypedLinkFacetCommand");
|
|
2083
2141
|
var se_UpgradeAppliedSchemaCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2084
|
-
const b = (0,
|
|
2142
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2085
2143
|
const headers = {
|
|
2086
2144
|
"content-type": "application/json"
|
|
2087
2145
|
};
|
|
@@ -2098,7 +2156,7 @@ var se_UpgradeAppliedSchemaCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
2098
2156
|
return b.build();
|
|
2099
2157
|
}, "se_UpgradeAppliedSchemaCommand");
|
|
2100
2158
|
var se_UpgradePublishedSchemaCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2101
|
-
const b = (0,
|
|
2159
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2102
2160
|
const headers = {
|
|
2103
2161
|
"content-type": "application/json"
|
|
2104
2162
|
};
|
|
@@ -3879,7 +3937,7 @@ var se_TypedLinkSpecifier = /* @__PURE__ */ __name((input, context) => {
|
|
|
3879
3937
|
var de_AttributeKeyAndValue = /* @__PURE__ */ __name((output, context) => {
|
|
3880
3938
|
return (0, import_smithy_client.take)(output, {
|
|
3881
3939
|
Key: import_smithy_client._json,
|
|
3882
|
-
Value: (_) => de_TypedAttributeValue((0,
|
|
3940
|
+
Value: (_) => de_TypedAttributeValue((0, import_core2.awsExpectUnion)(_), context)
|
|
3883
3941
|
});
|
|
3884
3942
|
}, "de_AttributeKeyAndValue");
|
|
3885
3943
|
var de_AttributeKeyAndValueList = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -3891,7 +3949,7 @@ var de_AttributeKeyAndValueList = /* @__PURE__ */ __name((output, context) => {
|
|
|
3891
3949
|
var de_AttributeNameAndValue = /* @__PURE__ */ __name((output, context) => {
|
|
3892
3950
|
return (0, import_smithy_client.take)(output, {
|
|
3893
3951
|
AttributeName: import_smithy_client.expectString,
|
|
3894
|
-
Value: (_) => de_TypedAttributeValue((0,
|
|
3952
|
+
Value: (_) => de_TypedAttributeValue((0, import_core2.awsExpectUnion)(_), context)
|
|
3895
3953
|
});
|
|
3896
3954
|
}, "de_AttributeNameAndValue");
|
|
3897
3955
|
var de_AttributeNameAndValueList = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -4024,7 +4082,7 @@ var de_FacetAttribute = /* @__PURE__ */ __name((output, context) => {
|
|
|
4024
4082
|
}, "de_FacetAttribute");
|
|
4025
4083
|
var de_FacetAttributeDefinition = /* @__PURE__ */ __name((output, context) => {
|
|
4026
4084
|
return (0, import_smithy_client.take)(output, {
|
|
4027
|
-
DefaultValue: (_) => de_TypedAttributeValue((0,
|
|
4085
|
+
DefaultValue: (_) => de_TypedAttributeValue((0, import_core2.awsExpectUnion)(_), context),
|
|
4028
4086
|
IsImmutable: import_smithy_client.expectBoolean,
|
|
4029
4087
|
Rules: import_smithy_client._json,
|
|
4030
4088
|
Type: import_smithy_client.expectString
|
|
@@ -4072,7 +4130,7 @@ var de_TypedAttributeValue = /* @__PURE__ */ __name((output, context) => {
|
|
|
4072
4130
|
}, "de_TypedAttributeValue");
|
|
4073
4131
|
var de_TypedLinkAttributeDefinition = /* @__PURE__ */ __name((output, context) => {
|
|
4074
4132
|
return (0, import_smithy_client.take)(output, {
|
|
4075
|
-
DefaultValue: (_) => de_TypedAttributeValue((0,
|
|
4133
|
+
DefaultValue: (_) => de_TypedAttributeValue((0, import_core2.awsExpectUnion)(_), context),
|
|
4076
4134
|
IsImmutable: import_smithy_client.expectBoolean,
|
|
4077
4135
|
Name: import_smithy_client.expectString,
|
|
4078
4136
|
RequiredBehavior: import_smithy_client.expectString,
|
|
@@ -5349,80 +5407,80 @@ var CloudDirectory = _CloudDirectory;
|
|
|
5349
5407
|
(0, import_smithy_client.createAggregatedClient)(commands, CloudDirectory);
|
|
5350
5408
|
|
|
5351
5409
|
// src/pagination/ListAppliedSchemaArnsPaginator.ts
|
|
5352
|
-
|
|
5353
|
-
var paginateListAppliedSchemaArns = (0,
|
|
5410
|
+
|
|
5411
|
+
var paginateListAppliedSchemaArns = (0, import_core.createPaginator)(CloudDirectoryClient, ListAppliedSchemaArnsCommand, "NextToken", "NextToken", "MaxResults");
|
|
5354
5412
|
|
|
5355
5413
|
// src/pagination/ListAttachedIndicesPaginator.ts
|
|
5356
|
-
|
|
5357
|
-
var paginateListAttachedIndices = (0,
|
|
5414
|
+
|
|
5415
|
+
var paginateListAttachedIndices = (0, import_core.createPaginator)(CloudDirectoryClient, ListAttachedIndicesCommand, "NextToken", "NextToken", "MaxResults");
|
|
5358
5416
|
|
|
5359
5417
|
// src/pagination/ListDevelopmentSchemaArnsPaginator.ts
|
|
5360
|
-
|
|
5361
|
-
var paginateListDevelopmentSchemaArns = (0,
|
|
5418
|
+
|
|
5419
|
+
var paginateListDevelopmentSchemaArns = (0, import_core.createPaginator)(CloudDirectoryClient, ListDevelopmentSchemaArnsCommand, "NextToken", "NextToken", "MaxResults");
|
|
5362
5420
|
|
|
5363
5421
|
// src/pagination/ListDirectoriesPaginator.ts
|
|
5364
|
-
|
|
5365
|
-
var paginateListDirectories = (0,
|
|
5422
|
+
|
|
5423
|
+
var paginateListDirectories = (0, import_core.createPaginator)(CloudDirectoryClient, ListDirectoriesCommand, "NextToken", "NextToken", "MaxResults");
|
|
5366
5424
|
|
|
5367
5425
|
// src/pagination/ListFacetAttributesPaginator.ts
|
|
5368
|
-
|
|
5369
|
-
var paginateListFacetAttributes = (0,
|
|
5426
|
+
|
|
5427
|
+
var paginateListFacetAttributes = (0, import_core.createPaginator)(CloudDirectoryClient, ListFacetAttributesCommand, "NextToken", "NextToken", "MaxResults");
|
|
5370
5428
|
|
|
5371
5429
|
// src/pagination/ListFacetNamesPaginator.ts
|
|
5372
|
-
|
|
5373
|
-
var paginateListFacetNames = (0,
|
|
5430
|
+
|
|
5431
|
+
var paginateListFacetNames = (0, import_core.createPaginator)(CloudDirectoryClient, ListFacetNamesCommand, "NextToken", "NextToken", "MaxResults");
|
|
5374
5432
|
|
|
5375
5433
|
// src/pagination/ListIndexPaginator.ts
|
|
5376
|
-
|
|
5377
|
-
var paginateListIndex = (0,
|
|
5434
|
+
|
|
5435
|
+
var paginateListIndex = (0, import_core.createPaginator)(CloudDirectoryClient, ListIndexCommand, "NextToken", "NextToken", "MaxResults");
|
|
5378
5436
|
|
|
5379
5437
|
// src/pagination/ListManagedSchemaArnsPaginator.ts
|
|
5380
|
-
|
|
5381
|
-
var paginateListManagedSchemaArns = (0,
|
|
5438
|
+
|
|
5439
|
+
var paginateListManagedSchemaArns = (0, import_core.createPaginator)(CloudDirectoryClient, ListManagedSchemaArnsCommand, "NextToken", "NextToken", "MaxResults");
|
|
5382
5440
|
|
|
5383
5441
|
// src/pagination/ListObjectAttributesPaginator.ts
|
|
5384
|
-
|
|
5385
|
-
var paginateListObjectAttributes = (0,
|
|
5442
|
+
|
|
5443
|
+
var paginateListObjectAttributes = (0, import_core.createPaginator)(CloudDirectoryClient, ListObjectAttributesCommand, "NextToken", "NextToken", "MaxResults");
|
|
5386
5444
|
|
|
5387
5445
|
// src/pagination/ListObjectChildrenPaginator.ts
|
|
5388
|
-
|
|
5389
|
-
var paginateListObjectChildren = (0,
|
|
5446
|
+
|
|
5447
|
+
var paginateListObjectChildren = (0, import_core.createPaginator)(CloudDirectoryClient, ListObjectChildrenCommand, "NextToken", "NextToken", "MaxResults");
|
|
5390
5448
|
|
|
5391
5449
|
// src/pagination/ListObjectParentPathsPaginator.ts
|
|
5392
|
-
|
|
5393
|
-
var paginateListObjectParentPaths = (0,
|
|
5450
|
+
|
|
5451
|
+
var paginateListObjectParentPaths = (0, import_core.createPaginator)(CloudDirectoryClient, ListObjectParentPathsCommand, "NextToken", "NextToken", "MaxResults");
|
|
5394
5452
|
|
|
5395
5453
|
// src/pagination/ListObjectParentsPaginator.ts
|
|
5396
|
-
|
|
5397
|
-
var paginateListObjectParents = (0,
|
|
5454
|
+
|
|
5455
|
+
var paginateListObjectParents = (0, import_core.createPaginator)(CloudDirectoryClient, ListObjectParentsCommand, "NextToken", "NextToken", "MaxResults");
|
|
5398
5456
|
|
|
5399
5457
|
// src/pagination/ListObjectPoliciesPaginator.ts
|
|
5400
|
-
|
|
5401
|
-
var paginateListObjectPolicies = (0,
|
|
5458
|
+
|
|
5459
|
+
var paginateListObjectPolicies = (0, import_core.createPaginator)(CloudDirectoryClient, ListObjectPoliciesCommand, "NextToken", "NextToken", "MaxResults");
|
|
5402
5460
|
|
|
5403
5461
|
// src/pagination/ListPolicyAttachmentsPaginator.ts
|
|
5404
|
-
|
|
5405
|
-
var paginateListPolicyAttachments = (0,
|
|
5462
|
+
|
|
5463
|
+
var paginateListPolicyAttachments = (0, import_core.createPaginator)(CloudDirectoryClient, ListPolicyAttachmentsCommand, "NextToken", "NextToken", "MaxResults");
|
|
5406
5464
|
|
|
5407
5465
|
// src/pagination/ListPublishedSchemaArnsPaginator.ts
|
|
5408
|
-
|
|
5409
|
-
var paginateListPublishedSchemaArns = (0,
|
|
5466
|
+
|
|
5467
|
+
var paginateListPublishedSchemaArns = (0, import_core.createPaginator)(CloudDirectoryClient, ListPublishedSchemaArnsCommand, "NextToken", "NextToken", "MaxResults");
|
|
5410
5468
|
|
|
5411
5469
|
// src/pagination/ListTagsForResourcePaginator.ts
|
|
5412
|
-
|
|
5413
|
-
var paginateListTagsForResource = (0,
|
|
5470
|
+
|
|
5471
|
+
var paginateListTagsForResource = (0, import_core.createPaginator)(CloudDirectoryClient, ListTagsForResourceCommand, "NextToken", "NextToken", "MaxResults");
|
|
5414
5472
|
|
|
5415
5473
|
// src/pagination/ListTypedLinkFacetAttributesPaginator.ts
|
|
5416
|
-
|
|
5417
|
-
var paginateListTypedLinkFacetAttributes = (0,
|
|
5474
|
+
|
|
5475
|
+
var paginateListTypedLinkFacetAttributes = (0, import_core.createPaginator)(CloudDirectoryClient, ListTypedLinkFacetAttributesCommand, "NextToken", "NextToken", "MaxResults");
|
|
5418
5476
|
|
|
5419
5477
|
// src/pagination/ListTypedLinkFacetNamesPaginator.ts
|
|
5420
|
-
|
|
5421
|
-
var paginateListTypedLinkFacetNames = (0,
|
|
5478
|
+
|
|
5479
|
+
var paginateListTypedLinkFacetNames = (0, import_core.createPaginator)(CloudDirectoryClient, ListTypedLinkFacetNamesCommand, "NextToken", "NextToken", "MaxResults");
|
|
5422
5480
|
|
|
5423
5481
|
// src/pagination/LookupPolicyPaginator.ts
|
|
5424
|
-
|
|
5425
|
-
var paginateLookupPolicy = (0,
|
|
5482
|
+
|
|
5483
|
+
var paginateLookupPolicy = (0, import_core.createPaginator)(CloudDirectoryClient, LookupPolicyCommand, "NextToken", "NextToken", "MaxResults");
|
|
5426
5484
|
|
|
5427
5485
|
// src/index.ts
|
|
5428
5486
|
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|