@aws-sdk/client-clouddirectory 3.1075.0 → 3.1076.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultCloudDirectoryHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AddFacetToObject$, ApplySchema$, AttachObject$, AttachPolicy$, AttachToIndex$, AttachTypedLink$, BatchRead$, BatchWrite$, CreateDirectory$, CreateFacet$, CreateIndex$, CreateObject$, CreateSchema$, CreateTypedLinkFacet$, DeleteDirectory$, DeleteFacet$, DeleteObject$, DeleteSchema$, DeleteTypedLinkFacet$, DetachFromIndex$, DetachObject$, DetachPolicy$, DetachTypedLink$, DisableDirectory$, EnableDirectory$, GetAppliedSchemaVersion$, GetDirectory$, GetFacet$, GetLinkAttributes$, GetObjectAttributes$, GetObjectInformation$, GetSchemaAsJson$, GetTypedLinkFacetInformation$, ListAppliedSchemaArns$, ListAttachedIndices$, ListDevelopmentSchemaArns$, ListDirectories$, ListFacetAttributes$, ListFacetNames$, ListIncomingTypedLinks$, ListIndex$, ListManagedSchemaArns$, ListObjectAttributes$, ListObjectChildren$, ListObjectParentPaths$, ListObjectParents$, ListObjectPolicies$, ListOutgoingTypedLinks$, ListPolicyAttachments$, ListPublishedSchemaArns$, ListTagsForResource$, ListTypedLinkFacetAttributes$, ListTypedLinkFacetNames$, LookupPolicy$, PublishSchema$, PutSchemaFromJson$, RemoveFacetFromObject$, TagResource$, UntagResource$, UpdateFacet$, UpdateLinkAttributes$, UpdateObjectAttributes$, UpdateSchema$, UpdateTypedLinkFacet$, UpgradeAppliedSchema$, UpgradePublishedSchema$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { CloudDirectoryServiceException } = require("./models/CloudDirectoryServiceException");
18
- exports.CloudDirectoryServiceException = CloudDirectoryServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultCloudDirectoryHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "clouddirectory",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultCloudDirectoryHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,2731 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const k = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [g]],
79
+ [c, j],
80
+ ["aws.partition", j, d],
81
+ [e, [{ [k]: "UseFIPS" }, b]],
82
+ [e, [{ [k]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
85
+ ["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
86
+ ],
87
+ results: [
88
+ [a],
89
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
90
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
91
+ [g, i],
92
+ ["https://clouddirectory-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
93
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
94
+ ["https://clouddirectory.{Region}.amazonaws.com", i],
95
+ ["https://clouddirectory-fips.{Region}.{PartitionResult#dnsSuffix}", i],
96
+ [a, "FIPS is enabled but this partition does not support FIPS"],
97
+ ["https://clouddirectory.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
98
+ [a, "DualStack is enabled but this partition does not support DualStack"],
99
+ ["https://clouddirectory.{Region}.{PartitionResult#dnsSuffix}", i],
100
+ [a, "Invalid Configuration: Missing Region"]
101
+ ]
102
+ };
103
+ const root = 2;
104
+ const r = 100_000_000;
105
+ const nodes = new Int32Array([
106
+ -1, 1, -1,
107
+ 0, 13, 3,
108
+ 1, 4, r + 12,
109
+ 2, 5, r + 12,
110
+ 3, 8, 6,
111
+ 4, 7, r + 11,
112
+ 5, r + 9, r + 10,
113
+ 4, 11, 9,
114
+ 6, 10, r + 8,
115
+ 7, r + 6, r + 7,
116
+ 5, 12, r + 5,
117
+ 6, r + 4, r + 5,
118
+ 3, r + 1, 14,
119
+ 4, r + 2, r + 3,
120
+ ]);
121
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
122
+
123
+ const cache = new EndpointCache({
124
+ size: 50,
125
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
126
+ });
127
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
128
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
129
+ endpointParams: endpointParams,
130
+ logger: context.logger,
131
+ }));
132
+ };
133
+ customEndpointFunctions.aws = awsEndpointFunctions;
134
+
135
+ class CloudDirectoryServiceException extends ServiceException {
136
+ constructor(options) {
137
+ super(options);
138
+ Object.setPrototypeOf(this, CloudDirectoryServiceException.prototype);
139
+ }
140
+ }
141
+
142
+ class AccessDeniedException extends CloudDirectoryServiceException {
143
+ name = "AccessDeniedException";
144
+ $fault = "client";
145
+ Message;
146
+ constructor(opts) {
147
+ super({
148
+ name: "AccessDeniedException",
149
+ $fault: "client",
150
+ ...opts,
151
+ });
152
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
153
+ this.Message = opts.Message;
154
+ }
155
+ }
156
+ class DirectoryNotEnabledException extends CloudDirectoryServiceException {
157
+ name = "DirectoryNotEnabledException";
158
+ $fault = "client";
159
+ Message;
160
+ constructor(opts) {
161
+ super({
162
+ name: "DirectoryNotEnabledException",
163
+ $fault: "client",
164
+ ...opts,
165
+ });
166
+ Object.setPrototypeOf(this, DirectoryNotEnabledException.prototype);
167
+ this.Message = opts.Message;
168
+ }
169
+ }
170
+ class FacetValidationException extends CloudDirectoryServiceException {
171
+ name = "FacetValidationException";
172
+ $fault = "client";
173
+ Message;
174
+ constructor(opts) {
175
+ super({
176
+ name: "FacetValidationException",
177
+ $fault: "client",
178
+ ...opts,
179
+ });
180
+ Object.setPrototypeOf(this, FacetValidationException.prototype);
181
+ this.Message = opts.Message;
182
+ }
183
+ }
184
+ class InternalServiceException extends CloudDirectoryServiceException {
185
+ name = "InternalServiceException";
186
+ $fault = "server";
187
+ Message;
188
+ constructor(opts) {
189
+ super({
190
+ name: "InternalServiceException",
191
+ $fault: "server",
192
+ ...opts,
193
+ });
194
+ Object.setPrototypeOf(this, InternalServiceException.prototype);
195
+ this.Message = opts.Message;
196
+ }
197
+ }
198
+ class InvalidArnException extends CloudDirectoryServiceException {
199
+ name = "InvalidArnException";
200
+ $fault = "client";
201
+ Message;
202
+ constructor(opts) {
203
+ super({
204
+ name: "InvalidArnException",
205
+ $fault: "client",
206
+ ...opts,
207
+ });
208
+ Object.setPrototypeOf(this, InvalidArnException.prototype);
209
+ this.Message = opts.Message;
210
+ }
211
+ }
212
+ class LimitExceededException extends CloudDirectoryServiceException {
213
+ name = "LimitExceededException";
214
+ $fault = "client";
215
+ Message;
216
+ constructor(opts) {
217
+ super({
218
+ name: "LimitExceededException",
219
+ $fault: "client",
220
+ ...opts,
221
+ });
222
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
223
+ this.Message = opts.Message;
224
+ }
225
+ }
226
+ class ResourceNotFoundException extends CloudDirectoryServiceException {
227
+ name = "ResourceNotFoundException";
228
+ $fault = "client";
229
+ Message;
230
+ constructor(opts) {
231
+ super({
232
+ name: "ResourceNotFoundException",
233
+ $fault: "client",
234
+ ...opts,
235
+ });
236
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
237
+ this.Message = opts.Message;
238
+ }
239
+ }
240
+ class RetryableConflictException extends CloudDirectoryServiceException {
241
+ name = "RetryableConflictException";
242
+ $fault = "client";
243
+ Message;
244
+ constructor(opts) {
245
+ super({
246
+ name: "RetryableConflictException",
247
+ $fault: "client",
248
+ ...opts,
249
+ });
250
+ Object.setPrototypeOf(this, RetryableConflictException.prototype);
251
+ this.Message = opts.Message;
252
+ }
253
+ }
254
+ class ValidationException extends CloudDirectoryServiceException {
255
+ name = "ValidationException";
256
+ $fault = "client";
257
+ Message;
258
+ constructor(opts) {
259
+ super({
260
+ name: "ValidationException",
261
+ $fault: "client",
262
+ ...opts,
263
+ });
264
+ Object.setPrototypeOf(this, ValidationException.prototype);
265
+ this.Message = opts.Message;
266
+ }
267
+ }
268
+ class InvalidAttachmentException extends CloudDirectoryServiceException {
269
+ name = "InvalidAttachmentException";
270
+ $fault = "client";
271
+ Message;
272
+ constructor(opts) {
273
+ super({
274
+ name: "InvalidAttachmentException",
275
+ $fault: "client",
276
+ ...opts,
277
+ });
278
+ Object.setPrototypeOf(this, InvalidAttachmentException.prototype);
279
+ this.Message = opts.Message;
280
+ }
281
+ }
282
+ class SchemaAlreadyExistsException extends CloudDirectoryServiceException {
283
+ name = "SchemaAlreadyExistsException";
284
+ $fault = "client";
285
+ Message;
286
+ constructor(opts) {
287
+ super({
288
+ name: "SchemaAlreadyExistsException",
289
+ $fault: "client",
290
+ ...opts,
291
+ });
292
+ Object.setPrototypeOf(this, SchemaAlreadyExistsException.prototype);
293
+ this.Message = opts.Message;
294
+ }
295
+ }
296
+ class LinkNameAlreadyInUseException extends CloudDirectoryServiceException {
297
+ name = "LinkNameAlreadyInUseException";
298
+ $fault = "client";
299
+ Message;
300
+ constructor(opts) {
301
+ super({
302
+ name: "LinkNameAlreadyInUseException",
303
+ $fault: "client",
304
+ ...opts,
305
+ });
306
+ Object.setPrototypeOf(this, LinkNameAlreadyInUseException.prototype);
307
+ this.Message = opts.Message;
308
+ }
309
+ }
310
+ class NotPolicyException extends CloudDirectoryServiceException {
311
+ name = "NotPolicyException";
312
+ $fault = "client";
313
+ Message;
314
+ constructor(opts) {
315
+ super({
316
+ name: "NotPolicyException",
317
+ $fault: "client",
318
+ ...opts,
319
+ });
320
+ Object.setPrototypeOf(this, NotPolicyException.prototype);
321
+ this.Message = opts.Message;
322
+ }
323
+ }
324
+ class IndexedAttributeMissingException extends CloudDirectoryServiceException {
325
+ name = "IndexedAttributeMissingException";
326
+ $fault = "client";
327
+ Message;
328
+ constructor(opts) {
329
+ super({
330
+ name: "IndexedAttributeMissingException",
331
+ $fault: "client",
332
+ ...opts,
333
+ });
334
+ Object.setPrototypeOf(this, IndexedAttributeMissingException.prototype);
335
+ this.Message = opts.Message;
336
+ }
337
+ }
338
+ class NotIndexException extends CloudDirectoryServiceException {
339
+ name = "NotIndexException";
340
+ $fault = "client";
341
+ Message;
342
+ constructor(opts) {
343
+ super({
344
+ name: "NotIndexException",
345
+ $fault: "client",
346
+ ...opts,
347
+ });
348
+ Object.setPrototypeOf(this, NotIndexException.prototype);
349
+ this.Message = opts.Message;
350
+ }
351
+ }
352
+ class BatchWriteException extends CloudDirectoryServiceException {
353
+ name = "BatchWriteException";
354
+ $fault = "client";
355
+ Index;
356
+ Type;
357
+ Message;
358
+ constructor(opts) {
359
+ super({
360
+ name: "BatchWriteException",
361
+ $fault: "client",
362
+ ...opts,
363
+ });
364
+ Object.setPrototypeOf(this, BatchWriteException.prototype);
365
+ this.Index = opts.Index;
366
+ this.Type = opts.Type;
367
+ this.Message = opts.Message;
368
+ }
369
+ }
370
+ class DirectoryAlreadyExistsException extends CloudDirectoryServiceException {
371
+ name = "DirectoryAlreadyExistsException";
372
+ $fault = "client";
373
+ Message;
374
+ constructor(opts) {
375
+ super({
376
+ name: "DirectoryAlreadyExistsException",
377
+ $fault: "client",
378
+ ...opts,
379
+ });
380
+ Object.setPrototypeOf(this, DirectoryAlreadyExistsException.prototype);
381
+ this.Message = opts.Message;
382
+ }
383
+ }
384
+ class FacetAlreadyExistsException extends CloudDirectoryServiceException {
385
+ name = "FacetAlreadyExistsException";
386
+ $fault = "client";
387
+ Message;
388
+ constructor(opts) {
389
+ super({
390
+ name: "FacetAlreadyExistsException",
391
+ $fault: "client",
392
+ ...opts,
393
+ });
394
+ Object.setPrototypeOf(this, FacetAlreadyExistsException.prototype);
395
+ this.Message = opts.Message;
396
+ }
397
+ }
398
+ class InvalidRuleException extends CloudDirectoryServiceException {
399
+ name = "InvalidRuleException";
400
+ $fault = "client";
401
+ Message;
402
+ constructor(opts) {
403
+ super({
404
+ name: "InvalidRuleException",
405
+ $fault: "client",
406
+ ...opts,
407
+ });
408
+ Object.setPrototypeOf(this, InvalidRuleException.prototype);
409
+ this.Message = opts.Message;
410
+ }
411
+ }
412
+ class UnsupportedIndexTypeException extends CloudDirectoryServiceException {
413
+ name = "UnsupportedIndexTypeException";
414
+ $fault = "client";
415
+ Message;
416
+ constructor(opts) {
417
+ super({
418
+ name: "UnsupportedIndexTypeException",
419
+ $fault: "client",
420
+ ...opts,
421
+ });
422
+ Object.setPrototypeOf(this, UnsupportedIndexTypeException.prototype);
423
+ this.Message = opts.Message;
424
+ }
425
+ }
426
+ class DirectoryDeletedException extends CloudDirectoryServiceException {
427
+ name = "DirectoryDeletedException";
428
+ $fault = "client";
429
+ Message;
430
+ constructor(opts) {
431
+ super({
432
+ name: "DirectoryDeletedException",
433
+ $fault: "client",
434
+ ...opts,
435
+ });
436
+ Object.setPrototypeOf(this, DirectoryDeletedException.prototype);
437
+ this.Message = opts.Message;
438
+ }
439
+ }
440
+ class DirectoryNotDisabledException extends CloudDirectoryServiceException {
441
+ name = "DirectoryNotDisabledException";
442
+ $fault = "client";
443
+ Message;
444
+ constructor(opts) {
445
+ super({
446
+ name: "DirectoryNotDisabledException",
447
+ $fault: "client",
448
+ ...opts,
449
+ });
450
+ Object.setPrototypeOf(this, DirectoryNotDisabledException.prototype);
451
+ this.Message = opts.Message;
452
+ }
453
+ }
454
+ class FacetInUseException extends CloudDirectoryServiceException {
455
+ name = "FacetInUseException";
456
+ $fault = "client";
457
+ Message;
458
+ constructor(opts) {
459
+ super({
460
+ name: "FacetInUseException",
461
+ $fault: "client",
462
+ ...opts,
463
+ });
464
+ Object.setPrototypeOf(this, FacetInUseException.prototype);
465
+ this.Message = opts.Message;
466
+ }
467
+ }
468
+ class FacetNotFoundException extends CloudDirectoryServiceException {
469
+ name = "FacetNotFoundException";
470
+ $fault = "client";
471
+ Message;
472
+ constructor(opts) {
473
+ super({
474
+ name: "FacetNotFoundException",
475
+ $fault: "client",
476
+ ...opts,
477
+ });
478
+ Object.setPrototypeOf(this, FacetNotFoundException.prototype);
479
+ this.Message = opts.Message;
480
+ }
481
+ }
482
+ class ObjectNotDetachedException extends CloudDirectoryServiceException {
483
+ name = "ObjectNotDetachedException";
484
+ $fault = "client";
485
+ Message;
486
+ constructor(opts) {
487
+ super({
488
+ name: "ObjectNotDetachedException",
489
+ $fault: "client",
490
+ ...opts,
491
+ });
492
+ Object.setPrototypeOf(this, ObjectNotDetachedException.prototype);
493
+ this.Message = opts.Message;
494
+ }
495
+ }
496
+ class StillContainsLinksException extends CloudDirectoryServiceException {
497
+ name = "StillContainsLinksException";
498
+ $fault = "client";
499
+ Message;
500
+ constructor(opts) {
501
+ super({
502
+ name: "StillContainsLinksException",
503
+ $fault: "client",
504
+ ...opts,
505
+ });
506
+ Object.setPrototypeOf(this, StillContainsLinksException.prototype);
507
+ this.Message = opts.Message;
508
+ }
509
+ }
510
+ class ObjectAlreadyDetachedException extends CloudDirectoryServiceException {
511
+ name = "ObjectAlreadyDetachedException";
512
+ $fault = "client";
513
+ Message;
514
+ constructor(opts) {
515
+ super({
516
+ name: "ObjectAlreadyDetachedException",
517
+ $fault: "client",
518
+ ...opts,
519
+ });
520
+ Object.setPrototypeOf(this, ObjectAlreadyDetachedException.prototype);
521
+ this.Message = opts.Message;
522
+ }
523
+ }
524
+ class NotNodeException extends CloudDirectoryServiceException {
525
+ name = "NotNodeException";
526
+ $fault = "client";
527
+ Message;
528
+ constructor(opts) {
529
+ super({
530
+ name: "NotNodeException",
531
+ $fault: "client",
532
+ ...opts,
533
+ });
534
+ Object.setPrototypeOf(this, NotNodeException.prototype);
535
+ this.Message = opts.Message;
536
+ }
537
+ }
538
+ class InvalidNextTokenException extends CloudDirectoryServiceException {
539
+ name = "InvalidNextTokenException";
540
+ $fault = "client";
541
+ Message;
542
+ constructor(opts) {
543
+ super({
544
+ name: "InvalidNextTokenException",
545
+ $fault: "client",
546
+ ...opts,
547
+ });
548
+ Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
549
+ this.Message = opts.Message;
550
+ }
551
+ }
552
+ class CannotListParentOfRootException extends CloudDirectoryServiceException {
553
+ name = "CannotListParentOfRootException";
554
+ $fault = "client";
555
+ Message;
556
+ constructor(opts) {
557
+ super({
558
+ name: "CannotListParentOfRootException",
559
+ $fault: "client",
560
+ ...opts,
561
+ });
562
+ Object.setPrototypeOf(this, CannotListParentOfRootException.prototype);
563
+ this.Message = opts.Message;
564
+ }
565
+ }
566
+ class InvalidTaggingRequestException extends CloudDirectoryServiceException {
567
+ name = "InvalidTaggingRequestException";
568
+ $fault = "client";
569
+ Message;
570
+ constructor(opts) {
571
+ super({
572
+ name: "InvalidTaggingRequestException",
573
+ $fault: "client",
574
+ ...opts,
575
+ });
576
+ Object.setPrototypeOf(this, InvalidTaggingRequestException.prototype);
577
+ this.Message = opts.Message;
578
+ }
579
+ }
580
+ class SchemaAlreadyPublishedException extends CloudDirectoryServiceException {
581
+ name = "SchemaAlreadyPublishedException";
582
+ $fault = "client";
583
+ Message;
584
+ constructor(opts) {
585
+ super({
586
+ name: "SchemaAlreadyPublishedException",
587
+ $fault: "client",
588
+ ...opts,
589
+ });
590
+ Object.setPrototypeOf(this, SchemaAlreadyPublishedException.prototype);
591
+ this.Message = opts.Message;
592
+ }
593
+ }
594
+ class InvalidSchemaDocException extends CloudDirectoryServiceException {
595
+ name = "InvalidSchemaDocException";
596
+ $fault = "client";
597
+ Message;
598
+ constructor(opts) {
599
+ super({
600
+ name: "InvalidSchemaDocException",
601
+ $fault: "client",
602
+ ...opts,
603
+ });
604
+ Object.setPrototypeOf(this, InvalidSchemaDocException.prototype);
605
+ this.Message = opts.Message;
606
+ }
607
+ }
608
+ class InvalidFacetUpdateException extends CloudDirectoryServiceException {
609
+ name = "InvalidFacetUpdateException";
610
+ $fault = "client";
611
+ Message;
612
+ constructor(opts) {
613
+ super({
614
+ name: "InvalidFacetUpdateException",
615
+ $fault: "client",
616
+ ...opts,
617
+ });
618
+ Object.setPrototypeOf(this, InvalidFacetUpdateException.prototype);
619
+ this.Message = opts.Message;
620
+ }
621
+ }
622
+ class IncompatibleSchemaException extends CloudDirectoryServiceException {
623
+ name = "IncompatibleSchemaException";
624
+ $fault = "client";
625
+ Message;
626
+ constructor(opts) {
627
+ super({
628
+ name: "IncompatibleSchemaException",
629
+ $fault: "client",
630
+ ...opts,
631
+ });
632
+ Object.setPrototypeOf(this, IncompatibleSchemaException.prototype);
633
+ this.Message = opts.Message;
634
+ }
635
+ }
636
+
637
+ const _A = "Attributes";
638
+ const _AA = "AttributeAction";
639
+ const _AAT = "AttributeActionType";
640
+ const _AD = "AttributeDefinition";
641
+ const _ADE = "AccessDeniedException";
642
+ const _AFTO = "AddFacetToObject";
643
+ const _AFTOR = "AddFacetToObjectRequest";
644
+ const _AFTORd = "AddFacetToObjectResponse";
645
+ const _AK = "AttributeKey";
646
+ const _AKAV = "AttributeKeyAndValue";
647
+ const _AKAVL = "AttributeKeyAndValueList";
648
+ const _AKL = "AttributeKeyList";
649
+ const _AN = "AttributeName";
650
+ const _ANAV = "AttributeNameAndValue";
651
+ const _ANAVL = "AttributeNameAndValueList";
652
+ const _ANt = "AttributeNames";
653
+ const _AO = "AttachObject";
654
+ const _AOI = "AttachedObjectIdentifier";
655
+ const _AOR = "AttachObjectRequest";
656
+ const _AORt = "AttachObjectResponse";
657
+ const _AP = "AttachPolicy";
658
+ const _API = "AttachedPolicyIds";
659
+ const _APR = "AttachPolicyRequest";
660
+ const _APRt = "AttachPolicyResponse";
661
+ const _AR = "AttributeReference";
662
+ const _AS = "ApplySchema";
663
+ const _ASA = "AppliedSchemaArn";
664
+ const _ASR = "ApplySchemaRequest";
665
+ const _ASRp = "ApplySchemaResponse";
666
+ const _ATI = "AttachToIndex";
667
+ const _ATIR = "AttachToIndexRequest";
668
+ const _ATIRt = "AttachToIndexResponse";
669
+ const _ATL = "AttachTypedLink";
670
+ const _ATLR = "AttachTypedLinkRequest";
671
+ const _ATLRt = "AttachTypedLinkResponse";
672
+ const _AU = "AttributeUpdates";
673
+ const _AUV = "AttributeUpdateValue";
674
+ const _Ac = "Action";
675
+ const _Ar = "Arn";
676
+ const _At = "Attribute";
677
+ const _BAFTO = "BatchAddFacetToObject";
678
+ const _BAFTOR = "BatchAddFacetToObjectResponse";
679
+ const _BAO = "BatchAttachObject";
680
+ const _BAOR = "BatchAttachObjectResponse";
681
+ const _BAP = "BatchAttachPolicy";
682
+ const _BAPR = "BatchAttachPolicyResponse";
683
+ const _BATI = "BatchAttachToIndex";
684
+ const _BATIR = "BatchAttachToIndexResponse";
685
+ const _BATL = "BatchAttachTypedLink";
686
+ const _BATLR = "BatchAttachTypedLinkResponse";
687
+ const _BCI = "BatchCreateIndex";
688
+ const _BCIR = "BatchCreateIndexResponse";
689
+ const _BCO = "BatchCreateObject";
690
+ const _BCOR = "BatchCreateObjectResponse";
691
+ const _BDFI = "BatchDetachFromIndex";
692
+ const _BDFIR = "BatchDetachFromIndexResponse";
693
+ const _BDO = "BatchDeleteObject";
694
+ const _BDOR = "BatchDeleteObjectResponse";
695
+ const _BDORa = "BatchDetachObjectResponse";
696
+ const _BDOa = "BatchDetachObject";
697
+ const _BDP = "BatchDetachPolicy";
698
+ const _BDPR = "BatchDetachPolicyResponse";
699
+ const _BDTL = "BatchDetachTypedLink";
700
+ const _BDTLR = "BatchDetachTypedLinkResponse";
701
+ const _BGLA = "BatchGetLinkAttributes";
702
+ const _BGLAR = "BatchGetLinkAttributesResponse";
703
+ const _BGOA = "BatchGetObjectAttributes";
704
+ const _BGOAR = "BatchGetObjectAttributesResponse";
705
+ const _BGOI = "BatchGetObjectInformation";
706
+ const _BGOIR = "BatchGetObjectInformationResponse";
707
+ const _BLAI = "BatchListAttachedIndices";
708
+ const _BLAIR = "BatchListAttachedIndicesResponse";
709
+ const _BLI = "BatchListIndex";
710
+ const _BLIR = "BatchListIndexResponse";
711
+ const _BLITL = "BatchListIncomingTypedLinks";
712
+ const _BLITLR = "BatchListIncomingTypedLinksResponse";
713
+ const _BLOA = "BatchListObjectAttributes";
714
+ const _BLOAR = "BatchListObjectAttributesResponse";
715
+ const _BLOC = "BatchListObjectChildren";
716
+ const _BLOCR = "BatchListObjectChildrenResponse";
717
+ const _BLOP = "BatchListObjectParents";
718
+ const _BLOPP = "BatchListObjectParentPaths";
719
+ const _BLOPPR = "BatchListObjectParentPathsResponse";
720
+ const _BLOPR = "BatchListObjectParentsResponse";
721
+ const _BLOPRa = "BatchListObjectPoliciesResponse";
722
+ const _BLOPa = "BatchListObjectPolicies";
723
+ const _BLOTL = "BatchListOutgoingTypedLinks";
724
+ const _BLOTLR = "BatchListOutgoingTypedLinksResponse";
725
+ const _BLP = "BatchLookupPolicy";
726
+ const _BLPA = "BatchListPolicyAttachments";
727
+ const _BLPAR = "BatchListPolicyAttachmentsResponse";
728
+ const _BLPR = "BatchLookupPolicyResponse";
729
+ const _BR = "BatchRead";
730
+ const _BRE = "BatchReadException";
731
+ const _BRFFO = "BatchRemoveFacetFromObject";
732
+ const _BRFFOR = "BatchRemoveFacetFromObjectResponse";
733
+ const _BRN = "BatchReferenceName";
734
+ const _BRO = "BatchReadOperation";
735
+ const _BROL = "BatchReadOperationList";
736
+ const _BROR = "BatchReadOperationResponse";
737
+ const _BRORL = "BatchReadOperationResponseList";
738
+ const _BRR = "BatchReadRequest";
739
+ const _BRRa = "BatchReadResponse";
740
+ const _BRSR = "BatchReadSuccessfulResponse";
741
+ const _BULA = "BatchUpdateLinkAttributes";
742
+ const _BULAR = "BatchUpdateLinkAttributesResponse";
743
+ const _BUOA = "BatchUpdateObjectAttributes";
744
+ const _BUOAR = "BatchUpdateObjectAttributesResponse";
745
+ const _BV = "BinaryValue";
746
+ const _BVo = "BooleanValue";
747
+ const _BW = "BatchWrite";
748
+ const _BWE = "BatchWriteException";
749
+ const _BWO = "BatchWriteOperation";
750
+ const _BWOL = "BatchWriteOperationList";
751
+ const _BWOR = "BatchWriteOperationResponse";
752
+ const _BWORL = "BatchWriteOperationResponseList";
753
+ const _BWR = "BatchWriteRequest";
754
+ const _BWRa = "BatchWriteResponse";
755
+ const _C = "Children";
756
+ const _CD = "CreateDirectory";
757
+ const _CDR = "CreateDirectoryRequest";
758
+ const _CDRr = "CreateDirectoryResponse";
759
+ const _CDT = "CreationDateTime";
760
+ const _CF = "CreateFacet";
761
+ const _CFR = "CreateFacetRequest";
762
+ const _CFRr = "CreateFacetResponse";
763
+ const _CI = "CreateIndex";
764
+ const _CIR = "CreateIndexRequest";
765
+ const _CIRr = "CreateIndexResponse";
766
+ const _CL = "ConsistencyLevel";
767
+ const _CLPORE = "CannotListParentOfRootException";
768
+ const _CO = "CreateObject";
769
+ const _COR = "CreateObjectRequest";
770
+ const _CORr = "CreateObjectResponse";
771
+ const _CR = "ChildReference";
772
+ const _CS = "CreateSchema";
773
+ const _CSR = "CreateSchemaRequest";
774
+ const _CSRr = "CreateSchemaResponse";
775
+ const _CTLF = "CreateTypedLinkFacet";
776
+ const _CTLFR = "CreateTypedLinkFacetRequest";
777
+ const _CTLFRr = "CreateTypedLinkFacetResponse";
778
+ const _D = "Directory";
779
+ const _DA = "DirectoryArn";
780
+ const _DAEE = "DirectoryAlreadyExistsException";
781
+ const _DD = "DeleteDirectory";
782
+ const _DDE = "DirectoryDeletedException";
783
+ const _DDR = "DeleteDirectoryRequest";
784
+ const _DDRe = "DeleteDirectoryResponse";
785
+ const _DDRi = "DisableDirectoryRequest";
786
+ const _DDRis = "DisableDirectoryResponse";
787
+ const _DDi = "DisableDirectory";
788
+ const _DF = "DeleteFacet";
789
+ const _DFI = "DetachFromIndex";
790
+ const _DFIR = "DetachFromIndexRequest";
791
+ const _DFIRe = "DetachFromIndexResponse";
792
+ const _DFR = "DeleteFacetRequest";
793
+ const _DFRe = "DeleteFacetResponse";
794
+ const _DL = "DirectoryList";
795
+ const _DNDE = "DirectoryNotDisabledException";
796
+ const _DNEE = "DirectoryNotEnabledException";
797
+ const _DO = "DetachObject";
798
+ const _DOI = "DetachedObjectIdentifier";
799
+ const _DOR = "DeleteObjectRequest";
800
+ const _DORe = "DeleteObjectResponse";
801
+ const _DORet = "DetachObjectRequest";
802
+ const _DOReta = "DetachObjectResponse";
803
+ const _DOe = "DeleteObject";
804
+ const _DP = "DetachPolicy";
805
+ const _DPR = "DetachPolicyRequest";
806
+ const _DPRe = "DetachPolicyResponse";
807
+ const _DR = "DryRun";
808
+ const _DS = "DeleteSchema";
809
+ const _DSA = "DevelopmentSchemaArn";
810
+ const _DSR = "DeleteSchemaRequest";
811
+ const _DSRe = "DeleteSchemaResponse";
812
+ const _DTL = "DetachTypedLink";
813
+ const _DTLF = "DeleteTypedLinkFacet";
814
+ const _DTLFR = "DeleteTypedLinkFacetRequest";
815
+ const _DTLFRe = "DeleteTypedLinkFacetResponse";
816
+ const _DTLR = "DetachTypedLinkRequest";
817
+ const _DV = "DefaultValue";
818
+ const _DVa = "DatetimeValue";
819
+ const _Di = "Directories";
820
+ const _Do = "Document";
821
+ const _ED = "EnableDirectory";
822
+ const _EDR = "EnableDirectoryRequest";
823
+ const _EDRn = "EnableDirectoryResponse";
824
+ const _EM = "EndMode";
825
+ const _ER = "ExceptionResponse";
826
+ const _EV = "EndValue";
827
+ const _F = "Facet";
828
+ const _FA = "FacetAttribute";
829
+ const _FAD = "FacetAttributeDefinition";
830
+ const _FAEE = "FacetAlreadyExistsException";
831
+ const _FAL = "FacetAttributeList";
832
+ const _FAR = "FilterAttributeRanges";
833
+ const _FARa = "FacetAttributeReference";
834
+ const _FAU = "FacetAttributeUpdate";
835
+ const _FAUL = "FacetAttributeUpdateList";
836
+ const _FF = "FacetFilter";
837
+ const _FIUE = "FacetInUseException";
838
+ const _FN = "FacetName";
839
+ const _FNFE = "FacetNotFoundException";
840
+ const _FNa = "FacetNames";
841
+ const _FS = "FacetStyle";
842
+ const _FTL = "FilterTypedLink";
843
+ const _FVE = "FacetValidationException";
844
+ const _GASV = "GetAppliedSchemaVersion";
845
+ const _GASVR = "GetAppliedSchemaVersionRequest";
846
+ const _GASVRe = "GetAppliedSchemaVersionResponse";
847
+ const _GD = "GetDirectory";
848
+ const _GDR = "GetDirectoryRequest";
849
+ const _GDRe = "GetDirectoryResponse";
850
+ const _GF = "GetFacet";
851
+ const _GFR = "GetFacetRequest";
852
+ const _GFRe = "GetFacetResponse";
853
+ const _GLA = "GetLinkAttributes";
854
+ const _GLAR = "GetLinkAttributesRequest";
855
+ const _GLARe = "GetLinkAttributesResponse";
856
+ const _GOA = "GetObjectAttributes";
857
+ const _GOAR = "GetObjectAttributesRequest";
858
+ const _GOARe = "GetObjectAttributesResponse";
859
+ const _GOI = "GetObjectInformation";
860
+ const _GOIR = "GetObjectInformationRequest";
861
+ const _GOIRe = "GetObjectInformationResponse";
862
+ const _GSAJ = "GetSchemaAsJson";
863
+ const _GSAJR = "GetSchemaAsJsonRequest";
864
+ const _GSAJRe = "GetSchemaAsJsonResponse";
865
+ const _GTLFI = "GetTypedLinkFacetInformation";
866
+ const _GTLFIR = "GetTypedLinkFacetInformationRequest";
867
+ const _GTLFIRe = "GetTypedLinkFacetInformationResponse";
868
+ const _I = "Index";
869
+ const _IA = "IndexAttachments";
870
+ const _IAE = "InvalidArnException";
871
+ const _IAEn = "InvalidAttachmentException";
872
+ const _IAL = "IndexAttachmentList";
873
+ const _IALTEP = "IncludeAllLinksToEachParent";
874
+ const _IAME = "IndexedAttributeMissingException";
875
+ const _IAO = "IdentityAttributeOrder";
876
+ const _IAV = "IdentityAttributeValues";
877
+ const _IAn = "IndexAttachment";
878
+ const _IAnd = "IndexedAttributes";
879
+ const _IFUE = "InvalidFacetUpdateException";
880
+ const _II = "IsImmutable";
881
+ const _INTE = "InvalidNextTokenException";
882
+ const _IR = "IndexReference";
883
+ const _IRE = "InvalidRuleException";
884
+ const _ISDE = "InvalidSchemaDocException";
885
+ const _ISE = "IncompatibleSchemaException";
886
+ const _ISEn = "InternalServiceException";
887
+ const _ITRE = "InvalidTaggingRequestException";
888
+ const _IU = "IsUnique";
889
+ const _K = "Key";
890
+ const _LAA = "LinkAttributeAction";
891
+ const _LAI = "ListAttachedIndices";
892
+ const _LAIR = "ListAttachedIndicesRequest";
893
+ const _LAIRi = "ListAttachedIndicesResponse";
894
+ const _LASA = "ListAppliedSchemaArns";
895
+ const _LASAR = "ListAppliedSchemaArnsRequest";
896
+ const _LASARi = "ListAppliedSchemaArnsResponse";
897
+ const _LAU = "LinkAttributeUpdate";
898
+ const _LAUL = "LinkAttributeUpdateList";
899
+ const _LD = "ListDirectories";
900
+ const _LDR = "ListDirectoriesRequest";
901
+ const _LDRi = "ListDirectoriesResponse";
902
+ const _LDSA = "ListDevelopmentSchemaArns";
903
+ const _LDSAR = "ListDevelopmentSchemaArnsRequest";
904
+ const _LDSARi = "ListDevelopmentSchemaArnsResponse";
905
+ const _LEE = "LimitExceededException";
906
+ const _LFA = "ListFacetAttributes";
907
+ const _LFAR = "ListFacetAttributesRequest";
908
+ const _LFARi = "ListFacetAttributesResponse";
909
+ const _LFN = "ListFacetNames";
910
+ const _LFNR = "ListFacetNamesRequest";
911
+ const _LFNRi = "ListFacetNamesResponse";
912
+ const _LI = "ListIndex";
913
+ const _LIR = "ListIndexRequest";
914
+ const _LIRi = "ListIndexResponse";
915
+ const _LITL = "ListIncomingTypedLinks";
916
+ const _LITLR = "ListIncomingTypedLinksRequest";
917
+ const _LITLRi = "ListIncomingTypedLinksResponse";
918
+ const _LMSA = "ListManagedSchemaArns";
919
+ const _LMSAR = "ListManagedSchemaArnsRequest";
920
+ const _LMSARi = "ListManagedSchemaArnsResponse";
921
+ const _LN = "LinkName";
922
+ const _LNAIUE = "LinkNameAlreadyInUseException";
923
+ const _LOA = "ListObjectAttributes";
924
+ const _LOAR = "ListObjectAttributesRequest";
925
+ const _LOARi = "ListObjectAttributesResponse";
926
+ const _LOC = "ListObjectChildren";
927
+ const _LOCR = "ListObjectChildrenRequest";
928
+ const _LOCRi = "ListObjectChildrenResponse";
929
+ const _LOP = "ListObjectParents";
930
+ const _LOPP = "ListObjectParentPaths";
931
+ const _LOPPR = "ListObjectParentPathsRequest";
932
+ const _LOPPRi = "ListObjectParentPathsResponse";
933
+ const _LOPR = "ListObjectParentsRequest";
934
+ const _LOPRi = "ListObjectParentsResponse";
935
+ const _LOPRis = "ListObjectPoliciesRequest";
936
+ const _LOPRist = "ListObjectPoliciesResponse";
937
+ const _LOPi = "ListObjectPolicies";
938
+ const _LOTL = "ListOutgoingTypedLinks";
939
+ const _LOTLR = "ListOutgoingTypedLinksRequest";
940
+ const _LOTLRi = "ListOutgoingTypedLinksResponse";
941
+ const _LP = "LookupPolicy";
942
+ const _LPA = "ListPolicyAttachments";
943
+ const _LPAR = "ListPolicyAttachmentsRequest";
944
+ const _LPARi = "ListPolicyAttachmentsResponse";
945
+ const _LPR = "LookupPolicyRequest";
946
+ const _LPRo = "LookupPolicyResponse";
947
+ const _LPSA = "ListPublishedSchemaArns";
948
+ const _LPSAR = "ListPublishedSchemaArnsRequest";
949
+ const _LPSARi = "ListPublishedSchemaArnsResponse";
950
+ const _LS = "LinkSpecifiers";
951
+ const _LTFR = "ListTagsForResource";
952
+ const _LTFRR = "ListTagsForResourceRequest";
953
+ const _LTFRRi = "ListTagsForResourceResponse";
954
+ const _LTLFA = "ListTypedLinkFacetAttributes";
955
+ const _LTLFAR = "ListTypedLinkFacetAttributesRequest";
956
+ const _LTLFARi = "ListTypedLinkFacetAttributesResponse";
957
+ const _LTLFN = "ListTypedLinkFacetNames";
958
+ const _LTLFNR = "ListTypedLinkFacetNamesRequest";
959
+ const _LTLFNRi = "ListTypedLinkFacetNamesResponse";
960
+ const _M = "Message";
961
+ const _MR = "MaxResults";
962
+ const _MV = "MinorVersion";
963
+ const _N = "Name";
964
+ const _NIE = "NotIndexException";
965
+ const _NNE = "NotNodeException";
966
+ const _NPE = "NotPolicyException";
967
+ const _NT = "NextToken";
968
+ const _NV = "NumberValue";
969
+ const _O = "Operations";
970
+ const _OAA = "ObjectAttributeAction";
971
+ const _OAAT = "ObjectAttributeActionType";
972
+ const _OADE = "ObjectAlreadyDetachedException";
973
+ const _OAK = "ObjectAttributeKey";
974
+ const _OAL = "ObjectAttributeList";
975
+ const _OAR = "ObjectAttributeRange";
976
+ const _OARL = "ObjectAttributeRangeList";
977
+ const _OAU = "ObjectAttributeUpdate";
978
+ const _OAUL = "ObjectAttributeUpdateList";
979
+ const _OAUV = "ObjectAttributeUpdateValue";
980
+ const _OI = "ObjectIdentifier";
981
+ const _OIAL = "OrderedIndexedAttributeList";
982
+ const _OIALNL = "ObjectIdentifierAndLinkNameList";
983
+ const _OIALNT = "ObjectIdentifierAndLinkNameTuple";
984
+ const _OIb = "ObjectIdentifiers";
985
+ const _ONDE = "ObjectNotDetachedException";
986
+ const _OR = "ObjectReference";
987
+ const _OT = "ObjectType";
988
+ const _P = "Parents";
989
+ const _PA = "PolicyAttachment";
990
+ const _PAL = "PolicyAttachmentList";
991
+ const _PI = "PolicyId";
992
+ const _PL = "ParentLinks";
993
+ const _PR = "ParentReference";
994
+ const _PRo = "PolicyReference";
995
+ const _PS = "PublishSchema";
996
+ const _PSA = "PublishedSchemaArn";
997
+ const _PSFJ = "PutSchemaFromJson";
998
+ const _PSFJR = "PutSchemaFromJsonRequest";
999
+ const _PSFJRu = "PutSchemaFromJsonResponse";
1000
+ const _PSR = "PublishSchemaRequest";
1001
+ const _PSRu = "PublishSchemaResponse";
1002
+ const _PT = "PolicyType";
1003
+ const _PTOI = "PathToObjectIdentifiers";
1004
+ const _PTOIL = "PathToObjectIdentifiersList";
1005
+ const _PTP = "PolicyToPath";
1006
+ const _PTPL = "PolicyToPathList";
1007
+ const _Pa = "Path";
1008
+ const _Par = "Parameters";
1009
+ const _Po = "Policies";
1010
+ const _R = "Responses";
1011
+ const _RA = "ResourceArn";
1012
+ const _RB = "RequiredBehavior";
1013
+ const _RCE = "RetryableConflictException";
1014
+ const _RFFO = "RemoveFacetFromObject";
1015
+ const _RFFOR = "RemoveFacetFromObjectRequest";
1016
+ const _RFFORe = "RemoveFacetFromObjectResponse";
1017
+ const _RM = "RuleMap";
1018
+ const _RNFE = "ResourceNotFoundException";
1019
+ const _ROIV = "RangesOnIndexedValues";
1020
+ const _Ra = "Range";
1021
+ const _Ru = "Rules";
1022
+ const _Rul = "Rule";
1023
+ const _S = "State";
1024
+ const _SA = "SchemaArn";
1025
+ const _SAEE = "SchemaAlreadyExistsException";
1026
+ const _SAPE = "SchemaAlreadyPublishedException";
1027
+ const _SAc = "SchemaArns";
1028
+ const _SCLE = "StillContainsLinksException";
1029
+ const _SF = "SchemaFacet";
1030
+ const _SFL = "SchemaFacetList";
1031
+ const _SFc = "SchemaFacets";
1032
+ const _SM = "StartMode";
1033
+ const _SOR = "SourceObjectReference";
1034
+ const _SR = "SuccessfulResponse";
1035
+ const _SV = "StartValue";
1036
+ const _SVt = "StringValue";
1037
+ const _Se = "Selector";
1038
+ const _T = "Type";
1039
+ const _TAN = "TargetAttributeName";
1040
+ const _TAV = "TypedAttributeValue";
1041
+ const _TAVR = "TypedAttributeValueRange";
1042
+ const _TFN = "TargetFacetName";
1043
+ const _TK = "TagKeys";
1044
+ const _TL = "TagList";
1045
+ const _TLAD = "TypedLinkAttributeDefinition";
1046
+ const _TLADL = "TypedLinkAttributeDefinitionList";
1047
+ const _TLAR = "TypedLinkAttributeRange";
1048
+ const _TLARL = "TypedLinkAttributeRangeList";
1049
+ const _TLF = "TypedLinkFacet";
1050
+ const _TLFAU = "TypedLinkFacetAttributeUpdate";
1051
+ const _TLFAUL = "TypedLinkFacetAttributeUpdateList";
1052
+ const _TLN = "TypedLinkName";
1053
+ const _TLS = "TypedLinkSpecifier";
1054
+ const _TLSAFN = "TypedLinkSchemaAndFacetName";
1055
+ const _TLSL = "TypedLinkSpecifierList";
1056
+ const _TLSy = "TypedLinkSpecifiers";
1057
+ const _TOR = "TargetObjectReference";
1058
+ const _TR = "TargetReference";
1059
+ const _TRR = "TagResourceRequest";
1060
+ const _TRRa = "TagResourceResponse";
1061
+ const _TRa = "TagResource";
1062
+ const _Ta = "Tags";
1063
+ const _Tag = "Tag";
1064
+ const _UAS = "UpgradeAppliedSchema";
1065
+ const _UASR = "UpgradeAppliedSchemaRequest";
1066
+ const _UASRp = "UpgradeAppliedSchemaResponse";
1067
+ const _UF = "UpdateFacet";
1068
+ const _UFR = "UpdateFacetRequest";
1069
+ const _UFRp = "UpdateFacetResponse";
1070
+ const _UITE = "UnsupportedIndexTypeException";
1071
+ const _ULA = "UpdateLinkAttributes";
1072
+ const _ULAR = "UpdateLinkAttributesRequest";
1073
+ const _ULARp = "UpdateLinkAttributesResponse";
1074
+ const _UOA = "UpdateObjectAttributes";
1075
+ const _UOAR = "UpdateObjectAttributesRequest";
1076
+ const _UOARp = "UpdateObjectAttributesResponse";
1077
+ const _UPS = "UpgradePublishedSchema";
1078
+ const _UPSR = "UpgradePublishedSchemaRequest";
1079
+ const _UPSRp = "UpgradePublishedSchemaResponse";
1080
+ const _UR = "UntagResource";
1081
+ const _URR = "UntagResourceRequest";
1082
+ const _URRn = "UntagResourceResponse";
1083
+ const _US = "UpdateSchema";
1084
+ const _USA = "UpgradedSchemaArn";
1085
+ const _USR = "UpdateSchemaRequest";
1086
+ const _USRp = "UpdateSchemaResponse";
1087
+ const _UTLF = "UpdateTypedLinkFacet";
1088
+ const _UTLFR = "UpdateTypedLinkFacetRequest";
1089
+ const _UTLFRp = "UpdateTypedLinkFacetResponse";
1090
+ const _V = "Value";
1091
+ const _VE = "ValidationException";
1092
+ const _Ve = "Version";
1093
+ const _aOI = "attachedObjectIdentifier";
1094
+ const _c = "client";
1095
+ const _dOI = "detachedObjectIdentifier";
1096
+ const _e = "error";
1097
+ const _h = "http";
1098
+ const _hE = "httpError";
1099
+ const _hH = "httpHeader";
1100
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.clouddirectory";
1101
+ const _se = "server";
1102
+ const _st = "state";
1103
+ const _xacl = "x-amz-consistency-level";
1104
+ const _xadp = "x-amz-data-partition";
1105
+ const n0 = "com.amazonaws.clouddirectory";
1106
+ const _s_registry = TypeRegistry.for(_s);
1107
+ var CloudDirectoryServiceException$ = [-3, _s, "CloudDirectoryServiceException", 0, [], []];
1108
+ _s_registry.registerError(CloudDirectoryServiceException$, CloudDirectoryServiceException);
1109
+ const n0_registry = TypeRegistry.for(n0);
1110
+ var AccessDeniedException$ = [-3, n0, _ADE,
1111
+ { [_e]: _c, [_hE]: 403 },
1112
+ [_M],
1113
+ [0]
1114
+ ];
1115
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
1116
+ var BatchWriteException$ = [-3, n0, _BWE,
1117
+ { [_e]: _c },
1118
+ [_I, _T, _M],
1119
+ [1, 0, 0]
1120
+ ];
1121
+ n0_registry.registerError(BatchWriteException$, BatchWriteException);
1122
+ var CannotListParentOfRootException$ = [-3, n0, _CLPORE,
1123
+ { [_e]: _c, [_hE]: 400 },
1124
+ [_M],
1125
+ [0]
1126
+ ];
1127
+ n0_registry.registerError(CannotListParentOfRootException$, CannotListParentOfRootException);
1128
+ var DirectoryAlreadyExistsException$ = [-3, n0, _DAEE,
1129
+ { [_e]: _c, [_hE]: 400 },
1130
+ [_M],
1131
+ [0]
1132
+ ];
1133
+ n0_registry.registerError(DirectoryAlreadyExistsException$, DirectoryAlreadyExistsException);
1134
+ var DirectoryDeletedException$ = [-3, n0, _DDE,
1135
+ { [_e]: _c, [_hE]: 400 },
1136
+ [_M],
1137
+ [0]
1138
+ ];
1139
+ n0_registry.registerError(DirectoryDeletedException$, DirectoryDeletedException);
1140
+ var DirectoryNotDisabledException$ = [-3, n0, _DNDE,
1141
+ { [_e]: _c, [_hE]: 400 },
1142
+ [_M],
1143
+ [0]
1144
+ ];
1145
+ n0_registry.registerError(DirectoryNotDisabledException$, DirectoryNotDisabledException);
1146
+ var DirectoryNotEnabledException$ = [-3, n0, _DNEE,
1147
+ { [_e]: _c, [_hE]: 400 },
1148
+ [_M],
1149
+ [0]
1150
+ ];
1151
+ n0_registry.registerError(DirectoryNotEnabledException$, DirectoryNotEnabledException);
1152
+ var FacetAlreadyExistsException$ = [-3, n0, _FAEE,
1153
+ { [_e]: _c, [_hE]: 400 },
1154
+ [_M],
1155
+ [0]
1156
+ ];
1157
+ n0_registry.registerError(FacetAlreadyExistsException$, FacetAlreadyExistsException);
1158
+ var FacetInUseException$ = [-3, n0, _FIUE,
1159
+ { [_e]: _c, [_hE]: 400 },
1160
+ [_M],
1161
+ [0]
1162
+ ];
1163
+ n0_registry.registerError(FacetInUseException$, FacetInUseException);
1164
+ var FacetNotFoundException$ = [-3, n0, _FNFE,
1165
+ { [_e]: _c, [_hE]: 400 },
1166
+ [_M],
1167
+ [0]
1168
+ ];
1169
+ n0_registry.registerError(FacetNotFoundException$, FacetNotFoundException);
1170
+ var FacetValidationException$ = [-3, n0, _FVE,
1171
+ { [_e]: _c, [_hE]: 400 },
1172
+ [_M],
1173
+ [0]
1174
+ ];
1175
+ n0_registry.registerError(FacetValidationException$, FacetValidationException);
1176
+ var IncompatibleSchemaException$ = [-3, n0, _ISE,
1177
+ { [_e]: _c, [_hE]: 400 },
1178
+ [_M],
1179
+ [0]
1180
+ ];
1181
+ n0_registry.registerError(IncompatibleSchemaException$, IncompatibleSchemaException);
1182
+ var IndexedAttributeMissingException$ = [-3, n0, _IAME,
1183
+ { [_e]: _c, [_hE]: 400 },
1184
+ [_M],
1185
+ [0]
1186
+ ];
1187
+ n0_registry.registerError(IndexedAttributeMissingException$, IndexedAttributeMissingException);
1188
+ var InternalServiceException$ = [-3, n0, _ISEn,
1189
+ { [_e]: _se, [_hE]: 500 },
1190
+ [_M],
1191
+ [0]
1192
+ ];
1193
+ n0_registry.registerError(InternalServiceException$, InternalServiceException);
1194
+ var InvalidArnException$ = [-3, n0, _IAE,
1195
+ { [_e]: _c, [_hE]: 400 },
1196
+ [_M],
1197
+ [0]
1198
+ ];
1199
+ n0_registry.registerError(InvalidArnException$, InvalidArnException);
1200
+ var InvalidAttachmentException$ = [-3, n0, _IAEn,
1201
+ { [_e]: _c, [_hE]: 400 },
1202
+ [_M],
1203
+ [0]
1204
+ ];
1205
+ n0_registry.registerError(InvalidAttachmentException$, InvalidAttachmentException);
1206
+ var InvalidFacetUpdateException$ = [-3, n0, _IFUE,
1207
+ { [_e]: _c, [_hE]: 400 },
1208
+ [_M],
1209
+ [0]
1210
+ ];
1211
+ n0_registry.registerError(InvalidFacetUpdateException$, InvalidFacetUpdateException);
1212
+ var InvalidNextTokenException$ = [-3, n0, _INTE,
1213
+ { [_e]: _c, [_hE]: 400 },
1214
+ [_M],
1215
+ [0]
1216
+ ];
1217
+ n0_registry.registerError(InvalidNextTokenException$, InvalidNextTokenException);
1218
+ var InvalidRuleException$ = [-3, n0, _IRE,
1219
+ { [_e]: _c, [_hE]: 400 },
1220
+ [_M],
1221
+ [0]
1222
+ ];
1223
+ n0_registry.registerError(InvalidRuleException$, InvalidRuleException);
1224
+ var InvalidSchemaDocException$ = [-3, n0, _ISDE,
1225
+ { [_e]: _c, [_hE]: 400 },
1226
+ [_M],
1227
+ [0]
1228
+ ];
1229
+ n0_registry.registerError(InvalidSchemaDocException$, InvalidSchemaDocException);
1230
+ var InvalidTaggingRequestException$ = [-3, n0, _ITRE,
1231
+ { [_e]: _c, [_hE]: 400 },
1232
+ [_M],
1233
+ [0]
1234
+ ];
1235
+ n0_registry.registerError(InvalidTaggingRequestException$, InvalidTaggingRequestException);
1236
+ var LimitExceededException$ = [-3, n0, _LEE,
1237
+ { [_e]: _c, [_hE]: 400 },
1238
+ [_M],
1239
+ [0]
1240
+ ];
1241
+ n0_registry.registerError(LimitExceededException$, LimitExceededException);
1242
+ var LinkNameAlreadyInUseException$ = [-3, n0, _LNAIUE,
1243
+ { [_e]: _c, [_hE]: 400 },
1244
+ [_M],
1245
+ [0]
1246
+ ];
1247
+ n0_registry.registerError(LinkNameAlreadyInUseException$, LinkNameAlreadyInUseException);
1248
+ var NotIndexException$ = [-3, n0, _NIE,
1249
+ { [_e]: _c, [_hE]: 400 },
1250
+ [_M],
1251
+ [0]
1252
+ ];
1253
+ n0_registry.registerError(NotIndexException$, NotIndexException);
1254
+ var NotNodeException$ = [-3, n0, _NNE,
1255
+ { [_e]: _c, [_hE]: 400 },
1256
+ [_M],
1257
+ [0]
1258
+ ];
1259
+ n0_registry.registerError(NotNodeException$, NotNodeException);
1260
+ var NotPolicyException$ = [-3, n0, _NPE,
1261
+ { [_e]: _c, [_hE]: 400 },
1262
+ [_M],
1263
+ [0]
1264
+ ];
1265
+ n0_registry.registerError(NotPolicyException$, NotPolicyException);
1266
+ var ObjectAlreadyDetachedException$ = [-3, n0, _OADE,
1267
+ { [_e]: _c, [_hE]: 400 },
1268
+ [_M],
1269
+ [0]
1270
+ ];
1271
+ n0_registry.registerError(ObjectAlreadyDetachedException$, ObjectAlreadyDetachedException);
1272
+ var ObjectNotDetachedException$ = [-3, n0, _ONDE,
1273
+ { [_e]: _c, [_hE]: 400 },
1274
+ [_M],
1275
+ [0]
1276
+ ];
1277
+ n0_registry.registerError(ObjectNotDetachedException$, ObjectNotDetachedException);
1278
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
1279
+ { [_e]: _c, [_hE]: 404 },
1280
+ [_M],
1281
+ [0]
1282
+ ];
1283
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
1284
+ var RetryableConflictException$ = [-3, n0, _RCE,
1285
+ { [_e]: _c, [_hE]: 409 },
1286
+ [_M],
1287
+ [0]
1288
+ ];
1289
+ n0_registry.registerError(RetryableConflictException$, RetryableConflictException);
1290
+ var SchemaAlreadyExistsException$ = [-3, n0, _SAEE,
1291
+ { [_e]: _c, [_hE]: 400 },
1292
+ [_M],
1293
+ [0]
1294
+ ];
1295
+ n0_registry.registerError(SchemaAlreadyExistsException$, SchemaAlreadyExistsException);
1296
+ var SchemaAlreadyPublishedException$ = [-3, n0, _SAPE,
1297
+ { [_e]: _c, [_hE]: 400 },
1298
+ [_M],
1299
+ [0]
1300
+ ];
1301
+ n0_registry.registerError(SchemaAlreadyPublishedException$, SchemaAlreadyPublishedException);
1302
+ var StillContainsLinksException$ = [-3, n0, _SCLE,
1303
+ { [_e]: _c, [_hE]: 400 },
1304
+ [_M],
1305
+ [0]
1306
+ ];
1307
+ n0_registry.registerError(StillContainsLinksException$, StillContainsLinksException);
1308
+ var UnsupportedIndexTypeException$ = [-3, n0, _UITE,
1309
+ { [_e]: _c, [_hE]: 400 },
1310
+ [_M],
1311
+ [0]
1312
+ ];
1313
+ n0_registry.registerError(UnsupportedIndexTypeException$, UnsupportedIndexTypeException);
1314
+ var ValidationException$ = [-3, n0, _VE,
1315
+ { [_e]: _c, [_hE]: 400 },
1316
+ [_M],
1317
+ [0]
1318
+ ];
1319
+ n0_registry.registerError(ValidationException$, ValidationException);
1320
+ const errorTypeRegistries = [
1321
+ _s_registry,
1322
+ n0_registry,
1323
+ ];
1324
+ var AddFacetToObjectRequest$ = [3, n0, _AFTOR,
1325
+ 0,
1326
+ [_DA, _SF, _OR, _OAL],
1327
+ [[0, { [_hH]: _xadp }], () => SchemaFacet$, () => ObjectReference$, () => AttributeKeyAndValueList], 3
1328
+ ];
1329
+ var AddFacetToObjectResponse$ = [3, n0, _AFTORd,
1330
+ 0,
1331
+ [],
1332
+ []
1333
+ ];
1334
+ var ApplySchemaRequest$ = [3, n0, _ASR,
1335
+ 0,
1336
+ [_PSA, _DA],
1337
+ [0, [0, { [_hH]: _xadp }]], 2
1338
+ ];
1339
+ var ApplySchemaResponse$ = [3, n0, _ASRp,
1340
+ 0,
1341
+ [_ASA, _DA],
1342
+ [0, 0]
1343
+ ];
1344
+ var AttachObjectRequest$ = [3, n0, _AOR,
1345
+ 0,
1346
+ [_DA, _PR, _CR, _LN],
1347
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, () => ObjectReference$, 0], 4
1348
+ ];
1349
+ var AttachObjectResponse$ = [3, n0, _AORt,
1350
+ 0,
1351
+ [_AOI],
1352
+ [0]
1353
+ ];
1354
+ var AttachPolicyRequest$ = [3, n0, _APR,
1355
+ 0,
1356
+ [_DA, _PRo, _OR],
1357
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, () => ObjectReference$], 3
1358
+ ];
1359
+ var AttachPolicyResponse$ = [3, n0, _APRt,
1360
+ 0,
1361
+ [],
1362
+ []
1363
+ ];
1364
+ var AttachToIndexRequest$ = [3, n0, _ATIR,
1365
+ 0,
1366
+ [_DA, _IR, _TR],
1367
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, () => ObjectReference$], 3
1368
+ ];
1369
+ var AttachToIndexResponse$ = [3, n0, _ATIRt,
1370
+ 0,
1371
+ [_AOI],
1372
+ [0]
1373
+ ];
1374
+ var AttachTypedLinkRequest$ = [3, n0, _ATLR,
1375
+ 0,
1376
+ [_DA, _SOR, _TOR, _TLF, _A],
1377
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, () => ObjectReference$, () => TypedLinkSchemaAndFacetName$, () => AttributeNameAndValueList], 5
1378
+ ];
1379
+ var AttachTypedLinkResponse$ = [3, n0, _ATLRt,
1380
+ 0,
1381
+ [_TLS],
1382
+ [() => TypedLinkSpecifier$]
1383
+ ];
1384
+ var AttributeKey$ = [3, n0, _AK,
1385
+ 0,
1386
+ [_SA, _FN, _N],
1387
+ [0, 0, 0], 3
1388
+ ];
1389
+ var AttributeKeyAndValue$ = [3, n0, _AKAV,
1390
+ 0,
1391
+ [_K, _V],
1392
+ [() => AttributeKey$, () => TypedAttributeValue$], 2
1393
+ ];
1394
+ var AttributeNameAndValue$ = [3, n0, _ANAV,
1395
+ 0,
1396
+ [_AN, _V],
1397
+ [0, () => TypedAttributeValue$], 2
1398
+ ];
1399
+ var BatchAddFacetToObject$ = [3, n0, _BAFTO,
1400
+ 0,
1401
+ [_SF, _OAL, _OR],
1402
+ [() => SchemaFacet$, () => AttributeKeyAndValueList, () => ObjectReference$], 3
1403
+ ];
1404
+ var BatchAddFacetToObjectResponse$ = [3, n0, _BAFTOR,
1405
+ 0,
1406
+ [],
1407
+ []
1408
+ ];
1409
+ var BatchAttachObject$ = [3, n0, _BAO,
1410
+ 0,
1411
+ [_PR, _CR, _LN],
1412
+ [() => ObjectReference$, () => ObjectReference$, 0], 3
1413
+ ];
1414
+ var BatchAttachObjectResponse$ = [3, n0, _BAOR,
1415
+ 0,
1416
+ [_aOI],
1417
+ [0]
1418
+ ];
1419
+ var BatchAttachPolicy$ = [3, n0, _BAP,
1420
+ 0,
1421
+ [_PRo, _OR],
1422
+ [() => ObjectReference$, () => ObjectReference$], 2
1423
+ ];
1424
+ var BatchAttachPolicyResponse$ = [3, n0, _BAPR,
1425
+ 0,
1426
+ [],
1427
+ []
1428
+ ];
1429
+ var BatchAttachToIndex$ = [3, n0, _BATI,
1430
+ 0,
1431
+ [_IR, _TR],
1432
+ [() => ObjectReference$, () => ObjectReference$], 2
1433
+ ];
1434
+ var BatchAttachToIndexResponse$ = [3, n0, _BATIR,
1435
+ 0,
1436
+ [_AOI],
1437
+ [0]
1438
+ ];
1439
+ var BatchAttachTypedLink$ = [3, n0, _BATL,
1440
+ 0,
1441
+ [_SOR, _TOR, _TLF, _A],
1442
+ [() => ObjectReference$, () => ObjectReference$, () => TypedLinkSchemaAndFacetName$, () => AttributeNameAndValueList], 4
1443
+ ];
1444
+ var BatchAttachTypedLinkResponse$ = [3, n0, _BATLR,
1445
+ 0,
1446
+ [_TLS],
1447
+ [() => TypedLinkSpecifier$]
1448
+ ];
1449
+ var BatchCreateIndex$ = [3, n0, _BCI,
1450
+ 0,
1451
+ [_OIAL, _IU, _PR, _LN, _BRN],
1452
+ [() => AttributeKeyList, 2, () => ObjectReference$, 0, 0], 2
1453
+ ];
1454
+ var BatchCreateIndexResponse$ = [3, n0, _BCIR,
1455
+ 0,
1456
+ [_OI],
1457
+ [0]
1458
+ ];
1459
+ var BatchCreateObject$ = [3, n0, _BCO,
1460
+ 0,
1461
+ [_SF, _OAL, _PR, _LN, _BRN],
1462
+ [() => SchemaFacetList, () => AttributeKeyAndValueList, () => ObjectReference$, 0, 0], 2
1463
+ ];
1464
+ var BatchCreateObjectResponse$ = [3, n0, _BCOR,
1465
+ 0,
1466
+ [_OI],
1467
+ [0]
1468
+ ];
1469
+ var BatchDeleteObject$ = [3, n0, _BDO,
1470
+ 0,
1471
+ [_OR],
1472
+ [() => ObjectReference$], 1
1473
+ ];
1474
+ var BatchDeleteObjectResponse$ = [3, n0, _BDOR,
1475
+ 0,
1476
+ [],
1477
+ []
1478
+ ];
1479
+ var BatchDetachFromIndex$ = [3, n0, _BDFI,
1480
+ 0,
1481
+ [_IR, _TR],
1482
+ [() => ObjectReference$, () => ObjectReference$], 2
1483
+ ];
1484
+ var BatchDetachFromIndexResponse$ = [3, n0, _BDFIR,
1485
+ 0,
1486
+ [_DOI],
1487
+ [0]
1488
+ ];
1489
+ var BatchDetachObject$ = [3, n0, _BDOa,
1490
+ 0,
1491
+ [_PR, _LN, _BRN],
1492
+ [() => ObjectReference$, 0, 0], 2
1493
+ ];
1494
+ var BatchDetachObjectResponse$ = [3, n0, _BDORa,
1495
+ 0,
1496
+ [_dOI],
1497
+ [0]
1498
+ ];
1499
+ var BatchDetachPolicy$ = [3, n0, _BDP,
1500
+ 0,
1501
+ [_PRo, _OR],
1502
+ [() => ObjectReference$, () => ObjectReference$], 2
1503
+ ];
1504
+ var BatchDetachPolicyResponse$ = [3, n0, _BDPR,
1505
+ 0,
1506
+ [],
1507
+ []
1508
+ ];
1509
+ var BatchDetachTypedLink$ = [3, n0, _BDTL,
1510
+ 0,
1511
+ [_TLS],
1512
+ [() => TypedLinkSpecifier$], 1
1513
+ ];
1514
+ var BatchDetachTypedLinkResponse$ = [3, n0, _BDTLR,
1515
+ 0,
1516
+ [],
1517
+ []
1518
+ ];
1519
+ var BatchGetLinkAttributes$ = [3, n0, _BGLA,
1520
+ 0,
1521
+ [_TLS, _ANt],
1522
+ [() => TypedLinkSpecifier$, 64 | 0], 2
1523
+ ];
1524
+ var BatchGetLinkAttributesResponse$ = [3, n0, _BGLAR,
1525
+ 0,
1526
+ [_A],
1527
+ [() => AttributeKeyAndValueList]
1528
+ ];
1529
+ var BatchGetObjectAttributes$ = [3, n0, _BGOA,
1530
+ 0,
1531
+ [_OR, _SF, _ANt],
1532
+ [() => ObjectReference$, () => SchemaFacet$, 64 | 0], 3
1533
+ ];
1534
+ var BatchGetObjectAttributesResponse$ = [3, n0, _BGOAR,
1535
+ 0,
1536
+ [_A],
1537
+ [() => AttributeKeyAndValueList]
1538
+ ];
1539
+ var BatchGetObjectInformation$ = [3, n0, _BGOI,
1540
+ 0,
1541
+ [_OR],
1542
+ [() => ObjectReference$], 1
1543
+ ];
1544
+ var BatchGetObjectInformationResponse$ = [3, n0, _BGOIR,
1545
+ 0,
1546
+ [_SFc, _OI],
1547
+ [() => SchemaFacetList, 0]
1548
+ ];
1549
+ var BatchListAttachedIndices$ = [3, n0, _BLAI,
1550
+ 0,
1551
+ [_TR, _NT, _MR],
1552
+ [() => ObjectReference$, 0, 1], 1
1553
+ ];
1554
+ var BatchListAttachedIndicesResponse$ = [3, n0, _BLAIR,
1555
+ 0,
1556
+ [_IA, _NT],
1557
+ [() => IndexAttachmentList, 0]
1558
+ ];
1559
+ var BatchListIncomingTypedLinks$ = [3, n0, _BLITL,
1560
+ 0,
1561
+ [_OR, _FAR, _FTL, _NT, _MR],
1562
+ [() => ObjectReference$, () => TypedLinkAttributeRangeList, () => TypedLinkSchemaAndFacetName$, 0, 1], 1
1563
+ ];
1564
+ var BatchListIncomingTypedLinksResponse$ = [3, n0, _BLITLR,
1565
+ 0,
1566
+ [_LS, _NT],
1567
+ [() => TypedLinkSpecifierList, 0]
1568
+ ];
1569
+ var BatchListIndex$ = [3, n0, _BLI,
1570
+ 0,
1571
+ [_IR, _ROIV, _MR, _NT],
1572
+ [() => ObjectReference$, () => ObjectAttributeRangeList, 1, 0], 1
1573
+ ];
1574
+ var BatchListIndexResponse$ = [3, n0, _BLIR,
1575
+ 0,
1576
+ [_IA, _NT],
1577
+ [() => IndexAttachmentList, 0]
1578
+ ];
1579
+ var BatchListObjectAttributes$ = [3, n0, _BLOA,
1580
+ 0,
1581
+ [_OR, _NT, _MR, _FF],
1582
+ [() => ObjectReference$, 0, 1, () => SchemaFacet$], 1
1583
+ ];
1584
+ var BatchListObjectAttributesResponse$ = [3, n0, _BLOAR,
1585
+ 0,
1586
+ [_A, _NT],
1587
+ [() => AttributeKeyAndValueList, 0]
1588
+ ];
1589
+ var BatchListObjectChildren$ = [3, n0, _BLOC,
1590
+ 0,
1591
+ [_OR, _NT, _MR],
1592
+ [() => ObjectReference$, 0, 1], 1
1593
+ ];
1594
+ var BatchListObjectChildrenResponse$ = [3, n0, _BLOCR,
1595
+ 0,
1596
+ [_C, _NT],
1597
+ [128 | 0, 0]
1598
+ ];
1599
+ var BatchListObjectParentPaths$ = [3, n0, _BLOPP,
1600
+ 0,
1601
+ [_OR, _NT, _MR],
1602
+ [() => ObjectReference$, 0, 1], 1
1603
+ ];
1604
+ var BatchListObjectParentPathsResponse$ = [3, n0, _BLOPPR,
1605
+ 0,
1606
+ [_PTOIL, _NT],
1607
+ [() => PathToObjectIdentifiersList, 0]
1608
+ ];
1609
+ var BatchListObjectParents$ = [3, n0, _BLOP,
1610
+ 0,
1611
+ [_OR, _NT, _MR],
1612
+ [() => ObjectReference$, 0, 1], 1
1613
+ ];
1614
+ var BatchListObjectParentsResponse$ = [3, n0, _BLOPR,
1615
+ 0,
1616
+ [_PL, _NT],
1617
+ [() => ObjectIdentifierAndLinkNameList, 0]
1618
+ ];
1619
+ var BatchListObjectPolicies$ = [3, n0, _BLOPa,
1620
+ 0,
1621
+ [_OR, _NT, _MR],
1622
+ [() => ObjectReference$, 0, 1], 1
1623
+ ];
1624
+ var BatchListObjectPoliciesResponse$ = [3, n0, _BLOPRa,
1625
+ 0,
1626
+ [_API, _NT],
1627
+ [64 | 0, 0]
1628
+ ];
1629
+ var BatchListOutgoingTypedLinks$ = [3, n0, _BLOTL,
1630
+ 0,
1631
+ [_OR, _FAR, _FTL, _NT, _MR],
1632
+ [() => ObjectReference$, () => TypedLinkAttributeRangeList, () => TypedLinkSchemaAndFacetName$, 0, 1], 1
1633
+ ];
1634
+ var BatchListOutgoingTypedLinksResponse$ = [3, n0, _BLOTLR,
1635
+ 0,
1636
+ [_TLSy, _NT],
1637
+ [() => TypedLinkSpecifierList, 0]
1638
+ ];
1639
+ var BatchListPolicyAttachments$ = [3, n0, _BLPA,
1640
+ 0,
1641
+ [_PRo, _NT, _MR],
1642
+ [() => ObjectReference$, 0, 1], 1
1643
+ ];
1644
+ var BatchListPolicyAttachmentsResponse$ = [3, n0, _BLPAR,
1645
+ 0,
1646
+ [_OIb, _NT],
1647
+ [64 | 0, 0]
1648
+ ];
1649
+ var BatchLookupPolicy$ = [3, n0, _BLP,
1650
+ 0,
1651
+ [_OR, _NT, _MR],
1652
+ [() => ObjectReference$, 0, 1], 1
1653
+ ];
1654
+ var BatchLookupPolicyResponse$ = [3, n0, _BLPR,
1655
+ 0,
1656
+ [_PTPL, _NT],
1657
+ [() => PolicyToPathList, 0]
1658
+ ];
1659
+ var BatchReadException$ = [3, n0, _BRE,
1660
+ 0,
1661
+ [_T, _M],
1662
+ [0, 0]
1663
+ ];
1664
+ var BatchReadOperation$ = [3, n0, _BRO,
1665
+ 0,
1666
+ [_LOA, _LOC, _LAI, _LOPP, _GOI, _GOA, _LOP, _LOPi, _LPA, _LP, _LI, _LOTL, _LITL, _GLA],
1667
+ [() => BatchListObjectAttributes$, () => BatchListObjectChildren$, () => BatchListAttachedIndices$, () => BatchListObjectParentPaths$, () => BatchGetObjectInformation$, () => BatchGetObjectAttributes$, () => BatchListObjectParents$, () => BatchListObjectPolicies$, () => BatchListPolicyAttachments$, () => BatchLookupPolicy$, () => BatchListIndex$, () => BatchListOutgoingTypedLinks$, () => BatchListIncomingTypedLinks$, () => BatchGetLinkAttributes$]
1668
+ ];
1669
+ var BatchReadOperationResponse$ = [3, n0, _BROR,
1670
+ 0,
1671
+ [_SR, _ER],
1672
+ [() => BatchReadSuccessfulResponse$, () => BatchReadException$]
1673
+ ];
1674
+ var BatchReadRequest$ = [3, n0, _BRR,
1675
+ 0,
1676
+ [_DA, _O, _CL],
1677
+ [[0, { [_hH]: _xadp }], () => BatchReadOperationList, [0, { [_hH]: _xacl }]], 2
1678
+ ];
1679
+ var BatchReadResponse$ = [3, n0, _BRRa,
1680
+ 0,
1681
+ [_R],
1682
+ [() => BatchReadOperationResponseList]
1683
+ ];
1684
+ var BatchReadSuccessfulResponse$ = [3, n0, _BRSR,
1685
+ 0,
1686
+ [_LOA, _LOC, _GOI, _GOA, _LAI, _LOPP, _LOPi, _LPA, _LP, _LI, _LOTL, _LITL, _GLA, _LOP],
1687
+ [() => BatchListObjectAttributesResponse$, () => BatchListObjectChildrenResponse$, () => BatchGetObjectInformationResponse$, () => BatchGetObjectAttributesResponse$, () => BatchListAttachedIndicesResponse$, () => BatchListObjectParentPathsResponse$, () => BatchListObjectPoliciesResponse$, () => BatchListPolicyAttachmentsResponse$, () => BatchLookupPolicyResponse$, () => BatchListIndexResponse$, () => BatchListOutgoingTypedLinksResponse$, () => BatchListIncomingTypedLinksResponse$, () => BatchGetLinkAttributesResponse$, () => BatchListObjectParentsResponse$]
1688
+ ];
1689
+ var BatchRemoveFacetFromObject$ = [3, n0, _BRFFO,
1690
+ 0,
1691
+ [_SF, _OR],
1692
+ [() => SchemaFacet$, () => ObjectReference$], 2
1693
+ ];
1694
+ var BatchRemoveFacetFromObjectResponse$ = [3, n0, _BRFFOR,
1695
+ 0,
1696
+ [],
1697
+ []
1698
+ ];
1699
+ var BatchUpdateLinkAttributes$ = [3, n0, _BULA,
1700
+ 0,
1701
+ [_TLS, _AU],
1702
+ [() => TypedLinkSpecifier$, () => LinkAttributeUpdateList], 2
1703
+ ];
1704
+ var BatchUpdateLinkAttributesResponse$ = [3, n0, _BULAR,
1705
+ 0,
1706
+ [],
1707
+ []
1708
+ ];
1709
+ var BatchUpdateObjectAttributes$ = [3, n0, _BUOA,
1710
+ 0,
1711
+ [_OR, _AU],
1712
+ [() => ObjectReference$, () => ObjectAttributeUpdateList], 2
1713
+ ];
1714
+ var BatchUpdateObjectAttributesResponse$ = [3, n0, _BUOAR,
1715
+ 0,
1716
+ [_OI],
1717
+ [0]
1718
+ ];
1719
+ var BatchWriteOperation$ = [3, n0, _BWO,
1720
+ 0,
1721
+ [_CO, _AO, _DO, _UOA, _DOe, _AFTO, _RFFO, _AP, _DP, _CI, _ATI, _DFI, _ATL, _DTL, _ULA],
1722
+ [() => BatchCreateObject$, () => BatchAttachObject$, () => BatchDetachObject$, () => BatchUpdateObjectAttributes$, () => BatchDeleteObject$, () => BatchAddFacetToObject$, () => BatchRemoveFacetFromObject$, () => BatchAttachPolicy$, () => BatchDetachPolicy$, () => BatchCreateIndex$, () => BatchAttachToIndex$, () => BatchDetachFromIndex$, () => BatchAttachTypedLink$, () => BatchDetachTypedLink$, () => BatchUpdateLinkAttributes$]
1723
+ ];
1724
+ var BatchWriteOperationResponse$ = [3, n0, _BWOR,
1725
+ 0,
1726
+ [_CO, _AO, _DO, _UOA, _DOe, _AFTO, _RFFO, _AP, _DP, _CI, _ATI, _DFI, _ATL, _DTL, _ULA],
1727
+ [() => BatchCreateObjectResponse$, () => BatchAttachObjectResponse$, () => BatchDetachObjectResponse$, () => BatchUpdateObjectAttributesResponse$, () => BatchDeleteObjectResponse$, () => BatchAddFacetToObjectResponse$, () => BatchRemoveFacetFromObjectResponse$, () => BatchAttachPolicyResponse$, () => BatchDetachPolicyResponse$, () => BatchCreateIndexResponse$, () => BatchAttachToIndexResponse$, () => BatchDetachFromIndexResponse$, () => BatchAttachTypedLinkResponse$, () => BatchDetachTypedLinkResponse$, () => BatchUpdateLinkAttributesResponse$]
1728
+ ];
1729
+ var BatchWriteRequest$ = [3, n0, _BWR,
1730
+ 0,
1731
+ [_DA, _O],
1732
+ [[0, { [_hH]: _xadp }], () => BatchWriteOperationList], 2
1733
+ ];
1734
+ var BatchWriteResponse$ = [3, n0, _BWRa,
1735
+ 0,
1736
+ [_R],
1737
+ [() => BatchWriteOperationResponseList]
1738
+ ];
1739
+ var CreateDirectoryRequest$ = [3, n0, _CDR,
1740
+ 0,
1741
+ [_N, _SA],
1742
+ [0, [0, { [_hH]: _xadp }]], 2
1743
+ ];
1744
+ var CreateDirectoryResponse$ = [3, n0, _CDRr,
1745
+ 0,
1746
+ [_DA, _N, _OI, _ASA],
1747
+ [0, 0, 0, 0], 4
1748
+ ];
1749
+ var CreateFacetRequest$ = [3, n0, _CFR,
1750
+ 0,
1751
+ [_SA, _N, _A, _OT, _FS],
1752
+ [[0, { [_hH]: _xadp }], 0, () => FacetAttributeList, 0, 0], 2
1753
+ ];
1754
+ var CreateFacetResponse$ = [3, n0, _CFRr,
1755
+ 0,
1756
+ [],
1757
+ []
1758
+ ];
1759
+ var CreateIndexRequest$ = [3, n0, _CIR,
1760
+ 0,
1761
+ [_DA, _OIAL, _IU, _PR, _LN],
1762
+ [[0, { [_hH]: _xadp }], () => AttributeKeyList, 2, () => ObjectReference$, 0], 3
1763
+ ];
1764
+ var CreateIndexResponse$ = [3, n0, _CIRr,
1765
+ 0,
1766
+ [_OI],
1767
+ [0]
1768
+ ];
1769
+ var CreateObjectRequest$ = [3, n0, _COR,
1770
+ 0,
1771
+ [_DA, _SFc, _OAL, _PR, _LN],
1772
+ [[0, { [_hH]: _xadp }], () => SchemaFacetList, () => AttributeKeyAndValueList, () => ObjectReference$, 0], 2
1773
+ ];
1774
+ var CreateObjectResponse$ = [3, n0, _CORr,
1775
+ 0,
1776
+ [_OI],
1777
+ [0]
1778
+ ];
1779
+ var CreateSchemaRequest$ = [3, n0, _CSR,
1780
+ 0,
1781
+ [_N],
1782
+ [0], 1
1783
+ ];
1784
+ var CreateSchemaResponse$ = [3, n0, _CSRr,
1785
+ 0,
1786
+ [_SA],
1787
+ [0]
1788
+ ];
1789
+ var CreateTypedLinkFacetRequest$ = [3, n0, _CTLFR,
1790
+ 0,
1791
+ [_SA, _F],
1792
+ [[0, { [_hH]: _xadp }], () => TypedLinkFacet$], 2
1793
+ ];
1794
+ var CreateTypedLinkFacetResponse$ = [3, n0, _CTLFRr,
1795
+ 0,
1796
+ [],
1797
+ []
1798
+ ];
1799
+ var DeleteDirectoryRequest$ = [3, n0, _DDR,
1800
+ 0,
1801
+ [_DA],
1802
+ [[0, { [_hH]: _xadp }]], 1
1803
+ ];
1804
+ var DeleteDirectoryResponse$ = [3, n0, _DDRe,
1805
+ 0,
1806
+ [_DA],
1807
+ [0], 1
1808
+ ];
1809
+ var DeleteFacetRequest$ = [3, n0, _DFR,
1810
+ 0,
1811
+ [_SA, _N],
1812
+ [[0, { [_hH]: _xadp }], 0], 2
1813
+ ];
1814
+ var DeleteFacetResponse$ = [3, n0, _DFRe,
1815
+ 0,
1816
+ [],
1817
+ []
1818
+ ];
1819
+ var DeleteObjectRequest$ = [3, n0, _DOR,
1820
+ 0,
1821
+ [_DA, _OR],
1822
+ [[0, { [_hH]: _xadp }], () => ObjectReference$], 2
1823
+ ];
1824
+ var DeleteObjectResponse$ = [3, n0, _DORe,
1825
+ 0,
1826
+ [],
1827
+ []
1828
+ ];
1829
+ var DeleteSchemaRequest$ = [3, n0, _DSR,
1830
+ 0,
1831
+ [_SA],
1832
+ [[0, { [_hH]: _xadp }]], 1
1833
+ ];
1834
+ var DeleteSchemaResponse$ = [3, n0, _DSRe,
1835
+ 0,
1836
+ [_SA],
1837
+ [0]
1838
+ ];
1839
+ var DeleteTypedLinkFacetRequest$ = [3, n0, _DTLFR,
1840
+ 0,
1841
+ [_SA, _N],
1842
+ [[0, { [_hH]: _xadp }], 0], 2
1843
+ ];
1844
+ var DeleteTypedLinkFacetResponse$ = [3, n0, _DTLFRe,
1845
+ 0,
1846
+ [],
1847
+ []
1848
+ ];
1849
+ var DetachFromIndexRequest$ = [3, n0, _DFIR,
1850
+ 0,
1851
+ [_DA, _IR, _TR],
1852
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, () => ObjectReference$], 3
1853
+ ];
1854
+ var DetachFromIndexResponse$ = [3, n0, _DFIRe,
1855
+ 0,
1856
+ [_DOI],
1857
+ [0]
1858
+ ];
1859
+ var DetachObjectRequest$ = [3, n0, _DORet,
1860
+ 0,
1861
+ [_DA, _PR, _LN],
1862
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, 0], 3
1863
+ ];
1864
+ var DetachObjectResponse$ = [3, n0, _DOReta,
1865
+ 0,
1866
+ [_DOI],
1867
+ [0]
1868
+ ];
1869
+ var DetachPolicyRequest$ = [3, n0, _DPR,
1870
+ 0,
1871
+ [_DA, _PRo, _OR],
1872
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, () => ObjectReference$], 3
1873
+ ];
1874
+ var DetachPolicyResponse$ = [3, n0, _DPRe,
1875
+ 0,
1876
+ [],
1877
+ []
1878
+ ];
1879
+ var DetachTypedLinkRequest$ = [3, n0, _DTLR,
1880
+ 0,
1881
+ [_DA, _TLS],
1882
+ [[0, { [_hH]: _xadp }], () => TypedLinkSpecifier$], 2
1883
+ ];
1884
+ var Directory$ = [3, n0, _D,
1885
+ 0,
1886
+ [_N, _DA, _S, _CDT],
1887
+ [0, 0, 0, 4]
1888
+ ];
1889
+ var DisableDirectoryRequest$ = [3, n0, _DDRi,
1890
+ 0,
1891
+ [_DA],
1892
+ [[0, { [_hH]: _xadp }]], 1
1893
+ ];
1894
+ var DisableDirectoryResponse$ = [3, n0, _DDRis,
1895
+ 0,
1896
+ [_DA],
1897
+ [0], 1
1898
+ ];
1899
+ var EnableDirectoryRequest$ = [3, n0, _EDR,
1900
+ 0,
1901
+ [_DA],
1902
+ [[0, { [_hH]: _xadp }]], 1
1903
+ ];
1904
+ var EnableDirectoryResponse$ = [3, n0, _EDRn,
1905
+ 0,
1906
+ [_DA],
1907
+ [0], 1
1908
+ ];
1909
+ var Facet$ = [3, n0, _F,
1910
+ 0,
1911
+ [_N, _OT, _FS],
1912
+ [0, 0, 0]
1913
+ ];
1914
+ var FacetAttribute$ = [3, n0, _FA,
1915
+ 0,
1916
+ [_N, _AD, _AR, _RB],
1917
+ [0, () => FacetAttributeDefinition$, () => FacetAttributeReference$, 0], 1
1918
+ ];
1919
+ var FacetAttributeDefinition$ = [3, n0, _FAD,
1920
+ 0,
1921
+ [_T, _DV, _II, _Ru],
1922
+ [0, () => TypedAttributeValue$, 2, () => RuleMap], 1
1923
+ ];
1924
+ var FacetAttributeReference$ = [3, n0, _FARa,
1925
+ 0,
1926
+ [_TFN, _TAN],
1927
+ [0, 0], 2
1928
+ ];
1929
+ var FacetAttributeUpdate$ = [3, n0, _FAU,
1930
+ 0,
1931
+ [_At, _Ac],
1932
+ [() => FacetAttribute$, 0]
1933
+ ];
1934
+ var GetAppliedSchemaVersionRequest$ = [3, n0, _GASVR,
1935
+ 0,
1936
+ [_SA],
1937
+ [0], 1
1938
+ ];
1939
+ var GetAppliedSchemaVersionResponse$ = [3, n0, _GASVRe,
1940
+ 0,
1941
+ [_ASA],
1942
+ [0]
1943
+ ];
1944
+ var GetDirectoryRequest$ = [3, n0, _GDR,
1945
+ 0,
1946
+ [_DA],
1947
+ [[0, { [_hH]: _xadp }]], 1
1948
+ ];
1949
+ var GetDirectoryResponse$ = [3, n0, _GDRe,
1950
+ 0,
1951
+ [_D],
1952
+ [() => Directory$], 1
1953
+ ];
1954
+ var GetFacetRequest$ = [3, n0, _GFR,
1955
+ 0,
1956
+ [_SA, _N],
1957
+ [[0, { [_hH]: _xadp }], 0], 2
1958
+ ];
1959
+ var GetFacetResponse$ = [3, n0, _GFRe,
1960
+ 0,
1961
+ [_F],
1962
+ [() => Facet$]
1963
+ ];
1964
+ var GetLinkAttributesRequest$ = [3, n0, _GLAR,
1965
+ 0,
1966
+ [_DA, _TLS, _ANt, _CL],
1967
+ [[0, { [_hH]: _xadp }], () => TypedLinkSpecifier$, 64 | 0, 0], 3
1968
+ ];
1969
+ var GetLinkAttributesResponse$ = [3, n0, _GLARe,
1970
+ 0,
1971
+ [_A],
1972
+ [() => AttributeKeyAndValueList]
1973
+ ];
1974
+ var GetObjectAttributesRequest$ = [3, n0, _GOAR,
1975
+ 0,
1976
+ [_DA, _OR, _SF, _ANt, _CL],
1977
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, () => SchemaFacet$, 64 | 0, [0, { [_hH]: _xacl }]], 4
1978
+ ];
1979
+ var GetObjectAttributesResponse$ = [3, n0, _GOARe,
1980
+ 0,
1981
+ [_A],
1982
+ [() => AttributeKeyAndValueList]
1983
+ ];
1984
+ var GetObjectInformationRequest$ = [3, n0, _GOIR,
1985
+ 0,
1986
+ [_DA, _OR, _CL],
1987
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, [0, { [_hH]: _xacl }]], 2
1988
+ ];
1989
+ var GetObjectInformationResponse$ = [3, n0, _GOIRe,
1990
+ 0,
1991
+ [_SFc, _OI],
1992
+ [() => SchemaFacetList, 0]
1993
+ ];
1994
+ var GetSchemaAsJsonRequest$ = [3, n0, _GSAJR,
1995
+ 0,
1996
+ [_SA],
1997
+ [[0, { [_hH]: _xadp }]], 1
1998
+ ];
1999
+ var GetSchemaAsJsonResponse$ = [3, n0, _GSAJRe,
2000
+ 0,
2001
+ [_N, _Do],
2002
+ [0, 0]
2003
+ ];
2004
+ var GetTypedLinkFacetInformationRequest$ = [3, n0, _GTLFIR,
2005
+ 0,
2006
+ [_SA, _N],
2007
+ [[0, { [_hH]: _xadp }], 0], 2
2008
+ ];
2009
+ var GetTypedLinkFacetInformationResponse$ = [3, n0, _GTLFIRe,
2010
+ 0,
2011
+ [_IAO],
2012
+ [64 | 0]
2013
+ ];
2014
+ var IndexAttachment$ = [3, n0, _IAn,
2015
+ 0,
2016
+ [_IAnd, _OI],
2017
+ [() => AttributeKeyAndValueList, 0]
2018
+ ];
2019
+ var LinkAttributeAction$ = [3, n0, _LAA,
2020
+ 0,
2021
+ [_AAT, _AUV],
2022
+ [0, () => TypedAttributeValue$]
2023
+ ];
2024
+ var LinkAttributeUpdate$ = [3, n0, _LAU,
2025
+ 0,
2026
+ [_AK, _AA],
2027
+ [() => AttributeKey$, () => LinkAttributeAction$]
2028
+ ];
2029
+ var ListAppliedSchemaArnsRequest$ = [3, n0, _LASAR,
2030
+ 0,
2031
+ [_DA, _SA, _NT, _MR],
2032
+ [0, 0, 0, 1], 1
2033
+ ];
2034
+ var ListAppliedSchemaArnsResponse$ = [3, n0, _LASARi,
2035
+ 0,
2036
+ [_SAc, _NT],
2037
+ [64 | 0, 0]
2038
+ ];
2039
+ var ListAttachedIndicesRequest$ = [3, n0, _LAIR,
2040
+ 0,
2041
+ [_DA, _TR, _NT, _MR, _CL],
2042
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, 0, 1, [0, { [_hH]: _xacl }]], 2
2043
+ ];
2044
+ var ListAttachedIndicesResponse$ = [3, n0, _LAIRi,
2045
+ 0,
2046
+ [_IA, _NT],
2047
+ [() => IndexAttachmentList, 0]
2048
+ ];
2049
+ var ListDevelopmentSchemaArnsRequest$ = [3, n0, _LDSAR,
2050
+ 0,
2051
+ [_NT, _MR],
2052
+ [0, 1]
2053
+ ];
2054
+ var ListDevelopmentSchemaArnsResponse$ = [3, n0, _LDSARi,
2055
+ 0,
2056
+ [_SAc, _NT],
2057
+ [64 | 0, 0]
2058
+ ];
2059
+ var ListDirectoriesRequest$ = [3, n0, _LDR,
2060
+ 0,
2061
+ [_NT, _MR, _st],
2062
+ [0, 1, 0]
2063
+ ];
2064
+ var ListDirectoriesResponse$ = [3, n0, _LDRi,
2065
+ 0,
2066
+ [_Di, _NT],
2067
+ [() => DirectoryList, 0], 1
2068
+ ];
2069
+ var ListFacetAttributesRequest$ = [3, n0, _LFAR,
2070
+ 0,
2071
+ [_SA, _N, _NT, _MR],
2072
+ [[0, { [_hH]: _xadp }], 0, 0, 1], 2
2073
+ ];
2074
+ var ListFacetAttributesResponse$ = [3, n0, _LFARi,
2075
+ 0,
2076
+ [_A, _NT],
2077
+ [() => FacetAttributeList, 0]
2078
+ ];
2079
+ var ListFacetNamesRequest$ = [3, n0, _LFNR,
2080
+ 0,
2081
+ [_SA, _NT, _MR],
2082
+ [[0, { [_hH]: _xadp }], 0, 1], 1
2083
+ ];
2084
+ var ListFacetNamesResponse$ = [3, n0, _LFNRi,
2085
+ 0,
2086
+ [_FNa, _NT],
2087
+ [64 | 0, 0]
2088
+ ];
2089
+ var ListIncomingTypedLinksRequest$ = [3, n0, _LITLR,
2090
+ 0,
2091
+ [_DA, _OR, _FAR, _FTL, _NT, _MR, _CL],
2092
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, () => TypedLinkAttributeRangeList, () => TypedLinkSchemaAndFacetName$, 0, 1, 0], 2
2093
+ ];
2094
+ var ListIncomingTypedLinksResponse$ = [3, n0, _LITLRi,
2095
+ 0,
2096
+ [_LS, _NT],
2097
+ [() => TypedLinkSpecifierList, 0]
2098
+ ];
2099
+ var ListIndexRequest$ = [3, n0, _LIR,
2100
+ 0,
2101
+ [_DA, _IR, _ROIV, _MR, _NT, _CL],
2102
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, () => ObjectAttributeRangeList, 1, 0, [0, { [_hH]: _xacl }]], 2
2103
+ ];
2104
+ var ListIndexResponse$ = [3, n0, _LIRi,
2105
+ 0,
2106
+ [_IA, _NT],
2107
+ [() => IndexAttachmentList, 0]
2108
+ ];
2109
+ var ListManagedSchemaArnsRequest$ = [3, n0, _LMSAR,
2110
+ 0,
2111
+ [_SA, _NT, _MR],
2112
+ [0, 0, 1]
2113
+ ];
2114
+ var ListManagedSchemaArnsResponse$ = [3, n0, _LMSARi,
2115
+ 0,
2116
+ [_SAc, _NT],
2117
+ [64 | 0, 0]
2118
+ ];
2119
+ var ListObjectAttributesRequest$ = [3, n0, _LOAR,
2120
+ 0,
2121
+ [_DA, _OR, _NT, _MR, _CL, _FF],
2122
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, 0, 1, [0, { [_hH]: _xacl }], () => SchemaFacet$], 2
2123
+ ];
2124
+ var ListObjectAttributesResponse$ = [3, n0, _LOARi,
2125
+ 0,
2126
+ [_A, _NT],
2127
+ [() => AttributeKeyAndValueList, 0]
2128
+ ];
2129
+ var ListObjectChildrenRequest$ = [3, n0, _LOCR,
2130
+ 0,
2131
+ [_DA, _OR, _NT, _MR, _CL],
2132
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, 0, 1, [0, { [_hH]: _xacl }]], 2
2133
+ ];
2134
+ var ListObjectChildrenResponse$ = [3, n0, _LOCRi,
2135
+ 0,
2136
+ [_C, _NT],
2137
+ [128 | 0, 0]
2138
+ ];
2139
+ var ListObjectParentPathsRequest$ = [3, n0, _LOPPR,
2140
+ 0,
2141
+ [_DA, _OR, _NT, _MR],
2142
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, 0, 1], 2
2143
+ ];
2144
+ var ListObjectParentPathsResponse$ = [3, n0, _LOPPRi,
2145
+ 0,
2146
+ [_PTOIL, _NT],
2147
+ [() => PathToObjectIdentifiersList, 0]
2148
+ ];
2149
+ var ListObjectParentsRequest$ = [3, n0, _LOPR,
2150
+ 0,
2151
+ [_DA, _OR, _NT, _MR, _CL, _IALTEP],
2152
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, 0, 1, [0, { [_hH]: _xacl }], 2], 2
2153
+ ];
2154
+ var ListObjectParentsResponse$ = [3, n0, _LOPRi,
2155
+ 0,
2156
+ [_P, _NT, _PL],
2157
+ [128 | 0, 0, () => ObjectIdentifierAndLinkNameList]
2158
+ ];
2159
+ var ListObjectPoliciesRequest$ = [3, n0, _LOPRis,
2160
+ 0,
2161
+ [_DA, _OR, _NT, _MR, _CL],
2162
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, 0, 1, [0, { [_hH]: _xacl }]], 2
2163
+ ];
2164
+ var ListObjectPoliciesResponse$ = [3, n0, _LOPRist,
2165
+ 0,
2166
+ [_API, _NT],
2167
+ [64 | 0, 0]
2168
+ ];
2169
+ var ListOutgoingTypedLinksRequest$ = [3, n0, _LOTLR,
2170
+ 0,
2171
+ [_DA, _OR, _FAR, _FTL, _NT, _MR, _CL],
2172
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, () => TypedLinkAttributeRangeList, () => TypedLinkSchemaAndFacetName$, 0, 1, 0], 2
2173
+ ];
2174
+ var ListOutgoingTypedLinksResponse$ = [3, n0, _LOTLRi,
2175
+ 0,
2176
+ [_TLSy, _NT],
2177
+ [() => TypedLinkSpecifierList, 0]
2178
+ ];
2179
+ var ListPolicyAttachmentsRequest$ = [3, n0, _LPAR,
2180
+ 0,
2181
+ [_DA, _PRo, _NT, _MR, _CL],
2182
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, 0, 1, [0, { [_hH]: _xacl }]], 2
2183
+ ];
2184
+ var ListPolicyAttachmentsResponse$ = [3, n0, _LPARi,
2185
+ 0,
2186
+ [_OIb, _NT],
2187
+ [64 | 0, 0]
2188
+ ];
2189
+ var ListPublishedSchemaArnsRequest$ = [3, n0, _LPSAR,
2190
+ 0,
2191
+ [_SA, _NT, _MR],
2192
+ [0, 0, 1]
2193
+ ];
2194
+ var ListPublishedSchemaArnsResponse$ = [3, n0, _LPSARi,
2195
+ 0,
2196
+ [_SAc, _NT],
2197
+ [64 | 0, 0]
2198
+ ];
2199
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
2200
+ 0,
2201
+ [_RA, _NT, _MR],
2202
+ [0, 0, 1], 1
2203
+ ];
2204
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
2205
+ 0,
2206
+ [_Ta, _NT],
2207
+ [() => TagList, 0]
2208
+ ];
2209
+ var ListTypedLinkFacetAttributesRequest$ = [3, n0, _LTLFAR,
2210
+ 0,
2211
+ [_SA, _N, _NT, _MR],
2212
+ [[0, { [_hH]: _xadp }], 0, 0, 1], 2
2213
+ ];
2214
+ var ListTypedLinkFacetAttributesResponse$ = [3, n0, _LTLFARi,
2215
+ 0,
2216
+ [_A, _NT],
2217
+ [() => TypedLinkAttributeDefinitionList, 0]
2218
+ ];
2219
+ var ListTypedLinkFacetNamesRequest$ = [3, n0, _LTLFNR,
2220
+ 0,
2221
+ [_SA, _NT, _MR],
2222
+ [[0, { [_hH]: _xadp }], 0, 1], 1
2223
+ ];
2224
+ var ListTypedLinkFacetNamesResponse$ = [3, n0, _LTLFNRi,
2225
+ 0,
2226
+ [_FNa, _NT],
2227
+ [64 | 0, 0]
2228
+ ];
2229
+ var LookupPolicyRequest$ = [3, n0, _LPR,
2230
+ 0,
2231
+ [_DA, _OR, _NT, _MR],
2232
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, 0, 1], 2
2233
+ ];
2234
+ var LookupPolicyResponse$ = [3, n0, _LPRo,
2235
+ 0,
2236
+ [_PTPL, _NT],
2237
+ [() => PolicyToPathList, 0]
2238
+ ];
2239
+ var ObjectAttributeAction$ = [3, n0, _OAA,
2240
+ 0,
2241
+ [_OAAT, _OAUV],
2242
+ [0, () => TypedAttributeValue$]
2243
+ ];
2244
+ var ObjectAttributeRange$ = [3, n0, _OAR,
2245
+ 0,
2246
+ [_AK, _Ra],
2247
+ [() => AttributeKey$, () => TypedAttributeValueRange$]
2248
+ ];
2249
+ var ObjectAttributeUpdate$ = [3, n0, _OAU,
2250
+ 0,
2251
+ [_OAK, _OAA],
2252
+ [() => AttributeKey$, () => ObjectAttributeAction$]
2253
+ ];
2254
+ var ObjectIdentifierAndLinkNameTuple$ = [3, n0, _OIALNT,
2255
+ 0,
2256
+ [_OI, _LN],
2257
+ [0, 0]
2258
+ ];
2259
+ var ObjectReference$ = [3, n0, _OR,
2260
+ 0,
2261
+ [_Se],
2262
+ [0]
2263
+ ];
2264
+ var PathToObjectIdentifiers$ = [3, n0, _PTOI,
2265
+ 0,
2266
+ [_Pa, _OIb],
2267
+ [0, 64 | 0]
2268
+ ];
2269
+ var PolicyAttachment$ = [3, n0, _PA,
2270
+ 0,
2271
+ [_PI, _OI, _PT],
2272
+ [0, 0, 0]
2273
+ ];
2274
+ var PolicyToPath$ = [3, n0, _PTP,
2275
+ 0,
2276
+ [_Pa, _Po],
2277
+ [0, () => PolicyAttachmentList]
2278
+ ];
2279
+ var PublishSchemaRequest$ = [3, n0, _PSR,
2280
+ 0,
2281
+ [_DSA, _Ve, _MV, _N],
2282
+ [[0, { [_hH]: _xadp }], 0, 0, 0], 2
2283
+ ];
2284
+ var PublishSchemaResponse$ = [3, n0, _PSRu,
2285
+ 0,
2286
+ [_PSA],
2287
+ [0]
2288
+ ];
2289
+ var PutSchemaFromJsonRequest$ = [3, n0, _PSFJR,
2290
+ 0,
2291
+ [_SA, _Do],
2292
+ [[0, { [_hH]: _xadp }], 0], 2
2293
+ ];
2294
+ var PutSchemaFromJsonResponse$ = [3, n0, _PSFJRu,
2295
+ 0,
2296
+ [_Ar],
2297
+ [0]
2298
+ ];
2299
+ var RemoveFacetFromObjectRequest$ = [3, n0, _RFFOR,
2300
+ 0,
2301
+ [_DA, _SF, _OR],
2302
+ [[0, { [_hH]: _xadp }], () => SchemaFacet$, () => ObjectReference$], 3
2303
+ ];
2304
+ var RemoveFacetFromObjectResponse$ = [3, n0, _RFFORe,
2305
+ 0,
2306
+ [],
2307
+ []
2308
+ ];
2309
+ var Rule$ = [3, n0, _Rul,
2310
+ 0,
2311
+ [_T, _Par],
2312
+ [0, 128 | 0]
2313
+ ];
2314
+ var SchemaFacet$ = [3, n0, _SF,
2315
+ 0,
2316
+ [_SA, _FN],
2317
+ [0, 0]
2318
+ ];
2319
+ var Tag$ = [3, n0, _Tag,
2320
+ 0,
2321
+ [_K, _V],
2322
+ [0, 0]
2323
+ ];
2324
+ var TagResourceRequest$ = [3, n0, _TRR,
2325
+ 0,
2326
+ [_RA, _Ta],
2327
+ [0, () => TagList], 2
2328
+ ];
2329
+ var TagResourceResponse$ = [3, n0, _TRRa,
2330
+ 0,
2331
+ [],
2332
+ []
2333
+ ];
2334
+ var TypedAttributeValueRange$ = [3, n0, _TAVR,
2335
+ 0,
2336
+ [_SM, _EM, _SV, _EV],
2337
+ [0, 0, () => TypedAttributeValue$, () => TypedAttributeValue$], 2
2338
+ ];
2339
+ var TypedLinkAttributeDefinition$ = [3, n0, _TLAD,
2340
+ 0,
2341
+ [_N, _T, _RB, _DV, _II, _Ru],
2342
+ [0, 0, 0, () => TypedAttributeValue$, 2, () => RuleMap], 3
2343
+ ];
2344
+ var TypedLinkAttributeRange$ = [3, n0, _TLAR,
2345
+ 0,
2346
+ [_Ra, _AN],
2347
+ [() => TypedAttributeValueRange$, 0], 1
2348
+ ];
2349
+ var TypedLinkFacet$ = [3, n0, _TLF,
2350
+ 0,
2351
+ [_N, _A, _IAO],
2352
+ [0, () => TypedLinkAttributeDefinitionList, 64 | 0], 3
2353
+ ];
2354
+ var TypedLinkFacetAttributeUpdate$ = [3, n0, _TLFAU,
2355
+ 0,
2356
+ [_At, _Ac],
2357
+ [() => TypedLinkAttributeDefinition$, 0], 2
2358
+ ];
2359
+ var TypedLinkSchemaAndFacetName$ = [3, n0, _TLSAFN,
2360
+ 0,
2361
+ [_SA, _TLN],
2362
+ [0, 0], 2
2363
+ ];
2364
+ var TypedLinkSpecifier$ = [3, n0, _TLS,
2365
+ 0,
2366
+ [_TLF, _SOR, _TOR, _IAV],
2367
+ [() => TypedLinkSchemaAndFacetName$, () => ObjectReference$, () => ObjectReference$, () => AttributeNameAndValueList], 4
2368
+ ];
2369
+ var UntagResourceRequest$ = [3, n0, _URR,
2370
+ 0,
2371
+ [_RA, _TK],
2372
+ [0, 64 | 0], 2
2373
+ ];
2374
+ var UntagResourceResponse$ = [3, n0, _URRn,
2375
+ 0,
2376
+ [],
2377
+ []
2378
+ ];
2379
+ var UpdateFacetRequest$ = [3, n0, _UFR,
2380
+ 0,
2381
+ [_SA, _N, _AU, _OT],
2382
+ [[0, { [_hH]: _xadp }], 0, () => FacetAttributeUpdateList, 0], 2
2383
+ ];
2384
+ var UpdateFacetResponse$ = [3, n0, _UFRp,
2385
+ 0,
2386
+ [],
2387
+ []
2388
+ ];
2389
+ var UpdateLinkAttributesRequest$ = [3, n0, _ULAR,
2390
+ 0,
2391
+ [_DA, _TLS, _AU],
2392
+ [[0, { [_hH]: _xadp }], () => TypedLinkSpecifier$, () => LinkAttributeUpdateList], 3
2393
+ ];
2394
+ var UpdateLinkAttributesResponse$ = [3, n0, _ULARp,
2395
+ 0,
2396
+ [],
2397
+ []
2398
+ ];
2399
+ var UpdateObjectAttributesRequest$ = [3, n0, _UOAR,
2400
+ 0,
2401
+ [_DA, _OR, _AU],
2402
+ [[0, { [_hH]: _xadp }], () => ObjectReference$, () => ObjectAttributeUpdateList], 3
2403
+ ];
2404
+ var UpdateObjectAttributesResponse$ = [3, n0, _UOARp,
2405
+ 0,
2406
+ [_OI],
2407
+ [0]
2408
+ ];
2409
+ var UpdateSchemaRequest$ = [3, n0, _USR,
2410
+ 0,
2411
+ [_SA, _N],
2412
+ [[0, { [_hH]: _xadp }], 0], 2
2413
+ ];
2414
+ var UpdateSchemaResponse$ = [3, n0, _USRp,
2415
+ 0,
2416
+ [_SA],
2417
+ [0]
2418
+ ];
2419
+ var UpdateTypedLinkFacetRequest$ = [3, n0, _UTLFR,
2420
+ 0,
2421
+ [_SA, _N, _AU, _IAO],
2422
+ [[0, { [_hH]: _xadp }], 0, () => TypedLinkFacetAttributeUpdateList, 64 | 0], 4
2423
+ ];
2424
+ var UpdateTypedLinkFacetResponse$ = [3, n0, _UTLFRp,
2425
+ 0,
2426
+ [],
2427
+ []
2428
+ ];
2429
+ var UpgradeAppliedSchemaRequest$ = [3, n0, _UASR,
2430
+ 0,
2431
+ [_PSA, _DA, _DR],
2432
+ [0, 0, 2], 2
2433
+ ];
2434
+ var UpgradeAppliedSchemaResponse$ = [3, n0, _UASRp,
2435
+ 0,
2436
+ [_USA, _DA],
2437
+ [0, 0]
2438
+ ];
2439
+ var UpgradePublishedSchemaRequest$ = [3, n0, _UPSR,
2440
+ 0,
2441
+ [_DSA, _PSA, _MV, _DR],
2442
+ [0, 0, 0, 2], 3
2443
+ ];
2444
+ var UpgradePublishedSchemaResponse$ = [3, n0, _UPSRp,
2445
+ 0,
2446
+ [_USA],
2447
+ [0]
2448
+ ];
2449
+ var __Unit = "unit";
2450
+ var AttributeKeyAndValueList = [1, n0, _AKAVL,
2451
+ 0, () => AttributeKeyAndValue$
2452
+ ];
2453
+ var AttributeKeyList = [1, n0, _AKL,
2454
+ 0, () => AttributeKey$
2455
+ ];
2456
+ var AttributeNameAndValueList = [1, n0, _ANAVL,
2457
+ 0, () => AttributeNameAndValue$
2458
+ ];
2459
+ var BatchReadOperationList = [1, n0, _BROL,
2460
+ 0, () => BatchReadOperation$
2461
+ ];
2462
+ var BatchReadOperationResponseList = [1, n0, _BRORL,
2463
+ 0, () => BatchReadOperationResponse$
2464
+ ];
2465
+ var BatchWriteOperationList = [1, n0, _BWOL,
2466
+ 0, () => BatchWriteOperation$
2467
+ ];
2468
+ var BatchWriteOperationResponseList = [1, n0, _BWORL,
2469
+ 0, () => BatchWriteOperationResponse$
2470
+ ];
2471
+ var DirectoryList = [1, n0, _DL,
2472
+ 0, () => Directory$
2473
+ ];
2474
+ var FacetAttributeList = [1, n0, _FAL,
2475
+ 0, () => FacetAttribute$
2476
+ ];
2477
+ var FacetAttributeUpdateList = [1, n0, _FAUL,
2478
+ 0, () => FacetAttributeUpdate$
2479
+ ];
2480
+ var IndexAttachmentList = [1, n0, _IAL,
2481
+ 0, () => IndexAttachment$
2482
+ ];
2483
+ var LinkAttributeUpdateList = [1, n0, _LAUL,
2484
+ 0, () => LinkAttributeUpdate$
2485
+ ];
2486
+ var ObjectAttributeRangeList = [1, n0, _OARL,
2487
+ 0, () => ObjectAttributeRange$
2488
+ ];
2489
+ var ObjectAttributeUpdateList = [1, n0, _OAUL,
2490
+ 0, () => ObjectAttributeUpdate$
2491
+ ];
2492
+ var ObjectIdentifierAndLinkNameList = [1, n0, _OIALNL,
2493
+ 0, () => ObjectIdentifierAndLinkNameTuple$
2494
+ ];
2495
+ var PathToObjectIdentifiersList = [1, n0, _PTOIL,
2496
+ 0, () => PathToObjectIdentifiers$
2497
+ ];
2498
+ var PolicyAttachmentList = [1, n0, _PAL,
2499
+ 0, () => PolicyAttachment$
2500
+ ];
2501
+ var PolicyToPathList = [1, n0, _PTPL,
2502
+ 0, () => PolicyToPath$
2503
+ ];
2504
+ var SchemaFacetList = [1, n0, _SFL,
2505
+ 0, () => SchemaFacet$
2506
+ ];
2507
+ var TagList = [1, n0, _TL,
2508
+ 0, () => Tag$
2509
+ ];
2510
+ var TypedLinkAttributeDefinitionList = [1, n0, _TLADL,
2511
+ 0, () => TypedLinkAttributeDefinition$
2512
+ ];
2513
+ var TypedLinkAttributeRangeList = [1, n0, _TLARL,
2514
+ 0, () => TypedLinkAttributeRange$
2515
+ ];
2516
+ var TypedLinkFacetAttributeUpdateList = [1, n0, _TLFAUL,
2517
+ 0, () => TypedLinkFacetAttributeUpdate$
2518
+ ];
2519
+ var TypedLinkSpecifierList = [1, n0, _TLSL,
2520
+ 0, () => TypedLinkSpecifier$
2521
+ ];
2522
+ var RuleMap = [2, n0, _RM,
2523
+ 0, 0, () => Rule$
2524
+ ];
2525
+ var TypedAttributeValue$ = [4, n0, _TAV,
2526
+ 0,
2527
+ [_SVt, _BV, _BVo, _NV, _DVa],
2528
+ [0, 21, 2, 0, 4]
2529
+ ];
2530
+ var AddFacetToObject$ = [9, n0, _AFTO,
2531
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/object/facets", 200] }, () => AddFacetToObjectRequest$, () => AddFacetToObjectResponse$
2532
+ ];
2533
+ var ApplySchema$ = [9, n0, _AS,
2534
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/schema/apply", 200] }, () => ApplySchemaRequest$, () => ApplySchemaResponse$
2535
+ ];
2536
+ var AttachObject$ = [9, n0, _AO,
2537
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/object/attach", 200] }, () => AttachObjectRequest$, () => AttachObjectResponse$
2538
+ ];
2539
+ var AttachPolicy$ = [9, n0, _AP,
2540
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/policy/attach", 200] }, () => AttachPolicyRequest$, () => AttachPolicyResponse$
2541
+ ];
2542
+ var AttachToIndex$ = [9, n0, _ATI,
2543
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/index/attach", 200] }, () => AttachToIndexRequest$, () => AttachToIndexResponse$
2544
+ ];
2545
+ var AttachTypedLink$ = [9, n0, _ATL,
2546
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/typedlink/attach", 200] }, () => AttachTypedLinkRequest$, () => AttachTypedLinkResponse$
2547
+ ];
2548
+ var BatchRead$ = [9, n0, _BR,
2549
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/batchread", 200] }, () => BatchReadRequest$, () => BatchReadResponse$
2550
+ ];
2551
+ var BatchWrite$ = [9, n0, _BW,
2552
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/batchwrite", 200] }, () => BatchWriteRequest$, () => BatchWriteResponse$
2553
+ ];
2554
+ var CreateDirectory$ = [9, n0, _CD,
2555
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/directory/create", 200] }, () => CreateDirectoryRequest$, () => CreateDirectoryResponse$
2556
+ ];
2557
+ var CreateFacet$ = [9, n0, _CF,
2558
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/facet/create", 200] }, () => CreateFacetRequest$, () => CreateFacetResponse$
2559
+ ];
2560
+ var CreateIndex$ = [9, n0, _CI,
2561
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/index", 200] }, () => CreateIndexRequest$, () => CreateIndexResponse$
2562
+ ];
2563
+ var CreateObject$ = [9, n0, _CO,
2564
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/object", 200] }, () => CreateObjectRequest$, () => CreateObjectResponse$
2565
+ ];
2566
+ var CreateSchema$ = [9, n0, _CS,
2567
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/schema/create", 200] }, () => CreateSchemaRequest$, () => CreateSchemaResponse$
2568
+ ];
2569
+ var CreateTypedLinkFacet$ = [9, n0, _CTLF,
2570
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/typedlink/facet/create", 200] }, () => CreateTypedLinkFacetRequest$, () => CreateTypedLinkFacetResponse$
2571
+ ];
2572
+ var DeleteDirectory$ = [9, n0, _DD,
2573
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/directory", 200] }, () => DeleteDirectoryRequest$, () => DeleteDirectoryResponse$
2574
+ ];
2575
+ var DeleteFacet$ = [9, n0, _DF,
2576
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/facet/delete", 200] }, () => DeleteFacetRequest$, () => DeleteFacetResponse$
2577
+ ];
2578
+ var DeleteObject$ = [9, n0, _DOe,
2579
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/object/delete", 200] }, () => DeleteObjectRequest$, () => DeleteObjectResponse$
2580
+ ];
2581
+ var DeleteSchema$ = [9, n0, _DS,
2582
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/schema", 200] }, () => DeleteSchemaRequest$, () => DeleteSchemaResponse$
2583
+ ];
2584
+ var DeleteTypedLinkFacet$ = [9, n0, _DTLF,
2585
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/typedlink/facet/delete", 200] }, () => DeleteTypedLinkFacetRequest$, () => DeleteTypedLinkFacetResponse$
2586
+ ];
2587
+ var DetachFromIndex$ = [9, n0, _DFI,
2588
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/index/detach", 200] }, () => DetachFromIndexRequest$, () => DetachFromIndexResponse$
2589
+ ];
2590
+ var DetachObject$ = [9, n0, _DO,
2591
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/object/detach", 200] }, () => DetachObjectRequest$, () => DetachObjectResponse$
2592
+ ];
2593
+ var DetachPolicy$ = [9, n0, _DP,
2594
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/policy/detach", 200] }, () => DetachPolicyRequest$, () => DetachPolicyResponse$
2595
+ ];
2596
+ var DetachTypedLink$ = [9, n0, _DTL,
2597
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/typedlink/detach", 200] }, () => DetachTypedLinkRequest$, () => __Unit
2598
+ ];
2599
+ var DisableDirectory$ = [9, n0, _DDi,
2600
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/directory/disable", 200] }, () => DisableDirectoryRequest$, () => DisableDirectoryResponse$
2601
+ ];
2602
+ var EnableDirectory$ = [9, n0, _ED,
2603
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/directory/enable", 200] }, () => EnableDirectoryRequest$, () => EnableDirectoryResponse$
2604
+ ];
2605
+ var GetAppliedSchemaVersion$ = [9, n0, _GASV,
2606
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/schema/getappliedschema", 200] }, () => GetAppliedSchemaVersionRequest$, () => GetAppliedSchemaVersionResponse$
2607
+ ];
2608
+ var GetDirectory$ = [9, n0, _GD,
2609
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/directory/get", 200] }, () => GetDirectoryRequest$, () => GetDirectoryResponse$
2610
+ ];
2611
+ var GetFacet$ = [9, n0, _GF,
2612
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/facet", 200] }, () => GetFacetRequest$, () => GetFacetResponse$
2613
+ ];
2614
+ var GetLinkAttributes$ = [9, n0, _GLA,
2615
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/typedlink/attributes/get", 200] }, () => GetLinkAttributesRequest$, () => GetLinkAttributesResponse$
2616
+ ];
2617
+ var GetObjectAttributes$ = [9, n0, _GOA,
2618
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/object/attributes/get", 200] }, () => GetObjectAttributesRequest$, () => GetObjectAttributesResponse$
2619
+ ];
2620
+ var GetObjectInformation$ = [9, n0, _GOI,
2621
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/object/information", 200] }, () => GetObjectInformationRequest$, () => GetObjectInformationResponse$
2622
+ ];
2623
+ var GetSchemaAsJson$ = [9, n0, _GSAJ,
2624
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/schema/json", 200] }, () => GetSchemaAsJsonRequest$, () => GetSchemaAsJsonResponse$
2625
+ ];
2626
+ var GetTypedLinkFacetInformation$ = [9, n0, _GTLFI,
2627
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/typedlink/facet/get", 200] }, () => GetTypedLinkFacetInformationRequest$, () => GetTypedLinkFacetInformationResponse$
2628
+ ];
2629
+ var ListAppliedSchemaArns$ = [9, n0, _LASA,
2630
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/schema/applied", 200] }, () => ListAppliedSchemaArnsRequest$, () => ListAppliedSchemaArnsResponse$
2631
+ ];
2632
+ var ListAttachedIndices$ = [9, n0, _LAI,
2633
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/object/indices", 200] }, () => ListAttachedIndicesRequest$, () => ListAttachedIndicesResponse$
2634
+ ];
2635
+ var ListDevelopmentSchemaArns$ = [9, n0, _LDSA,
2636
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/schema/development", 200] }, () => ListDevelopmentSchemaArnsRequest$, () => ListDevelopmentSchemaArnsResponse$
2637
+ ];
2638
+ var ListDirectories$ = [9, n0, _LD,
2639
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/directory/list", 200] }, () => ListDirectoriesRequest$, () => ListDirectoriesResponse$
2640
+ ];
2641
+ var ListFacetAttributes$ = [9, n0, _LFA,
2642
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/facet/attributes", 200] }, () => ListFacetAttributesRequest$, () => ListFacetAttributesResponse$
2643
+ ];
2644
+ var ListFacetNames$ = [9, n0, _LFN,
2645
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/facet/list", 200] }, () => ListFacetNamesRequest$, () => ListFacetNamesResponse$
2646
+ ];
2647
+ var ListIncomingTypedLinks$ = [9, n0, _LITL,
2648
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/typedlink/incoming", 200] }, () => ListIncomingTypedLinksRequest$, () => ListIncomingTypedLinksResponse$
2649
+ ];
2650
+ var ListIndex$ = [9, n0, _LI,
2651
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/index/targets", 200] }, () => ListIndexRequest$, () => ListIndexResponse$
2652
+ ];
2653
+ var ListManagedSchemaArns$ = [9, n0, _LMSA,
2654
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/schema/managed", 200] }, () => ListManagedSchemaArnsRequest$, () => ListManagedSchemaArnsResponse$
2655
+ ];
2656
+ var ListObjectAttributes$ = [9, n0, _LOA,
2657
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/object/attributes", 200] }, () => ListObjectAttributesRequest$, () => ListObjectAttributesResponse$
2658
+ ];
2659
+ var ListObjectChildren$ = [9, n0, _LOC,
2660
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/object/children", 200] }, () => ListObjectChildrenRequest$, () => ListObjectChildrenResponse$
2661
+ ];
2662
+ var ListObjectParentPaths$ = [9, n0, _LOPP,
2663
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/object/parentpaths", 200] }, () => ListObjectParentPathsRequest$, () => ListObjectParentPathsResponse$
2664
+ ];
2665
+ var ListObjectParents$ = [9, n0, _LOP,
2666
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/object/parent", 200] }, () => ListObjectParentsRequest$, () => ListObjectParentsResponse$
2667
+ ];
2668
+ var ListObjectPolicies$ = [9, n0, _LOPi,
2669
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/object/policy", 200] }, () => ListObjectPoliciesRequest$, () => ListObjectPoliciesResponse$
2670
+ ];
2671
+ var ListOutgoingTypedLinks$ = [9, n0, _LOTL,
2672
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/typedlink/outgoing", 200] }, () => ListOutgoingTypedLinksRequest$, () => ListOutgoingTypedLinksResponse$
2673
+ ];
2674
+ var ListPolicyAttachments$ = [9, n0, _LPA,
2675
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/policy/attachment", 200] }, () => ListPolicyAttachmentsRequest$, () => ListPolicyAttachmentsResponse$
2676
+ ];
2677
+ var ListPublishedSchemaArns$ = [9, n0, _LPSA,
2678
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/schema/published", 200] }, () => ListPublishedSchemaArnsRequest$, () => ListPublishedSchemaArnsResponse$
2679
+ ];
2680
+ var ListTagsForResource$ = [9, n0, _LTFR,
2681
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/tags", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
2682
+ ];
2683
+ var ListTypedLinkFacetAttributes$ = [9, n0, _LTLFA,
2684
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/typedlink/facet/attributes", 200] }, () => ListTypedLinkFacetAttributesRequest$, () => ListTypedLinkFacetAttributesResponse$
2685
+ ];
2686
+ var ListTypedLinkFacetNames$ = [9, n0, _LTLFN,
2687
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/typedlink/facet/list", 200] }, () => ListTypedLinkFacetNamesRequest$, () => ListTypedLinkFacetNamesResponse$
2688
+ ];
2689
+ var LookupPolicy$ = [9, n0, _LP,
2690
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/policy/lookup", 200] }, () => LookupPolicyRequest$, () => LookupPolicyResponse$
2691
+ ];
2692
+ var PublishSchema$ = [9, n0, _PS,
2693
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/schema/publish", 200] }, () => PublishSchemaRequest$, () => PublishSchemaResponse$
2694
+ ];
2695
+ var PutSchemaFromJson$ = [9, n0, _PSFJ,
2696
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/schema/json", 200] }, () => PutSchemaFromJsonRequest$, () => PutSchemaFromJsonResponse$
2697
+ ];
2698
+ var RemoveFacetFromObject$ = [9, n0, _RFFO,
2699
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/object/facets/delete", 200] }, () => RemoveFacetFromObjectRequest$, () => RemoveFacetFromObjectResponse$
2700
+ ];
2701
+ var TagResource$ = [9, n0, _TRa,
2702
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/tags/add", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
2703
+ ];
2704
+ var UntagResource$ = [9, n0, _UR,
2705
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/tags/remove", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
2706
+ ];
2707
+ var UpdateFacet$ = [9, n0, _UF,
2708
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/facet", 200] }, () => UpdateFacetRequest$, () => UpdateFacetResponse$
2709
+ ];
2710
+ var UpdateLinkAttributes$ = [9, n0, _ULA,
2711
+ { [_h]: ["POST", "/amazonclouddirectory/2017-01-11/typedlink/attributes/update", 200] }, () => UpdateLinkAttributesRequest$, () => UpdateLinkAttributesResponse$
2712
+ ];
2713
+ var UpdateObjectAttributes$ = [9, n0, _UOA,
2714
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/object/update", 200] }, () => UpdateObjectAttributesRequest$, () => UpdateObjectAttributesResponse$
2715
+ ];
2716
+ var UpdateSchema$ = [9, n0, _US,
2717
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/schema/update", 200] }, () => UpdateSchemaRequest$, () => UpdateSchemaResponse$
2718
+ ];
2719
+ var UpdateTypedLinkFacet$ = [9, n0, _UTLF,
2720
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/typedlink/facet", 200] }, () => UpdateTypedLinkFacetRequest$, () => UpdateTypedLinkFacetResponse$
2721
+ ];
2722
+ var UpgradeAppliedSchema$ = [9, n0, _UAS,
2723
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/schema/upgradeapplied", 200] }, () => UpgradeAppliedSchemaRequest$, () => UpgradeAppliedSchemaResponse$
2724
+ ];
2725
+ var UpgradePublishedSchema$ = [9, n0, _UPS,
2726
+ { [_h]: ["PUT", "/amazonclouddirectory/2017-01-11/schema/upgradepublished", 200] }, () => UpgradePublishedSchemaRequest$, () => UpgradePublishedSchemaResponse$
2727
+ ];
2728
+
2729
+ const getRuntimeConfig$1 = (config) => {
2730
+ return {
2731
+ apiVersion: "2017-01-11",
2732
+ base64Decoder: config?.base64Decoder ?? fromBase64,
2733
+ base64Encoder: config?.base64Encoder ?? toBase64,
2734
+ disableHostPrefix: config?.disableHostPrefix ?? false,
2735
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
2736
+ extensions: config?.extensions ?? [],
2737
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultCloudDirectoryHttpAuthSchemeProvider,
2738
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
2739
+ {
2740
+ schemeId: "aws.auth#sigv4",
2741
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
2742
+ signer: new AwsSdkSigV4Signer(),
2743
+ },
2744
+ ],
2745
+ logger: config?.logger ?? new NoOpLogger(),
2746
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
2747
+ protocolSettings: config?.protocolSettings ?? {
2748
+ defaultNamespace: "com.amazonaws.clouddirectory",
2749
+ errorTypeRegistries,
2750
+ version: "2017-01-11",
2751
+ serviceTarget: "AmazonCloudDirectory_20170111",
2752
+ },
2753
+ serviceId: config?.serviceId ?? "CloudDirectory",
2754
+ urlParser: config?.urlParser ?? parseUrl,
2755
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
2756
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
2757
+ };
2758
+ };
2759
+
2760
+ const getRuntimeConfig = (config) => {
2761
+ emitWarningIfUnsupportedVersion(process.version);
2762
+ const defaultsMode = resolveDefaultsModeConfig(config);
2763
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
2764
+ const clientSharedValues = getRuntimeConfig$1(config);
2765
+ emitWarningIfUnsupportedVersion$1(process.version);
2766
+ const loaderConfig = {
2767
+ profile: config?.profile,
2768
+ logger: clientSharedValues.logger,
2769
+ };
2770
+ return {
2771
+ ...clientSharedValues,
2772
+ ...config,
2773
+ runtime: "node",
2774
+ defaultsMode,
2775
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
2776
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
2777
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
2778
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
2779
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
2780
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
2781
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
2782
+ retryMode: config?.retryMode ??
2783
+ loadConfig({
2784
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
2785
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
2786
+ }, config),
2787
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
2788
+ streamCollector: config?.streamCollector ?? streamCollector,
2789
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
2790
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
2791
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
2792
+ };
2793
+ };
2794
+
34
2795
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
2796
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
2797
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -1118,85 +3879,450 @@ const DirectoryState = {
1118
3879
  ENABLED: "ENABLED",
1119
3880
  };
