@aws-sdk/client-service-catalog 3.312.0 → 3.316.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.
@@ -1,3 +1,4 @@
1
+ import { createAggregatedClient } from "@aws-sdk/smithy-client";
1
2
  import { AcceptPortfolioShareCommand, } from "./commands/AcceptPortfolioShareCommand";
2
3
  import { AssociateBudgetWithResourceCommand, } from "./commands/AssociateBudgetWithResourceCommand";
3
4
  import { AssociatePrincipalWithPortfolioCommand, } from "./commands/AssociatePrincipalWithPortfolioCommand";
@@ -89,1265 +90,98 @@ import { UpdateProvisioningArtifactCommand, } from "./commands/UpdateProvisionin
89
90
  import { UpdateServiceActionCommand, } from "./commands/UpdateServiceActionCommand";
90
91
  import { UpdateTagOptionCommand, } from "./commands/UpdateTagOptionCommand";
91
92
  import { ServiceCatalogClient } from "./ServiceCatalogClient";
93
+ const commands = {
94
+ AcceptPortfolioShareCommand,
95
+ AssociateBudgetWithResourceCommand,
96
+ AssociatePrincipalWithPortfolioCommand,
97
+ AssociateProductWithPortfolioCommand,
98
+ AssociateServiceActionWithProvisioningArtifactCommand,
99
+ AssociateTagOptionWithResourceCommand,
100
+ BatchAssociateServiceActionWithProvisioningArtifactCommand,
101
+ BatchDisassociateServiceActionFromProvisioningArtifactCommand,
102
+ CopyProductCommand,
103
+ CreateConstraintCommand,
104
+ CreatePortfolioCommand,
105
+ CreatePortfolioShareCommand,
106
+ CreateProductCommand,
107
+ CreateProvisionedProductPlanCommand,
108
+ CreateProvisioningArtifactCommand,
109
+ CreateServiceActionCommand,
110
+ CreateTagOptionCommand,
111
+ DeleteConstraintCommand,
112
+ DeletePortfolioCommand,
113
+ DeletePortfolioShareCommand,
114
+ DeleteProductCommand,
115
+ DeleteProvisionedProductPlanCommand,
116
+ DeleteProvisioningArtifactCommand,
117
+ DeleteServiceActionCommand,
118
+ DeleteTagOptionCommand,
119
+ DescribeConstraintCommand,
120
+ DescribeCopyProductStatusCommand,
121
+ DescribePortfolioCommand,
122
+ DescribePortfolioSharesCommand,
123
+ DescribePortfolioShareStatusCommand,
124
+ DescribeProductCommand,
125
+ DescribeProductAsAdminCommand,
126
+ DescribeProductViewCommand,
127
+ DescribeProvisionedProductCommand,
128
+ DescribeProvisionedProductPlanCommand,
129
+ DescribeProvisioningArtifactCommand,
130
+ DescribeProvisioningParametersCommand,
131
+ DescribeRecordCommand,
132
+ DescribeServiceActionCommand,
133
+ DescribeServiceActionExecutionParametersCommand,
134
+ DescribeTagOptionCommand,
135
+ DisableAWSOrganizationsAccessCommand,
136
+ DisassociateBudgetFromResourceCommand,
137
+ DisassociatePrincipalFromPortfolioCommand,
138
+ DisassociateProductFromPortfolioCommand,
139
+ DisassociateServiceActionFromProvisioningArtifactCommand,
140
+ DisassociateTagOptionFromResourceCommand,
141
+ EnableAWSOrganizationsAccessCommand,
142
+ ExecuteProvisionedProductPlanCommand,
143
+ ExecuteProvisionedProductServiceActionCommand,
144
+ GetAWSOrganizationsAccessStatusCommand,
145
+ GetProvisionedProductOutputsCommand,
146
+ ImportAsProvisionedProductCommand,
147
+ ListAcceptedPortfolioSharesCommand,
148
+ ListBudgetsForResourceCommand,
149
+ ListConstraintsForPortfolioCommand,
150
+ ListLaunchPathsCommand,
151
+ ListOrganizationPortfolioAccessCommand,
152
+ ListPortfolioAccessCommand,
153
+ ListPortfoliosCommand,
154
+ ListPortfoliosForProductCommand,
155
+ ListPrincipalsForPortfolioCommand,
156
+ ListProvisionedProductPlansCommand,
157
+ ListProvisioningArtifactsCommand,
158
+ ListProvisioningArtifactsForServiceActionCommand,
159
+ ListRecordHistoryCommand,
160
+ ListResourcesForTagOptionCommand,
161
+ ListServiceActionsCommand,
162
+ ListServiceActionsForProvisioningArtifactCommand,
163
+ ListStackInstancesForProvisionedProductCommand,
164
+ ListTagOptionsCommand,
165
+ NotifyProvisionProductEngineWorkflowResultCommand,
166
+ NotifyTerminateProvisionedProductEngineWorkflowResultCommand,
167
+ NotifyUpdateProvisionedProductEngineWorkflowResultCommand,
168
+ ProvisionProductCommand,
169
+ RejectPortfolioShareCommand,
170
+ ScanProvisionedProductsCommand,
171
+ SearchProductsCommand,
172
+ SearchProductsAsAdminCommand,
173
+ SearchProvisionedProductsCommand,
174
+ TerminateProvisionedProductCommand,
175
+ UpdateConstraintCommand,
176
+ UpdatePortfolioCommand,
177
+ UpdatePortfolioShareCommand,
178
+ UpdateProductCommand,
179
+ UpdateProvisionedProductCommand,
180
+ UpdateProvisionedProductPropertiesCommand,
181
+ UpdateProvisioningArtifactCommand,
182
+ UpdateServiceActionCommand,
183
+ UpdateTagOptionCommand,
184
+ };
92
185
  export class ServiceCatalog extends ServiceCatalogClient {
93
- acceptPortfolioShare(args, optionsOrCb, cb) {
94
- const command = new AcceptPortfolioShareCommand(args);
95
- if (typeof optionsOrCb === "function") {
96
- this.send(command, optionsOrCb);
97
- }
98
- else if (typeof cb === "function") {
99
- if (typeof optionsOrCb !== "object")
100
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
101
- this.send(command, optionsOrCb || {}, cb);
102
- }
103
- else {
104
- return this.send(command, optionsOrCb);
105
- }
106
- }
107
- associateBudgetWithResource(args, optionsOrCb, cb) {
108
- const command = new AssociateBudgetWithResourceCommand(args);
109
- if (typeof optionsOrCb === "function") {
110
- this.send(command, optionsOrCb);
111
- }
112
- else if (typeof cb === "function") {
113
- if (typeof optionsOrCb !== "object")
114
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
115
- this.send(command, optionsOrCb || {}, cb);
116
- }
117
- else {
118
- return this.send(command, optionsOrCb);
119
- }
120
- }
121
- associatePrincipalWithPortfolio(args, optionsOrCb, cb) {
122
- const command = new AssociatePrincipalWithPortfolioCommand(args);
123
- if (typeof optionsOrCb === "function") {
124
- this.send(command, optionsOrCb);
125
- }
126
- else if (typeof cb === "function") {
127
- if (typeof optionsOrCb !== "object")
128
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
129
- this.send(command, optionsOrCb || {}, cb);
130
- }
131
- else {
132
- return this.send(command, optionsOrCb);
133
- }
134
- }
135
- associateProductWithPortfolio(args, optionsOrCb, cb) {
136
- const command = new AssociateProductWithPortfolioCommand(args);
137
- if (typeof optionsOrCb === "function") {
138
- this.send(command, optionsOrCb);
139
- }
140
- else if (typeof cb === "function") {
141
- if (typeof optionsOrCb !== "object")
142
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
143
- this.send(command, optionsOrCb || {}, cb);
144
- }
145
- else {
146
- return this.send(command, optionsOrCb);
147
- }
148
- }
149
- associateServiceActionWithProvisioningArtifact(args, optionsOrCb, cb) {
150
- const command = new AssociateServiceActionWithProvisioningArtifactCommand(args);
151
- if (typeof optionsOrCb === "function") {
152
- this.send(command, optionsOrCb);
153
- }
154
- else if (typeof cb === "function") {
155
- if (typeof optionsOrCb !== "object")
156
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
157
- this.send(command, optionsOrCb || {}, cb);
158
- }
159
- else {
160
- return this.send(command, optionsOrCb);
161
- }
162
- }
163
- associateTagOptionWithResource(args, optionsOrCb, cb) {
164
- const command = new AssociateTagOptionWithResourceCommand(args);
165
- if (typeof optionsOrCb === "function") {
166
- this.send(command, optionsOrCb);
167
- }
168
- else if (typeof cb === "function") {
169
- if (typeof optionsOrCb !== "object")
170
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
171
- this.send(command, optionsOrCb || {}, cb);
172
- }
173
- else {
174
- return this.send(command, optionsOrCb);
175
- }
176
- }
177
- batchAssociateServiceActionWithProvisioningArtifact(args, optionsOrCb, cb) {
178
- const command = new BatchAssociateServiceActionWithProvisioningArtifactCommand(args);
179
- if (typeof optionsOrCb === "function") {
180
- this.send(command, optionsOrCb);
181
- }
182
- else if (typeof cb === "function") {
183
- if (typeof optionsOrCb !== "object")
184
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
185
- this.send(command, optionsOrCb || {}, cb);
186
- }
187
- else {
188
- return this.send(command, optionsOrCb);
189
- }
190
- }
191
- batchDisassociateServiceActionFromProvisioningArtifact(args, optionsOrCb, cb) {
192
- const command = new BatchDisassociateServiceActionFromProvisioningArtifactCommand(args);
193
- if (typeof optionsOrCb === "function") {
194
- this.send(command, optionsOrCb);
195
- }
196
- else if (typeof cb === "function") {
197
- if (typeof optionsOrCb !== "object")
198
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
199
- this.send(command, optionsOrCb || {}, cb);
200
- }
201
- else {
202
- return this.send(command, optionsOrCb);
203
- }
204
- }
205
- copyProduct(args, optionsOrCb, cb) {
206
- const command = new CopyProductCommand(args);
207
- if (typeof optionsOrCb === "function") {
208
- this.send(command, optionsOrCb);
209
- }
210
- else if (typeof cb === "function") {
211
- if (typeof optionsOrCb !== "object")
212
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
213
- this.send(command, optionsOrCb || {}, cb);
214
- }
215
- else {
216
- return this.send(command, optionsOrCb);
217
- }
218
- }
219
- createConstraint(args, optionsOrCb, cb) {
220
- const command = new CreateConstraintCommand(args);
221
- if (typeof optionsOrCb === "function") {
222
- this.send(command, optionsOrCb);
223
- }
224
- else if (typeof cb === "function") {
225
- if (typeof optionsOrCb !== "object")
226
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
227
- this.send(command, optionsOrCb || {}, cb);
228
- }
229
- else {
230
- return this.send(command, optionsOrCb);
231
- }
232
- }
233
- createPortfolio(args, optionsOrCb, cb) {
234
- const command = new CreatePortfolioCommand(args);
235
- if (typeof optionsOrCb === "function") {
236
- this.send(command, optionsOrCb);
237
- }
238
- else if (typeof cb === "function") {
239
- if (typeof optionsOrCb !== "object")
240
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
241
- this.send(command, optionsOrCb || {}, cb);
242
- }
243
- else {
244
- return this.send(command, optionsOrCb);
245
- }
246
- }
247
- createPortfolioShare(args, optionsOrCb, cb) {
248
- const command = new CreatePortfolioShareCommand(args);
249
- if (typeof optionsOrCb === "function") {
250
- this.send(command, optionsOrCb);
251
- }
252
- else if (typeof cb === "function") {
253
- if (typeof optionsOrCb !== "object")
254
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
255
- this.send(command, optionsOrCb || {}, cb);
256
- }
257
- else {
258
- return this.send(command, optionsOrCb);
259
- }
260
- }
261
- createProduct(args, optionsOrCb, cb) {
262
- const command = new CreateProductCommand(args);
263
- if (typeof optionsOrCb === "function") {
264
- this.send(command, optionsOrCb);
265
- }
266
- else if (typeof cb === "function") {
267
- if (typeof optionsOrCb !== "object")
268
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
269
- this.send(command, optionsOrCb || {}, cb);
270
- }
271
- else {
272
- return this.send(command, optionsOrCb);
273
- }
274
- }
275
- createProvisionedProductPlan(args, optionsOrCb, cb) {
276
- const command = new CreateProvisionedProductPlanCommand(args);
277
- if (typeof optionsOrCb === "function") {
278
- this.send(command, optionsOrCb);
279
- }
280
- else if (typeof cb === "function") {
281
- if (typeof optionsOrCb !== "object")
282
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
283
- this.send(command, optionsOrCb || {}, cb);
284
- }
285
- else {
286
- return this.send(command, optionsOrCb);
287
- }
288
- }
289
- createProvisioningArtifact(args, optionsOrCb, cb) {
290
- const command = new CreateProvisioningArtifactCommand(args);
291
- if (typeof optionsOrCb === "function") {
292
- this.send(command, optionsOrCb);
293
- }
294
- else if (typeof cb === "function") {
295
- if (typeof optionsOrCb !== "object")
296
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
297
- this.send(command, optionsOrCb || {}, cb);
298
- }
299
- else {
300
- return this.send(command, optionsOrCb);
301
- }
302
- }
303
- createServiceAction(args, optionsOrCb, cb) {
304
- const command = new CreateServiceActionCommand(args);
305
- if (typeof optionsOrCb === "function") {
306
- this.send(command, optionsOrCb);
307
- }
308
- else if (typeof cb === "function") {
309
- if (typeof optionsOrCb !== "object")
310
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
311
- this.send(command, optionsOrCb || {}, cb);
312
- }
313
- else {
314
- return this.send(command, optionsOrCb);
315
- }
316
- }
317
- createTagOption(args, optionsOrCb, cb) {
318
- const command = new CreateTagOptionCommand(args);
319
- if (typeof optionsOrCb === "function") {
320
- this.send(command, optionsOrCb);
321
- }
322
- else if (typeof cb === "function") {
323
- if (typeof optionsOrCb !== "object")
324
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
325
- this.send(command, optionsOrCb || {}, cb);
326
- }
327
- else {
328
- return this.send(command, optionsOrCb);
329
- }
330
- }
331
- deleteConstraint(args, optionsOrCb, cb) {
332
- const command = new DeleteConstraintCommand(args);
333
- if (typeof optionsOrCb === "function") {
334
- this.send(command, optionsOrCb);
335
- }
336
- else if (typeof cb === "function") {
337
- if (typeof optionsOrCb !== "object")
338
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
339
- this.send(command, optionsOrCb || {}, cb);
340
- }
341
- else {
342
- return this.send(command, optionsOrCb);
343
- }
344
- }
345
- deletePortfolio(args, optionsOrCb, cb) {
346
- const command = new DeletePortfolioCommand(args);
347
- if (typeof optionsOrCb === "function") {
348
- this.send(command, optionsOrCb);
349
- }
350
- else if (typeof cb === "function") {
351
- if (typeof optionsOrCb !== "object")
352
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
353
- this.send(command, optionsOrCb || {}, cb);
354
- }
355
- else {
356
- return this.send(command, optionsOrCb);
357
- }
358
- }
359
- deletePortfolioShare(args, optionsOrCb, cb) {
360
- const command = new DeletePortfolioShareCommand(args);
361
- if (typeof optionsOrCb === "function") {
362
- this.send(command, optionsOrCb);
363
- }
364
- else if (typeof cb === "function") {
365
- if (typeof optionsOrCb !== "object")
366
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
367
- this.send(command, optionsOrCb || {}, cb);
368
- }
369
- else {
370
- return this.send(command, optionsOrCb);
371
- }
372
- }
373
- deleteProduct(args, optionsOrCb, cb) {
374
- const command = new DeleteProductCommand(args);
375
- if (typeof optionsOrCb === "function") {
376
- this.send(command, optionsOrCb);
377
- }
378
- else if (typeof cb === "function") {
379
- if (typeof optionsOrCb !== "object")
380
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
381
- this.send(command, optionsOrCb || {}, cb);
382
- }
383
- else {
384
- return this.send(command, optionsOrCb);
385
- }
386
- }
387
- deleteProvisionedProductPlan(args, optionsOrCb, cb) {
388
- const command = new DeleteProvisionedProductPlanCommand(args);
389
- if (typeof optionsOrCb === "function") {
390
- this.send(command, optionsOrCb);
391
- }
392
- else if (typeof cb === "function") {
393
- if (typeof optionsOrCb !== "object")
394
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
395
- this.send(command, optionsOrCb || {}, cb);
396
- }
397
- else {
398
- return this.send(command, optionsOrCb);
399
- }
400
- }
401
- deleteProvisioningArtifact(args, optionsOrCb, cb) {
402
- const command = new DeleteProvisioningArtifactCommand(args);
403
- if (typeof optionsOrCb === "function") {
404
- this.send(command, optionsOrCb);
405
- }
406
- else if (typeof cb === "function") {
407
- if (typeof optionsOrCb !== "object")
408
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
409
- this.send(command, optionsOrCb || {}, cb);
410
- }
411
- else {
412
- return this.send(command, optionsOrCb);
413
- }
414
- }
415
- deleteServiceAction(args, optionsOrCb, cb) {
416
- const command = new DeleteServiceActionCommand(args);
417
- if (typeof optionsOrCb === "function") {
418
- this.send(command, optionsOrCb);
419
- }
420
- else if (typeof cb === "function") {
421
- if (typeof optionsOrCb !== "object")
422
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
423
- this.send(command, optionsOrCb || {}, cb);
424
- }
425
- else {
426
- return this.send(command, optionsOrCb);
427
- }
428
- }
429
- deleteTagOption(args, optionsOrCb, cb) {
430
- const command = new DeleteTagOptionCommand(args);
431
- if (typeof optionsOrCb === "function") {
432
- this.send(command, optionsOrCb);
433
- }
434
- else if (typeof cb === "function") {
435
- if (typeof optionsOrCb !== "object")
436
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
437
- this.send(command, optionsOrCb || {}, cb);
438
- }
439
- else {
440
- return this.send(command, optionsOrCb);
441
- }
442
- }
443
- describeConstraint(args, optionsOrCb, cb) {
444
- const command = new DescribeConstraintCommand(args);
445
- if (typeof optionsOrCb === "function") {
446
- this.send(command, optionsOrCb);
447
- }
448
- else if (typeof cb === "function") {
449
- if (typeof optionsOrCb !== "object")
450
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
451
- this.send(command, optionsOrCb || {}, cb);
452
- }
453
- else {
454
- return this.send(command, optionsOrCb);
455
- }
456
- }
457
- describeCopyProductStatus(args, optionsOrCb, cb) {
458
- const command = new DescribeCopyProductStatusCommand(args);
459
- if (typeof optionsOrCb === "function") {
460
- this.send(command, optionsOrCb);
461
- }
462
- else if (typeof cb === "function") {
463
- if (typeof optionsOrCb !== "object")
464
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
465
- this.send(command, optionsOrCb || {}, cb);
466
- }
467
- else {
468
- return this.send(command, optionsOrCb);
469
- }
470
- }
471
- describePortfolio(args, optionsOrCb, cb) {
472
- const command = new DescribePortfolioCommand(args);
473
- if (typeof optionsOrCb === "function") {
474
- this.send(command, optionsOrCb);
475
- }
476
- else if (typeof cb === "function") {
477
- if (typeof optionsOrCb !== "object")
478
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
479
- this.send(command, optionsOrCb || {}, cb);
480
- }
481
- else {
482
- return this.send(command, optionsOrCb);
483
- }
484
- }
485
- describePortfolioShares(args, optionsOrCb, cb) {
486
- const command = new DescribePortfolioSharesCommand(args);
487
- if (typeof optionsOrCb === "function") {
488
- this.send(command, optionsOrCb);
489
- }
490
- else if (typeof cb === "function") {
491
- if (typeof optionsOrCb !== "object")
492
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
493
- this.send(command, optionsOrCb || {}, cb);
494
- }
495
- else {
496
- return this.send(command, optionsOrCb);
497
- }
498
- }
499
- describePortfolioShareStatus(args, optionsOrCb, cb) {
500
- const command = new DescribePortfolioShareStatusCommand(args);
501
- if (typeof optionsOrCb === "function") {
502
- this.send(command, optionsOrCb);
503
- }
504
- else if (typeof cb === "function") {
505
- if (typeof optionsOrCb !== "object")
506
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
507
- this.send(command, optionsOrCb || {}, cb);
508
- }
509
- else {
510
- return this.send(command, optionsOrCb);
511
- }
512
- }
513
- describeProduct(args, optionsOrCb, cb) {
514
- const command = new DescribeProductCommand(args);
515
- if (typeof optionsOrCb === "function") {
516
- this.send(command, optionsOrCb);
517
- }
518
- else if (typeof cb === "function") {
519
- if (typeof optionsOrCb !== "object")
520
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
521
- this.send(command, optionsOrCb || {}, cb);
522
- }
523
- else {
524
- return this.send(command, optionsOrCb);
525
- }
526
- }
527
- describeProductAsAdmin(args, optionsOrCb, cb) {
528
- const command = new DescribeProductAsAdminCommand(args);
529
- if (typeof optionsOrCb === "function") {
530
- this.send(command, optionsOrCb);
531
- }
532
- else if (typeof cb === "function") {
533
- if (typeof optionsOrCb !== "object")
534
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
535
- this.send(command, optionsOrCb || {}, cb);
536
- }
537
- else {
538
- return this.send(command, optionsOrCb);
539
- }
540
- }
541
- describeProductView(args, optionsOrCb, cb) {
542
- const command = new DescribeProductViewCommand(args);
543
- if (typeof optionsOrCb === "function") {
544
- this.send(command, optionsOrCb);
545
- }
546
- else if (typeof cb === "function") {
547
- if (typeof optionsOrCb !== "object")
548
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
549
- this.send(command, optionsOrCb || {}, cb);
550
- }
551
- else {
552
- return this.send(command, optionsOrCb);
553
- }
554
- }
555
- describeProvisionedProduct(args, optionsOrCb, cb) {
556
- const command = new DescribeProvisionedProductCommand(args);
557
- if (typeof optionsOrCb === "function") {
558
- this.send(command, optionsOrCb);
559
- }
560
- else if (typeof cb === "function") {
561
- if (typeof optionsOrCb !== "object")
562
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
563
- this.send(command, optionsOrCb || {}, cb);
564
- }
565
- else {
566
- return this.send(command, optionsOrCb);
567
- }
568
- }
569
- describeProvisionedProductPlan(args, optionsOrCb, cb) {
570
- const command = new DescribeProvisionedProductPlanCommand(args);
571
- if (typeof optionsOrCb === "function") {
572
- this.send(command, optionsOrCb);
573
- }
574
- else if (typeof cb === "function") {
575
- if (typeof optionsOrCb !== "object")
576
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
577
- this.send(command, optionsOrCb || {}, cb);
578
- }
579
- else {
580
- return this.send(command, optionsOrCb);
581
- }
582
- }
583
- describeProvisioningArtifact(args, optionsOrCb, cb) {
584
- const command = new DescribeProvisioningArtifactCommand(args);
585
- if (typeof optionsOrCb === "function") {
586
- this.send(command, optionsOrCb);
587
- }
588
- else if (typeof cb === "function") {
589
- if (typeof optionsOrCb !== "object")
590
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
591
- this.send(command, optionsOrCb || {}, cb);
592
- }
593
- else {
594
- return this.send(command, optionsOrCb);
595
- }
596
- }
597
- describeProvisioningParameters(args, optionsOrCb, cb) {
598
- const command = new DescribeProvisioningParametersCommand(args);
599
- if (typeof optionsOrCb === "function") {
600
- this.send(command, optionsOrCb);
601
- }
602
- else if (typeof cb === "function") {
603
- if (typeof optionsOrCb !== "object")
604
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
605
- this.send(command, optionsOrCb || {}, cb);
606
- }
607
- else {
608
- return this.send(command, optionsOrCb);
609
- }
610
- }
611
- describeRecord(args, optionsOrCb, cb) {
612
- const command = new DescribeRecordCommand(args);
613
- if (typeof optionsOrCb === "function") {
614
- this.send(command, optionsOrCb);
615
- }
616
- else if (typeof cb === "function") {
617
- if (typeof optionsOrCb !== "object")
618
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
619
- this.send(command, optionsOrCb || {}, cb);
620
- }
621
- else {
622
- return this.send(command, optionsOrCb);
623
- }
624
- }
625
- describeServiceAction(args, optionsOrCb, cb) {
626
- const command = new DescribeServiceActionCommand(args);
627
- if (typeof optionsOrCb === "function") {
628
- this.send(command, optionsOrCb);
629
- }
630
- else if (typeof cb === "function") {
631
- if (typeof optionsOrCb !== "object")
632
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
633
- this.send(command, optionsOrCb || {}, cb);
634
- }
635
- else {
636
- return this.send(command, optionsOrCb);
637
- }
638
- }
639
- describeServiceActionExecutionParameters(args, optionsOrCb, cb) {
640
- const command = new DescribeServiceActionExecutionParametersCommand(args);
641
- if (typeof optionsOrCb === "function") {
642
- this.send(command, optionsOrCb);
643
- }
644
- else if (typeof cb === "function") {
645
- if (typeof optionsOrCb !== "object")
646
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
647
- this.send(command, optionsOrCb || {}, cb);
648
- }
649
- else {
650
- return this.send(command, optionsOrCb);
651
- }
652
- }
653
- describeTagOption(args, optionsOrCb, cb) {
654
- const command = new DescribeTagOptionCommand(args);
655
- if (typeof optionsOrCb === "function") {
656
- this.send(command, optionsOrCb);
657
- }
658
- else if (typeof cb === "function") {
659
- if (typeof optionsOrCb !== "object")
660
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
661
- this.send(command, optionsOrCb || {}, cb);
662
- }
663
- else {
664
- return this.send(command, optionsOrCb);
665
- }
666
- }
667
- disableAWSOrganizationsAccess(args, optionsOrCb, cb) {
668
- const command = new DisableAWSOrganizationsAccessCommand(args);
669
- if (typeof optionsOrCb === "function") {
670
- this.send(command, optionsOrCb);
671
- }
672
- else if (typeof cb === "function") {
673
- if (typeof optionsOrCb !== "object")
674
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
675
- this.send(command, optionsOrCb || {}, cb);
676
- }
677
- else {
678
- return this.send(command, optionsOrCb);
679
- }
680
- }
681
- disassociateBudgetFromResource(args, optionsOrCb, cb) {
682
- const command = new DisassociateBudgetFromResourceCommand(args);
683
- if (typeof optionsOrCb === "function") {
684
- this.send(command, optionsOrCb);
685
- }
686
- else if (typeof cb === "function") {
687
- if (typeof optionsOrCb !== "object")
688
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
689
- this.send(command, optionsOrCb || {}, cb);
690
- }
691
- else {
692
- return this.send(command, optionsOrCb);
693
- }
694
- }
695
- disassociatePrincipalFromPortfolio(args, optionsOrCb, cb) {
696
- const command = new DisassociatePrincipalFromPortfolioCommand(args);
697
- if (typeof optionsOrCb === "function") {
698
- this.send(command, optionsOrCb);
699
- }
700
- else if (typeof cb === "function") {
701
- if (typeof optionsOrCb !== "object")
702
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
703
- this.send(command, optionsOrCb || {}, cb);
704
- }
705
- else {
706
- return this.send(command, optionsOrCb);
707
- }
708
- }
709
- disassociateProductFromPortfolio(args, optionsOrCb, cb) {
710
- const command = new DisassociateProductFromPortfolioCommand(args);
711
- if (typeof optionsOrCb === "function") {
712
- this.send(command, optionsOrCb);
713
- }
714
- else if (typeof cb === "function") {
715
- if (typeof optionsOrCb !== "object")
716
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
717
- this.send(command, optionsOrCb || {}, cb);
718
- }
719
- else {
720
- return this.send(command, optionsOrCb);
721
- }
722
- }
723
- disassociateServiceActionFromProvisioningArtifact(args, optionsOrCb, cb) {
724
- const command = new DisassociateServiceActionFromProvisioningArtifactCommand(args);
725
- if (typeof optionsOrCb === "function") {
726
- this.send(command, optionsOrCb);
727
- }
728
- else if (typeof cb === "function") {
729
- if (typeof optionsOrCb !== "object")
730
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
731
- this.send(command, optionsOrCb || {}, cb);
732
- }
733
- else {
734
- return this.send(command, optionsOrCb);
735
- }
736
- }
737
- disassociateTagOptionFromResource(args, optionsOrCb, cb) {
738
- const command = new DisassociateTagOptionFromResourceCommand(args);
739
- if (typeof optionsOrCb === "function") {
740
- this.send(command, optionsOrCb);
741
- }
742
- else if (typeof cb === "function") {
743
- if (typeof optionsOrCb !== "object")
744
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
745
- this.send(command, optionsOrCb || {}, cb);
746
- }
747
- else {
748
- return this.send(command, optionsOrCb);
749
- }
750
- }
751
- enableAWSOrganizationsAccess(args, optionsOrCb, cb) {
752
- const command = new EnableAWSOrganizationsAccessCommand(args);
753
- if (typeof optionsOrCb === "function") {
754
- this.send(command, optionsOrCb);
755
- }
756
- else if (typeof cb === "function") {
757
- if (typeof optionsOrCb !== "object")
758
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
759
- this.send(command, optionsOrCb || {}, cb);
760
- }
761
- else {
762
- return this.send(command, optionsOrCb);
763
- }
764
- }
765
- executeProvisionedProductPlan(args, optionsOrCb, cb) {
766
- const command = new ExecuteProvisionedProductPlanCommand(args);
767
- if (typeof optionsOrCb === "function") {
768
- this.send(command, optionsOrCb);
769
- }
770
- else if (typeof cb === "function") {
771
- if (typeof optionsOrCb !== "object")
772
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
773
- this.send(command, optionsOrCb || {}, cb);
774
- }
775
- else {
776
- return this.send(command, optionsOrCb);
777
- }
778
- }
779
- executeProvisionedProductServiceAction(args, optionsOrCb, cb) {
780
- const command = new ExecuteProvisionedProductServiceActionCommand(args);
781
- if (typeof optionsOrCb === "function") {
782
- this.send(command, optionsOrCb);
783
- }
784
- else if (typeof cb === "function") {
785
- if (typeof optionsOrCb !== "object")
786
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
787
- this.send(command, optionsOrCb || {}, cb);
788
- }
789
- else {
790
- return this.send(command, optionsOrCb);
791
- }
792
- }
793
- getAWSOrganizationsAccessStatus(args, optionsOrCb, cb) {
794
- const command = new GetAWSOrganizationsAccessStatusCommand(args);
795
- if (typeof optionsOrCb === "function") {
796
- this.send(command, optionsOrCb);
797
- }
798
- else if (typeof cb === "function") {
799
- if (typeof optionsOrCb !== "object")
800
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
801
- this.send(command, optionsOrCb || {}, cb);
802
- }
803
- else {
804
- return this.send(command, optionsOrCb);
805
- }
806
- }
807
- getProvisionedProductOutputs(args, optionsOrCb, cb) {
808
- const command = new GetProvisionedProductOutputsCommand(args);
809
- if (typeof optionsOrCb === "function") {
810
- this.send(command, optionsOrCb);
811
- }
812
- else if (typeof cb === "function") {
813
- if (typeof optionsOrCb !== "object")
814
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
815
- this.send(command, optionsOrCb || {}, cb);
816
- }
817
- else {
818
- return this.send(command, optionsOrCb);
819
- }
820
- }
821
- importAsProvisionedProduct(args, optionsOrCb, cb) {
822
- const command = new ImportAsProvisionedProductCommand(args);
823
- if (typeof optionsOrCb === "function") {
824
- this.send(command, optionsOrCb);
825
- }
826
- else if (typeof cb === "function") {
827
- if (typeof optionsOrCb !== "object")
828
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
829
- this.send(command, optionsOrCb || {}, cb);
830
- }
831
- else {
832
- return this.send(command, optionsOrCb);
833
- }
834
- }
835
- listAcceptedPortfolioShares(args, optionsOrCb, cb) {
836
- const command = new ListAcceptedPortfolioSharesCommand(args);
837
- if (typeof optionsOrCb === "function") {
838
- this.send(command, optionsOrCb);
839
- }
840
- else if (typeof cb === "function") {
841
- if (typeof optionsOrCb !== "object")
842
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
843
- this.send(command, optionsOrCb || {}, cb);
844
- }
845
- else {
846
- return this.send(command, optionsOrCb);
847
- }
848
- }
849
- listBudgetsForResource(args, optionsOrCb, cb) {
850
- const command = new ListBudgetsForResourceCommand(args);
851
- if (typeof optionsOrCb === "function") {
852
- this.send(command, optionsOrCb);
853
- }
854
- else if (typeof cb === "function") {
855
- if (typeof optionsOrCb !== "object")
856
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
857
- this.send(command, optionsOrCb || {}, cb);
858
- }
859
- else {
860
- return this.send(command, optionsOrCb);
861
- }
862
- }
863
- listConstraintsForPortfolio(args, optionsOrCb, cb) {
864
- const command = new ListConstraintsForPortfolioCommand(args);
865
- if (typeof optionsOrCb === "function") {
866
- this.send(command, optionsOrCb);
867
- }
868
- else if (typeof cb === "function") {
869
- if (typeof optionsOrCb !== "object")
870
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
871
- this.send(command, optionsOrCb || {}, cb);
872
- }
873
- else {
874
- return this.send(command, optionsOrCb);
875
- }
876
- }
877
- listLaunchPaths(args, optionsOrCb, cb) {
878
- const command = new ListLaunchPathsCommand(args);
879
- if (typeof optionsOrCb === "function") {
880
- this.send(command, optionsOrCb);
881
- }
882
- else if (typeof cb === "function") {
883
- if (typeof optionsOrCb !== "object")
884
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
885
- this.send(command, optionsOrCb || {}, cb);
886
- }
887
- else {
888
- return this.send(command, optionsOrCb);
889
- }
890
- }
891
- listOrganizationPortfolioAccess(args, optionsOrCb, cb) {
892
- const command = new ListOrganizationPortfolioAccessCommand(args);
893
- if (typeof optionsOrCb === "function") {
894
- this.send(command, optionsOrCb);
895
- }
896
- else if (typeof cb === "function") {
897
- if (typeof optionsOrCb !== "object")
898
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
899
- this.send(command, optionsOrCb || {}, cb);
900
- }
901
- else {
902
- return this.send(command, optionsOrCb);
903
- }
904
- }
905
- listPortfolioAccess(args, optionsOrCb, cb) {
906
- const command = new ListPortfolioAccessCommand(args);
907
- if (typeof optionsOrCb === "function") {
908
- this.send(command, optionsOrCb);
909
- }
910
- else if (typeof cb === "function") {
911
- if (typeof optionsOrCb !== "object")
912
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
913
- this.send(command, optionsOrCb || {}, cb);
914
- }
915
- else {
916
- return this.send(command, optionsOrCb);
917
- }
918
- }
919
- listPortfolios(args, optionsOrCb, cb) {
920
- const command = new ListPortfoliosCommand(args);
921
- if (typeof optionsOrCb === "function") {
922
- this.send(command, optionsOrCb);
923
- }
924
- else if (typeof cb === "function") {
925
- if (typeof optionsOrCb !== "object")
926
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
927
- this.send(command, optionsOrCb || {}, cb);
928
- }
929
- else {
930
- return this.send(command, optionsOrCb);
931
- }
932
- }
933
- listPortfoliosForProduct(args, optionsOrCb, cb) {
934
- const command = new ListPortfoliosForProductCommand(args);
935
- if (typeof optionsOrCb === "function") {
936
- this.send(command, optionsOrCb);
937
- }
938
- else if (typeof cb === "function") {
939
- if (typeof optionsOrCb !== "object")
940
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
941
- this.send(command, optionsOrCb || {}, cb);
942
- }
943
- else {
944
- return this.send(command, optionsOrCb);
945
- }
946
- }
947
- listPrincipalsForPortfolio(args, optionsOrCb, cb) {
948
- const command = new ListPrincipalsForPortfolioCommand(args);
949
- if (typeof optionsOrCb === "function") {
950
- this.send(command, optionsOrCb);
951
- }
952
- else if (typeof cb === "function") {
953
- if (typeof optionsOrCb !== "object")
954
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
955
- this.send(command, optionsOrCb || {}, cb);
956
- }
957
- else {
958
- return this.send(command, optionsOrCb);
959
- }
960
- }
961
- listProvisionedProductPlans(args, optionsOrCb, cb) {
962
- const command = new ListProvisionedProductPlansCommand(args);
963
- if (typeof optionsOrCb === "function") {
964
- this.send(command, optionsOrCb);
965
- }
966
- else if (typeof cb === "function") {
967
- if (typeof optionsOrCb !== "object")
968
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
969
- this.send(command, optionsOrCb || {}, cb);
970
- }
971
- else {
972
- return this.send(command, optionsOrCb);
973
- }
974
- }
975
- listProvisioningArtifacts(args, optionsOrCb, cb) {
976
- const command = new ListProvisioningArtifactsCommand(args);
977
- if (typeof optionsOrCb === "function") {
978
- this.send(command, optionsOrCb);
979
- }
980
- else if (typeof cb === "function") {
981
- if (typeof optionsOrCb !== "object")
982
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
983
- this.send(command, optionsOrCb || {}, cb);
984
- }
985
- else {
986
- return this.send(command, optionsOrCb);
987
- }
988
- }
989
- listProvisioningArtifactsForServiceAction(args, optionsOrCb, cb) {
990
- const command = new ListProvisioningArtifactsForServiceActionCommand(args);
991
- if (typeof optionsOrCb === "function") {
992
- this.send(command, optionsOrCb);
993
- }
994
- else if (typeof cb === "function") {
995
- if (typeof optionsOrCb !== "object")
996
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
997
- this.send(command, optionsOrCb || {}, cb);
998
- }
999
- else {
1000
- return this.send(command, optionsOrCb);
1001
- }
1002
- }
1003
- listRecordHistory(args, optionsOrCb, cb) {
1004
- const command = new ListRecordHistoryCommand(args);
1005
- if (typeof optionsOrCb === "function") {
1006
- this.send(command, optionsOrCb);
1007
- }
1008
- else if (typeof cb === "function") {
1009
- if (typeof optionsOrCb !== "object")
1010
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1011
- this.send(command, optionsOrCb || {}, cb);
1012
- }
1013
- else {
1014
- return this.send(command, optionsOrCb);
1015
- }
1016
- }
1017
- listResourcesForTagOption(args, optionsOrCb, cb) {
1018
- const command = new ListResourcesForTagOptionCommand(args);
1019
- if (typeof optionsOrCb === "function") {
1020
- this.send(command, optionsOrCb);
1021
- }
1022
- else if (typeof cb === "function") {
1023
- if (typeof optionsOrCb !== "object")
1024
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1025
- this.send(command, optionsOrCb || {}, cb);
1026
- }
1027
- else {
1028
- return this.send(command, optionsOrCb);
1029
- }
1030
- }
1031
- listServiceActions(args, optionsOrCb, cb) {
1032
- const command = new ListServiceActionsCommand(args);
1033
- if (typeof optionsOrCb === "function") {
1034
- this.send(command, optionsOrCb);
1035
- }
1036
- else if (typeof cb === "function") {
1037
- if (typeof optionsOrCb !== "object")
1038
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1039
- this.send(command, optionsOrCb || {}, cb);
1040
- }
1041
- else {
1042
- return this.send(command, optionsOrCb);
1043
- }
1044
- }
1045
- listServiceActionsForProvisioningArtifact(args, optionsOrCb, cb) {
1046
- const command = new ListServiceActionsForProvisioningArtifactCommand(args);
1047
- if (typeof optionsOrCb === "function") {
1048
- this.send(command, optionsOrCb);
1049
- }
1050
- else if (typeof cb === "function") {
1051
- if (typeof optionsOrCb !== "object")
1052
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1053
- this.send(command, optionsOrCb || {}, cb);
1054
- }
1055
- else {
1056
- return this.send(command, optionsOrCb);
1057
- }
1058
- }
1059
- listStackInstancesForProvisionedProduct(args, optionsOrCb, cb) {
1060
- const command = new ListStackInstancesForProvisionedProductCommand(args);
1061
- if (typeof optionsOrCb === "function") {
1062
- this.send(command, optionsOrCb);
1063
- }
1064
- else if (typeof cb === "function") {
1065
- if (typeof optionsOrCb !== "object")
1066
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1067
- this.send(command, optionsOrCb || {}, cb);
1068
- }
1069
- else {
1070
- return this.send(command, optionsOrCb);
1071
- }
1072
- }
1073
- listTagOptions(args, optionsOrCb, cb) {
1074
- const command = new ListTagOptionsCommand(args);
1075
- if (typeof optionsOrCb === "function") {
1076
- this.send(command, optionsOrCb);
1077
- }
1078
- else if (typeof cb === "function") {
1079
- if (typeof optionsOrCb !== "object")
1080
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1081
- this.send(command, optionsOrCb || {}, cb);
1082
- }
1083
- else {
1084
- return this.send(command, optionsOrCb);
1085
- }
1086
- }
1087
- notifyProvisionProductEngineWorkflowResult(args, optionsOrCb, cb) {
1088
- const command = new NotifyProvisionProductEngineWorkflowResultCommand(args);
1089
- if (typeof optionsOrCb === "function") {
1090
- this.send(command, optionsOrCb);
1091
- }
1092
- else if (typeof cb === "function") {
1093
- if (typeof optionsOrCb !== "object")
1094
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1095
- this.send(command, optionsOrCb || {}, cb);
1096
- }
1097
- else {
1098
- return this.send(command, optionsOrCb);
1099
- }
1100
- }
1101
- notifyTerminateProvisionedProductEngineWorkflowResult(args, optionsOrCb, cb) {
1102
- const command = new NotifyTerminateProvisionedProductEngineWorkflowResultCommand(args);
1103
- if (typeof optionsOrCb === "function") {
1104
- this.send(command, optionsOrCb);
1105
- }
1106
- else if (typeof cb === "function") {
1107
- if (typeof optionsOrCb !== "object")
1108
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1109
- this.send(command, optionsOrCb || {}, cb);
1110
- }
1111
- else {
1112
- return this.send(command, optionsOrCb);
1113
- }
1114
- }
1115
- notifyUpdateProvisionedProductEngineWorkflowResult(args, optionsOrCb, cb) {
1116
- const command = new NotifyUpdateProvisionedProductEngineWorkflowResultCommand(args);
1117
- if (typeof optionsOrCb === "function") {
1118
- this.send(command, optionsOrCb);
1119
- }
1120
- else if (typeof cb === "function") {
1121
- if (typeof optionsOrCb !== "object")
1122
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1123
- this.send(command, optionsOrCb || {}, cb);
1124
- }
1125
- else {
1126
- return this.send(command, optionsOrCb);
1127
- }
1128
- }
1129
- provisionProduct(args, optionsOrCb, cb) {
1130
- const command = new ProvisionProductCommand(args);
1131
- if (typeof optionsOrCb === "function") {
1132
- this.send(command, optionsOrCb);
1133
- }
1134
- else if (typeof cb === "function") {
1135
- if (typeof optionsOrCb !== "object")
1136
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1137
- this.send(command, optionsOrCb || {}, cb);
1138
- }
1139
- else {
1140
- return this.send(command, optionsOrCb);
1141
- }
1142
- }
1143
- rejectPortfolioShare(args, optionsOrCb, cb) {
1144
- const command = new RejectPortfolioShareCommand(args);
1145
- if (typeof optionsOrCb === "function") {
1146
- this.send(command, optionsOrCb);
1147
- }
1148
- else if (typeof cb === "function") {
1149
- if (typeof optionsOrCb !== "object")
1150
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1151
- this.send(command, optionsOrCb || {}, cb);
1152
- }
1153
- else {
1154
- return this.send(command, optionsOrCb);
1155
- }
1156
- }
1157
- scanProvisionedProducts(args, optionsOrCb, cb) {
1158
- const command = new ScanProvisionedProductsCommand(args);
1159
- if (typeof optionsOrCb === "function") {
1160
- this.send(command, optionsOrCb);
1161
- }
1162
- else if (typeof cb === "function") {
1163
- if (typeof optionsOrCb !== "object")
1164
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1165
- this.send(command, optionsOrCb || {}, cb);
1166
- }
1167
- else {
1168
- return this.send(command, optionsOrCb);
1169
- }
1170
- }
1171
- searchProducts(args, optionsOrCb, cb) {
1172
- const command = new SearchProductsCommand(args);
1173
- if (typeof optionsOrCb === "function") {
1174
- this.send(command, optionsOrCb);
1175
- }
1176
- else if (typeof cb === "function") {
1177
- if (typeof optionsOrCb !== "object")
1178
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1179
- this.send(command, optionsOrCb || {}, cb);
1180
- }
1181
- else {
1182
- return this.send(command, optionsOrCb);
1183
- }
1184
- }
1185
- searchProductsAsAdmin(args, optionsOrCb, cb) {
1186
- const command = new SearchProductsAsAdminCommand(args);
1187
- if (typeof optionsOrCb === "function") {
1188
- this.send(command, optionsOrCb);
1189
- }
1190
- else if (typeof cb === "function") {
1191
- if (typeof optionsOrCb !== "object")
1192
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1193
- this.send(command, optionsOrCb || {}, cb);
1194
- }
1195
- else {
1196
- return this.send(command, optionsOrCb);
1197
- }
1198
- }
1199
- searchProvisionedProducts(args, optionsOrCb, cb) {
1200
- const command = new SearchProvisionedProductsCommand(args);
1201
- if (typeof optionsOrCb === "function") {
1202
- this.send(command, optionsOrCb);
1203
- }
1204
- else if (typeof cb === "function") {
1205
- if (typeof optionsOrCb !== "object")
1206
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1207
- this.send(command, optionsOrCb || {}, cb);
1208
- }
1209
- else {
1210
- return this.send(command, optionsOrCb);
1211
- }
1212
- }
1213
- terminateProvisionedProduct(args, optionsOrCb, cb) {
1214
- const command = new TerminateProvisionedProductCommand(args);
1215
- if (typeof optionsOrCb === "function") {
1216
- this.send(command, optionsOrCb);
1217
- }
1218
- else if (typeof cb === "function") {
1219
- if (typeof optionsOrCb !== "object")
1220
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1221
- this.send(command, optionsOrCb || {}, cb);
1222
- }
1223
- else {
1224
- return this.send(command, optionsOrCb);
1225
- }
1226
- }
1227
- updateConstraint(args, optionsOrCb, cb) {
1228
- const command = new UpdateConstraintCommand(args);
1229
- if (typeof optionsOrCb === "function") {
1230
- this.send(command, optionsOrCb);
1231
- }
1232
- else if (typeof cb === "function") {
1233
- if (typeof optionsOrCb !== "object")
1234
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1235
- this.send(command, optionsOrCb || {}, cb);
1236
- }
1237
- else {
1238
- return this.send(command, optionsOrCb);
1239
- }
1240
- }
1241
- updatePortfolio(args, optionsOrCb, cb) {
1242
- const command = new UpdatePortfolioCommand(args);
1243
- if (typeof optionsOrCb === "function") {
1244
- this.send(command, optionsOrCb);
1245
- }
1246
- else if (typeof cb === "function") {
1247
- if (typeof optionsOrCb !== "object")
1248
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1249
- this.send(command, optionsOrCb || {}, cb);
1250
- }
1251
- else {
1252
- return this.send(command, optionsOrCb);
1253
- }
1254
- }
1255
- updatePortfolioShare(args, optionsOrCb, cb) {
1256
- const command = new UpdatePortfolioShareCommand(args);
1257
- if (typeof optionsOrCb === "function") {
1258
- this.send(command, optionsOrCb);
1259
- }
1260
- else if (typeof cb === "function") {
1261
- if (typeof optionsOrCb !== "object")
1262
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1263
- this.send(command, optionsOrCb || {}, cb);
1264
- }
1265
- else {
1266
- return this.send(command, optionsOrCb);
1267
- }
1268
- }
1269
- updateProduct(args, optionsOrCb, cb) {
1270
- const command = new UpdateProductCommand(args);
1271
- if (typeof optionsOrCb === "function") {
1272
- this.send(command, optionsOrCb);
1273
- }
1274
- else if (typeof cb === "function") {
1275
- if (typeof optionsOrCb !== "object")
1276
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1277
- this.send(command, optionsOrCb || {}, cb);
1278
- }
1279
- else {
1280
- return this.send(command, optionsOrCb);
1281
- }
1282
- }
1283
- updateProvisionedProduct(args, optionsOrCb, cb) {
1284
- const command = new UpdateProvisionedProductCommand(args);
1285
- if (typeof optionsOrCb === "function") {
1286
- this.send(command, optionsOrCb);
1287
- }
1288
- else if (typeof cb === "function") {
1289
- if (typeof optionsOrCb !== "object")
1290
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1291
- this.send(command, optionsOrCb || {}, cb);
1292
- }
1293
- else {
1294
- return this.send(command, optionsOrCb);
1295
- }
1296
- }
1297
- updateProvisionedProductProperties(args, optionsOrCb, cb) {
1298
- const command = new UpdateProvisionedProductPropertiesCommand(args);
1299
- if (typeof optionsOrCb === "function") {
1300
- this.send(command, optionsOrCb);
1301
- }
1302
- else if (typeof cb === "function") {
1303
- if (typeof optionsOrCb !== "object")
1304
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1305
- this.send(command, optionsOrCb || {}, cb);
1306
- }
1307
- else {
1308
- return this.send(command, optionsOrCb);
1309
- }
1310
- }
1311
- updateProvisioningArtifact(args, optionsOrCb, cb) {
1312
- const command = new UpdateProvisioningArtifactCommand(args);
1313
- if (typeof optionsOrCb === "function") {
1314
- this.send(command, optionsOrCb);
1315
- }
1316
- else if (typeof cb === "function") {
1317
- if (typeof optionsOrCb !== "object")
1318
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1319
- this.send(command, optionsOrCb || {}, cb);
1320
- }
1321
- else {
1322
- return this.send(command, optionsOrCb);
1323
- }
1324
- }
1325
- updateServiceAction(args, optionsOrCb, cb) {
1326
- const command = new UpdateServiceActionCommand(args);
1327
- if (typeof optionsOrCb === "function") {
1328
- this.send(command, optionsOrCb);
1329
- }
1330
- else if (typeof cb === "function") {
1331
- if (typeof optionsOrCb !== "object")
1332
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1333
- this.send(command, optionsOrCb || {}, cb);
1334
- }
1335
- else {
1336
- return this.send(command, optionsOrCb);
1337
- }
1338
- }
1339
- updateTagOption(args, optionsOrCb, cb) {
1340
- const command = new UpdateTagOptionCommand(args);
1341
- if (typeof optionsOrCb === "function") {
1342
- this.send(command, optionsOrCb);
1343
- }
1344
- else if (typeof cb === "function") {
1345
- if (typeof optionsOrCb !== "object")
1346
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1347
- this.send(command, optionsOrCb || {}, cb);
1348
- }
1349
- else {
1350
- return this.send(command, optionsOrCb);
1351
- }
1352
- }
1353
186
  }
187
+ createAggregatedClient(commands, ServiceCatalog);