@aws-sdk/client-resource-explorer-2 3.928.0 → 3.929.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 +991 -1509
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/ResourceExplorer2Client.js +2 -0
- package/dist-es/commands/AssociateDefaultViewCommand.js +3 -9
- package/dist-es/commands/BatchGetViewCommand.js +3 -10
- package/dist-es/commands/CreateIndexCommand.js +3 -10
- package/dist-es/commands/CreateResourceExplorerSetupCommand.js +3 -9
- package/dist-es/commands/CreateViewCommand.js +3 -10
- package/dist-es/commands/DeleteIndexCommand.js +3 -9
- package/dist-es/commands/DeleteResourceExplorerSetupCommand.js +3 -9
- package/dist-es/commands/DeleteViewCommand.js +3 -9
- package/dist-es/commands/DisassociateDefaultViewCommand.js +3 -9
- package/dist-es/commands/GetAccountLevelServiceConfigurationCommand.js +3 -9
- package/dist-es/commands/GetDefaultViewCommand.js +3 -9
- package/dist-es/commands/GetIndexCommand.js +3 -10
- package/dist-es/commands/GetManagedViewCommand.js +3 -10
- package/dist-es/commands/GetResourceExplorerSetupCommand.js +3 -10
- package/dist-es/commands/GetServiceIndexCommand.js +3 -9
- package/dist-es/commands/GetServiceViewCommand.js +3 -10
- package/dist-es/commands/GetViewCommand.js +3 -10
- package/dist-es/commands/ListIndexesCommand.js +3 -9
- package/dist-es/commands/ListIndexesForMembersCommand.js +3 -9
- package/dist-es/commands/ListManagedViewsCommand.js +3 -9
- package/dist-es/commands/ListResourcesCommand.js +3 -10
- package/dist-es/commands/ListServiceIndexesCommand.js +3 -9
- package/dist-es/commands/ListServiceViewsCommand.js +3 -9
- package/dist-es/commands/ListStreamingAccessForServicesCommand.js +3 -9
- package/dist-es/commands/ListSupportedResourceTypesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
- package/dist-es/commands/ListViewsCommand.js +3 -9
- package/dist-es/commands/SearchCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -10
- package/dist-es/commands/UntagResourceCommand.js +3 -10
- package/dist-es/commands/UpdateIndexTypeCommand.js +3 -9
- package/dist-es/commands/UpdateViewCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -88
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +907 -0
- package/dist-types/ResourceExplorer2Client.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -88
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +139 -0
- package/dist-types/ts3.4/ResourceExplorer2Client.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -52
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +146 -0
- package/package.json +2 -3
- package/dist-es/protocols/Aws_restJson1.js +0 -1154
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -290
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -389
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
|
-
var uuid = require('@smithy/uuid');
|
|
20
18
|
|
|
21
19
|
const resolveClientEndpointParameters = (options) => {
|
|
22
20
|
return Object.assign(options, {
|
|
@@ -92,6 +90,7 @@ class ResourceExplorer2Client extends smithyClient.Client {
|
|
|
92
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -111,14 +110,14 @@ class ResourceExplorer2Client extends smithyClient.Client {
|
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
|
|
114
|
-
class ResourceExplorer2ServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let ResourceExplorer2ServiceException$1 = class ResourceExplorer2ServiceException extends smithyClient.ServiceException {
|
|
115
114
|
constructor(options) {
|
|
116
115
|
super(options);
|
|
117
116
|
Object.setPrototypeOf(this, ResourceExplorer2ServiceException.prototype);
|
|
118
117
|
}
|
|
119
|
-
}
|
|
118
|
+
};
|
|
120
119
|
|
|
121
|
-
class AccessDeniedException extends ResourceExplorer2ServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends ResourceExplorer2ServiceException$1 {
|
|
122
121
|
name = "AccessDeniedException";
|
|
123
122
|
$fault = "client";
|
|
124
123
|
Message;
|
|
@@ -131,8 +130,8 @@ class AccessDeniedException extends ResourceExplorer2ServiceException {
|
|
|
131
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
132
131
|
this.Message = opts.Message;
|
|
133
132
|
}
|
|
134
|
-
}
|
|
135
|
-
class InternalServerException extends ResourceExplorer2ServiceException {
|
|
133
|
+
};
|
|
134
|
+
let InternalServerException$1 = class InternalServerException extends ResourceExplorer2ServiceException$1 {
|
|
136
135
|
name = "InternalServerException";
|
|
137
136
|
$fault = "server";
|
|
138
137
|
Message;
|
|
@@ -145,8 +144,8 @@ class InternalServerException extends ResourceExplorer2ServiceException {
|
|
|
145
144
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
146
145
|
this.Message = opts.Message;
|
|
147
146
|
}
|
|
148
|
-
}
|
|
149
|
-
class ResourceNotFoundException extends ResourceExplorer2ServiceException {
|
|
147
|
+
};
|
|
148
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends ResourceExplorer2ServiceException$1 {
|
|
150
149
|
name = "ResourceNotFoundException";
|
|
151
150
|
$fault = "client";
|
|
152
151
|
Message;
|
|
@@ -159,8 +158,8 @@ class ResourceNotFoundException extends ResourceExplorer2ServiceException {
|
|
|
159
158
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
160
159
|
this.Message = opts.Message;
|
|
161
160
|
}
|
|
162
|
-
}
|
|
163
|
-
class ThrottlingException extends ResourceExplorer2ServiceException {
|
|
161
|
+
};
|
|
162
|
+
let ThrottlingException$1 = class ThrottlingException extends ResourceExplorer2ServiceException$1 {
|
|
164
163
|
name = "ThrottlingException";
|
|
165
164
|
$fault = "client";
|
|
166
165
|
Message;
|
|
@@ -173,8 +172,8 @@ class ThrottlingException extends ResourceExplorer2ServiceException {
|
|
|
173
172
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
174
173
|
this.Message = opts.Message;
|
|
175
174
|
}
|
|
176
|
-
}
|
|
177
|
-
class ValidationException extends ResourceExplorer2ServiceException {
|
|
175
|
+
};
|
|
176
|
+
let ValidationException$1 = class ValidationException extends ResourceExplorer2ServiceException$1 {
|
|
178
177
|
name = "ValidationException";
|
|
179
178
|
$fault = "client";
|
|
180
179
|
Message;
|
|
@@ -189,12 +188,12 @@ class ValidationException extends ResourceExplorer2ServiceException {
|
|
|
189
188
|
this.Message = opts.Message;
|
|
190
189
|
this.FieldList = opts.FieldList;
|
|
191
190
|
}
|
|
192
|
-
}
|
|
191
|
+
};
|
|
193
192
|
const AWSServiceAccessStatus = {
|
|
194
193
|
DISABLED: "DISABLED",
|
|
195
194
|
ENABLED: "ENABLED",
|
|
196
195
|
};
|
|
197
|
-
class UnauthorizedException extends ResourceExplorer2ServiceException {
|
|
196
|
+
let UnauthorizedException$1 = class UnauthorizedException extends ResourceExplorer2ServiceException$1 {
|
|
198
197
|
name = "UnauthorizedException";
|
|
199
198
|
$fault = "client";
|
|
200
199
|
Message;
|
|
@@ -207,8 +206,8 @@ class UnauthorizedException extends ResourceExplorer2ServiceException {
|
|
|
207
206
|
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
208
207
|
this.Message = opts.Message;
|
|
209
208
|
}
|
|
210
|
-
}
|
|
211
|
-
class ConflictException extends ResourceExplorer2ServiceException {
|
|
209
|
+
};
|
|
210
|
+
let ConflictException$1 = class ConflictException extends ResourceExplorer2ServiceException$1 {
|
|
212
211
|
name = "ConflictException";
|
|
213
212
|
$fault = "client";
|
|
214
213
|
Message;
|
|
@@ -221,7 +220,7 @@ class ConflictException extends ResourceExplorer2ServiceException {
|
|
|
221
220
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
222
221
|
this.Message = opts.Message;
|
|
223
222
|
}
|
|
224
|
-
}
|
|
223
|
+
};
|
|
225
224
|
const IndexState = {
|
|
226
225
|
ACTIVE: "ACTIVE",
|
|
227
226
|
CREATING: "CREATING",
|
|
@@ -233,7 +232,7 @@ const IndexType = {
|
|
|
233
232
|
AGGREGATOR: "AGGREGATOR",
|
|
234
233
|
LOCAL: "LOCAL",
|
|
235
234
|
};
|
|
236
|
-
class ServiceQuotaExceededException extends ResourceExplorer2ServiceException {
|
|
235
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends ResourceExplorer2ServiceException$1 {
|
|
237
236
|
name = "ServiceQuotaExceededException";
|
|
238
237
|
$fault = "client";
|
|
239
238
|
Message;
|
|
@@ -250,1263 +249,923 @@ class ServiceQuotaExceededException extends ResourceExplorer2ServiceException {
|
|
|
250
249
|
this.Name = opts.Name;
|
|
251
250
|
this.Value = opts.Value;
|
|
252
251
|
}
|
|
253
|
-
}
|
|
252
|
+
};
|
|
254
253
|
const OperationStatus = {
|
|
255
254
|
FAILED: "FAILED",
|
|
256
255
|
IN_PROGRESS: "IN_PROGRESS",
|
|
257
256
|
SKIPPED: "SKIPPED",
|
|
258
257
|
SUCCEEDED: "SUCCEEDED",
|
|
259
258
|
};
|
|
260
|
-
const SearchFilterFilterSensitiveLog = (obj) => ({
|
|
261
|
-
...obj,
|
|
262
|
-
});
|
|
263
|
-
const ViewFilterSensitiveLog = (obj) => ({
|
|
264
|
-
...obj,
|
|
265
|
-
...(obj.Filters && { Filters: smithyClient.SENSITIVE_STRING }),
|
|
266
|
-
});
|
|
267
|
-
const BatchGetViewOutputFilterSensitiveLog = (obj) => ({
|
|
268
|
-
...obj,
|
|
269
|
-
...(obj.Views && { Views: obj.Views.map((item) => ViewFilterSensitiveLog(item)) }),
|
|
270
|
-
});
|
|
271
|
-
const CreateIndexInputFilterSensitiveLog = (obj) => ({
|
|
272
|
-
...obj,
|
|
273
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
274
|
-
});
|
|
275
|
-
const CreateViewInputFilterSensitiveLog = (obj) => ({
|
|
276
|
-
...obj,
|
|
277
|
-
...(obj.Filters && { Filters: smithyClient.SENSITIVE_STRING }),
|
|
278
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
279
|
-
});
|
|
280
|
-
const CreateViewOutputFilterSensitiveLog = (obj) => ({
|
|
281
|
-
...obj,
|
|
282
|
-
...(obj.View && { View: ViewFilterSensitiveLog(obj.View) }),
|
|
283
|
-
});
|
|
284
|
-
const GetViewOutputFilterSensitiveLog = (obj) => ({
|
|
285
|
-
...obj,
|
|
286
|
-
...(obj.View && { View: ViewFilterSensitiveLog(obj.View) }),
|
|
287
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
288
|
-
});
|
|
289
|
-
const UpdateViewInputFilterSensitiveLog = (obj) => ({
|
|
290
|
-
...obj,
|
|
291
|
-
...(obj.Filters && { Filters: smithyClient.SENSITIVE_STRING }),
|
|
292
|
-
});
|
|
293
|
-
const UpdateViewOutputFilterSensitiveLog = (obj) => ({
|
|
294
|
-
...obj,
|
|
295
|
-
...(obj.View && { View: ViewFilterSensitiveLog(obj.View) }),
|
|
296
|
-
});
|
|
297
|
-
const GetIndexOutputFilterSensitiveLog = (obj) => ({
|
|
298
|
-
...obj,
|
|
299
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
300
|
-
});
|
|
301
|
-
const ManagedViewFilterSensitiveLog = (obj) => ({
|
|
302
|
-
...obj,
|
|
303
|
-
...(obj.Filters && { Filters: smithyClient.SENSITIVE_STRING }),
|
|
304
|
-
});
|
|
305
|
-
const GetManagedViewOutputFilterSensitiveLog = (obj) => ({
|
|
306
|
-
...obj,
|
|
307
|
-
...(obj.ManagedView && { ManagedView: ManagedViewFilterSensitiveLog(obj.ManagedView) }),
|
|
308
|
-
});
|
|
309
|
-
const ViewStatusFilterSensitiveLog = (obj) => ({
|
|
310
|
-
...obj,
|
|
311
|
-
...(obj.View && { View: ViewFilterSensitiveLog(obj.View) }),
|
|
312
|
-
});
|
|
313
|
-
const RegionStatusFilterSensitiveLog = (obj) => ({
|
|
314
|
-
...obj,
|
|
315
|
-
});
|
|
316
|
-
const GetResourceExplorerSetupOutputFilterSensitiveLog = (obj) => ({
|
|
317
|
-
...obj,
|
|
318
|
-
});
|
|
319
|
-
const ServiceViewFilterSensitiveLog = (obj) => ({
|
|
320
|
-
...obj,
|
|
321
|
-
...(obj.Filters && { Filters: smithyClient.SENSITIVE_STRING }),
|
|
322
|
-
});
|
|
323
|
-
const GetServiceViewOutputFilterSensitiveLog = (obj) => ({
|
|
324
|
-
...obj,
|
|
325
|
-
...(obj.View && { View: ServiceViewFilterSensitiveLog(obj.View) }),
|
|
326
|
-
});
|
|
327
|
-
const ListResourcesInputFilterSensitiveLog = (obj) => ({
|
|
328
|
-
...obj,
|
|
329
|
-
...(obj.Filters && { Filters: smithyClient.SENSITIVE_STRING }),
|
|
330
|
-
});
|
|
331
|
-
const ListTagsForResourceOutputFilterSensitiveLog = (obj) => ({
|
|
332
|
-
...obj,
|
|
333
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
334
|
-
});
|
|
335
|
-
const SearchInputFilterSensitiveLog = (obj) => ({
|
|
336
|
-
...obj,
|
|
337
|
-
...(obj.QueryString && { QueryString: smithyClient.SENSITIVE_STRING }),
|
|
338
|
-
});
|
|
339
|
-
const TagResourceInputFilterSensitiveLog = (obj) => ({
|
|
340
|
-
...obj,
|
|
341
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
342
|
-
});
|
|
343
|
-
const UntagResourceInputFilterSensitiveLog = (obj) => ({
|
|
344
|
-
...obj,
|
|
345
|
-
...(obj.tagKeys && { tagKeys: smithyClient.SENSITIVE_STRING }),
|
|
346
|
-
});
|
|
347
259
|
|
|
348
|
-
const
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
const
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
const
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
const
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
const
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
const
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
const
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
const
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
const
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
const
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
const
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
const
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
const
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
const
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
const
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
const
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
const
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
ViewArn: [],
|
|
551
|
-
}));
|
|
552
|
-
b.m("POST").h(headers).b(body);
|
|
553
|
-
return b.build();
|
|
554
|
-
};
|
|
555
|
-
const se_ListIndexesCommand = async (input, context) => {
|
|
556
|
-
const b = core.requestBuilder(input, context);
|
|
557
|
-
const headers = {
|
|
558
|
-
"content-type": "application/json",
|
|
559
|
-
};
|
|
560
|
-
b.bp("/ListIndexes");
|
|
561
|
-
let body;
|
|
562
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
563
|
-
MaxResults: [],
|
|
564
|
-
NextToken: [],
|
|
565
|
-
Regions: (_) => smithyClient._json(_),
|
|
566
|
-
Type: [],
|
|
567
|
-
}));
|
|
568
|
-
b.m("POST").h(headers).b(body);
|
|
569
|
-
return b.build();
|
|
570
|
-
};
|
|
571
|
-
const se_ListIndexesForMembersCommand = async (input, context) => {
|
|
572
|
-
const b = core.requestBuilder(input, context);
|
|
573
|
-
const headers = {
|
|
574
|
-
"content-type": "application/json",
|
|
575
|
-
};
|
|
576
|
-
b.bp("/ListIndexesForMembers");
|
|
577
|
-
let body;
|
|
578
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
579
|
-
AccountIdList: (_) => smithyClient._json(_),
|
|
580
|
-
MaxResults: [],
|
|
581
|
-
NextToken: [],
|
|
582
|
-
}));
|
|
583
|
-
b.m("POST").h(headers).b(body);
|
|
584
|
-
return b.build();
|
|
585
|
-
};
|
|
586
|
-
const se_ListManagedViewsCommand = async (input, context) => {
|
|
587
|
-
const b = core.requestBuilder(input, context);
|
|
588
|
-
const headers = {
|
|
589
|
-
"content-type": "application/json",
|
|
590
|
-
};
|
|
591
|
-
b.bp("/ListManagedViews");
|
|
592
|
-
let body;
|
|
593
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
594
|
-
MaxResults: [],
|
|
595
|
-
NextToken: [],
|
|
596
|
-
ServicePrincipal: [],
|
|
597
|
-
}));
|
|
598
|
-
b.m("POST").h(headers).b(body);
|
|
599
|
-
return b.build();
|
|
600
|
-
};
|
|
601
|
-
const se_ListResourcesCommand = async (input, context) => {
|
|
602
|
-
const b = core.requestBuilder(input, context);
|
|
603
|
-
const headers = {
|
|
604
|
-
"content-type": "application/json",
|
|
605
|
-
};
|
|
606
|
-
b.bp("/ListResources");
|
|
607
|
-
let body;
|
|
608
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
609
|
-
Filters: (_) => smithyClient._json(_),
|
|
610
|
-
MaxResults: [],
|
|
611
|
-
NextToken: [],
|
|
612
|
-
ViewArn: [],
|
|
613
|
-
}));
|
|
614
|
-
b.m("POST").h(headers).b(body);
|
|
615
|
-
return b.build();
|
|
616
|
-
};
|
|
617
|
-
const se_ListServiceIndexesCommand = async (input, context) => {
|
|
618
|
-
const b = core.requestBuilder(input, context);
|
|
619
|
-
const headers = {
|
|
620
|
-
"content-type": "application/json",
|
|
621
|
-
};
|
|
622
|
-
b.bp("/ListServiceIndexes");
|
|
623
|
-
let body;
|
|
624
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
625
|
-
MaxResults: [],
|
|
626
|
-
NextToken: [],
|
|
627
|
-
Regions: (_) => smithyClient._json(_),
|
|
628
|
-
}));
|
|
629
|
-
b.m("POST").h(headers).b(body);
|
|
630
|
-
return b.build();
|
|
631
|
-
};
|
|
632
|
-
const se_ListServiceViewsCommand = async (input, context) => {
|
|
633
|
-
const b = core.requestBuilder(input, context);
|
|
634
|
-
const headers = {
|
|
635
|
-
"content-type": "application/json",
|
|
636
|
-
};
|
|
637
|
-
b.bp("/ListServiceViews");
|
|
638
|
-
let body;
|
|
639
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
640
|
-
MaxResults: [],
|
|
641
|
-
NextToken: [],
|
|
642
|
-
}));
|
|
643
|
-
b.m("POST").h(headers).b(body);
|
|
644
|
-
return b.build();
|
|
645
|
-
};
|
|
646
|
-
const se_ListStreamingAccessForServicesCommand = async (input, context) => {
|
|
647
|
-
const b = core.requestBuilder(input, context);
|
|
648
|
-
const headers = {
|
|
649
|
-
"content-type": "application/json",
|
|
650
|
-
};
|
|
651
|
-
b.bp("/ListStreamingAccessForServices");
|
|
652
|
-
let body;
|
|
653
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
654
|
-
MaxResults: [],
|
|
655
|
-
NextToken: [],
|
|
656
|
-
}));
|
|
657
|
-
b.m("POST").h(headers).b(body);
|
|
658
|
-
return b.build();
|
|
659
|
-
};
|
|
660
|
-
const se_ListSupportedResourceTypesCommand = async (input, context) => {
|
|
661
|
-
const b = core.requestBuilder(input, context);
|
|
662
|
-
const headers = {
|
|
663
|
-
"content-type": "application/json",
|
|
664
|
-
};
|
|
665
|
-
b.bp("/ListSupportedResourceTypes");
|
|
666
|
-
let body;
|
|
667
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
668
|
-
MaxResults: [],
|
|
669
|
-
NextToken: [],
|
|
670
|
-
}));
|
|
671
|
-
b.m("POST").h(headers).b(body);
|
|
672
|
-
return b.build();
|
|
673
|
-
};
|
|
674
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
675
|
-
const b = core.requestBuilder(input, context);
|
|
676
|
-
const headers = {};
|
|
677
|
-
b.bp("/tags/{resourceArn}");
|
|
678
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
679
|
-
let body;
|
|
680
|
-
b.m("GET").h(headers).b(body);
|
|
681
|
-
return b.build();
|
|
682
|
-
};
|
|
683
|
-
const se_ListViewsCommand = async (input, context) => {
|
|
684
|
-
const b = core.requestBuilder(input, context);
|
|
685
|
-
const headers = {
|
|
686
|
-
"content-type": "application/json",
|
|
687
|
-
};
|
|
688
|
-
b.bp("/ListViews");
|
|
689
|
-
let body;
|
|
690
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
691
|
-
MaxResults: [],
|
|
692
|
-
NextToken: [],
|
|
693
|
-
}));
|
|
694
|
-
b.m("POST").h(headers).b(body);
|
|
695
|
-
return b.build();
|
|
696
|
-
};
|
|
697
|
-
const se_SearchCommand = async (input, context) => {
|
|
698
|
-
const b = core.requestBuilder(input, context);
|
|
699
|
-
const headers = {
|
|
700
|
-
"content-type": "application/json",
|
|
701
|
-
};
|
|
702
|
-
b.bp("/Search");
|
|
703
|
-
let body;
|
|
704
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
705
|
-
MaxResults: [],
|
|
706
|
-
NextToken: [],
|
|
707
|
-
QueryString: [],
|
|
708
|
-
ViewArn: [],
|
|
709
|
-
}));
|
|
710
|
-
b.m("POST").h(headers).b(body);
|
|
711
|
-
return b.build();
|
|
712
|
-
};
|
|
713
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
714
|
-
const b = core.requestBuilder(input, context);
|
|
715
|
-
const headers = {
|
|
716
|
-
"content-type": "application/json",
|
|
717
|
-
};
|
|
718
|
-
b.bp("/tags/{resourceArn}");
|
|
719
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
720
|
-
let body;
|
|
721
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
722
|
-
Tags: (_) => smithyClient._json(_),
|
|
723
|
-
}));
|
|
724
|
-
b.m("POST").h(headers).b(body);
|
|
725
|
-
return b.build();
|
|
726
|
-
};
|
|
727
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
728
|
-
const b = core.requestBuilder(input, context);
|
|
729
|
-
const headers = {};
|
|
730
|
-
b.bp("/tags/{resourceArn}");
|
|
731
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
732
|
-
const query = smithyClient.map({
|
|
733
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
734
|
-
});
|
|
735
|
-
let body;
|
|
736
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
737
|
-
return b.build();
|
|
738
|
-
};
|
|
739
|
-
const se_UpdateIndexTypeCommand = async (input, context) => {
|
|
740
|
-
const b = core.requestBuilder(input, context);
|
|
741
|
-
const headers = {
|
|
742
|
-
"content-type": "application/json",
|
|
743
|
-
};
|
|
744
|
-
b.bp("/UpdateIndexType");
|
|
745
|
-
let body;
|
|
746
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
747
|
-
Arn: [],
|
|
748
|
-
Type: [],
|
|
749
|
-
}));
|
|
750
|
-
b.m("POST").h(headers).b(body);
|
|
751
|
-
return b.build();
|
|
752
|
-
};
|
|
753
|
-
const se_UpdateViewCommand = async (input, context) => {
|
|
754
|
-
const b = core.requestBuilder(input, context);
|
|
755
|
-
const headers = {
|
|
756
|
-
"content-type": "application/json",
|
|
757
|
-
};
|
|
758
|
-
b.bp("/UpdateView");
|
|
759
|
-
let body;
|
|
760
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
761
|
-
Filters: (_) => smithyClient._json(_),
|
|
762
|
-
IncludedProperties: (_) => smithyClient._json(_),
|
|
763
|
-
ViewArn: [],
|
|
764
|
-
}));
|
|
765
|
-
b.m("POST").h(headers).b(body);
|
|
766
|
-
return b.build();
|
|
767
|
-
};
|
|
768
|
-
const de_AssociateDefaultViewCommand = async (output, context) => {
|
|
769
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
770
|
-
return de_CommandError(output, context);
|
|
771
|
-
}
|
|
772
|
-
const contents = smithyClient.map({
|
|
773
|
-
$metadata: deserializeMetadata(output),
|
|
774
|
-
});
|
|
775
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
776
|
-
const doc = smithyClient.take(data, {
|
|
777
|
-
ViewArn: smithyClient.expectString,
|
|
778
|
-
});
|
|
779
|
-
Object.assign(contents, doc);
|
|
780
|
-
return contents;
|
|
781
|
-
};
|
|
782
|
-
const de_BatchGetViewCommand = async (output, context) => {
|
|
783
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
784
|
-
return de_CommandError(output, context);
|
|
785
|
-
}
|
|
786
|
-
const contents = smithyClient.map({
|
|
787
|
-
$metadata: deserializeMetadata(output),
|
|
788
|
-
});
|
|
789
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
790
|
-
const doc = smithyClient.take(data, {
|
|
791
|
-
Errors: smithyClient._json,
|
|
792
|
-
Views: (_) => de_ViewList(_),
|
|
793
|
-
});
|
|
794
|
-
Object.assign(contents, doc);
|
|
795
|
-
return contents;
|
|
796
|
-
};
|
|
797
|
-
const de_CreateIndexCommand = async (output, context) => {
|
|
798
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
799
|
-
return de_CommandError(output, context);
|
|
800
|
-
}
|
|
801
|
-
const contents = smithyClient.map({
|
|
802
|
-
$metadata: deserializeMetadata(output),
|
|
803
|
-
});
|
|
804
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
805
|
-
const doc = smithyClient.take(data, {
|
|
806
|
-
Arn: smithyClient.expectString,
|
|
807
|
-
CreatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
808
|
-
State: smithyClient.expectString,
|
|
809
|
-
});
|
|
810
|
-
Object.assign(contents, doc);
|
|
811
|
-
return contents;
|
|
812
|
-
};
|
|
813
|
-
const de_CreateResourceExplorerSetupCommand = async (output, context) => {
|
|
814
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
815
|
-
return de_CommandError(output, context);
|
|
816
|
-
}
|
|
817
|
-
const contents = smithyClient.map({
|
|
818
|
-
$metadata: deserializeMetadata(output),
|
|
819
|
-
});
|
|
820
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
821
|
-
const doc = smithyClient.take(data, {
|
|
822
|
-
TaskId: smithyClient.expectString,
|
|
823
|
-
});
|
|
824
|
-
Object.assign(contents, doc);
|
|
825
|
-
return contents;
|
|
826
|
-
};
|
|
827
|
-
const de_CreateViewCommand = async (output, context) => {
|
|
828
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
829
|
-
return de_CommandError(output, context);
|
|
830
|
-
}
|
|
831
|
-
const contents = smithyClient.map({
|
|
832
|
-
$metadata: deserializeMetadata(output),
|
|
833
|
-
});
|
|
834
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
835
|
-
const doc = smithyClient.take(data, {
|
|
836
|
-
View: (_) => de_View(_),
|
|
837
|
-
});
|
|
838
|
-
Object.assign(contents, doc);
|
|
839
|
-
return contents;
|
|
840
|
-
};
|
|
841
|
-
const de_DeleteIndexCommand = async (output, context) => {
|
|
842
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
843
|
-
return de_CommandError(output, context);
|
|
844
|
-
}
|
|
845
|
-
const contents = smithyClient.map({
|
|
846
|
-
$metadata: deserializeMetadata(output),
|
|
847
|
-
});
|
|
848
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
849
|
-
const doc = smithyClient.take(data, {
|
|
850
|
-
Arn: smithyClient.expectString,
|
|
851
|
-
LastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
852
|
-
State: smithyClient.expectString,
|
|
853
|
-
});
|
|
854
|
-
Object.assign(contents, doc);
|
|
855
|
-
return contents;
|
|
856
|
-
};
|
|
857
|
-
const de_DeleteResourceExplorerSetupCommand = async (output, context) => {
|
|
858
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
859
|
-
return de_CommandError(output, context);
|
|
860
|
-
}
|
|
861
|
-
const contents = smithyClient.map({
|
|
862
|
-
$metadata: deserializeMetadata(output),
|
|
863
|
-
});
|
|
864
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
865
|
-
const doc = smithyClient.take(data, {
|
|
866
|
-
TaskId: smithyClient.expectString,
|
|
867
|
-
});
|
|
868
|
-
Object.assign(contents, doc);
|
|
869
|
-
return contents;
|
|
870
|
-
};
|
|
871
|
-
const de_DeleteViewCommand = async (output, context) => {
|
|
872
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
873
|
-
return de_CommandError(output, context);
|
|
874
|
-
}
|
|
875
|
-
const contents = smithyClient.map({
|
|
876
|
-
$metadata: deserializeMetadata(output),
|
|
877
|
-
});
|
|
878
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
879
|
-
const doc = smithyClient.take(data, {
|
|
880
|
-
ViewArn: smithyClient.expectString,
|
|
881
|
-
});
|
|
882
|
-
Object.assign(contents, doc);
|
|
883
|
-
return contents;
|
|
884
|
-
};
|
|
885
|
-
const de_DisassociateDefaultViewCommand = async (output, context) => {
|
|
886
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
887
|
-
return de_CommandError(output, context);
|
|
888
|
-
}
|
|
889
|
-
const contents = smithyClient.map({
|
|
890
|
-
$metadata: deserializeMetadata(output),
|
|
891
|
-
});
|
|
892
|
-
await smithyClient.collectBody(output.body, context);
|
|
893
|
-
return contents;
|
|
894
|
-
};
|
|
895
|
-
const de_GetAccountLevelServiceConfigurationCommand = async (output, context) => {
|
|
896
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
897
|
-
return de_CommandError(output, context);
|
|
898
|
-
}
|
|
899
|
-
const contents = smithyClient.map({
|
|
900
|
-
$metadata: deserializeMetadata(output),
|
|
901
|
-
});
|
|
902
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
903
|
-
const doc = smithyClient.take(data, {
|
|
904
|
-
OrgConfiguration: smithyClient._json,
|
|
905
|
-
});
|
|
906
|
-
Object.assign(contents, doc);
|
|
907
|
-
return contents;
|
|
908
|
-
};
|
|
909
|
-
const de_GetDefaultViewCommand = async (output, context) => {
|
|
910
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
911
|
-
return de_CommandError(output, context);
|
|
912
|
-
}
|
|
913
|
-
const contents = smithyClient.map({
|
|
914
|
-
$metadata: deserializeMetadata(output),
|
|
915
|
-
});
|
|
916
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
917
|
-
const doc = smithyClient.take(data, {
|
|
918
|
-
ViewArn: smithyClient.expectString,
|
|
919
|
-
});
|
|
920
|
-
Object.assign(contents, doc);
|
|
921
|
-
return contents;
|
|
922
|
-
};
|
|
923
|
-
const de_GetIndexCommand = async (output, context) => {
|
|
924
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
925
|
-
return de_CommandError(output, context);
|
|
926
|
-
}
|
|
927
|
-
const contents = smithyClient.map({
|
|
928
|
-
$metadata: deserializeMetadata(output),
|
|
929
|
-
});
|
|
930
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
931
|
-
const doc = smithyClient.take(data, {
|
|
932
|
-
Arn: smithyClient.expectString,
|
|
933
|
-
CreatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
934
|
-
LastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
935
|
-
ReplicatingFrom: smithyClient._json,
|
|
936
|
-
ReplicatingTo: smithyClient._json,
|
|
937
|
-
State: smithyClient.expectString,
|
|
938
|
-
Tags: smithyClient._json,
|
|
939
|
-
Type: smithyClient.expectString,
|
|
940
|
-
});
|
|
941
|
-
Object.assign(contents, doc);
|
|
942
|
-
return contents;
|
|
943
|
-
};
|
|
944
|
-
const de_GetManagedViewCommand = async (output, context) => {
|
|
945
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
946
|
-
return de_CommandError(output, context);
|
|
947
|
-
}
|
|
948
|
-
const contents = smithyClient.map({
|
|
949
|
-
$metadata: deserializeMetadata(output),
|
|
950
|
-
});
|
|
951
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
952
|
-
const doc = smithyClient.take(data, {
|
|
953
|
-
ManagedView: (_) => de_ManagedView(_),
|
|
954
|
-
});
|
|
955
|
-
Object.assign(contents, doc);
|
|
956
|
-
return contents;
|
|
957
|
-
};
|
|
958
|
-
const de_GetResourceExplorerSetupCommand = async (output, context) => {
|
|
959
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
960
|
-
return de_CommandError(output, context);
|
|
961
|
-
}
|
|
962
|
-
const contents = smithyClient.map({
|
|
963
|
-
$metadata: deserializeMetadata(output),
|
|
964
|
-
});
|
|
965
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
966
|
-
const doc = smithyClient.take(data, {
|
|
967
|
-
NextToken: smithyClient.expectString,
|
|
968
|
-
Regions: (_) => de_RegionStatusList(_),
|
|
969
|
-
});
|
|
970
|
-
Object.assign(contents, doc);
|
|
971
|
-
return contents;
|
|
972
|
-
};
|
|
973
|
-
const de_GetServiceIndexCommand = async (output, context) => {
|
|
974
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
975
|
-
return de_CommandError(output, context);
|
|
976
|
-
}
|
|
977
|
-
const contents = smithyClient.map({
|
|
978
|
-
$metadata: deserializeMetadata(output),
|
|
979
|
-
});
|
|
980
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
981
|
-
const doc = smithyClient.take(data, {
|
|
982
|
-
Arn: smithyClient.expectString,
|
|
983
|
-
Type: smithyClient.expectString,
|
|
984
|
-
});
|
|
985
|
-
Object.assign(contents, doc);
|
|
986
|
-
return contents;
|
|
987
|
-
};
|
|
988
|
-
const de_GetServiceViewCommand = async (output, context) => {
|
|
989
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
990
|
-
return de_CommandError(output, context);
|
|
991
|
-
}
|
|
992
|
-
const contents = smithyClient.map({
|
|
993
|
-
$metadata: deserializeMetadata(output),
|
|
994
|
-
});
|
|
995
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
996
|
-
const doc = smithyClient.take(data, {
|
|
997
|
-
View: smithyClient._json,
|
|
998
|
-
});
|
|
999
|
-
Object.assign(contents, doc);
|
|
1000
|
-
return contents;
|
|
1001
|
-
};
|
|
1002
|
-
const de_GetViewCommand = async (output, context) => {
|
|
1003
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1004
|
-
return de_CommandError(output, context);
|
|
1005
|
-
}
|
|
1006
|
-
const contents = smithyClient.map({
|
|
1007
|
-
$metadata: deserializeMetadata(output),
|
|
1008
|
-
});
|
|
1009
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1010
|
-
const doc = smithyClient.take(data, {
|
|
1011
|
-
Tags: smithyClient._json,
|
|
1012
|
-
View: (_) => de_View(_),
|
|
1013
|
-
});
|
|
1014
|
-
Object.assign(contents, doc);
|
|
1015
|
-
return contents;
|
|
1016
|
-
};
|
|
1017
|
-
const de_ListIndexesCommand = async (output, context) => {
|
|
1018
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1019
|
-
return de_CommandError(output, context);
|
|
1020
|
-
}
|
|
1021
|
-
const contents = smithyClient.map({
|
|
1022
|
-
$metadata: deserializeMetadata(output),
|
|
1023
|
-
});
|
|
1024
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1025
|
-
const doc = smithyClient.take(data, {
|
|
1026
|
-
Indexes: smithyClient._json,
|
|
1027
|
-
NextToken: smithyClient.expectString,
|
|
1028
|
-
});
|
|
1029
|
-
Object.assign(contents, doc);
|
|
1030
|
-
return contents;
|
|
1031
|
-
};
|
|
1032
|
-
const de_ListIndexesForMembersCommand = async (output, context) => {
|
|
1033
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1034
|
-
return de_CommandError(output, context);
|
|
1035
|
-
}
|
|
1036
|
-
const contents = smithyClient.map({
|
|
1037
|
-
$metadata: deserializeMetadata(output),
|
|
1038
|
-
});
|
|
1039
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1040
|
-
const doc = smithyClient.take(data, {
|
|
1041
|
-
Indexes: smithyClient._json,
|
|
1042
|
-
NextToken: smithyClient.expectString,
|
|
1043
|
-
});
|
|
1044
|
-
Object.assign(contents, doc);
|
|
1045
|
-
return contents;
|
|
1046
|
-
};
|
|
1047
|
-
const de_ListManagedViewsCommand = async (output, context) => {
|
|
1048
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1049
|
-
return de_CommandError(output, context);
|
|
1050
|
-
}
|
|
1051
|
-
const contents = smithyClient.map({
|
|
1052
|
-
$metadata: deserializeMetadata(output),
|
|
1053
|
-
});
|
|
1054
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1055
|
-
const doc = smithyClient.take(data, {
|
|
1056
|
-
ManagedViews: smithyClient._json,
|
|
1057
|
-
NextToken: smithyClient.expectString,
|
|
1058
|
-
});
|
|
1059
|
-
Object.assign(contents, doc);
|
|
1060
|
-
return contents;
|
|
1061
|
-
};
|
|
1062
|
-
const de_ListResourcesCommand = async (output, context) => {
|
|
1063
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1064
|
-
return de_CommandError(output, context);
|
|
1065
|
-
}
|
|
1066
|
-
const contents = smithyClient.map({
|
|
1067
|
-
$metadata: deserializeMetadata(output),
|
|
1068
|
-
});
|
|
1069
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1070
|
-
const doc = smithyClient.take(data, {
|
|
1071
|
-
NextToken: smithyClient.expectString,
|
|
1072
|
-
Resources: (_) => de_ResourceList(_),
|
|
1073
|
-
ViewArn: smithyClient.expectString,
|
|
1074
|
-
});
|
|
1075
|
-
Object.assign(contents, doc);
|
|
1076
|
-
return contents;
|
|
1077
|
-
};
|
|
1078
|
-
const de_ListServiceIndexesCommand = async (output, context) => {
|
|
1079
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1080
|
-
return de_CommandError(output, context);
|
|
1081
|
-
}
|
|
1082
|
-
const contents = smithyClient.map({
|
|
1083
|
-
$metadata: deserializeMetadata(output),
|
|
1084
|
-
});
|
|
1085
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1086
|
-
const doc = smithyClient.take(data, {
|
|
1087
|
-
Indexes: smithyClient._json,
|
|
1088
|
-
NextToken: smithyClient.expectString,
|
|
1089
|
-
});
|
|
1090
|
-
Object.assign(contents, doc);
|
|
1091
|
-
return contents;
|
|
1092
|
-
};
|
|
1093
|
-
const de_ListServiceViewsCommand = async (output, context) => {
|
|
1094
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1095
|
-
return de_CommandError(output, context);
|
|
1096
|
-
}
|
|
1097
|
-
const contents = smithyClient.map({
|
|
1098
|
-
$metadata: deserializeMetadata(output),
|
|
1099
|
-
});
|
|
1100
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1101
|
-
const doc = smithyClient.take(data, {
|
|
1102
|
-
NextToken: smithyClient.expectString,
|
|
1103
|
-
ServiceViews: smithyClient._json,
|
|
1104
|
-
});
|
|
1105
|
-
Object.assign(contents, doc);
|
|
1106
|
-
return contents;
|
|
1107
|
-
};
|
|
1108
|
-
const de_ListStreamingAccessForServicesCommand = async (output, context) => {
|
|
1109
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1110
|
-
return de_CommandError(output, context);
|
|
1111
|
-
}
|
|
1112
|
-
const contents = smithyClient.map({
|
|
1113
|
-
$metadata: deserializeMetadata(output),
|
|
1114
|
-
});
|
|
1115
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1116
|
-
const doc = smithyClient.take(data, {
|
|
1117
|
-
NextToken: smithyClient.expectString,
|
|
1118
|
-
StreamingAccessForServices: (_) => de_StreamingAccessDetailsList(_),
|
|
1119
|
-
});
|
|
1120
|
-
Object.assign(contents, doc);
|
|
1121
|
-
return contents;
|
|
1122
|
-
};
|
|
1123
|
-
const de_ListSupportedResourceTypesCommand = async (output, context) => {
|
|
1124
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1125
|
-
return de_CommandError(output, context);
|
|
1126
|
-
}
|
|
1127
|
-
const contents = smithyClient.map({
|
|
1128
|
-
$metadata: deserializeMetadata(output),
|
|
1129
|
-
});
|
|
1130
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1131
|
-
const doc = smithyClient.take(data, {
|
|
1132
|
-
NextToken: smithyClient.expectString,
|
|
1133
|
-
ResourceTypes: smithyClient._json,
|
|
1134
|
-
});
|
|
1135
|
-
Object.assign(contents, doc);
|
|
1136
|
-
return contents;
|
|
1137
|
-
};
|
|
1138
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
1139
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1140
|
-
return de_CommandError(output, context);
|
|
1141
|
-
}
|
|
1142
|
-
const contents = smithyClient.map({
|
|
1143
|
-
$metadata: deserializeMetadata(output),
|
|
1144
|
-
});
|
|
1145
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1146
|
-
const doc = smithyClient.take(data, {
|
|
1147
|
-
Tags: smithyClient._json,
|
|
1148
|
-
});
|
|
1149
|
-
Object.assign(contents, doc);
|
|
1150
|
-
return contents;
|
|
1151
|
-
};
|
|
1152
|
-
const de_ListViewsCommand = async (output, context) => {
|
|
1153
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1154
|
-
return de_CommandError(output, context);
|
|
1155
|
-
}
|
|
1156
|
-
const contents = smithyClient.map({
|
|
1157
|
-
$metadata: deserializeMetadata(output),
|
|
1158
|
-
});
|
|
1159
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1160
|
-
const doc = smithyClient.take(data, {
|
|
1161
|
-
NextToken: smithyClient.expectString,
|
|
1162
|
-
Views: smithyClient._json,
|
|
1163
|
-
});
|
|
1164
|
-
Object.assign(contents, doc);
|
|
1165
|
-
return contents;
|
|
1166
|
-
};
|
|
1167
|
-
const de_SearchCommand = async (output, context) => {
|
|
1168
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1169
|
-
return de_CommandError(output, context);
|
|
1170
|
-
}
|
|
1171
|
-
const contents = smithyClient.map({
|
|
1172
|
-
$metadata: deserializeMetadata(output),
|
|
1173
|
-
});
|
|
1174
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1175
|
-
const doc = smithyClient.take(data, {
|
|
1176
|
-
Count: smithyClient._json,
|
|
1177
|
-
NextToken: smithyClient.expectString,
|
|
1178
|
-
Resources: (_) => de_ResourceList(_),
|
|
1179
|
-
ViewArn: smithyClient.expectString,
|
|
1180
|
-
});
|
|
1181
|
-
Object.assign(contents, doc);
|
|
1182
|
-
return contents;
|
|
1183
|
-
};
|
|
1184
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
1185
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1186
|
-
return de_CommandError(output, context);
|
|
1187
|
-
}
|
|
1188
|
-
const contents = smithyClient.map({
|
|
1189
|
-
$metadata: deserializeMetadata(output),
|
|
1190
|
-
});
|
|
1191
|
-
await smithyClient.collectBody(output.body, context);
|
|
1192
|
-
return contents;
|
|
1193
|
-
};
|
|
1194
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1195
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1196
|
-
return de_CommandError(output, context);
|
|
1197
|
-
}
|
|
1198
|
-
const contents = smithyClient.map({
|
|
1199
|
-
$metadata: deserializeMetadata(output),
|
|
1200
|
-
});
|
|
1201
|
-
await smithyClient.collectBody(output.body, context);
|
|
1202
|
-
return contents;
|
|
1203
|
-
};
|
|
1204
|
-
const de_UpdateIndexTypeCommand = async (output, context) => {
|
|
1205
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1206
|
-
return de_CommandError(output, context);
|
|
1207
|
-
}
|
|
1208
|
-
const contents = smithyClient.map({
|
|
1209
|
-
$metadata: deserializeMetadata(output),
|
|
1210
|
-
});
|
|
1211
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1212
|
-
const doc = smithyClient.take(data, {
|
|
1213
|
-
Arn: smithyClient.expectString,
|
|
1214
|
-
LastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1215
|
-
State: smithyClient.expectString,
|
|
1216
|
-
Type: smithyClient.expectString,
|
|
1217
|
-
});
|
|
1218
|
-
Object.assign(contents, doc);
|
|
1219
|
-
return contents;
|
|
1220
|
-
};
|
|
1221
|
-
const de_UpdateViewCommand = async (output, context) => {
|
|
1222
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1223
|
-
return de_CommandError(output, context);
|
|
1224
|
-
}
|
|
1225
|
-
const contents = smithyClient.map({
|
|
1226
|
-
$metadata: deserializeMetadata(output),
|
|
1227
|
-
});
|
|
1228
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1229
|
-
const doc = smithyClient.take(data, {
|
|
1230
|
-
View: (_) => de_View(_),
|
|
1231
|
-
});
|
|
1232
|
-
Object.assign(contents, doc);
|
|
1233
|
-
return contents;
|
|
1234
|
-
};
|
|
1235
|
-
const de_CommandError = async (output, context) => {
|
|
1236
|
-
const parsedOutput = {
|
|
1237
|
-
...output,
|
|
1238
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1239
|
-
};
|
|
1240
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1241
|
-
switch (errorCode) {
|
|
1242
|
-
case "AccessDeniedException":
|
|
1243
|
-
case "com.amazonaws.resourceexplorer2#AccessDeniedException":
|
|
1244
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1245
|
-
case "InternalServerException":
|
|
1246
|
-
case "com.amazonaws.resourceexplorer2#InternalServerException":
|
|
1247
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1248
|
-
case "ResourceNotFoundException":
|
|
1249
|
-
case "com.amazonaws.resourceexplorer2#ResourceNotFoundException":
|
|
1250
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1251
|
-
case "ThrottlingException":
|
|
1252
|
-
case "com.amazonaws.resourceexplorer2#ThrottlingException":
|
|
1253
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
1254
|
-
case "ValidationException":
|
|
1255
|
-
case "com.amazonaws.resourceexplorer2#ValidationException":
|
|
1256
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1257
|
-
case "UnauthorizedException":
|
|
1258
|
-
case "com.amazonaws.resourceexplorer2#UnauthorizedException":
|
|
1259
|
-
throw await de_UnauthorizedExceptionRes(parsedOutput);
|
|
1260
|
-
case "ConflictException":
|
|
1261
|
-
case "com.amazonaws.resourceexplorer2#ConflictException":
|
|
1262
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1263
|
-
case "ServiceQuotaExceededException":
|
|
1264
|
-
case "com.amazonaws.resourceexplorer2#ServiceQuotaExceededException":
|
|
1265
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
1266
|
-
default:
|
|
1267
|
-
const parsedBody = parsedOutput.body;
|
|
1268
|
-
return throwDefaultError({
|
|
1269
|
-
output,
|
|
1270
|
-
parsedBody,
|
|
1271
|
-
errorCode,
|
|
1272
|
-
});
|
|
1273
|
-
}
|
|
1274
|
-
};
|
|
1275
|
-
const throwDefaultError = smithyClient.withBaseException(ResourceExplorer2ServiceException);
|
|
1276
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1277
|
-
const contents = smithyClient.map({});
|
|
1278
|
-
const data = parsedOutput.body;
|
|
1279
|
-
const doc = smithyClient.take(data, {
|
|
1280
|
-
Message: smithyClient.expectString,
|
|
1281
|
-
});
|
|
1282
|
-
Object.assign(contents, doc);
|
|
1283
|
-
const exception = new AccessDeniedException({
|
|
1284
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1285
|
-
...contents,
|
|
1286
|
-
});
|
|
1287
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1288
|
-
};
|
|
1289
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1290
|
-
const contents = smithyClient.map({});
|
|
1291
|
-
const data = parsedOutput.body;
|
|
1292
|
-
const doc = smithyClient.take(data, {
|
|
1293
|
-
Message: smithyClient.expectString,
|
|
1294
|
-
});
|
|
1295
|
-
Object.assign(contents, doc);
|
|
1296
|
-
const exception = new ConflictException({
|
|
1297
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1298
|
-
...contents,
|
|
1299
|
-
});
|
|
1300
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1301
|
-
};
|
|
1302
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1303
|
-
const contents = smithyClient.map({});
|
|
1304
|
-
const data = parsedOutput.body;
|
|
1305
|
-
const doc = smithyClient.take(data, {
|
|
1306
|
-
Message: smithyClient.expectString,
|
|
1307
|
-
});
|
|
1308
|
-
Object.assign(contents, doc);
|
|
1309
|
-
const exception = new InternalServerException({
|
|
1310
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1311
|
-
...contents,
|
|
1312
|
-
});
|
|
1313
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1314
|
-
};
|
|
1315
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1316
|
-
const contents = smithyClient.map({});
|
|
1317
|
-
const data = parsedOutput.body;
|
|
1318
|
-
const doc = smithyClient.take(data, {
|
|
1319
|
-
Message: smithyClient.expectString,
|
|
1320
|
-
});
|
|
1321
|
-
Object.assign(contents, doc);
|
|
1322
|
-
const exception = new ResourceNotFoundException({
|
|
1323
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1324
|
-
...contents,
|
|
1325
|
-
});
|
|
1326
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1327
|
-
};
|
|
1328
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
1329
|
-
const contents = smithyClient.map({});
|
|
1330
|
-
const data = parsedOutput.body;
|
|
1331
|
-
const doc = smithyClient.take(data, {
|
|
1332
|
-
Message: smithyClient.expectString,
|
|
1333
|
-
Name: smithyClient.expectString,
|
|
1334
|
-
Value: smithyClient.expectString,
|
|
1335
|
-
});
|
|
1336
|
-
Object.assign(contents, doc);
|
|
1337
|
-
const exception = new ServiceQuotaExceededException({
|
|
1338
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1339
|
-
...contents,
|
|
1340
|
-
});
|
|
1341
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1342
|
-
};
|
|
1343
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
1344
|
-
const contents = smithyClient.map({});
|
|
1345
|
-
const data = parsedOutput.body;
|
|
1346
|
-
const doc = smithyClient.take(data, {
|
|
1347
|
-
Message: smithyClient.expectString,
|
|
1348
|
-
});
|
|
1349
|
-
Object.assign(contents, doc);
|
|
1350
|
-
const exception = new ThrottlingException({
|
|
1351
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1352
|
-
...contents,
|
|
1353
|
-
});
|
|
1354
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1355
|
-
};
|
|
1356
|
-
const de_UnauthorizedExceptionRes = async (parsedOutput, context) => {
|
|
1357
|
-
const contents = smithyClient.map({});
|
|
1358
|
-
const data = parsedOutput.body;
|
|
1359
|
-
const doc = smithyClient.take(data, {
|
|
1360
|
-
Message: smithyClient.expectString,
|
|
1361
|
-
});
|
|
1362
|
-
Object.assign(contents, doc);
|
|
1363
|
-
const exception = new UnauthorizedException({
|
|
1364
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1365
|
-
...contents,
|
|
1366
|
-
});
|
|
1367
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1368
|
-
};
|
|
1369
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1370
|
-
const contents = smithyClient.map({});
|
|
1371
|
-
const data = parsedOutput.body;
|
|
1372
|
-
const doc = smithyClient.take(data, {
|
|
1373
|
-
FieldList: smithyClient._json,
|
|
1374
|
-
Message: smithyClient.expectString,
|
|
1375
|
-
});
|
|
1376
|
-
Object.assign(contents, doc);
|
|
1377
|
-
const exception = new ValidationException({
|
|
1378
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1379
|
-
...contents,
|
|
1380
|
-
});
|
|
1381
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1382
|
-
};
|
|
1383
|
-
const de_ManagedView = (output, context) => {
|
|
1384
|
-
return smithyClient.take(output, {
|
|
1385
|
-
Filters: smithyClient._json,
|
|
1386
|
-
IncludedProperties: smithyClient._json,
|
|
1387
|
-
LastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1388
|
-
ManagedViewArn: smithyClient.expectString,
|
|
1389
|
-
ManagedViewName: smithyClient.expectString,
|
|
1390
|
-
Owner: smithyClient.expectString,
|
|
1391
|
-
ResourcePolicy: smithyClient.expectString,
|
|
1392
|
-
Scope: smithyClient.expectString,
|
|
1393
|
-
TrustedService: smithyClient.expectString,
|
|
1394
|
-
Version: smithyClient.expectString,
|
|
1395
|
-
});
|
|
1396
|
-
};
|
|
1397
|
-
const de_RegionStatus = (output, context) => {
|
|
1398
|
-
return smithyClient.take(output, {
|
|
1399
|
-
Index: smithyClient._json,
|
|
1400
|
-
Region: smithyClient.expectString,
|
|
1401
|
-
View: (_) => de_ViewStatus(_),
|
|
1402
|
-
});
|
|
1403
|
-
};
|
|
1404
|
-
const de_RegionStatusList = (output, context) => {
|
|
1405
|
-
const retVal = (output || [])
|
|
1406
|
-
.filter((e) => e != null)
|
|
1407
|
-
.map((entry) => {
|
|
1408
|
-
return de_RegionStatus(entry);
|
|
1409
|
-
});
|
|
1410
|
-
return retVal;
|
|
1411
|
-
};
|
|
1412
|
-
const de_Resource = (output, context) => {
|
|
1413
|
-
return smithyClient.take(output, {
|
|
1414
|
-
Arn: smithyClient.expectString,
|
|
1415
|
-
LastReportedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1416
|
-
OwningAccountId: smithyClient.expectString,
|
|
1417
|
-
Properties: (_) => de_ResourcePropertyList(_),
|
|
1418
|
-
Region: smithyClient.expectString,
|
|
1419
|
-
ResourceType: smithyClient.expectString,
|
|
1420
|
-
Service: smithyClient.expectString,
|
|
1421
|
-
});
|
|
1422
|
-
};
|
|
1423
|
-
const de_ResourceList = (output, context) => {
|
|
1424
|
-
const retVal = (output || [])
|
|
1425
|
-
.filter((e) => e != null)
|
|
1426
|
-
.map((entry) => {
|
|
1427
|
-
return de_Resource(entry);
|
|
1428
|
-
});
|
|
1429
|
-
return retVal;
|
|
1430
|
-
};
|
|
1431
|
-
const de_ResourceProperty = (output, context) => {
|
|
1432
|
-
return smithyClient.take(output, {
|
|
1433
|
-
Data: (_) => de_Document(_),
|
|
1434
|
-
LastReportedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1435
|
-
Name: smithyClient.expectString,
|
|
1436
|
-
});
|
|
1437
|
-
};
|
|
1438
|
-
const de_ResourcePropertyList = (output, context) => {
|
|
1439
|
-
const retVal = (output || [])
|
|
1440
|
-
.filter((e) => e != null)
|
|
1441
|
-
.map((entry) => {
|
|
1442
|
-
return de_ResourceProperty(entry);
|
|
1443
|
-
});
|
|
1444
|
-
return retVal;
|
|
1445
|
-
};
|
|
1446
|
-
const de_StreamingAccessDetails = (output, context) => {
|
|
1447
|
-
return smithyClient.take(output, {
|
|
1448
|
-
CreatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1449
|
-
ServicePrincipal: smithyClient.expectString,
|
|
1450
|
-
});
|
|
1451
|
-
};
|
|
1452
|
-
const de_StreamingAccessDetailsList = (output, context) => {
|
|
1453
|
-
const retVal = (output || [])
|
|
1454
|
-
.filter((e) => e != null)
|
|
1455
|
-
.map((entry) => {
|
|
1456
|
-
return de_StreamingAccessDetails(entry);
|
|
1457
|
-
});
|
|
1458
|
-
return retVal;
|
|
1459
|
-
};
|
|
1460
|
-
const de_View = (output, context) => {
|
|
1461
|
-
return smithyClient.take(output, {
|
|
1462
|
-
Filters: smithyClient._json,
|
|
1463
|
-
IncludedProperties: smithyClient._json,
|
|
1464
|
-
LastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1465
|
-
Owner: smithyClient.expectString,
|
|
1466
|
-
Scope: smithyClient.expectString,
|
|
1467
|
-
ViewArn: smithyClient.expectString,
|
|
1468
|
-
});
|
|
1469
|
-
};
|
|
1470
|
-
const de_ViewList = (output, context) => {
|
|
1471
|
-
const retVal = (output || [])
|
|
1472
|
-
.filter((e) => e != null)
|
|
1473
|
-
.map((entry) => {
|
|
1474
|
-
return de_View(entry);
|
|
1475
|
-
});
|
|
1476
|
-
return retVal;
|
|
1477
|
-
};
|
|
1478
|
-
const de_ViewStatus = (output, context) => {
|
|
1479
|
-
return smithyClient.take(output, {
|
|
1480
|
-
ErrorDetails: smithyClient._json,
|
|
1481
|
-
Status: smithyClient.expectString,
|
|
1482
|
-
View: (_) => de_View(_),
|
|
1483
|
-
});
|
|
1484
|
-
};
|
|
1485
|
-
const de_Document = (output, context) => {
|
|
1486
|
-
return output;
|
|
1487
|
-
};
|
|
1488
|
-
const deserializeMetadata = (output) => ({
|
|
1489
|
-
httpStatusCode: output.statusCode,
|
|
1490
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1491
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1492
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1493
|
-
});
|
|
260
|
+
const _A = "Arn";
|
|
261
|
+
const _ADE = "AccessDeniedException";
|
|
262
|
+
const _ADV = "AssociateDefaultView";
|
|
263
|
+
const _ADVI = "AssociateDefaultViewInput";
|
|
264
|
+
const _ADVO = "AssociateDefaultViewOutput";
|
|
265
|
+
const _AI = "AccountId";
|
|
266
|
+
const _AIL = "AccountIdList";
|
|
267
|
+
const _AR = "AggregatorRegions";
|
|
268
|
+
const _AWSSAS = "AWSServiceAccessStatus";
|
|
269
|
+
const _BGV = "BatchGetView";
|
|
270
|
+
const _BGVE = "BatchGetViewError";
|
|
271
|
+
const _BGVEa = "BatchGetViewErrors";
|
|
272
|
+
const _BGVI = "BatchGetViewInput";
|
|
273
|
+
const _BGVO = "BatchGetViewOutput";
|
|
274
|
+
const _C = "Code";
|
|
275
|
+
const _CA = "CreatedAt";
|
|
276
|
+
const _CE = "ConflictException";
|
|
277
|
+
const _CI = "CreateIndex";
|
|
278
|
+
const _CII = "CreateIndexInput";
|
|
279
|
+
const _CIO = "CreateIndexOutput";
|
|
280
|
+
const _CRES = "CreateResourceExplorerSetup";
|
|
281
|
+
const _CRESI = "CreateResourceExplorerSetupInput";
|
|
282
|
+
const _CRESO = "CreateResourceExplorerSetupOutput";
|
|
283
|
+
const _CT = "ClientToken";
|
|
284
|
+
const _CV = "CreateView";
|
|
285
|
+
const _CVI = "CreateViewInput";
|
|
286
|
+
const _CVO = "CreateViewOutput";
|
|
287
|
+
const _Co = "Complete";
|
|
288
|
+
const _Cou = "Count";
|
|
289
|
+
const _D = "Data";
|
|
290
|
+
const _DDV = "DisassociateDefaultView";
|
|
291
|
+
const _DI = "DeleteIndex";
|
|
292
|
+
const _DIAR = "DeleteInAllRegions";
|
|
293
|
+
const _DII = "DeleteIndexInput";
|
|
294
|
+
const _DIO = "DeleteIndexOutput";
|
|
295
|
+
const _DRES = "DeleteResourceExplorerSetup";
|
|
296
|
+
const _DRESI = "DeleteResourceExplorerSetupInput";
|
|
297
|
+
const _DRESO = "DeleteResourceExplorerSetupOutput";
|
|
298
|
+
const _DV = "DeleteView";
|
|
299
|
+
const _DVI = "DeleteViewInput";
|
|
300
|
+
const _DVO = "DeleteViewOutput";
|
|
301
|
+
const _E = "Errors";
|
|
302
|
+
const _ED = "ErrorDetails";
|
|
303
|
+
const _EM = "ErrorMessage";
|
|
304
|
+
const _F = "Filters";
|
|
305
|
+
const _FL = "FieldList";
|
|
306
|
+
const _FS = "FilterString";
|
|
307
|
+
const _GALSC = "GetAccountLevelServiceConfiguration";
|
|
308
|
+
const _GALSCO = "GetAccountLevelServiceConfigurationOutput";
|
|
309
|
+
const _GDV = "GetDefaultView";
|
|
310
|
+
const _GDVO = "GetDefaultViewOutput";
|
|
311
|
+
const _GI = "GetIndex";
|
|
312
|
+
const _GIO = "GetIndexOutput";
|
|
313
|
+
const _GMV = "GetManagedView";
|
|
314
|
+
const _GMVI = "GetManagedViewInput";
|
|
315
|
+
const _GMVO = "GetManagedViewOutput";
|
|
316
|
+
const _GRES = "GetResourceExplorerSetup";
|
|
317
|
+
const _GRESI = "GetResourceExplorerSetupInput";
|
|
318
|
+
const _GRESO = "GetResourceExplorerSetupOutput";
|
|
319
|
+
const _GSI = "GetServiceIndex";
|
|
320
|
+
const _GSIO = "GetServiceIndexOutput";
|
|
321
|
+
const _GSV = "GetServiceView";
|
|
322
|
+
const _GSVI = "GetServiceViewInput";
|
|
323
|
+
const _GSVO = "GetServiceViewOutput";
|
|
324
|
+
const _GV = "GetView";
|
|
325
|
+
const _GVI = "GetViewInput";
|
|
326
|
+
const _GVO = "GetViewOutput";
|
|
327
|
+
const _I = "Index";
|
|
328
|
+
const _IL = "IndexList";
|
|
329
|
+
const _IP = "IncludedProperties";
|
|
330
|
+
const _IPL = "IncludedPropertyList";
|
|
331
|
+
const _IPn = "IncludedProperty";
|
|
332
|
+
const _IS = "IndexStatus";
|
|
333
|
+
const _ISE = "InternalServerException";
|
|
334
|
+
const _In = "Indexes";
|
|
335
|
+
const _LI = "ListIndexes";
|
|
336
|
+
const _LIFM = "ListIndexesForMembers";
|
|
337
|
+
const _LIFMI = "ListIndexesForMembersInput";
|
|
338
|
+
const _LIFMO = "ListIndexesForMembersOutput";
|
|
339
|
+
const _LII = "ListIndexesInput";
|
|
340
|
+
const _LIO = "ListIndexesOutput";
|
|
341
|
+
const _LMV = "ListManagedViews";
|
|
342
|
+
const _LMVI = "ListManagedViewsInput";
|
|
343
|
+
const _LMVO = "ListManagedViewsOutput";
|
|
344
|
+
const _LR = "ListResources";
|
|
345
|
+
const _LRA = "LastReportedAt";
|
|
346
|
+
const _LRI = "ListResourcesInput";
|
|
347
|
+
const _LRO = "ListResourcesOutput";
|
|
348
|
+
const _LSAFS = "ListStreamingAccessForServices";
|
|
349
|
+
const _LSAFSI = "ListStreamingAccessForServicesInput";
|
|
350
|
+
const _LSAFSO = "ListStreamingAccessForServicesOutput";
|
|
351
|
+
const _LSI = "ListServiceIndexes";
|
|
352
|
+
const _LSII = "ListServiceIndexesInput";
|
|
353
|
+
const _LSIO = "ListServiceIndexesOutput";
|
|
354
|
+
const _LSRT = "ListSupportedResourceTypes";
|
|
355
|
+
const _LSRTI = "ListSupportedResourceTypesInput";
|
|
356
|
+
const _LSRTO = "ListSupportedResourceTypesOutput";
|
|
357
|
+
const _LSV = "ListServiceViews";
|
|
358
|
+
const _LSVI = "ListServiceViewsInput";
|
|
359
|
+
const _LSVO = "ListServiceViewsOutput";
|
|
360
|
+
const _LTFR = "ListTagsForResource";
|
|
361
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
362
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
363
|
+
const _LUA = "LastUpdatedAt";
|
|
364
|
+
const _LV = "ListViews";
|
|
365
|
+
const _LVI = "ListViewsInput";
|
|
366
|
+
const _LVO = "ListViewsOutput";
|
|
367
|
+
const _M = "Message";
|
|
368
|
+
const _MI = "MemberIndex";
|
|
369
|
+
const _MIL = "MemberIndexList";
|
|
370
|
+
const _MR = "MaxResults";
|
|
371
|
+
const _MV = "ManagedView";
|
|
372
|
+
const _MVA = "ManagedViewArn";
|
|
373
|
+
const _MVN = "ManagedViewName";
|
|
374
|
+
const _MVa = "ManagedViews";
|
|
375
|
+
const _N = "Name";
|
|
376
|
+
const _NT = "NextToken";
|
|
377
|
+
const _O = "Owner";
|
|
378
|
+
const _OAI = "OwningAccountId";
|
|
379
|
+
const _OC = "OrgConfiguration";
|
|
380
|
+
const _P = "Properties";
|
|
381
|
+
const _QS = "QueryString";
|
|
382
|
+
const _R = "Regions";
|
|
383
|
+
const _RC = "ResourceCount";
|
|
384
|
+
const _RF = "ReplicatingFrom";
|
|
385
|
+
const _RL = "RegionList";
|
|
386
|
+
const _RLe = "ResourceList";
|
|
387
|
+
const _RNFE = "ResourceNotFoundException";
|
|
388
|
+
const _RP = "ResourcePolicy";
|
|
389
|
+
const _RPL = "ResourcePropertyList";
|
|
390
|
+
const _RPe = "ResourceProperty";
|
|
391
|
+
const _RS = "RegionStatus";
|
|
392
|
+
const _RSL = "RegionStatusList";
|
|
393
|
+
const _RT = "ReplicatingTo";
|
|
394
|
+
const _RTL = "ResourceTypeList";
|
|
395
|
+
const _RTe = "ResourceTypes";
|
|
396
|
+
const _RTes = "ResourceType";
|
|
397
|
+
const _Re = "Region";
|
|
398
|
+
const _Res = "Resources";
|
|
399
|
+
const _Reso = "Resource";
|
|
400
|
+
const _S = "State";
|
|
401
|
+
const _SAD = "StreamingAccessDetails";
|
|
402
|
+
const _SADL = "StreamingAccessDetailsList";
|
|
403
|
+
const _SAFS = "StreamingAccessForServices";
|
|
404
|
+
const _SAFSt = "StreamingAccessForService";
|
|
405
|
+
const _SF = "SearchFilter";
|
|
406
|
+
const _SI = "SearchInput";
|
|
407
|
+
const _SL = "StringList";
|
|
408
|
+
const _SLR = "ServiceLinkedRole";
|
|
409
|
+
const _SO = "SearchOutput";
|
|
410
|
+
const _SP = "ServicePrincipal";
|
|
411
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
412
|
+
const _SRT = "SupportedResourceType";
|
|
413
|
+
const _ST = "ScopeType";
|
|
414
|
+
const _SV = "ServiceViews";
|
|
415
|
+
const _SVA = "ServiceViewArn";
|
|
416
|
+
const _SVe = "ServiceView";
|
|
417
|
+
const _Sc = "Scope";
|
|
418
|
+
const _Se = "Service";
|
|
419
|
+
const _Sea = "Search";
|
|
420
|
+
const _St = "Status";
|
|
421
|
+
const _T = "Tags";
|
|
422
|
+
const _TE = "ThrottlingException";
|
|
423
|
+
const _TI = "TaskId";
|
|
424
|
+
const _TM = "TagMap";
|
|
425
|
+
const _TR = "TotalResources";
|
|
426
|
+
const _TRI = "TagResourceInput";
|
|
427
|
+
const _TRO = "TagResourceOutput";
|
|
428
|
+
const _TRa = "TagResource";
|
|
429
|
+
const _TS = "TrustedService";
|
|
430
|
+
const _Ty = "Type";
|
|
431
|
+
const _UE = "UnauthorizedException";
|
|
432
|
+
const _UIT = "UpdateIndexType";
|
|
433
|
+
const _UITI = "UpdateIndexTypeInput";
|
|
434
|
+
const _UITO = "UpdateIndexTypeOutput";
|
|
435
|
+
const _UR = "UntagResource";
|
|
436
|
+
const _URI = "UntagResourceInput";
|
|
437
|
+
const _URO = "UntagResourceOutput";
|
|
438
|
+
const _UV = "UpdateView";
|
|
439
|
+
const _UVI = "UpdateViewInput";
|
|
440
|
+
const _UVO = "UpdateViewOutput";
|
|
441
|
+
const _V = "Views";
|
|
442
|
+
const _VA = "ViewArn";
|
|
443
|
+
const _VAi = "ViewArns";
|
|
444
|
+
const _VE = "ValidationException";
|
|
445
|
+
const _VEF = "ValidationExceptionField";
|
|
446
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
447
|
+
const _VI = "ValidationIssue";
|
|
448
|
+
const _VL = "ViewList";
|
|
449
|
+
const _VN = "ViewName";
|
|
450
|
+
const _VS = "ViewStatus";
|
|
451
|
+
const _Va = "Value";
|
|
452
|
+
const _Ve = "Version";
|
|
453
|
+
const _Vi = "View";
|
|
454
|
+
const _c = "client";
|
|
455
|
+
const _e = "error";
|
|
456
|
+
const _h = "http";
|
|
457
|
+
const _hE = "httpError";
|
|
458
|
+
const _hQ = "httpQuery";
|
|
459
|
+
const _rA = "resourceArn";
|
|
460
|
+
const _s = "server";
|
|
461
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.resourceexplorer2";
|
|
1494
462
|
const _tK = "tagKeys";
|
|
463
|
+
const n0 = "com.amazonaws.resourceexplorer2";
|
|
464
|
+
var QueryString = [0, n0, _QS, 8, 0];
|
|
465
|
+
var AccessDeniedException = [
|
|
466
|
+
-3,
|
|
467
|
+
n0,
|
|
468
|
+
_ADE,
|
|
469
|
+
{
|
|
470
|
+
[_e]: _c,
|
|
471
|
+
[_hE]: 403,
|
|
472
|
+
},
|
|
473
|
+
[_M],
|
|
474
|
+
[0],
|
|
475
|
+
];
|
|
476
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
477
|
+
var AssociateDefaultViewInput = [3, n0, _ADVI, 0, [_VA], [0]];
|
|
478
|
+
var AssociateDefaultViewOutput = [3, n0, _ADVO, 0, [_VA], [0]];
|
|
479
|
+
var BatchGetViewError = [3, n0, _BGVE, 0, [_VA, _EM], [0, 0]];
|
|
480
|
+
var BatchGetViewInput = [3, n0, _BGVI, 0, [_VAi], [64 | 0]];
|
|
481
|
+
var BatchGetViewOutput = [
|
|
482
|
+
3,
|
|
483
|
+
n0,
|
|
484
|
+
_BGVO,
|
|
485
|
+
0,
|
|
486
|
+
[_V, _E],
|
|
487
|
+
[[() => ViewList, 0], () => BatchGetViewErrors],
|
|
488
|
+
];
|
|
489
|
+
var ConflictException = [
|
|
490
|
+
-3,
|
|
491
|
+
n0,
|
|
492
|
+
_CE,
|
|
493
|
+
{
|
|
494
|
+
[_e]: _c,
|
|
495
|
+
[_hE]: 409,
|
|
496
|
+
},
|
|
497
|
+
[_M],
|
|
498
|
+
[0],
|
|
499
|
+
];
|
|
500
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
501
|
+
var CreateIndexInput = [
|
|
502
|
+
3,
|
|
503
|
+
n0,
|
|
504
|
+
_CII,
|
|
505
|
+
0,
|
|
506
|
+
[_CT, _T],
|
|
507
|
+
[
|
|
508
|
+
[0, 4],
|
|
509
|
+
[() => TagMap, 0],
|
|
510
|
+
],
|
|
511
|
+
];
|
|
512
|
+
var CreateIndexOutput = [3, n0, _CIO, 0, [_A, _S, _CA], [0, 0, 5]];
|
|
513
|
+
var CreateResourceExplorerSetupInput = [
|
|
514
|
+
3,
|
|
515
|
+
n0,
|
|
516
|
+
_CRESI,
|
|
517
|
+
0,
|
|
518
|
+
[_RL, _AR, _VN],
|
|
519
|
+
[64 | 0, 64 | 0, 0],
|
|
520
|
+
];
|
|
521
|
+
var CreateResourceExplorerSetupOutput = [3, n0, _CRESO, 0, [_TI], [0]];
|
|
522
|
+
var CreateViewInput = [
|
|
523
|
+
3,
|
|
524
|
+
n0,
|
|
525
|
+
_CVI,
|
|
526
|
+
0,
|
|
527
|
+
[_CT, _VN, _IP, _Sc, _F, _T],
|
|
528
|
+
[[0, 4], 0, () => IncludedPropertyList, 0, [() => SearchFilter, 0], [() => TagMap, 0]],
|
|
529
|
+
];
|
|
530
|
+
var CreateViewOutput = [3, n0, _CVO, 0, [_Vi], [[() => View, 0]]];
|
|
531
|
+
var DeleteIndexInput = [3, n0, _DII, 0, [_A], [0]];
|
|
532
|
+
var DeleteIndexOutput = [3, n0, _DIO, 0, [_A, _S, _LUA], [0, 0, 5]];
|
|
533
|
+
var DeleteResourceExplorerSetupInput = [3, n0, _DRESI, 0, [_RL, _DIAR], [64 | 0, 2]];
|
|
534
|
+
var DeleteResourceExplorerSetupOutput = [3, n0, _DRESO, 0, [_TI], [0]];
|
|
535
|
+
var DeleteViewInput = [3, n0, _DVI, 0, [_VA], [0]];
|
|
536
|
+
var DeleteViewOutput = [3, n0, _DVO, 0, [_VA], [0]];
|
|
537
|
+
var ErrorDetails = [3, n0, _ED, 0, [_C, _M], [0, 0]];
|
|
538
|
+
var GetAccountLevelServiceConfigurationOutput = [
|
|
539
|
+
3,
|
|
540
|
+
n0,
|
|
541
|
+
_GALSCO,
|
|
542
|
+
0,
|
|
543
|
+
[_OC],
|
|
544
|
+
[() => OrgConfiguration],
|
|
545
|
+
];
|
|
546
|
+
var GetDefaultViewOutput = [3, n0, _GDVO, 0, [_VA], [0]];
|
|
547
|
+
var GetIndexOutput = [
|
|
548
|
+
3,
|
|
549
|
+
n0,
|
|
550
|
+
_GIO,
|
|
551
|
+
0,
|
|
552
|
+
[_A, _Ty, _S, _RF, _RT, _CA, _LUA, _T],
|
|
553
|
+
[0, 0, 0, 64 | 0, 64 | 0, 5, 5, [() => TagMap, 0]],
|
|
554
|
+
];
|
|
555
|
+
var GetManagedViewInput = [3, n0, _GMVI, 0, [_MVA], [0]];
|
|
556
|
+
var GetManagedViewOutput = [3, n0, _GMVO, 0, [_MV], [[() => ManagedView, 0]]];
|
|
557
|
+
var GetResourceExplorerSetupInput = [3, n0, _GRESI, 0, [_TI, _MR, _NT], [0, 1, 0]];
|
|
558
|
+
var GetResourceExplorerSetupOutput = [
|
|
559
|
+
3,
|
|
560
|
+
n0,
|
|
561
|
+
_GRESO,
|
|
562
|
+
0,
|
|
563
|
+
[_R, _NT],
|
|
564
|
+
[[() => RegionStatusList, 0], 0],
|
|
565
|
+
];
|
|
566
|
+
var GetServiceIndexOutput = [3, n0, _GSIO, 0, [_A, _Ty], [0, 0]];
|
|
567
|
+
var GetServiceViewInput = [3, n0, _GSVI, 0, [_SVA], [0]];
|
|
568
|
+
var GetServiceViewOutput = [3, n0, _GSVO, 0, [_Vi], [[() => ServiceView, 0]]];
|
|
569
|
+
var GetViewInput = [3, n0, _GVI, 0, [_VA], [0]];
|
|
570
|
+
var GetViewOutput = [
|
|
571
|
+
3,
|
|
572
|
+
n0,
|
|
573
|
+
_GVO,
|
|
574
|
+
0,
|
|
575
|
+
[_Vi, _T],
|
|
576
|
+
[
|
|
577
|
+
[() => View, 0],
|
|
578
|
+
[() => TagMap, 0],
|
|
579
|
+
],
|
|
580
|
+
];
|
|
581
|
+
var IncludedProperty = [3, n0, _IPn, 0, [_N], [0]];
|
|
582
|
+
var Index = [3, n0, _I, 0, [_Re, _A, _Ty], [0, 0, 0]];
|
|
583
|
+
var IndexStatus = [3, n0, _IS, 0, [_St, _I, _ED], [0, () => Index, () => ErrorDetails]];
|
|
584
|
+
var InternalServerException = [
|
|
585
|
+
-3,
|
|
586
|
+
n0,
|
|
587
|
+
_ISE,
|
|
588
|
+
{
|
|
589
|
+
[_e]: _s,
|
|
590
|
+
[_hE]: 500,
|
|
591
|
+
},
|
|
592
|
+
[_M],
|
|
593
|
+
[0],
|
|
594
|
+
];
|
|
595
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
596
|
+
var ListIndexesForMembersInput = [3, n0, _LIFMI, 0, [_AIL, _MR, _NT], [64 | 0, 1, 0]];
|
|
597
|
+
var ListIndexesForMembersOutput = [
|
|
598
|
+
3,
|
|
599
|
+
n0,
|
|
600
|
+
_LIFMO,
|
|
601
|
+
0,
|
|
602
|
+
[_In, _NT],
|
|
603
|
+
[() => MemberIndexList, 0],
|
|
604
|
+
];
|
|
605
|
+
var ListIndexesInput = [3, n0, _LII, 0, [_Ty, _R, _MR, _NT], [0, 64 | 0, 1, 0]];
|
|
606
|
+
var ListIndexesOutput = [3, n0, _LIO, 0, [_In, _NT], [() => IndexList, 0]];
|
|
607
|
+
var ListManagedViewsInput = [3, n0, _LMVI, 0, [_MR, _NT, _SP], [1, 0, 0]];
|
|
608
|
+
var ListManagedViewsOutput = [3, n0, _LMVO, 0, [_NT, _MVa], [0, 64 | 0]];
|
|
609
|
+
var ListResourcesInput = [
|
|
610
|
+
3,
|
|
611
|
+
n0,
|
|
612
|
+
_LRI,
|
|
613
|
+
0,
|
|
614
|
+
[_F, _MR, _VA, _NT],
|
|
615
|
+
[[() => SearchFilter, 0], 1, 0, 0],
|
|
616
|
+
];
|
|
617
|
+
var ListResourcesOutput = [3, n0, _LRO, 0, [_Res, _NT, _VA], [() => ResourceList, 0, 0]];
|
|
618
|
+
var ListServiceIndexesInput = [3, n0, _LSII, 0, [_R, _MR, _NT], [64 | 0, 1, 0]];
|
|
619
|
+
var ListServiceIndexesOutput = [3, n0, _LSIO, 0, [_In, _NT], [() => IndexList, 0]];
|
|
620
|
+
var ListServiceViewsInput = [3, n0, _LSVI, 0, [_MR, _NT], [1, 0]];
|
|
621
|
+
var ListServiceViewsOutput = [3, n0, _LSVO, 0, [_NT, _SV], [0, 64 | 0]];
|
|
622
|
+
var ListStreamingAccessForServicesInput = [3, n0, _LSAFSI, 0, [_MR, _NT], [1, 0]];
|
|
623
|
+
var ListStreamingAccessForServicesOutput = [
|
|
624
|
+
3,
|
|
625
|
+
n0,
|
|
626
|
+
_LSAFSO,
|
|
627
|
+
0,
|
|
628
|
+
[_SAFS, _NT],
|
|
629
|
+
[() => StreamingAccessDetailsList, 0],
|
|
630
|
+
];
|
|
631
|
+
var ListSupportedResourceTypesInput = [3, n0, _LSRTI, 0, [_NT, _MR], [0, 1]];
|
|
632
|
+
var ListSupportedResourceTypesOutput = [
|
|
633
|
+
3,
|
|
634
|
+
n0,
|
|
635
|
+
_LSRTO,
|
|
636
|
+
0,
|
|
637
|
+
[_RTe, _NT],
|
|
638
|
+
[() => ResourceTypeList, 0],
|
|
639
|
+
];
|
|
640
|
+
var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_rA], [[0, 1]]];
|
|
641
|
+
var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_T], [[() => TagMap, 0]]];
|
|
642
|
+
var ListViewsInput = [3, n0, _LVI, 0, [_NT, _MR], [0, 1]];
|
|
643
|
+
var ListViewsOutput = [3, n0, _LVO, 0, [_V, _NT], [64 | 0, 0]];
|
|
644
|
+
var ManagedView = [
|
|
645
|
+
3,
|
|
646
|
+
n0,
|
|
647
|
+
_MV,
|
|
648
|
+
0,
|
|
649
|
+
[_MVA, _MVN, _TS, _LUA, _O, _Sc, _IP, _F, _RP, _Ve],
|
|
650
|
+
[0, 0, 0, 5, 0, 0, () => IncludedPropertyList, [() => SearchFilter, 0], 0, 0],
|
|
651
|
+
];
|
|
652
|
+
var MemberIndex = [3, n0, _MI, 0, [_AI, _Re, _A, _Ty], [0, 0, 0, 0]];
|
|
653
|
+
var OrgConfiguration = [3, n0, _OC, 0, [_AWSSAS, _SLR], [0, 0]];
|
|
654
|
+
var RegionStatus = [
|
|
655
|
+
3,
|
|
656
|
+
n0,
|
|
657
|
+
_RS,
|
|
658
|
+
0,
|
|
659
|
+
[_Re, _I, _Vi],
|
|
660
|
+
[0, () => IndexStatus, [() => ViewStatus, 0]],
|
|
661
|
+
];
|
|
662
|
+
var Resource = [
|
|
663
|
+
3,
|
|
664
|
+
n0,
|
|
665
|
+
_Reso,
|
|
666
|
+
0,
|
|
667
|
+
[_A, _OAI, _Re, _RTes, _Se, _LRA, _P],
|
|
668
|
+
[0, 0, 0, 0, 0, 5, () => ResourcePropertyList],
|
|
669
|
+
];
|
|
670
|
+
var ResourceCount = [3, n0, _RC, 0, [_TR, _Co], [1, 2]];
|
|
671
|
+
var ResourceNotFoundException = [
|
|
672
|
+
-3,
|
|
673
|
+
n0,
|
|
674
|
+
_RNFE,
|
|
675
|
+
{
|
|
676
|
+
[_e]: _c,
|
|
677
|
+
[_hE]: 404,
|
|
678
|
+
},
|
|
679
|
+
[_M],
|
|
680
|
+
[0],
|
|
681
|
+
];
|
|
682
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
683
|
+
var ResourceProperty = [3, n0, _RPe, 0, [_N, _LRA, _D], [0, 5, 15]];
|
|
684
|
+
var SearchFilter = [3, n0, _SF, 8, [_FS], [0]];
|
|
685
|
+
var SearchInput = [
|
|
686
|
+
3,
|
|
687
|
+
n0,
|
|
688
|
+
_SI,
|
|
689
|
+
0,
|
|
690
|
+
[_QS, _MR, _VA, _NT],
|
|
691
|
+
[[() => QueryString, 0], 1, 0, 0],
|
|
692
|
+
];
|
|
693
|
+
var SearchOutput = [
|
|
694
|
+
3,
|
|
695
|
+
n0,
|
|
696
|
+
_SO,
|
|
697
|
+
0,
|
|
698
|
+
[_Res, _NT, _VA, _Cou],
|
|
699
|
+
[() => ResourceList, 0, 0, () => ResourceCount],
|
|
700
|
+
];
|
|
701
|
+
var ServiceQuotaExceededException = [
|
|
702
|
+
-3,
|
|
703
|
+
n0,
|
|
704
|
+
_SQEE,
|
|
705
|
+
{
|
|
706
|
+
[_e]: _c,
|
|
707
|
+
[_hE]: 402,
|
|
708
|
+
},
|
|
709
|
+
[_M, _N, _Va],
|
|
710
|
+
[0, 0, 0],
|
|
711
|
+
];
|
|
712
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
713
|
+
var ServiceView = [
|
|
714
|
+
3,
|
|
715
|
+
n0,
|
|
716
|
+
_SVe,
|
|
717
|
+
0,
|
|
718
|
+
[_SVA, _F, _IP, _SAFSt, _ST],
|
|
719
|
+
[0, [() => SearchFilter, 0], () => IncludedPropertyList, 0, 0],
|
|
720
|
+
];
|
|
721
|
+
var StreamingAccessDetails = [3, n0, _SAD, 0, [_SP, _CA], [0, 5]];
|
|
722
|
+
var SupportedResourceType = [3, n0, _SRT, 0, [_Se, _RTes], [0, 0]];
|
|
723
|
+
var TagResourceInput = [
|
|
724
|
+
3,
|
|
725
|
+
n0,
|
|
726
|
+
_TRI,
|
|
727
|
+
0,
|
|
728
|
+
[_rA, _T],
|
|
729
|
+
[
|
|
730
|
+
[0, 1],
|
|
731
|
+
[() => TagMap, 0],
|
|
732
|
+
],
|
|
733
|
+
];
|
|
734
|
+
var TagResourceOutput = [3, n0, _TRO, 0, [], []];
|
|
735
|
+
var ThrottlingException = [
|
|
736
|
+
-3,
|
|
737
|
+
n0,
|
|
738
|
+
_TE,
|
|
739
|
+
{
|
|
740
|
+
[_e]: _c,
|
|
741
|
+
[_hE]: 429,
|
|
742
|
+
},
|
|
743
|
+
[_M],
|
|
744
|
+
[0],
|
|
745
|
+
];
|
|
746
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
747
|
+
var UnauthorizedException = [
|
|
748
|
+
-3,
|
|
749
|
+
n0,
|
|
750
|
+
_UE,
|
|
751
|
+
{
|
|
752
|
+
[_e]: _c,
|
|
753
|
+
[_hE]: 401,
|
|
754
|
+
},
|
|
755
|
+
[_M],
|
|
756
|
+
[0],
|
|
757
|
+
];
|
|
758
|
+
schema.TypeRegistry.for(n0).registerError(UnauthorizedException, UnauthorizedException$1);
|
|
759
|
+
var UntagResourceInput = [
|
|
760
|
+
3,
|
|
761
|
+
n0,
|
|
762
|
+
_URI,
|
|
763
|
+
0,
|
|
764
|
+
[_rA, _tK],
|
|
765
|
+
[
|
|
766
|
+
[0, 1],
|
|
767
|
+
[
|
|
768
|
+
() => StringList,
|
|
769
|
+
{
|
|
770
|
+
[_hQ]: _tK,
|
|
771
|
+
},
|
|
772
|
+
],
|
|
773
|
+
],
|
|
774
|
+
];
|
|
775
|
+
var UntagResourceOutput = [3, n0, _URO, 0, [], []];
|
|
776
|
+
var UpdateIndexTypeInput = [3, n0, _UITI, 0, [_A, _Ty], [0, 0]];
|
|
777
|
+
var UpdateIndexTypeOutput = [3, n0, _UITO, 0, [_A, _Ty, _S, _LUA], [0, 0, 0, 5]];
|
|
778
|
+
var UpdateViewInput = [
|
|
779
|
+
3,
|
|
780
|
+
n0,
|
|
781
|
+
_UVI,
|
|
782
|
+
0,
|
|
783
|
+
[_VA, _IP, _F],
|
|
784
|
+
[0, () => IncludedPropertyList, [() => SearchFilter, 0]],
|
|
785
|
+
];
|
|
786
|
+
var UpdateViewOutput = [3, n0, _UVO, 0, [_Vi], [[() => View, 0]]];
|
|
787
|
+
var ValidationException = [
|
|
788
|
+
-3,
|
|
789
|
+
n0,
|
|
790
|
+
_VE,
|
|
791
|
+
{
|
|
792
|
+
[_e]: _c,
|
|
793
|
+
[_hE]: 400,
|
|
794
|
+
},
|
|
795
|
+
[_M, _FL],
|
|
796
|
+
[0, () => ValidationExceptionFieldList],
|
|
797
|
+
];
|
|
798
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
799
|
+
var ValidationExceptionField = [3, n0, _VEF, 0, [_N, _VI], [0, 0]];
|
|
800
|
+
var View = [
|
|
801
|
+
3,
|
|
802
|
+
n0,
|
|
803
|
+
_Vi,
|
|
804
|
+
0,
|
|
805
|
+
[_VA, _O, _LUA, _Sc, _IP, _F],
|
|
806
|
+
[0, 0, 5, 0, () => IncludedPropertyList, [() => SearchFilter, 0]],
|
|
807
|
+
];
|
|
808
|
+
var ViewStatus = [
|
|
809
|
+
3,
|
|
810
|
+
n0,
|
|
811
|
+
_VS,
|
|
812
|
+
0,
|
|
813
|
+
[_St, _Vi, _ED],
|
|
814
|
+
[0, [() => View, 0], () => ErrorDetails],
|
|
815
|
+
];
|
|
816
|
+
var __Unit = "unit";
|
|
817
|
+
var ResourceExplorer2ServiceException = [
|
|
818
|
+
-3,
|
|
819
|
+
_sm,
|
|
820
|
+
"ResourceExplorer2ServiceException",
|
|
821
|
+
0,
|
|
822
|
+
[],
|
|
823
|
+
[],
|
|
824
|
+
];
|
|
825
|
+
schema.TypeRegistry.for(_sm).registerError(ResourceExplorer2ServiceException, ResourceExplorer2ServiceException$1);
|
|
826
|
+
var BatchGetViewErrors = [1, n0, _BGVEa, 0, () => BatchGetViewError];
|
|
827
|
+
var IncludedPropertyList = [1, n0, _IPL, 0, () => IncludedProperty];
|
|
828
|
+
var IndexList = [1, n0, _IL, 0, () => Index];
|
|
829
|
+
var MemberIndexList = [1, n0, _MIL, 0, () => MemberIndex];
|
|
830
|
+
var RegionStatusList = [1, n0, _RSL, 0, [() => RegionStatus, 0]];
|
|
831
|
+
var ResourceList = [1, n0, _RLe, 0, () => Resource];
|
|
832
|
+
var ResourcePropertyList = [1, n0, _RPL, 0, () => ResourceProperty];
|
|
833
|
+
var ResourceTypeList = [1, n0, _RTL, 0, () => SupportedResourceType];
|
|
834
|
+
var StreamingAccessDetailsList = [1, n0, _SADL, 0, () => StreamingAccessDetails];
|
|
835
|
+
var StringList = [1, n0, _SL, 8, 0];
|
|
836
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
|
|
837
|
+
var ViewList = [1, n0, _VL, 0, [() => View, 0]];
|
|
838
|
+
var TagMap = [2, n0, _TM, 8, 0, 0];
|
|
839
|
+
var AssociateDefaultView = [
|
|
840
|
+
9,
|
|
841
|
+
n0,
|
|
842
|
+
_ADV,
|
|
843
|
+
{
|
|
844
|
+
[_h]: ["POST", "/AssociateDefaultView", 200],
|
|
845
|
+
},
|
|
846
|
+
() => AssociateDefaultViewInput,
|
|
847
|
+
() => AssociateDefaultViewOutput,
|
|
848
|
+
];
|
|
849
|
+
var BatchGetView = [
|
|
850
|
+
9,
|
|
851
|
+
n0,
|
|
852
|
+
_BGV,
|
|
853
|
+
{
|
|
854
|
+
[_h]: ["POST", "/BatchGetView", 200],
|
|
855
|
+
},
|
|
856
|
+
() => BatchGetViewInput,
|
|
857
|
+
() => BatchGetViewOutput,
|
|
858
|
+
];
|
|
859
|
+
var CreateIndex = [
|
|
860
|
+
9,
|
|
861
|
+
n0,
|
|
862
|
+
_CI,
|
|
863
|
+
{
|
|
864
|
+
[_h]: ["POST", "/CreateIndex", 200],
|
|
865
|
+
},
|
|
866
|
+
() => CreateIndexInput,
|
|
867
|
+
() => CreateIndexOutput,
|
|
868
|
+
];
|
|
869
|
+
var CreateResourceExplorerSetup = [
|
|
870
|
+
9,
|
|
871
|
+
n0,
|
|
872
|
+
_CRES,
|
|
873
|
+
{
|
|
874
|
+
[_h]: ["POST", "/CreateResourceExplorerSetup", 200],
|
|
875
|
+
},
|
|
876
|
+
() => CreateResourceExplorerSetupInput,
|
|
877
|
+
() => CreateResourceExplorerSetupOutput,
|
|
878
|
+
];
|
|
879
|
+
var CreateView = [
|
|
880
|
+
9,
|
|
881
|
+
n0,
|
|
882
|
+
_CV,
|
|
883
|
+
{
|
|
884
|
+
[_h]: ["POST", "/CreateView", 200],
|
|
885
|
+
},
|
|
886
|
+
() => CreateViewInput,
|
|
887
|
+
() => CreateViewOutput,
|
|
888
|
+
];
|
|
889
|
+
var DeleteIndex = [
|
|
890
|
+
9,
|
|
891
|
+
n0,
|
|
892
|
+
_DI,
|
|
893
|
+
{
|
|
894
|
+
[_h]: ["POST", "/DeleteIndex", 200],
|
|
895
|
+
},
|
|
896
|
+
() => DeleteIndexInput,
|
|
897
|
+
() => DeleteIndexOutput,
|
|
898
|
+
];
|
|
899
|
+
var DeleteResourceExplorerSetup = [
|
|
900
|
+
9,
|
|
901
|
+
n0,
|
|
902
|
+
_DRES,
|
|
903
|
+
{
|
|
904
|
+
[_h]: ["POST", "/DeleteResourceExplorerSetup", 200],
|
|
905
|
+
},
|
|
906
|
+
() => DeleteResourceExplorerSetupInput,
|
|
907
|
+
() => DeleteResourceExplorerSetupOutput,
|
|
908
|
+
];
|
|
909
|
+
var DeleteView = [
|
|
910
|
+
9,
|
|
911
|
+
n0,
|
|
912
|
+
_DV,
|
|
913
|
+
{
|
|
914
|
+
[_h]: ["POST", "/DeleteView", 200],
|
|
915
|
+
},
|
|
916
|
+
() => DeleteViewInput,
|
|
917
|
+
() => DeleteViewOutput,
|
|
918
|
+
];
|
|
919
|
+
var DisassociateDefaultView = [
|
|
920
|
+
9,
|
|
921
|
+
n0,
|
|
922
|
+
_DDV,
|
|
923
|
+
{
|
|
924
|
+
[_h]: ["POST", "/DisassociateDefaultView", 200],
|
|
925
|
+
},
|
|
926
|
+
() => __Unit,
|
|
927
|
+
() => __Unit,
|
|
928
|
+
];
|
|
929
|
+
var GetAccountLevelServiceConfiguration = [
|
|
930
|
+
9,
|
|
931
|
+
n0,
|
|
932
|
+
_GALSC,
|
|
933
|
+
{
|
|
934
|
+
[_h]: ["POST", "/GetAccountLevelServiceConfiguration", 200],
|
|
935
|
+
},
|
|
936
|
+
() => __Unit,
|
|
937
|
+
() => GetAccountLevelServiceConfigurationOutput,
|
|
938
|
+
];
|
|
939
|
+
var GetDefaultView = [
|
|
940
|
+
9,
|
|
941
|
+
n0,
|
|
942
|
+
_GDV,
|
|
943
|
+
{
|
|
944
|
+
[_h]: ["POST", "/GetDefaultView", 200],
|
|
945
|
+
},
|
|
946
|
+
() => __Unit,
|
|
947
|
+
() => GetDefaultViewOutput,
|
|
948
|
+
];
|
|
949
|
+
var GetIndex = [
|
|
950
|
+
9,
|
|
951
|
+
n0,
|
|
952
|
+
_GI,
|
|
953
|
+
{
|
|
954
|
+
[_h]: ["POST", "/GetIndex", 200],
|
|
955
|
+
},
|
|
956
|
+
() => __Unit,
|
|
957
|
+
() => GetIndexOutput,
|
|
958
|
+
];
|
|
959
|
+
var GetManagedView = [
|
|
960
|
+
9,
|
|
961
|
+
n0,
|
|
962
|
+
_GMV,
|
|
963
|
+
{
|
|
964
|
+
[_h]: ["POST", "/GetManagedView", 200],
|
|
965
|
+
},
|
|
966
|
+
() => GetManagedViewInput,
|
|
967
|
+
() => GetManagedViewOutput,
|
|
968
|
+
];
|
|
969
|
+
var GetResourceExplorerSetup = [
|
|
970
|
+
9,
|
|
971
|
+
n0,
|
|
972
|
+
_GRES,
|
|
973
|
+
{
|
|
974
|
+
[_h]: ["POST", "/GetResourceExplorerSetup", 200],
|
|
975
|
+
},
|
|
976
|
+
() => GetResourceExplorerSetupInput,
|
|
977
|
+
() => GetResourceExplorerSetupOutput,
|
|
978
|
+
];
|
|
979
|
+
var GetServiceIndex = [
|
|
980
|
+
9,
|
|
981
|
+
n0,
|
|
982
|
+
_GSI,
|
|
983
|
+
{
|
|
984
|
+
[_h]: ["POST", "/GetServiceIndex", 200],
|
|
985
|
+
},
|
|
986
|
+
() => __Unit,
|
|
987
|
+
() => GetServiceIndexOutput,
|
|
988
|
+
];
|
|
989
|
+
var GetServiceView = [
|
|
990
|
+
9,
|
|
991
|
+
n0,
|
|
992
|
+
_GSV,
|
|
993
|
+
{
|
|
994
|
+
[_h]: ["POST", "/GetServiceView", 200],
|
|
995
|
+
},
|
|
996
|
+
() => GetServiceViewInput,
|
|
997
|
+
() => GetServiceViewOutput,
|
|
998
|
+
];
|
|
999
|
+
var GetView = [
|
|
1000
|
+
9,
|
|
1001
|
+
n0,
|
|
1002
|
+
_GV,
|
|
1003
|
+
{
|
|
1004
|
+
[_h]: ["POST", "/GetView", 200],
|
|
1005
|
+
},
|
|
1006
|
+
() => GetViewInput,
|
|
1007
|
+
() => GetViewOutput,
|
|
1008
|
+
];
|
|
1009
|
+
var ListIndexes = [
|
|
1010
|
+
9,
|
|
1011
|
+
n0,
|
|
1012
|
+
_LI,
|
|
1013
|
+
{
|
|
1014
|
+
[_h]: ["POST", "/ListIndexes", 200],
|
|
1015
|
+
},
|
|
1016
|
+
() => ListIndexesInput,
|
|
1017
|
+
() => ListIndexesOutput,
|
|
1018
|
+
];
|
|
1019
|
+
var ListIndexesForMembers = [
|
|
1020
|
+
9,
|
|
1021
|
+
n0,
|
|
1022
|
+
_LIFM,
|
|
1023
|
+
{
|
|
1024
|
+
[_h]: ["POST", "/ListIndexesForMembers", 200],
|
|
1025
|
+
},
|
|
1026
|
+
() => ListIndexesForMembersInput,
|
|
1027
|
+
() => ListIndexesForMembersOutput,
|
|
1028
|
+
];
|
|
1029
|
+
var ListManagedViews = [
|
|
1030
|
+
9,
|
|
1031
|
+
n0,
|
|
1032
|
+
_LMV,
|
|
1033
|
+
{
|
|
1034
|
+
[_h]: ["POST", "/ListManagedViews", 200],
|
|
1035
|
+
},
|
|
1036
|
+
() => ListManagedViewsInput,
|
|
1037
|
+
() => ListManagedViewsOutput,
|
|
1038
|
+
];
|
|
1039
|
+
var ListResources = [
|
|
1040
|
+
9,
|
|
1041
|
+
n0,
|
|
1042
|
+
_LR,
|
|
1043
|
+
{
|
|
1044
|
+
[_h]: ["POST", "/ListResources", 200],
|
|
1045
|
+
},
|
|
1046
|
+
() => ListResourcesInput,
|
|
1047
|
+
() => ListResourcesOutput,
|
|
1048
|
+
];
|
|
1049
|
+
var ListServiceIndexes = [
|
|
1050
|
+
9,
|
|
1051
|
+
n0,
|
|
1052
|
+
_LSI,
|
|
1053
|
+
{
|
|
1054
|
+
[_h]: ["POST", "/ListServiceIndexes", 200],
|
|
1055
|
+
},
|
|
1056
|
+
() => ListServiceIndexesInput,
|
|
1057
|
+
() => ListServiceIndexesOutput,
|
|
1058
|
+
];
|
|
1059
|
+
var ListServiceViews = [
|
|
1060
|
+
9,
|
|
1061
|
+
n0,
|
|
1062
|
+
_LSV,
|
|
1063
|
+
{
|
|
1064
|
+
[_h]: ["POST", "/ListServiceViews", 200],
|
|
1065
|
+
},
|
|
1066
|
+
() => ListServiceViewsInput,
|
|
1067
|
+
() => ListServiceViewsOutput,
|
|
1068
|
+
];
|
|
1069
|
+
var ListStreamingAccessForServices = [
|
|
1070
|
+
9,
|
|
1071
|
+
n0,
|
|
1072
|
+
_LSAFS,
|
|
1073
|
+
{
|
|
1074
|
+
[_h]: ["POST", "/ListStreamingAccessForServices", 200],
|
|
1075
|
+
},
|
|
1076
|
+
() => ListStreamingAccessForServicesInput,
|
|
1077
|
+
() => ListStreamingAccessForServicesOutput,
|
|
1078
|
+
];
|
|
1079
|
+
var ListSupportedResourceTypes = [
|
|
1080
|
+
9,
|
|
1081
|
+
n0,
|
|
1082
|
+
_LSRT,
|
|
1083
|
+
{
|
|
1084
|
+
[_h]: ["POST", "/ListSupportedResourceTypes", 200],
|
|
1085
|
+
},
|
|
1086
|
+
() => ListSupportedResourceTypesInput,
|
|
1087
|
+
() => ListSupportedResourceTypesOutput,
|
|
1088
|
+
];
|
|
1089
|
+
var ListTagsForResource = [
|
|
1090
|
+
9,
|
|
1091
|
+
n0,
|
|
1092
|
+
_LTFR,
|
|
1093
|
+
{
|
|
1094
|
+
[_h]: ["GET", "/tags/{resourceArn}", 200],
|
|
1095
|
+
},
|
|
1096
|
+
() => ListTagsForResourceInput,
|
|
1097
|
+
() => ListTagsForResourceOutput,
|
|
1098
|
+
];
|
|
1099
|
+
var ListViews = [
|
|
1100
|
+
9,
|
|
1101
|
+
n0,
|
|
1102
|
+
_LV,
|
|
1103
|
+
{
|
|
1104
|
+
[_h]: ["POST", "/ListViews", 200],
|
|
1105
|
+
},
|
|
1106
|
+
() => ListViewsInput,
|
|
1107
|
+
() => ListViewsOutput,
|
|
1108
|
+
];
|
|
1109
|
+
var Search = [
|
|
1110
|
+
9,
|
|
1111
|
+
n0,
|
|
1112
|
+
_Sea,
|
|
1113
|
+
{
|
|
1114
|
+
[_h]: ["POST", "/Search", 200],
|
|
1115
|
+
},
|
|
1116
|
+
() => SearchInput,
|
|
1117
|
+
() => SearchOutput,
|
|
1118
|
+
];
|
|
1119
|
+
var TagResource = [
|
|
1120
|
+
9,
|
|
1121
|
+
n0,
|
|
1122
|
+
_TRa,
|
|
1123
|
+
{
|
|
1124
|
+
[_h]: ["POST", "/tags/{resourceArn}", 200],
|
|
1125
|
+
},
|
|
1126
|
+
() => TagResourceInput,
|
|
1127
|
+
() => TagResourceOutput,
|
|
1128
|
+
];
|
|
1129
|
+
var UntagResource = [
|
|
1130
|
+
9,
|
|
1131
|
+
n0,
|
|
1132
|
+
_UR,
|
|
1133
|
+
{
|
|
1134
|
+
[_h]: ["DELETE", "/tags/{resourceArn}", 200],
|
|
1135
|
+
},
|
|
1136
|
+
() => UntagResourceInput,
|
|
1137
|
+
() => UntagResourceOutput,
|
|
1138
|
+
];
|
|
1139
|
+
var UpdateIndexType = [
|
|
1140
|
+
9,
|
|
1141
|
+
n0,
|
|
1142
|
+
_UIT,
|
|
1143
|
+
{
|
|
1144
|
+
[_h]: ["POST", "/UpdateIndexType", 200],
|
|
1145
|
+
},
|
|
1146
|
+
() => UpdateIndexTypeInput,
|
|
1147
|
+
() => UpdateIndexTypeOutput,
|
|
1148
|
+
];
|
|
1149
|
+
var UpdateView = [
|
|
1150
|
+
9,
|
|
1151
|
+
n0,
|
|
1152
|
+
_UV,
|
|
1153
|
+
{
|
|
1154
|
+
[_h]: ["POST", "/UpdateView", 200],
|
|
1155
|
+
},
|
|
1156
|
+
() => UpdateViewInput,
|
|
1157
|
+
() => UpdateViewOutput,
|
|
1158
|
+
];
|
|
1495
1159
|
|
|
1496
1160
|
class AssociateDefaultViewCommand extends smithyClient.Command
|
|
1497
1161
|
.classBuilder()
|
|
1498
1162
|
.ep(commonParams)
|
|
1499
1163
|
.m(function (Command, cs, config, o) {
|
|
1500
|
-
return [
|
|
1501
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1502
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1503
|
-
];
|
|
1164
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1504
1165
|
})
|
|
1505
1166
|
.s("ResourceExplorer", "AssociateDefaultView", {})
|
|
1506
1167
|
.n("ResourceExplorer2Client", "AssociateDefaultViewCommand")
|
|
1507
|
-
.
|
|
1508
|
-
.ser(se_AssociateDefaultViewCommand)
|
|
1509
|
-
.de(de_AssociateDefaultViewCommand)
|
|
1168
|
+
.sc(AssociateDefaultView)
|
|
1510
1169
|
.build() {
|
|
1511
1170
|
}
|
|
1512
1171
|
|
|
@@ -1514,16 +1173,11 @@ class BatchGetViewCommand extends smithyClient.Command
|
|
|
1514
1173
|
.classBuilder()
|
|
1515
1174
|
.ep(commonParams)
|
|
1516
1175
|
.m(function (Command, cs, config, o) {
|
|
1517
|
-
return [
|
|
1518
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1519
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1520
|
-
];
|
|
1176
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1521
1177
|
})
|
|
1522
1178
|
.s("ResourceExplorer", "BatchGetView", {})
|
|
1523
1179
|
.n("ResourceExplorer2Client", "BatchGetViewCommand")
|
|
1524
|
-
.
|
|
1525
|
-
.ser(se_BatchGetViewCommand)
|
|
1526
|
-
.de(de_BatchGetViewCommand)
|
|
1180
|
+
.sc(BatchGetView)
|
|
1527
1181
|
.build() {
|
|
1528
1182
|
}
|
|
1529
1183
|
|
|
@@ -1531,16 +1185,11 @@ class CreateIndexCommand extends smithyClient.Command
|
|
|
1531
1185
|
.classBuilder()
|
|
1532
1186
|
.ep(commonParams)
|
|
1533
1187
|
.m(function (Command, cs, config, o) {
|
|
1534
|
-
return [
|
|
1535
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1536
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1537
|
-
];
|
|
1188
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1538
1189
|
})
|
|
1539
1190
|
.s("ResourceExplorer", "CreateIndex", {})
|
|
1540
1191
|
.n("ResourceExplorer2Client", "CreateIndexCommand")
|
|
1541
|
-
.
|
|
1542
|
-
.ser(se_CreateIndexCommand)
|
|
1543
|
-
.de(de_CreateIndexCommand)
|
|
1192
|
+
.sc(CreateIndex)
|
|
1544
1193
|
.build() {
|
|
1545
1194
|
}
|
|
1546
1195
|
|
|
@@ -1548,16 +1197,11 @@ class CreateResourceExplorerSetupCommand extends smithyClient.Command
|
|
|
1548
1197
|
.classBuilder()
|
|
1549
1198
|
.ep(commonParams)
|
|
1550
1199
|
.m(function (Command, cs, config, o) {
|
|
1551
|
-
return [
|
|
1552
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1553
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1554
|
-
];
|
|
1200
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1555
1201
|
})
|
|
1556
1202
|
.s("ResourceExplorer", "CreateResourceExplorerSetup", {})
|
|
1557
1203
|
.n("ResourceExplorer2Client", "CreateResourceExplorerSetupCommand")
|
|
1558
|
-
.
|
|
1559
|
-
.ser(se_CreateResourceExplorerSetupCommand)
|
|
1560
|
-
.de(de_CreateResourceExplorerSetupCommand)
|
|
1204
|
+
.sc(CreateResourceExplorerSetup)
|
|
1561
1205
|
.build() {
|
|
1562
1206
|
}
|
|
1563
1207
|
|
|
@@ -1565,16 +1209,11 @@ class CreateViewCommand extends smithyClient.Command
|
|
|
1565
1209
|
.classBuilder()
|
|
1566
1210
|
.ep(commonParams)
|
|
1567
1211
|
.m(function (Command, cs, config, o) {
|
|
1568
|
-
return [
|
|
1569
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1570
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1571
|
-
];
|
|
1212
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1572
1213
|
})
|
|
1573
1214
|
.s("ResourceExplorer", "CreateView", {})
|
|
1574
1215
|
.n("ResourceExplorer2Client", "CreateViewCommand")
|
|
1575
|
-
.
|
|
1576
|
-
.ser(se_CreateViewCommand)
|
|
1577
|
-
.de(de_CreateViewCommand)
|
|
1216
|
+
.sc(CreateView)
|
|
1578
1217
|
.build() {
|
|
1579
1218
|
}
|
|
1580
1219
|
|
|
@@ -1582,16 +1221,11 @@ class DeleteIndexCommand extends smithyClient.Command
|
|
|
1582
1221
|
.classBuilder()
|
|
1583
1222
|
.ep(commonParams)
|
|
1584
1223
|
.m(function (Command, cs, config, o) {
|
|
1585
|
-
return [
|
|
1586
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1587
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1588
|
-
];
|
|
1224
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1589
1225
|
})
|
|
1590
1226
|
.s("ResourceExplorer", "DeleteIndex", {})
|
|
1591
1227
|
.n("ResourceExplorer2Client", "DeleteIndexCommand")
|
|
1592
|
-
.
|
|
1593
|
-
.ser(se_DeleteIndexCommand)
|
|
1594
|
-
.de(de_DeleteIndexCommand)
|
|
1228
|
+
.sc(DeleteIndex)
|
|
1595
1229
|
.build() {
|
|
1596
1230
|
}
|
|
1597
1231
|
|
|
@@ -1599,16 +1233,11 @@ class DeleteResourceExplorerSetupCommand extends smithyClient.Command
|
|
|
1599
1233
|
.classBuilder()
|
|
1600
1234
|
.ep(commonParams)
|
|
1601
1235
|
.m(function (Command, cs, config, o) {
|
|
1602
|
-
return [
|
|
1603
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1604
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1605
|
-
];
|
|
1236
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1606
1237
|
})
|
|
1607
1238
|
.s("ResourceExplorer", "DeleteResourceExplorerSetup", {})
|
|
1608
1239
|
.n("ResourceExplorer2Client", "DeleteResourceExplorerSetupCommand")
|
|
1609
|
-
.
|
|
1610
|
-
.ser(se_DeleteResourceExplorerSetupCommand)
|
|
1611
|
-
.de(de_DeleteResourceExplorerSetupCommand)
|
|
1240
|
+
.sc(DeleteResourceExplorerSetup)
|
|
1612
1241
|
.build() {
|
|
1613
1242
|
}
|
|
1614
1243
|
|
|
@@ -1616,16 +1245,11 @@ class DeleteViewCommand extends smithyClient.Command
|
|
|
1616
1245
|
.classBuilder()
|
|
1617
1246
|
.ep(commonParams)
|
|
1618
1247
|
.m(function (Command, cs, config, o) {
|
|
1619
|
-
return [
|
|
1620
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1621
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1622
|
-
];
|
|
1248
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1623
1249
|
})
|
|
1624
1250
|
.s("ResourceExplorer", "DeleteView", {})
|
|
1625
1251
|
.n("ResourceExplorer2Client", "DeleteViewCommand")
|
|
1626
|
-
.
|
|
1627
|
-
.ser(se_DeleteViewCommand)
|
|
1628
|
-
.de(de_DeleteViewCommand)
|
|
1252
|
+
.sc(DeleteView)
|
|
1629
1253
|
.build() {
|
|
1630
1254
|
}
|
|
1631
1255
|
|
|
@@ -1633,16 +1257,11 @@ class DisassociateDefaultViewCommand extends smithyClient.Command
|
|
|
1633
1257
|
.classBuilder()
|
|
1634
1258
|
.ep(commonParams)
|
|
1635
1259
|
.m(function (Command, cs, config, o) {
|
|
1636
|
-
return [
|
|
1637
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1638
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1639
|
-
];
|
|
1260
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1640
1261
|
})
|
|
1641
1262
|
.s("ResourceExplorer", "DisassociateDefaultView", {})
|
|
1642
1263
|
.n("ResourceExplorer2Client", "DisassociateDefaultViewCommand")
|
|
1643
|
-
.
|
|
1644
|
-
.ser(se_DisassociateDefaultViewCommand)
|
|
1645
|
-
.de(de_DisassociateDefaultViewCommand)
|
|
1264
|
+
.sc(DisassociateDefaultView)
|
|
1646
1265
|
.build() {
|
|
1647
1266
|
}
|
|
1648
1267
|
|
|
@@ -1650,16 +1269,11 @@ class GetAccountLevelServiceConfigurationCommand extends smithyClient.Command
|
|
|
1650
1269
|
.classBuilder()
|
|
1651
1270
|
.ep(commonParams)
|
|
1652
1271
|
.m(function (Command, cs, config, o) {
|
|
1653
|
-
return [
|
|
1654
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1655
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1656
|
-
];
|
|
1272
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1657
1273
|
})
|
|
1658
1274
|
.s("ResourceExplorer", "GetAccountLevelServiceConfiguration", {})
|
|
1659
1275
|
.n("ResourceExplorer2Client", "GetAccountLevelServiceConfigurationCommand")
|
|
1660
|
-
.
|
|
1661
|
-
.ser(se_GetAccountLevelServiceConfigurationCommand)
|
|
1662
|
-
.de(de_GetAccountLevelServiceConfigurationCommand)
|
|
1276
|
+
.sc(GetAccountLevelServiceConfiguration)
|
|
1663
1277
|
.build() {
|
|
1664
1278
|
}
|
|
1665
1279
|
|
|
@@ -1667,16 +1281,11 @@ class GetDefaultViewCommand extends smithyClient.Command
|
|
|
1667
1281
|
.classBuilder()
|
|
1668
1282
|
.ep(commonParams)
|
|
1669
1283
|
.m(function (Command, cs, config, o) {
|
|
1670
|
-
return [
|
|
1671
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1672
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1673
|
-
];
|
|
1284
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1674
1285
|
})
|
|
1675
1286
|
.s("ResourceExplorer", "GetDefaultView", {})
|
|
1676
1287
|
.n("ResourceExplorer2Client", "GetDefaultViewCommand")
|
|
1677
|
-
.
|
|
1678
|
-
.ser(se_GetDefaultViewCommand)
|
|
1679
|
-
.de(de_GetDefaultViewCommand)
|
|
1288
|
+
.sc(GetDefaultView)
|
|
1680
1289
|
.build() {
|
|
1681
1290
|
}
|
|
1682
1291
|
|
|
@@ -1684,16 +1293,11 @@ class GetIndexCommand extends smithyClient.Command
|
|
|
1684
1293
|
.classBuilder()
|
|
1685
1294
|
.ep(commonParams)
|
|
1686
1295
|
.m(function (Command, cs, config, o) {
|
|
1687
|
-
return [
|
|
1688
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1689
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1690
|
-
];
|
|
1296
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1691
1297
|
})
|
|
1692
1298
|
.s("ResourceExplorer", "GetIndex", {})
|
|
1693
1299
|
.n("ResourceExplorer2Client", "GetIndexCommand")
|
|
1694
|
-
.
|
|
1695
|
-
.ser(se_GetIndexCommand)
|
|
1696
|
-
.de(de_GetIndexCommand)
|
|
1300
|
+
.sc(GetIndex)
|
|
1697
1301
|
.build() {
|
|
1698
1302
|
}
|
|
1699
1303
|
|
|
@@ -1701,16 +1305,11 @@ class GetManagedViewCommand extends smithyClient.Command
|
|
|
1701
1305
|
.classBuilder()
|
|
1702
1306
|
.ep(commonParams)
|
|
1703
1307
|
.m(function (Command, cs, config, o) {
|
|
1704
|
-
return [
|
|
1705
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1706
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1707
|
-
];
|
|
1308
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1708
1309
|
})
|
|
1709
1310
|
.s("ResourceExplorer", "GetManagedView", {})
|
|
1710
1311
|
.n("ResourceExplorer2Client", "GetManagedViewCommand")
|
|
1711
|
-
.
|
|
1712
|
-
.ser(se_GetManagedViewCommand)
|
|
1713
|
-
.de(de_GetManagedViewCommand)
|
|
1312
|
+
.sc(GetManagedView)
|
|
1714
1313
|
.build() {
|
|
1715
1314
|
}
|
|
1716
1315
|
|
|
@@ -1718,16 +1317,11 @@ class GetResourceExplorerSetupCommand extends smithyClient.Command
|
|
|
1718
1317
|
.classBuilder()
|
|
1719
1318
|
.ep(commonParams)
|
|
1720
1319
|
.m(function (Command, cs, config, o) {
|
|
1721
|
-
return [
|
|
1722
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1723
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1724
|
-
];
|
|
1320
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1725
1321
|
})
|
|
1726
1322
|
.s("ResourceExplorer", "GetResourceExplorerSetup", {})
|
|
1727
1323
|
.n("ResourceExplorer2Client", "GetResourceExplorerSetupCommand")
|
|
1728
|
-
.
|
|
1729
|
-
.ser(se_GetResourceExplorerSetupCommand)
|
|
1730
|
-
.de(de_GetResourceExplorerSetupCommand)
|
|
1324
|
+
.sc(GetResourceExplorerSetup)
|
|
1731
1325
|
.build() {
|
|
1732
1326
|
}
|
|
1733
1327
|
|
|
@@ -1735,16 +1329,11 @@ class GetServiceIndexCommand extends smithyClient.Command
|
|
|
1735
1329
|
.classBuilder()
|
|
1736
1330
|
.ep(commonParams)
|
|
1737
1331
|
.m(function (Command, cs, config, o) {
|
|
1738
|
-
return [
|
|
1739
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1740
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1741
|
-
];
|
|
1332
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1742
1333
|
})
|
|
1743
1334
|
.s("ResourceExplorer", "GetServiceIndex", {})
|
|
1744
1335
|
.n("ResourceExplorer2Client", "GetServiceIndexCommand")
|
|
1745
|
-
.
|
|
1746
|
-
.ser(se_GetServiceIndexCommand)
|
|
1747
|
-
.de(de_GetServiceIndexCommand)
|
|
1336
|
+
.sc(GetServiceIndex)
|
|
1748
1337
|
.build() {
|
|
1749
1338
|
}
|
|
1750
1339
|
|
|
@@ -1752,16 +1341,11 @@ class GetServiceViewCommand extends smithyClient.Command
|
|
|
1752
1341
|
.classBuilder()
|
|
1753
1342
|
.ep(commonParams)
|
|
1754
1343
|
.m(function (Command, cs, config, o) {
|
|
1755
|
-
return [
|
|
1756
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1757
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1758
|
-
];
|
|
1344
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1759
1345
|
})
|
|
1760
1346
|
.s("ResourceExplorer", "GetServiceView", {})
|
|
1761
1347
|
.n("ResourceExplorer2Client", "GetServiceViewCommand")
|
|
1762
|
-
.
|
|
1763
|
-
.ser(se_GetServiceViewCommand)
|
|
1764
|
-
.de(de_GetServiceViewCommand)
|
|
1348
|
+
.sc(GetServiceView)
|
|
1765
1349
|
.build() {
|
|
1766
1350
|
}
|
|
1767
1351
|
|
|
@@ -1769,16 +1353,11 @@ class GetViewCommand extends smithyClient.Command
|
|
|
1769
1353
|
.classBuilder()
|
|
1770
1354
|
.ep(commonParams)
|
|
1771
1355
|
.m(function (Command, cs, config, o) {
|
|
1772
|
-
return [
|
|
1773
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1774
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1775
|
-
];
|
|
1356
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1776
1357
|
})
|
|
1777
1358
|
.s("ResourceExplorer", "GetView", {})
|
|
1778
1359
|
.n("ResourceExplorer2Client", "GetViewCommand")
|
|
1779
|
-
.
|
|
1780
|
-
.ser(se_GetViewCommand)
|
|
1781
|
-
.de(de_GetViewCommand)
|
|
1360
|
+
.sc(GetView)
|
|
1782
1361
|
.build() {
|
|
1783
1362
|
}
|
|
1784
1363
|
|
|
@@ -1786,16 +1365,11 @@ class ListIndexesCommand extends smithyClient.Command
|
|
|
1786
1365
|
.classBuilder()
|
|
1787
1366
|
.ep(commonParams)
|
|
1788
1367
|
.m(function (Command, cs, config, o) {
|
|
1789
|
-
return [
|
|
1790
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1791
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1792
|
-
];
|
|
1368
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1793
1369
|
})
|
|
1794
1370
|
.s("ResourceExplorer", "ListIndexes", {})
|
|
1795
1371
|
.n("ResourceExplorer2Client", "ListIndexesCommand")
|
|
1796
|
-
.
|
|
1797
|
-
.ser(se_ListIndexesCommand)
|
|
1798
|
-
.de(de_ListIndexesCommand)
|
|
1372
|
+
.sc(ListIndexes)
|
|
1799
1373
|
.build() {
|
|
1800
1374
|
}
|
|
1801
1375
|
|
|
@@ -1803,16 +1377,11 @@ class ListIndexesForMembersCommand extends smithyClient.Command
|
|
|
1803
1377
|
.classBuilder()
|
|
1804
1378
|
.ep(commonParams)
|
|
1805
1379
|
.m(function (Command, cs, config, o) {
|
|
1806
|
-
return [
|
|
1807
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1808
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1809
|
-
];
|
|
1380
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1810
1381
|
})
|
|
1811
1382
|
.s("ResourceExplorer", "ListIndexesForMembers", {})
|
|
1812
1383
|
.n("ResourceExplorer2Client", "ListIndexesForMembersCommand")
|
|
1813
|
-
.
|
|
1814
|
-
.ser(se_ListIndexesForMembersCommand)
|
|
1815
|
-
.de(de_ListIndexesForMembersCommand)
|
|
1384
|
+
.sc(ListIndexesForMembers)
|
|
1816
1385
|
.build() {
|
|
1817
1386
|
}
|
|
1818
1387
|
|
|
@@ -1820,16 +1389,11 @@ class ListManagedViewsCommand extends smithyClient.Command
|
|
|
1820
1389
|
.classBuilder()
|
|
1821
1390
|
.ep(commonParams)
|
|
1822
1391
|
.m(function (Command, cs, config, o) {
|
|
1823
|
-
return [
|
|
1824
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1825
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1826
|
-
];
|
|
1392
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1827
1393
|
})
|
|
1828
1394
|
.s("ResourceExplorer", "ListManagedViews", {})
|
|
1829
1395
|
.n("ResourceExplorer2Client", "ListManagedViewsCommand")
|
|
1830
|
-
.
|
|
1831
|
-
.ser(se_ListManagedViewsCommand)
|
|
1832
|
-
.de(de_ListManagedViewsCommand)
|
|
1396
|
+
.sc(ListManagedViews)
|
|
1833
1397
|
.build() {
|
|
1834
1398
|
}
|
|
1835
1399
|
|
|
@@ -1837,16 +1401,11 @@ class ListResourcesCommand extends smithyClient.Command
|
|
|
1837
1401
|
.classBuilder()
|
|
1838
1402
|
.ep(commonParams)
|
|
1839
1403
|
.m(function (Command, cs, config, o) {
|
|
1840
|
-
return [
|
|
1841
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1842
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1843
|
-
];
|
|
1404
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1844
1405
|
})
|
|
1845
1406
|
.s("ResourceExplorer", "ListResources", {})
|
|
1846
1407
|
.n("ResourceExplorer2Client", "ListResourcesCommand")
|
|
1847
|
-
.
|
|
1848
|
-
.ser(se_ListResourcesCommand)
|
|
1849
|
-
.de(de_ListResourcesCommand)
|
|
1408
|
+
.sc(ListResources)
|
|
1850
1409
|
.build() {
|
|
1851
1410
|
}
|
|
1852
1411
|
|
|
@@ -1854,16 +1413,11 @@ class ListServiceIndexesCommand extends smithyClient.Command
|
|
|
1854
1413
|
.classBuilder()
|
|
1855
1414
|
.ep(commonParams)
|
|
1856
1415
|
.m(function (Command, cs, config, o) {
|
|
1857
|
-
return [
|
|
1858
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1859
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1860
|
-
];
|
|
1416
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1861
1417
|
})
|
|
1862
1418
|
.s("ResourceExplorer", "ListServiceIndexes", {})
|
|
1863
1419
|
.n("ResourceExplorer2Client", "ListServiceIndexesCommand")
|
|
1864
|
-
.
|
|
1865
|
-
.ser(se_ListServiceIndexesCommand)
|
|
1866
|
-
.de(de_ListServiceIndexesCommand)
|
|
1420
|
+
.sc(ListServiceIndexes)
|
|
1867
1421
|
.build() {
|
|
1868
1422
|
}
|
|
1869
1423
|
|
|
@@ -1871,16 +1425,11 @@ class ListServiceViewsCommand extends smithyClient.Command
|
|
|
1871
1425
|
.classBuilder()
|
|
1872
1426
|
.ep(commonParams)
|
|
1873
1427
|
.m(function (Command, cs, config, o) {
|
|
1874
|
-
return [
|
|
1875
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1876
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1877
|
-
];
|
|
1428
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1878
1429
|
})
|
|
1879
1430
|
.s("ResourceExplorer", "ListServiceViews", {})
|
|
1880
1431
|
.n("ResourceExplorer2Client", "ListServiceViewsCommand")
|
|
1881
|
-
.
|
|
1882
|
-
.ser(se_ListServiceViewsCommand)
|
|
1883
|
-
.de(de_ListServiceViewsCommand)
|
|
1432
|
+
.sc(ListServiceViews)
|
|
1884
1433
|
.build() {
|
|
1885
1434
|
}
|
|
1886
1435
|
|
|
@@ -1888,16 +1437,11 @@ class ListStreamingAccessForServicesCommand extends smithyClient.Command
|
|
|
1888
1437
|
.classBuilder()
|
|
1889
1438
|
.ep(commonParams)
|
|
1890
1439
|
.m(function (Command, cs, config, o) {
|
|
1891
|
-
return [
|
|
1892
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1893
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1894
|
-
];
|
|
1440
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1895
1441
|
})
|
|
1896
1442
|
.s("ResourceExplorer", "ListStreamingAccessForServices", {})
|
|
1897
1443
|
.n("ResourceExplorer2Client", "ListStreamingAccessForServicesCommand")
|
|
1898
|
-
.
|
|
1899
|
-
.ser(se_ListStreamingAccessForServicesCommand)
|
|
1900
|
-
.de(de_ListStreamingAccessForServicesCommand)
|
|
1444
|
+
.sc(ListStreamingAccessForServices)
|
|
1901
1445
|
.build() {
|
|
1902
1446
|
}
|
|
1903
1447
|
|
|
@@ -1905,16 +1449,11 @@ class ListSupportedResourceTypesCommand extends smithyClient.Command
|
|
|
1905
1449
|
.classBuilder()
|
|
1906
1450
|
.ep(commonParams)
|
|
1907
1451
|
.m(function (Command, cs, config, o) {
|
|
1908
|
-
return [
|
|
1909
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1910
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1911
|
-
];
|
|
1452
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1912
1453
|
})
|
|
1913
1454
|
.s("ResourceExplorer", "ListSupportedResourceTypes", {})
|
|
1914
1455
|
.n("ResourceExplorer2Client", "ListSupportedResourceTypesCommand")
|
|
1915
|
-
.
|
|
1916
|
-
.ser(se_ListSupportedResourceTypesCommand)
|
|
1917
|
-
.de(de_ListSupportedResourceTypesCommand)
|
|
1456
|
+
.sc(ListSupportedResourceTypes)
|
|
1918
1457
|
.build() {
|
|
1919
1458
|
}
|
|
1920
1459
|
|
|
@@ -1922,16 +1461,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1922
1461
|
.classBuilder()
|
|
1923
1462
|
.ep(commonParams)
|
|
1924
1463
|
.m(function (Command, cs, config, o) {
|
|
1925
|
-
return [
|
|
1926
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1927
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1928
|
-
];
|
|
1464
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1929
1465
|
})
|
|
1930
1466
|
.s("ResourceExplorer", "ListTagsForResource", {})
|
|
1931
1467
|
.n("ResourceExplorer2Client", "ListTagsForResourceCommand")
|
|
1932
|
-
.
|
|
1933
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1934
|
-
.de(de_ListTagsForResourceCommand)
|
|
1468
|
+
.sc(ListTagsForResource)
|
|
1935
1469
|
.build() {
|
|
1936
1470
|
}
|
|
1937
1471
|
|
|
@@ -1939,16 +1473,11 @@ class ListViewsCommand extends smithyClient.Command
|
|
|
1939
1473
|
.classBuilder()
|
|
1940
1474
|
.ep(commonParams)
|
|
1941
1475
|
.m(function (Command, cs, config, o) {
|
|
1942
|
-
return [
|
|
1943
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1944
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1945
|
-
];
|
|
1476
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1946
1477
|
})
|
|
1947
1478
|
.s("ResourceExplorer", "ListViews", {})
|
|
1948
1479
|
.n("ResourceExplorer2Client", "ListViewsCommand")
|
|
1949
|
-
.
|
|
1950
|
-
.ser(se_ListViewsCommand)
|
|
1951
|
-
.de(de_ListViewsCommand)
|
|
1480
|
+
.sc(ListViews)
|
|
1952
1481
|
.build() {
|
|
1953
1482
|
}
|
|
1954
1483
|
|
|
@@ -1956,16 +1485,11 @@ class SearchCommand extends smithyClient.Command
|
|
|
1956
1485
|
.classBuilder()
|
|
1957
1486
|
.ep(commonParams)
|
|
1958
1487
|
.m(function (Command, cs, config, o) {
|
|
1959
|
-
return [
|
|
1960
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1961
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1962
|
-
];
|
|
1488
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1963
1489
|
})
|
|
1964
1490
|
.s("ResourceExplorer", "Search", {})
|
|
1965
1491
|
.n("ResourceExplorer2Client", "SearchCommand")
|
|
1966
|
-
.
|
|
1967
|
-
.ser(se_SearchCommand)
|
|
1968
|
-
.de(de_SearchCommand)
|
|
1492
|
+
.sc(Search)
|
|
1969
1493
|
.build() {
|
|
1970
1494
|
}
|
|
1971
1495
|
|
|
@@ -1973,16 +1497,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1973
1497
|
.classBuilder()
|
|
1974
1498
|
.ep(commonParams)
|
|
1975
1499
|
.m(function (Command, cs, config, o) {
|
|
1976
|
-
return [
|
|
1977
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1978
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1979
|
-
];
|
|
1500
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1980
1501
|
})
|
|
1981
1502
|
.s("ResourceExplorer", "TagResource", {})
|
|
1982
1503
|
.n("ResourceExplorer2Client", "TagResourceCommand")
|
|
1983
|
-
.
|
|
1984
|
-
.ser(se_TagResourceCommand)
|
|
1985
|
-
.de(de_TagResourceCommand)
|
|
1504
|
+
.sc(TagResource)
|
|
1986
1505
|
.build() {
|
|
1987
1506
|
}
|
|
1988
1507
|
|
|
@@ -1990,16 +1509,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1990
1509
|
.classBuilder()
|
|
1991
1510
|
.ep(commonParams)
|
|
1992
1511
|
.m(function (Command, cs, config, o) {
|
|
1993
|
-
return [
|
|
1994
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1995
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1996
|
-
];
|
|
1512
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1997
1513
|
})
|
|
1998
1514
|
.s("ResourceExplorer", "UntagResource", {})
|
|
1999
1515
|
.n("ResourceExplorer2Client", "UntagResourceCommand")
|
|
2000
|
-
.
|
|
2001
|
-
.ser(se_UntagResourceCommand)
|
|
2002
|
-
.de(de_UntagResourceCommand)
|
|
1516
|
+
.sc(UntagResource)
|
|
2003
1517
|
.build() {
|
|
2004
1518
|
}
|
|
2005
1519
|
|
|
@@ -2007,16 +1521,11 @@ class UpdateIndexTypeCommand extends smithyClient.Command
|
|
|
2007
1521
|
.classBuilder()
|
|
2008
1522
|
.ep(commonParams)
|
|
2009
1523
|
.m(function (Command, cs, config, o) {
|
|
2010
|
-
return [
|
|
2011
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2012
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2013
|
-
];
|
|
1524
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2014
1525
|
})
|
|
2015
1526
|
.s("ResourceExplorer", "UpdateIndexType", {})
|
|
2016
1527
|
.n("ResourceExplorer2Client", "UpdateIndexTypeCommand")
|
|
2017
|
-
.
|
|
2018
|
-
.ser(se_UpdateIndexTypeCommand)
|
|
2019
|
-
.de(de_UpdateIndexTypeCommand)
|
|
1528
|
+
.sc(UpdateIndexType)
|
|
2020
1529
|
.build() {
|
|
2021
1530
|
}
|
|
2022
1531
|
|
|
@@ -2024,16 +1533,11 @@ class UpdateViewCommand extends smithyClient.Command
|
|
|
2024
1533
|
.classBuilder()
|
|
2025
1534
|
.ep(commonParams)
|
|
2026
1535
|
.m(function (Command, cs, config, o) {
|
|
2027
|
-
return [
|
|
2028
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2029
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2030
|
-
];
|
|
1536
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2031
1537
|
})
|
|
2032
1538
|
.s("ResourceExplorer", "UpdateView", {})
|
|
2033
1539
|
.n("ResourceExplorer2Client", "UpdateViewCommand")
|
|
2034
|
-
.
|
|
2035
|
-
.ser(se_UpdateViewCommand)
|
|
2036
|
-
.de(de_UpdateViewCommand)
|
|
1540
|
+
.sc(UpdateView)
|
|
2037
1541
|
.build() {
|
|
2038
1542
|
}
|
|
2039
1543
|
|
|
@@ -2106,17 +1610,13 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2106
1610
|
get: function () { return smithyClient.Client; }
|
|
2107
1611
|
});
|
|
2108
1612
|
exports.AWSServiceAccessStatus = AWSServiceAccessStatus;
|
|
2109
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
1613
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
2110
1614
|
exports.AssociateDefaultViewCommand = AssociateDefaultViewCommand;
|
|
2111
1615
|
exports.BatchGetViewCommand = BatchGetViewCommand;
|
|
2112
|
-
exports.
|
|
2113
|
-
exports.ConflictException = ConflictException;
|
|
1616
|
+
exports.ConflictException = ConflictException$1;
|
|
2114
1617
|
exports.CreateIndexCommand = CreateIndexCommand;
|
|
2115
|
-
exports.CreateIndexInputFilterSensitiveLog = CreateIndexInputFilterSensitiveLog;
|
|
2116
1618
|
exports.CreateResourceExplorerSetupCommand = CreateResourceExplorerSetupCommand;
|
|
2117
1619
|
exports.CreateViewCommand = CreateViewCommand;
|
|
2118
|
-
exports.CreateViewInputFilterSensitiveLog = CreateViewInputFilterSensitiveLog;
|
|
2119
|
-
exports.CreateViewOutputFilterSensitiveLog = CreateViewOutputFilterSensitiveLog;
|
|
2120
1620
|
exports.DeleteIndexCommand = DeleteIndexCommand;
|
|
2121
1621
|
exports.DeleteResourceExplorerSetupCommand = DeleteResourceExplorerSetupCommand;
|
|
2122
1622
|
exports.DeleteViewCommand = DeleteViewCommand;
|
|
@@ -2124,56 +1624,38 @@ exports.DisassociateDefaultViewCommand = DisassociateDefaultViewCommand;
|
|
|
2124
1624
|
exports.GetAccountLevelServiceConfigurationCommand = GetAccountLevelServiceConfigurationCommand;
|
|
2125
1625
|
exports.GetDefaultViewCommand = GetDefaultViewCommand;
|
|
2126
1626
|
exports.GetIndexCommand = GetIndexCommand;
|
|
2127
|
-
exports.GetIndexOutputFilterSensitiveLog = GetIndexOutputFilterSensitiveLog;
|
|
2128
1627
|
exports.GetManagedViewCommand = GetManagedViewCommand;
|
|
2129
|
-
exports.GetManagedViewOutputFilterSensitiveLog = GetManagedViewOutputFilterSensitiveLog;
|
|
2130
1628
|
exports.GetResourceExplorerSetupCommand = GetResourceExplorerSetupCommand;
|
|
2131
|
-
exports.GetResourceExplorerSetupOutputFilterSensitiveLog = GetResourceExplorerSetupOutputFilterSensitiveLog;
|
|
2132
1629
|
exports.GetServiceIndexCommand = GetServiceIndexCommand;
|
|
2133
1630
|
exports.GetServiceViewCommand = GetServiceViewCommand;
|
|
2134
|
-
exports.GetServiceViewOutputFilterSensitiveLog = GetServiceViewOutputFilterSensitiveLog;
|
|
2135
1631
|
exports.GetViewCommand = GetViewCommand;
|
|
2136
|
-
exports.GetViewOutputFilterSensitiveLog = GetViewOutputFilterSensitiveLog;
|
|
2137
1632
|
exports.IndexState = IndexState;
|
|
2138
1633
|
exports.IndexType = IndexType;
|
|
2139
|
-
exports.InternalServerException = InternalServerException;
|
|
1634
|
+
exports.InternalServerException = InternalServerException$1;
|
|
2140
1635
|
exports.ListIndexesCommand = ListIndexesCommand;
|
|
2141
1636
|
exports.ListIndexesForMembersCommand = ListIndexesForMembersCommand;
|
|
2142
1637
|
exports.ListManagedViewsCommand = ListManagedViewsCommand;
|
|
2143
1638
|
exports.ListResourcesCommand = ListResourcesCommand;
|
|
2144
|
-
exports.ListResourcesInputFilterSensitiveLog = ListResourcesInputFilterSensitiveLog;
|
|
2145
1639
|
exports.ListServiceIndexesCommand = ListServiceIndexesCommand;
|
|
2146
1640
|
exports.ListServiceViewsCommand = ListServiceViewsCommand;
|
|
2147
1641
|
exports.ListStreamingAccessForServicesCommand = ListStreamingAccessForServicesCommand;
|
|
2148
1642
|
exports.ListSupportedResourceTypesCommand = ListSupportedResourceTypesCommand;
|
|
2149
1643
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2150
|
-
exports.ListTagsForResourceOutputFilterSensitiveLog = ListTagsForResourceOutputFilterSensitiveLog;
|
|
2151
1644
|
exports.ListViewsCommand = ListViewsCommand;
|
|
2152
|
-
exports.ManagedViewFilterSensitiveLog = ManagedViewFilterSensitiveLog;
|
|
2153
1645
|
exports.OperationStatus = OperationStatus;
|
|
2154
|
-
exports.RegionStatusFilterSensitiveLog = RegionStatusFilterSensitiveLog;
|
|
2155
1646
|
exports.ResourceExplorer2 = ResourceExplorer2;
|
|
2156
1647
|
exports.ResourceExplorer2Client = ResourceExplorer2Client;
|
|
2157
|
-
exports.ResourceExplorer2ServiceException = ResourceExplorer2ServiceException;
|
|
2158
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1648
|
+
exports.ResourceExplorer2ServiceException = ResourceExplorer2ServiceException$1;
|
|
1649
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2159
1650
|
exports.SearchCommand = SearchCommand;
|
|
2160
|
-
exports.
|
|
2161
|
-
exports.SearchInputFilterSensitiveLog = SearchInputFilterSensitiveLog;
|
|
2162
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2163
|
-
exports.ServiceViewFilterSensitiveLog = ServiceViewFilterSensitiveLog;
|
|
1651
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
2164
1652
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2165
|
-
exports.
|
|
2166
|
-
exports.
|
|
2167
|
-
exports.UnauthorizedException = UnauthorizedException;
|
|
1653
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
1654
|
+
exports.UnauthorizedException = UnauthorizedException$1;
|
|
2168
1655
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2169
|
-
exports.UntagResourceInputFilterSensitiveLog = UntagResourceInputFilterSensitiveLog;
|
|
2170
1656
|
exports.UpdateIndexTypeCommand = UpdateIndexTypeCommand;
|
|
2171
1657
|
exports.UpdateViewCommand = UpdateViewCommand;
|
|
2172
|
-
exports.
|
|
2173
|
-
exports.UpdateViewOutputFilterSensitiveLog = UpdateViewOutputFilterSensitiveLog;
|
|
2174
|
-
exports.ValidationException = ValidationException;
|
|
2175
|
-
exports.ViewFilterSensitiveLog = ViewFilterSensitiveLog;
|
|
2176
|
-
exports.ViewStatusFilterSensitiveLog = ViewStatusFilterSensitiveLog;
|
|
1658
|
+
exports.ValidationException = ValidationException$1;
|
|
2177
1659
|
exports.paginateGetResourceExplorerSetup = paginateGetResourceExplorerSetup;
|
|
2178
1660
|
exports.paginateListIndexes = paginateListIndexes;
|
|
2179
1661
|
exports.paginateListIndexesForMembers = paginateListIndexesForMembers;
|