1120
3881
 
3882
+ exports.AccessDeniedException = AccessDeniedException;
3883
+ exports.AccessDeniedException$ = AccessDeniedException$;
3884
+ exports.AddFacetToObject$ = AddFacetToObject$;
1121
3885
  exports.AddFacetToObjectCommand = AddFacetToObjectCommand;
3886
+ exports.AddFacetToObjectRequest$ = AddFacetToObjectRequest$;
3887
+ exports.AddFacetToObjectResponse$ = AddFacetToObjectResponse$;
3888
+ exports.ApplySchema$ = ApplySchema$;
1122
3889
  exports.ApplySchemaCommand = ApplySchemaCommand;
3890
+ exports.ApplySchemaRequest$ = ApplySchemaRequest$;
3891
+ exports.ApplySchemaResponse$ = ApplySchemaResponse$;
3892
+ exports.AttachObject$ = AttachObject$;
1123
3893
  exports.AttachObjectCommand = AttachObjectCommand;
3894
+ exports.AttachObjectRequest$ = AttachObjectRequest$;
3895
+ exports.AttachObjectResponse$ = AttachObjectResponse$;
3896
+ exports.AttachPolicy$ = AttachPolicy$;
1124
3897
  exports.AttachPolicyCommand = AttachPolicyCommand;
3898
+ exports.AttachPolicyRequest$ = AttachPolicyRequest$;
3899
+ exports.AttachPolicyResponse$ = AttachPolicyResponse$;
3900
+ exports.AttachToIndex$ = AttachToIndex$;
1125
3901
  exports.AttachToIndexCommand = AttachToIndexCommand;
3902
+ exports.AttachToIndexRequest$ = AttachToIndexRequest$;
3903
+ exports.AttachToIndexResponse$ = AttachToIndexResponse$;
3904
+ exports.AttachTypedLink$ = AttachTypedLink$;
1126
3905
  exports.AttachTypedLinkCommand = AttachTypedLinkCommand;
3906
+ exports.AttachTypedLinkRequest$ = AttachTypedLinkRequest$;
3907
+ exports.AttachTypedLinkResponse$ = AttachTypedLinkResponse$;
3908
+ exports.AttributeKey$ = AttributeKey$;
3909
+ exports.AttributeKeyAndValue$ = AttributeKeyAndValue$;
3910
+ exports.AttributeNameAndValue$ = AttributeNameAndValue$;
3911
+ exports.BatchAddFacetToObject$ = BatchAddFacetToObject$;
3912
+ exports.BatchAddFacetToObjectResponse$ = BatchAddFacetToObjectResponse$;
3913
+ exports.BatchAttachObject$ = BatchAttachObject$;
3914
+ exports.BatchAttachObjectResponse$ = BatchAttachObjectResponse$;
3915
+ exports.BatchAttachPolicy$ = BatchAttachPolicy$;
3916
+ exports.BatchAttachPolicyResponse$ = BatchAttachPolicyResponse$;
3917
+ exports.BatchAttachToIndex$ = BatchAttachToIndex$;
3918
+ exports.BatchAttachToIndexResponse$ = BatchAttachToIndexResponse$;
3919
+ exports.BatchAttachTypedLink$ = BatchAttachTypedLink$;
3920
+ exports.BatchAttachTypedLinkResponse$ = BatchAttachTypedLinkResponse$;
3921
+ exports.BatchCreateIndex$ = BatchCreateIndex$;
3922
+ exports.BatchCreateIndexResponse$ = BatchCreateIndexResponse$;
3923
+ exports.BatchCreateObject$ = BatchCreateObject$;
3924
+ exports.BatchCreateObjectResponse$ = BatchCreateObjectResponse$;
3925
+ exports.BatchDeleteObject$ = BatchDeleteObject$;
3926
+ exports.BatchDeleteObjectResponse$ = BatchDeleteObjectResponse$;
3927
+ exports.BatchDetachFromIndex$ = BatchDetachFromIndex$;
3928
+ exports.BatchDetachFromIndexResponse$ = BatchDetachFromIndexResponse$;
3929
+ exports.BatchDetachObject$ = BatchDetachObject$;
3930
+ exports.BatchDetachObjectResponse$ = BatchDetachObjectResponse$;
3931
+ exports.BatchDetachPolicy$ = BatchDetachPolicy$;
3932
+ exports.BatchDetachPolicyResponse$ = BatchDetachPolicyResponse$;
3933
+ exports.BatchDetachTypedLink$ = BatchDetachTypedLink$;
3934
+ exports.BatchDetachTypedLinkResponse$ = BatchDetachTypedLinkResponse$;
3935
+ exports.BatchGetLinkAttributes$ = BatchGetLinkAttributes$;
3936
+ exports.BatchGetLinkAttributesResponse$ = BatchGetLinkAttributesResponse$;
3937
+ exports.BatchGetObjectAttributes$ = BatchGetObjectAttributes$;
3938
+ exports.BatchGetObjectAttributesResponse$ = BatchGetObjectAttributesResponse$;
3939
+ exports.BatchGetObjectInformation$ = BatchGetObjectInformation$;
3940
+ exports.BatchGetObjectInformationResponse$ = BatchGetObjectInformationResponse$;
3941
+ exports.BatchListAttachedIndices$ = BatchListAttachedIndices$;
3942
+ exports.BatchListAttachedIndicesResponse$ = BatchListAttachedIndicesResponse$;
3943
+ exports.BatchListIncomingTypedLinks$ = BatchListIncomingTypedLinks$;
3944
+ exports.BatchListIncomingTypedLinksResponse$ = BatchListIncomingTypedLinksResponse$;
3945
+ exports.BatchListIndex$ = BatchListIndex$;
3946
+ exports.BatchListIndexResponse$ = BatchListIndexResponse$;
3947
+ exports.BatchListObjectAttributes$ = BatchListObjectAttributes$;
3948
+ exports.BatchListObjectAttributesResponse$ = BatchListObjectAttributesResponse$;
3949
+ exports.BatchListObjectChildren$ = BatchListObjectChildren$;
3950
+ exports.BatchListObjectChildrenResponse$ = BatchListObjectChildrenResponse$;
3951
+ exports.BatchListObjectParentPaths$ = BatchListObjectParentPaths$;
3952
+ exports.BatchListObjectParentPathsResponse$ = BatchListObjectParentPathsResponse$;
3953
+ exports.BatchListObjectParents$ = BatchListObjectParents$;
3954
+ exports.BatchListObjectParentsResponse$ = BatchListObjectParentsResponse$;
3955
+ exports.BatchListObjectPolicies$ = BatchListObjectPolicies$;
3956
+ exports.BatchListObjectPoliciesResponse$ = BatchListObjectPoliciesResponse$;
3957
+ exports.BatchListOutgoingTypedLinks$ = BatchListOutgoingTypedLinks$;
3958
+ exports.BatchListOutgoingTypedLinksResponse$ = BatchListOutgoingTypedLinksResponse$;
3959
+ exports.BatchListPolicyAttachments$ = BatchListPolicyAttachments$;
3960
+ exports.BatchListPolicyAttachmentsResponse$ = BatchListPolicyAttachmentsResponse$;
3961
+ exports.BatchLookupPolicy$ = BatchLookupPolicy$;
3962
+ exports.BatchLookupPolicyResponse$ = BatchLookupPolicyResponse$;
3963
+ exports.BatchRead$ = BatchRead$;
1127
3964
  exports.BatchReadCommand = BatchReadCommand;
3965
+ exports.BatchReadException$ = BatchReadException$;
1128
3966
  exports.BatchReadExceptionType = BatchReadExceptionType;
3967
+ exports.BatchReadOperation$ = BatchReadOperation$;
3968
+ exports.BatchReadOperationResponse$ = BatchReadOperationResponse$;
3969
+ exports.BatchReadRequest$ = BatchReadRequest$;
3970
+ exports.BatchReadResponse$ = BatchReadResponse$;
3971
+ exports.BatchReadSuccessfulResponse$ = BatchReadSuccessfulResponse$;
3972
+ exports.BatchRemoveFacetFromObject$ = BatchRemoveFacetFromObject$;
3973
+ exports.BatchRemoveFacetFromObjectResponse$ = BatchRemoveFacetFromObjectResponse$;
3974
+ exports.BatchUpdateLinkAttributes$ = BatchUpdateLinkAttributes$;
3975
+ exports.BatchUpdateLinkAttributesResponse$ = BatchUpdateLinkAttributesResponse$;
3976
+ exports.BatchUpdateObjectAttributes$ = BatchUpdateObjectAttributes$;
3977
+ exports.BatchUpdateObjectAttributesResponse$ = BatchUpdateObjectAttributesResponse$;
3978
+ exports.BatchWrite$ = BatchWrite$;
1129
3979
  exports.BatchWriteCommand = BatchWriteCommand;
3980
+ exports.BatchWriteException = BatchWriteException;
3981
+ exports.BatchWriteException$ = BatchWriteException$;
1130
3982
  exports.BatchWriteExceptionType = BatchWriteExceptionType;
3983
+ exports.BatchWriteOperation$ = BatchWriteOperation$;
3984
+ exports.BatchWriteOperationResponse$ = BatchWriteOperationResponse$;
3985
+ exports.BatchWriteRequest$ = BatchWriteRequest$;
3986
+ exports.BatchWriteResponse$ = BatchWriteResponse$;
3987
+ exports.CannotListParentOfRootException = CannotListParentOfRootException;
3988
+ exports.CannotListParentOfRootException$ = CannotListParentOfRootException$;
1131
3989
  exports.CloudDirectory = CloudDirectory;
1132
3990
  exports.CloudDirectoryClient = CloudDirectoryClient;
3991
+ exports.CloudDirectoryServiceException = CloudDirectoryServiceException;
3992
+ exports.CloudDirectoryServiceException$ = CloudDirectoryServiceException$;
1133
3993
  exports.ConsistencyLevel = ConsistencyLevel;
3994
+ exports.CreateDirectory$ = CreateDirectory$;
1134
3995
  exports.CreateDirectoryCommand = CreateDirectoryCommand;
3996
+ exports.CreateDirectoryRequest$ = CreateDirectoryRequest$;
3997
+ exports.CreateDirectoryResponse$ = CreateDirectoryResponse$;
3998
+ exports.CreateFacet$ = CreateFacet$;
1135
3999
  exports.CreateFacetCommand = CreateFacetCommand;
4000
+ exports.CreateFacetRequest$ = CreateFacetRequest$;
4001
+ exports.CreateFacetResponse$ = CreateFacetResponse$;
4002
+ exports.CreateIndex$ = CreateIndex$;
1136
4003
  exports.CreateIndexCommand = CreateIndexCommand;
4004
+ exports.CreateIndexRequest$ = CreateIndexRequest$;
4005
+ exports.CreateIndexResponse$ = CreateIndexResponse$;
4006
+ exports.CreateObject$ = CreateObject$;
1137
4007
  exports.CreateObjectCommand = CreateObjectCommand;
4008
+ exports.CreateObjectRequest$ = CreateObjectRequest$;
4009
+ exports.CreateObjectResponse$ = CreateObjectResponse$;
4010
+ exports.CreateSchema$ = CreateSchema$;
1138
4011
  exports.CreateSchemaCommand = CreateSchemaCommand;
4012
+ exports.CreateSchemaRequest$ = CreateSchemaRequest$;
4013
+ exports.CreateSchemaResponse$ = CreateSchemaResponse$;
4014
+ exports.CreateTypedLinkFacet$ = CreateTypedLinkFacet$;
1139
4015
  exports.CreateTypedLinkFacetCommand = CreateTypedLinkFacetCommand;
4016
+ exports.CreateTypedLinkFacetRequest$ = CreateTypedLinkFacetRequest$;
4017
+ exports.CreateTypedLinkFacetResponse$ = CreateTypedLinkFacetResponse$;
4018
+ exports.DeleteDirectory$ = DeleteDirectory$;
1140
4019
  exports.DeleteDirectoryCommand = DeleteDirectoryCommand;
4020
+ exports.DeleteDirectoryRequest$ = DeleteDirectoryRequest$;
4021
+ exports.DeleteDirectoryResponse$ = DeleteDirectoryResponse$;
4022
+ exports.DeleteFacet$ = DeleteFacet$;
1141
4023
  exports.DeleteFacetCommand = DeleteFacetCommand;
4024
+ exports.DeleteFacetRequest$ = DeleteFacetRequest$;
4025
+ exports.DeleteFacetResponse$ = DeleteFacetResponse$;
4026
+ exports.DeleteObject$ = DeleteObject$;
1142
4027
  exports.DeleteObjectCommand = DeleteObjectCommand;
4028
+ exports.DeleteObjectRequest$ = DeleteObjectRequest$;
4029
+ exports.DeleteObjectResponse$ = DeleteObjectResponse$;
4030
+ exports.DeleteSchema$ = DeleteSchema$;
1143
4031
  exports.DeleteSchemaCommand = DeleteSchemaCommand;
4032
+ exports.DeleteSchemaRequest$ = DeleteSchemaRequest$;
4033
+ exports.DeleteSchemaResponse$ = DeleteSchemaResponse$;
4034
+ exports.DeleteTypedLinkFacet$ = DeleteTypedLinkFacet$;
1144
4035
  exports.DeleteTypedLinkFacetCommand = DeleteTypedLinkFacetCommand;
4036
+ exports.DeleteTypedLinkFacetRequest$ = DeleteTypedLinkFacetRequest$;
4037
+ exports.DeleteTypedLinkFacetResponse$ = DeleteTypedLinkFacetResponse$;
4038
+ exports.DetachFromIndex$ = DetachFromIndex$;
1145
4039
  exports.DetachFromIndexCommand = DetachFromIndexCommand;
4040
+ exports.DetachFromIndexRequest$ = DetachFromIndexRequest$;
4041
+ exports.DetachFromIndexResponse$ = DetachFromIndexResponse$;
4042
+ exports.DetachObject$ = DetachObject$;
1146
4043
  exports.DetachObjectCommand = DetachObjectCommand;
4044
+ exports.DetachObjectRequest$ = DetachObjectRequest$;
4045
+ exports.DetachObjectResponse$ = DetachObjectResponse$;
4046
+ exports.DetachPolicy$ = DetachPolicy$;
1147
4047
  exports.DetachPolicyCommand = DetachPolicyCommand;
4048
+ exports.DetachPolicyRequest$ = DetachPolicyRequest$;
4049
+ exports.DetachPolicyResponse$ = DetachPolicyResponse$;
4050
+ exports.DetachTypedLink$ = DetachTypedLink$;
1148
4051
  exports.DetachTypedLinkCommand = DetachTypedLinkCommand;
4052
+ exports.DetachTypedLinkRequest$ = DetachTypedLinkRequest$;
4053
+ exports.Directory$ = Directory$;
4054
+ exports.DirectoryAlreadyExistsException = DirectoryAlreadyExistsException;
4055
+ exports.DirectoryAlreadyExistsException$ = DirectoryAlreadyExistsException$;
4056
+ exports.DirectoryDeletedException = DirectoryDeletedException;
4057
+ exports.DirectoryDeletedException$ = DirectoryDeletedException$;
4058
+ exports.DirectoryNotDisabledException = DirectoryNotDisabledException;
4059
+ exports.DirectoryNotDisabledException$ = DirectoryNotDisabledException$;
4060
+ exports.DirectoryNotEnabledException = DirectoryNotEnabledException;
4061
+ exports.DirectoryNotEnabledException$ = DirectoryNotEnabledException$;
1149
4062
  exports.DirectoryState = DirectoryState;
4063
+ exports.DisableDirectory$ = DisableDirectory$;
1150
4064
  exports.DisableDirectoryCommand = DisableDirectoryCommand;
4065
+ exports.DisableDirectoryRequest$ = DisableDirectoryRequest$;
4066
+ exports.DisableDirectoryResponse$ = DisableDirectoryResponse$;
4067
+ exports.EnableDirectory$ = EnableDirectory$;
1151
4068
  exports.EnableDirectoryCommand = EnableDirectoryCommand;
4069
+ exports.EnableDirectoryRequest$ = EnableDirectoryRequest$;
4070
+ exports.EnableDirectoryResponse$ = EnableDirectoryResponse$;
4071
+ exports.Facet$ = Facet$;
4072
+ exports.FacetAlreadyExistsException = FacetAlreadyExistsException;
4073
+ exports.FacetAlreadyExistsException$ = FacetAlreadyExistsException$;
4074
+ exports.FacetAttribute$ = FacetAttribute$;
4075
+ exports.FacetAttributeDefinition$ = FacetAttributeDefinition$;
4076
+ exports.FacetAttributeReference$ = FacetAttributeReference$;
1152
4077
  exports.FacetAttributeType = FacetAttributeType;
4078
+ exports.FacetAttributeUpdate$ = FacetAttributeUpdate$;
4079
+ exports.FacetInUseException = FacetInUseException;
4080
+ exports.FacetInUseException$ = FacetInUseException$;
4081
+ exports.FacetNotFoundException = FacetNotFoundException;
4082
+ exports.FacetNotFoundException$ = FacetNotFoundException$;
1153
4083
  exports.FacetStyle = FacetStyle;
4084
+ exports.FacetValidationException = FacetValidationException;
4085
+ exports.FacetValidationException$ = FacetValidationException$;
4086
+ exports.GetAppliedSchemaVersion$ = GetAppliedSchemaVersion$;
1154
4087
  exports.GetAppliedSchemaVersionCommand = GetAppliedSchemaVersionCommand;
4088
+ exports.GetAppliedSchemaVersionRequest$ = GetAppliedSchemaVersionRequest$;
4089
+ exports.GetAppliedSchemaVersionResponse$ = GetAppliedSchemaVersionResponse$;
4090
+ exports.GetDirectory$ = GetDirectory$;
1155
4091
  exports.GetDirectoryCommand = GetDirectoryCommand;
4092
+ exports.GetDirectoryRequest$ = GetDirectoryRequest$;
4093
+ exports.GetDirectoryResponse$ = GetDirectoryResponse$;
4094
+ exports.GetFacet$ = GetFacet$;
1156
4095
  exports.GetFacetCommand = GetFacetCommand;
4096
+ exports.GetFacetRequest$ = GetFacetRequest$;
4097
+ exports.GetFacetResponse$ = GetFacetResponse$;
4098
+ exports.GetLinkAttributes$ = GetLinkAttributes$;
1157
4099
  exports.GetLinkAttributesCommand = GetLinkAttributesCommand;
4100
+ exports.GetLinkAttributesRequest$ = GetLinkAttributesRequest$;
4101
+ exports.GetLinkAttributesResponse$ = GetLinkAttributesResponse$;
4102
+ exports.GetObjectAttributes$ = GetObjectAttributes$;
1158
4103
  exports.GetObjectAttributesCommand = GetObjectAttributesCommand;
4104
+ exports.GetObjectAttributesRequest$ = GetObjectAttributesRequest$;
4105
+ exports.GetObjectAttributesResponse$ = GetObjectAttributesResponse$;
4106
+ exports.GetObjectInformation$ = GetObjectInformation$;
1159
4107
  exports.GetObjectInformationCommand = GetObjectInformationCommand;
4108
+ exports.GetObjectInformationRequest$ = GetObjectInformationRequest$;
4109
+ exports.GetObjectInformationResponse$ = GetObjectInformationResponse$;
4110
+ exports.GetSchemaAsJson$ = GetSchemaAsJson$;
1160
4111
  exports.GetSchemaAsJsonCommand = GetSchemaAsJsonCommand;
4112
+ exports.GetSchemaAsJsonRequest$ = GetSchemaAsJsonRequest$;
4113
+ exports.GetSchemaAsJsonResponse$ = GetSchemaAsJsonResponse$;
4114
+ exports.GetTypedLinkFacetInformation$ = GetTypedLinkFacetInformation$;
1161
4115
  exports.GetTypedLinkFacetInformationCommand = GetTypedLinkFacetInformationCommand;
4116
+ exports.GetTypedLinkFacetInformationRequest$ = GetTypedLinkFacetInformationRequest$;
4117
+ exports.GetTypedLinkFacetInformationResponse$ = GetTypedLinkFacetInformationResponse$;
4118
+ exports.IncompatibleSchemaException = IncompatibleSchemaException;
4119
+ exports.IncompatibleSchemaException$ = IncompatibleSchemaException$;
4120
+ exports.IndexAttachment$ = IndexAttachment$;
4121
+ exports.IndexedAttributeMissingException = IndexedAttributeMissingException;
4122
+ exports.IndexedAttributeMissingException$ = IndexedAttributeMissingException$;
4123
+ exports.InternalServiceException = InternalServiceException;
4124
+ exports.InternalServiceException$ = InternalServiceException$;
4125
+ exports.InvalidArnException = InvalidArnException;
4126
+ exports.InvalidArnException$ = InvalidArnException$;
4127
+ exports.InvalidAttachmentException = InvalidAttachmentException;
4128
+ exports.InvalidAttachmentException$ = InvalidAttachmentException$;
4129
+ exports.InvalidFacetUpdateException = InvalidFacetUpdateException;
4130
+ exports.InvalidFacetUpdateException$ = InvalidFacetUpdateException$;
4131
+ exports.InvalidNextTokenException = InvalidNextTokenException;
4132
+ exports.InvalidNextTokenException$ = InvalidNextTokenException$;
4133
+ exports.InvalidRuleException = InvalidRuleException;
4134
+ exports.InvalidRuleException$ = InvalidRuleException$;
4135
+ exports.InvalidSchemaDocException = InvalidSchemaDocException;
4136
+ exports.InvalidSchemaDocException$ = InvalidSchemaDocException$;
4137
+ exports.InvalidTaggingRequestException = InvalidTaggingRequestException;
4138
+ exports.InvalidTaggingRequestException$ = InvalidTaggingRequestException$;
4139
+ exports.LimitExceededException = LimitExceededException;
4140
+ exports.LimitExceededException$ = LimitExceededException$;
4141
+ exports.LinkAttributeAction$ = LinkAttributeAction$;
4142
+ exports.LinkAttributeUpdate$ = LinkAttributeUpdate$;
4143
+ exports.LinkNameAlreadyInUseException = LinkNameAlreadyInUseException;
4144
+ exports.LinkNameAlreadyInUseException$ = LinkNameAlreadyInUseException$;
4145
+ exports.ListAppliedSchemaArns$ = ListAppliedSchemaArns$;
1162
4146
  exports.ListAppliedSchemaArnsCommand = ListAppliedSchemaArnsCommand;
4147
+ exports.ListAppliedSchemaArnsRequest$ = ListAppliedSchemaArnsRequest$;
4148
+ exports.ListAppliedSchemaArnsResponse$ = ListAppliedSchemaArnsResponse$;
4149
+ exports.ListAttachedIndices$ = ListAttachedIndices$;
1163
4150
  exports.ListAttachedIndicesCommand = ListAttachedIndicesCommand;
4151
+ exports.ListAttachedIndicesRequest$ = ListAttachedIndicesRequest$;
4152
+ exports.ListAttachedIndicesResponse$ = ListAttachedIndicesResponse$;
4153
+ exports.ListDevelopmentSchemaArns$ = ListDevelopmentSchemaArns$;
1164
4154
  exports.ListDevelopmentSchemaArnsCommand = ListDevelopmentSchemaArnsCommand;
4155
+ exports.ListDevelopmentSchemaArnsRequest$ = ListDevelopmentSchemaArnsRequest$;
4156
+ exports.ListDevelopmentSchemaArnsResponse$ = ListDevelopmentSchemaArnsResponse$;
4157
+ exports.ListDirectories$ = ListDirectories$;
1165
4158
  exports.ListDirectoriesCommand = ListDirectoriesCommand;
4159
+ exports.ListDirectoriesRequest$ = ListDirectoriesRequest$;
4160
+ exports.ListDirectoriesResponse$ = ListDirectoriesResponse$;
4161
+ exports.ListFacetAttributes$ = ListFacetAttributes$;
1166
4162
  exports.ListFacetAttributesCommand = ListFacetAttributesCommand;
4163
+ exports.ListFacetAttributesRequest$ = ListFacetAttributesRequest$;
4164
+ exports.ListFacetAttributesResponse$ = ListFacetAttributesResponse$;
4165
+ exports.ListFacetNames$ = ListFacetNames$;
1167
4166
  exports.ListFacetNamesCommand = ListFacetNamesCommand;
4167
+ exports.ListFacetNamesRequest$ = ListFacetNamesRequest$;
4168
+ exports.ListFacetNamesResponse$ = ListFacetNamesResponse$;
4169
+ exports.ListIncomingTypedLinks$ = ListIncomingTypedLinks$;
1168
4170
  exports.ListIncomingTypedLinksCommand = ListIncomingTypedLinksCommand;
4171
+ exports.ListIncomingTypedLinksRequest$ = ListIncomingTypedLinksRequest$;
4172
+ exports.ListIncomingTypedLinksResponse$ = ListIncomingTypedLinksResponse$;
4173
+ exports.ListIndex$ = ListIndex$;
1169
4174
  exports.ListIndexCommand = ListIndexCommand;
4175
+ exports.ListIndexRequest$ = ListIndexRequest$;
4176
+ exports.ListIndexResponse$ = ListIndexResponse$;
4177
+ exports.ListManagedSchemaArns$ = ListManagedSchemaArns$;
1170
4178
  exports.ListManagedSchemaArnsCommand = ListManagedSchemaArnsCommand;
4179
+ exports.ListManagedSchemaArnsRequest$ = ListManagedSchemaArnsRequest$;
4180
+ exports.ListManagedSchemaArnsResponse$ = ListManagedSchemaArnsResponse$;
4181
+ exports.ListObjectAttributes$ = ListObjectAttributes$;
1171
4182
  exports.ListObjectAttributesCommand = ListObjectAttributesCommand;
4183
+ exports.ListObjectAttributesRequest$ = ListObjectAttributesRequest$;
4184
+ exports.ListObjectAttributesResponse$ = ListObjectAttributesResponse$;
4185
+ exports.ListObjectChildren$ = ListObjectChildren$;
1172
4186
  exports.ListObjectChildrenCommand = ListObjectChildrenCommand;
4187
+ exports.ListObjectChildrenRequest$ = ListObjectChildrenRequest$;
4188
+ exports.ListObjectChildrenResponse$ = ListObjectChildrenResponse$;
4189
+ exports.ListObjectParentPaths$ = ListObjectParentPaths$;
1173
4190
  exports.ListObjectParentPathsCommand = ListObjectParentPathsCommand;
4191
+ exports.ListObjectParentPathsRequest$ = ListObjectParentPathsRequest$;
4192
+ exports.ListObjectParentPathsResponse$ = ListObjectParentPathsResponse$;
4193
+ exports.ListObjectParents$ = ListObjectParents$;
1174
4194
  exports.ListObjectParentsCommand = ListObjectParentsCommand;
4195
+ exports.ListObjectParentsRequest$ = ListObjectParentsRequest$;
4196
+ exports.ListObjectParentsResponse$ = ListObjectParentsResponse$;
4197
+ exports.ListObjectPolicies$ = ListObjectPolicies$;
1175
4198
  exports.ListObjectPoliciesCommand = ListObjectPoliciesCommand;
4199
+ exports.ListObjectPoliciesRequest$ = ListObjectPoliciesRequest$;
4200
+ exports.ListObjectPoliciesResponse$ = ListObjectPoliciesResponse$;
4201
+ exports.ListOutgoingTypedLinks$ = ListOutgoingTypedLinks$;
1176
4202
  exports.ListOutgoingTypedLinksCommand = ListOutgoingTypedLinksCommand;
4203
+ exports.ListOutgoingTypedLinksRequest$ = ListOutgoingTypedLinksRequest$;
4204
+ exports.ListOutgoingTypedLinksResponse$ = ListOutgoingTypedLinksResponse$;
4205
+ exports.ListPolicyAttachments$ = ListPolicyAttachments$;
1177
4206
  exports.ListPolicyAttachmentsCommand = ListPolicyAttachmentsCommand;
4207
+ exports.ListPolicyAttachmentsRequest$ = ListPolicyAttachmentsRequest$;
4208
+ exports.ListPolicyAttachmentsResponse$ = ListPolicyAttachmentsResponse$;
4209
+ exports.ListPublishedSchemaArns$ = ListPublishedSchemaArns$;
1178
4210
  exports.ListPublishedSchemaArnsCommand = ListPublishedSchemaArnsCommand;
4211
+ exports.ListPublishedSchemaArnsRequest$ = ListPublishedSchemaArnsRequest$;
4212
+ exports.ListPublishedSchemaArnsResponse$ = ListPublishedSchemaArnsResponse$;
4213
+ exports.ListTagsForResource$ = ListTagsForResource$;
1179
4214
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
4215
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
4216
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
4217
+ exports.ListTypedLinkFacetAttributes$ = ListTypedLinkFacetAttributes$;
1180
4218
  exports.ListTypedLinkFacetAttributesCommand = ListTypedLinkFacetAttributesCommand;
4219
+ exports.ListTypedLinkFacetAttributesRequest$ = ListTypedLinkFacetAttributesRequest$;
4220
+ exports.ListTypedLinkFacetAttributesResponse$ = ListTypedLinkFacetAttributesResponse$;
4221
+ exports.ListTypedLinkFacetNames$ = ListTypedLinkFacetNames$;
1181
4222
  exports.ListTypedLinkFacetNamesCommand = ListTypedLinkFacetNamesCommand;
4223
+ exports.ListTypedLinkFacetNamesRequest$ = ListTypedLinkFacetNamesRequest$;
4224
+ exports.ListTypedLinkFacetNamesResponse$ = ListTypedLinkFacetNamesResponse$;
4225
+ exports.LookupPolicy$ = LookupPolicy$;
1182
4226
  exports.LookupPolicyCommand = LookupPolicyCommand;
4227
+ exports.LookupPolicyRequest$ = LookupPolicyRequest$;
4228
+ exports.LookupPolicyResponse$ = LookupPolicyResponse$;
4229
+ exports.NotIndexException = NotIndexException;
4230
+ exports.NotIndexException$ = NotIndexException$;
4231
+ exports.NotNodeException = NotNodeException;
4232
+ exports.NotNodeException$ = NotNodeException$;
4233
+ exports.NotPolicyException = NotPolicyException;
4234
+ exports.NotPolicyException$ = NotPolicyException$;
4235
+ exports.ObjectAlreadyDetachedException = ObjectAlreadyDetachedException;
4236
+ exports.ObjectAlreadyDetachedException$ = ObjectAlreadyDetachedException$;
4237
+ exports.ObjectAttributeAction$ = ObjectAttributeAction$;
4238
+ exports.ObjectAttributeRange$ = ObjectAttributeRange$;
4239
+ exports.ObjectAttributeUpdate$ = ObjectAttributeUpdate$;
4240
+ exports.ObjectIdentifierAndLinkNameTuple$ = ObjectIdentifierAndLinkNameTuple$;
4241
+ exports.ObjectNotDetachedException = ObjectNotDetachedException;
4242
+ exports.ObjectNotDetachedException$ = ObjectNotDetachedException$;
4243
+ exports.ObjectReference$ = ObjectReference$;
1183
4244
  exports.ObjectType = ObjectType;
4245
+ exports.PathToObjectIdentifiers$ = PathToObjectIdentifiers$;
4246
+ exports.PolicyAttachment$ = PolicyAttachment$;
4247
+ exports.PolicyToPath$ = PolicyToPath$;
4248
+ exports.PublishSchema$ = PublishSchema$;
1184
4249
  exports.PublishSchemaCommand = PublishSchemaCommand;
4250
+ exports.PublishSchemaRequest$ = PublishSchemaRequest$;
4251
+ exports.PublishSchemaResponse$ = PublishSchemaResponse$;
4252
+ exports.PutSchemaFromJson$ = PutSchemaFromJson$;
1185
4253
  exports.PutSchemaFromJsonCommand = PutSchemaFromJsonCommand;
4254
+ exports.PutSchemaFromJsonRequest$ = PutSchemaFromJsonRequest$;
4255
+ exports.PutSchemaFromJsonResponse$ = PutSchemaFromJsonResponse$;
1186
4256
  exports.RangeMode = RangeMode;
4257
+ exports.RemoveFacetFromObject$ = RemoveFacetFromObject$;
1187
4258
  exports.RemoveFacetFromObjectCommand = RemoveFacetFromObjectCommand;
4259
+ exports.RemoveFacetFromObjectRequest$ = RemoveFacetFromObjectRequest$;
4260
+ exports.RemoveFacetFromObjectResponse$ = RemoveFacetFromObjectResponse$;
1188
4261
  exports.RequiredAttributeBehavior = RequiredAttributeBehavior;
4262
+ exports.ResourceNotFoundException = ResourceNotFoundException;
4263
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
4264
+ exports.RetryableConflictException = RetryableConflictException;
4265
+ exports.RetryableConflictException$ = RetryableConflictException$;
4266
+ exports.Rule$ = Rule$;
1189
4267
  exports.RuleType = RuleType;
4268
+ exports.SchemaAlreadyExistsException = SchemaAlreadyExistsException;
4269
+ exports.SchemaAlreadyExistsException$ = SchemaAlreadyExistsException$;
4270
+ exports.SchemaAlreadyPublishedException = SchemaAlreadyPublishedException;
4271
+ exports.SchemaAlreadyPublishedException$ = SchemaAlreadyPublishedException$;
4272
+ exports.SchemaFacet$ = SchemaFacet$;
4273
+ exports.StillContainsLinksException = StillContainsLinksException;
4274
+ exports.StillContainsLinksException$ = StillContainsLinksException$;
4275
+ exports.Tag$ = Tag$;
4276
+ exports.TagResource$ = TagResource$;
1190
4277
  exports.TagResourceCommand = TagResourceCommand;
4278
+ exports.TagResourceRequest$ = TagResourceRequest$;
4279
+ exports.TagResourceResponse$ = TagResourceResponse$;
4280
+ exports.TypedAttributeValue$ = TypedAttributeValue$;
4281
+ exports.TypedAttributeValueRange$ = TypedAttributeValueRange$;
4282
+ exports.TypedLinkAttributeDefinition$ = TypedLinkAttributeDefinition$;
4283
+ exports.TypedLinkAttributeRange$ = TypedLinkAttributeRange$;
4284
+ exports.TypedLinkFacet$ = TypedLinkFacet$;
4285
+ exports.TypedLinkFacetAttributeUpdate$ = TypedLinkFacetAttributeUpdate$;
4286
+ exports.TypedLinkSchemaAndFacetName$ = TypedLinkSchemaAndFacetName$;
4287
+ exports.TypedLinkSpecifier$ = TypedLinkSpecifier$;
4288
+ exports.UnsupportedIndexTypeException = UnsupportedIndexTypeException;
4289
+ exports.UnsupportedIndexTypeException$ = UnsupportedIndexTypeException$;
4290
+ exports.UntagResource$ = UntagResource$;
1191
4291
  exports.UntagResourceCommand = UntagResourceCommand;
4292
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
4293
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1192
4294
  exports.UpdateActionType = UpdateActionType;
4295
+ exports.UpdateFacet$ = UpdateFacet$;
1193
4296
  exports.UpdateFacetCommand = UpdateFacetCommand;
4297
+ exports.UpdateFacetRequest$ = UpdateFacetRequest$;
4298
+ exports.UpdateFacetResponse$ = UpdateFacetResponse$;
4299
+ exports.UpdateLinkAttributes$ = UpdateLinkAttributes$;
1194
4300
  exports.UpdateLinkAttributesCommand = UpdateLinkAttributesCommand;
4301
+ exports.UpdateLinkAttributesRequest$ = UpdateLinkAttributesRequest$;
4302
+ exports.UpdateLinkAttributesResponse$ = UpdateLinkAttributesResponse$;
4303
+ exports.UpdateObjectAttributes$ = UpdateObjectAttributes$;
1195
4304
  exports.UpdateObjectAttributesCommand = UpdateObjectAttributesCommand;
4305
+ exports.UpdateObjectAttributesRequest$ = UpdateObjectAttributesRequest$;
4306
+ exports.UpdateObjectAttributesResponse$ = UpdateObjectAttributesResponse$;
4307
+ exports.UpdateSchema$ = UpdateSchema$;
1196
4308
  exports.UpdateSchemaCommand = UpdateSchemaCommand;
4309
+ exports.UpdateSchemaRequest$ = UpdateSchemaRequest$;
4310
+ exports.UpdateSchemaResponse$ = UpdateSchemaResponse$;
4311
+ exports.UpdateTypedLinkFacet$ = UpdateTypedLinkFacet$;
1197
4312
  exports.UpdateTypedLinkFacetCommand = UpdateTypedLinkFacetCommand;
4313
+ exports.UpdateTypedLinkFacetRequest$ = UpdateTypedLinkFacetRequest$;
4314
+ exports.UpdateTypedLinkFacetResponse$ = UpdateTypedLinkFacetResponse$;
4315
+ exports.UpgradeAppliedSchema$ = UpgradeAppliedSchema$;
1198
4316
  exports.UpgradeAppliedSchemaCommand = UpgradeAppliedSchemaCommand;
4317
+ exports.UpgradeAppliedSchemaRequest$ = UpgradeAppliedSchemaRequest$;
4318
+ exports.UpgradeAppliedSchemaResponse$ = UpgradeAppliedSchemaResponse$;
4319
+ exports.UpgradePublishedSchema$ = UpgradePublishedSchema$;
1199
4320
  exports.UpgradePublishedSchemaCommand = UpgradePublishedSchemaCommand;
4321
+ exports.UpgradePublishedSchemaRequest$ = UpgradePublishedSchemaRequest$;
4322
+ exports.UpgradePublishedSchemaResponse$ = UpgradePublishedSchemaResponse$;
4323
+ exports.ValidationException = ValidationException;
4324
+ exports.ValidationException$ = ValidationException$;
4325
+ exports.errorTypeRegistries = errorTypeRegistries;
1200
4326
  exports.paginateListAppliedSchemaArns = paginateListAppliedSchemaArns;
1201
4327
  exports.paginateListAttachedIndices = paginateListAttachedIndices;
1202
4328
  exports.paginateListDevelopmentSchemaArns = paginateListDevelopmentSchemaArns;