@aws-sdk/client-panorama 3.721.0 → 3.726.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 +270 -142
- package/dist-es/PanoramaClient.js +1 -0
- package/dist-es/models/models_0.js +33 -12
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -204,7 +204,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
204
204
|
}, "resolveRuntimeExtensions");
|
|
205
205
|
|
|
206
206
|
// src/PanoramaClient.ts
|
|
207
|
-
var
|
|
207
|
+
var PanoramaClient = class extends import_smithy_client.Client {
|
|
208
|
+
static {
|
|
209
|
+
__name(this, "PanoramaClient");
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
* The resolved configuration of PanoramaClient class. This is resolved and normalized from the {@link PanoramaClientConfig | constructor configuration interface}.
|
|
213
|
+
*/
|
|
214
|
+
config;
|
|
208
215
|
constructor(...[configuration]) {
|
|
209
216
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
210
217
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -214,7 +221,7 @@ var _PanoramaClient = class _PanoramaClient extends import_smithy_client.Client
|
|
|
214
221
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
215
222
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
216
223
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
217
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
224
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
218
225
|
super(_config_8);
|
|
219
226
|
this.config = _config_8;
|
|
220
227
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -242,8 +249,6 @@ var _PanoramaClient = class _PanoramaClient extends import_smithy_client.Client
|
|
|
242
249
|
super.destroy();
|
|
243
250
|
}
|
|
244
251
|
};
|
|
245
|
-
__name(_PanoramaClient, "PanoramaClient");
|
|
246
|
-
var PanoramaClient = _PanoramaClient;
|
|
247
252
|
|
|
248
253
|
// src/Panorama.ts
|
|
249
254
|
|
|
@@ -263,7 +268,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
263
268
|
|
|
264
269
|
// src/models/PanoramaServiceException.ts
|
|
265
270
|
|
|
266
|
-
var
|
|
271
|
+
var PanoramaServiceException = class _PanoramaServiceException extends import_smithy_client.ServiceException {
|
|
272
|
+
static {
|
|
273
|
+
__name(this, "PanoramaServiceException");
|
|
274
|
+
}
|
|
267
275
|
/**
|
|
268
276
|
* @internal
|
|
269
277
|
*/
|
|
@@ -272,11 +280,15 @@ var _PanoramaServiceException = class _PanoramaServiceException extends import_s
|
|
|
272
280
|
Object.setPrototypeOf(this, _PanoramaServiceException.prototype);
|
|
273
281
|
}
|
|
274
282
|
};
|
|
275
|
-
__name(_PanoramaServiceException, "PanoramaServiceException");
|
|
276
|
-
var PanoramaServiceException = _PanoramaServiceException;
|
|
277
283
|
|
|
278
284
|
// src/models/models_0.ts
|
|
279
|
-
var
|
|
285
|
+
var AccessDeniedException = class _AccessDeniedException extends PanoramaServiceException {
|
|
286
|
+
static {
|
|
287
|
+
__name(this, "AccessDeniedException");
|
|
288
|
+
}
|
|
289
|
+
name = "AccessDeniedException";
|
|
290
|
+
$fault = "client";
|
|
291
|
+
Message;
|
|
280
292
|
/**
|
|
281
293
|
* @internal
|
|
282
294
|
*/
|
|
@@ -286,14 +298,10 @@ var _AccessDeniedException = class _AccessDeniedException extends PanoramaServic
|
|
|
286
298
|
$fault: "client",
|
|
287
299
|
...opts
|
|
288
300
|
});
|
|
289
|
-
this.name = "AccessDeniedException";
|
|
290
|
-
this.$fault = "client";
|
|
291
301
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
292
302
|
this.Message = opts.Message;
|
|
293
303
|
}
|
|
294
304
|
};
|
|
295
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
296
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
297
305
|
var ApplicationInstanceHealthStatus = {
|
|
298
306
|
ERROR: "ERROR",
|
|
299
307
|
NOT_AVAILABLE: "NOT_AVAILABLE",
|
|
@@ -330,7 +338,33 @@ var ApplicationInstanceStatus = {
|
|
|
330
338
|
REMOVAL_REQUESTED: "REMOVAL_REQUESTED",
|
|
331
339
|
REMOVAL_SUCCEEDED: "REMOVAL_SUCCEEDED"
|
|
332
340
|
};
|
|
333
|
-
var
|
|
341
|
+
var ConflictException = class _ConflictException extends PanoramaServiceException {
|
|
342
|
+
static {
|
|
343
|
+
__name(this, "ConflictException");
|
|
344
|
+
}
|
|
345
|
+
name = "ConflictException";
|
|
346
|
+
$fault = "client";
|
|
347
|
+
Message;
|
|
348
|
+
/**
|
|
349
|
+
* <p>The resource's ID.</p>
|
|
350
|
+
* @public
|
|
351
|
+
*/
|
|
352
|
+
ResourceId;
|
|
353
|
+
/**
|
|
354
|
+
* <p>The resource's type.</p>
|
|
355
|
+
* @public
|
|
356
|
+
*/
|
|
357
|
+
ResourceType;
|
|
358
|
+
/**
|
|
359
|
+
* <p>A unique ID for the error.</p>
|
|
360
|
+
* @public
|
|
361
|
+
*/
|
|
362
|
+
ErrorId;
|
|
363
|
+
/**
|
|
364
|
+
* <p>A list of attributes that led to the exception and their values.</p>
|
|
365
|
+
* @public
|
|
366
|
+
*/
|
|
367
|
+
ErrorArguments;
|
|
334
368
|
/**
|
|
335
369
|
* @internal
|
|
336
370
|
*/
|
|
@@ -340,8 +374,6 @@ var _ConflictException = class _ConflictException extends PanoramaServiceExcepti
|
|
|
340
374
|
$fault: "client",
|
|
341
375
|
...opts
|
|
342
376
|
});
|
|
343
|
-
this.name = "ConflictException";
|
|
344
|
-
this.$fault = "client";
|
|
345
377
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
346
378
|
this.Message = opts.Message;
|
|
347
379
|
this.ResourceId = opts.ResourceId;
|
|
@@ -350,8 +382,6 @@ var _ConflictException = class _ConflictException extends PanoramaServiceExcepti
|
|
|
350
382
|
this.ErrorArguments = opts.ErrorArguments;
|
|
351
383
|
}
|
|
352
384
|
};
|
|
353
|
-
__name(_ConflictException, "ConflictException");
|
|
354
|
-
var ConflictException = _ConflictException;
|
|
355
385
|
var ConnectionType = {
|
|
356
386
|
DHCP: "DHCP",
|
|
357
387
|
STATIC_IP: "STATIC_IP"
|
|
@@ -372,7 +402,18 @@ var ManifestPayload;
|
|
|
372
402
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
373
403
|
}, "visit");
|
|
374
404
|
})(ManifestPayload || (ManifestPayload = {}));
|
|
375
|
-
var
|
|
405
|
+
var InternalServerException = class _InternalServerException extends PanoramaServiceException {
|
|
406
|
+
static {
|
|
407
|
+
__name(this, "InternalServerException");
|
|
408
|
+
}
|
|
409
|
+
name = "InternalServerException";
|
|
410
|
+
$fault = "server";
|
|
411
|
+
Message;
|
|
412
|
+
/**
|
|
413
|
+
* <p>The number of seconds a client should wait before retrying the call.</p>
|
|
414
|
+
* @public
|
|
415
|
+
*/
|
|
416
|
+
RetryAfterSeconds;
|
|
376
417
|
/**
|
|
377
418
|
* @internal
|
|
378
419
|
*/
|
|
@@ -382,16 +423,38 @@ var _InternalServerException = class _InternalServerException extends PanoramaSe
|
|
|
382
423
|
$fault: "server",
|
|
383
424
|
...opts
|
|
384
425
|
});
|
|
385
|
-
this.name = "InternalServerException";
|
|
386
|
-
this.$fault = "server";
|
|
387
426
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
388
427
|
this.Message = opts.Message;
|
|
389
428
|
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
390
429
|
}
|
|
391
430
|
};
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
431
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends PanoramaServiceException {
|
|
432
|
+
static {
|
|
433
|
+
__name(this, "ServiceQuotaExceededException");
|
|
434
|
+
}
|
|
435
|
+
name = "ServiceQuotaExceededException";
|
|
436
|
+
$fault = "client";
|
|
437
|
+
Message;
|
|
438
|
+
/**
|
|
439
|
+
* <p>The target resource's ID.</p>
|
|
440
|
+
* @public
|
|
441
|
+
*/
|
|
442
|
+
ResourceId;
|
|
443
|
+
/**
|
|
444
|
+
* <p>The target resource's type.</p>
|
|
445
|
+
* @public
|
|
446
|
+
*/
|
|
447
|
+
ResourceType;
|
|
448
|
+
/**
|
|
449
|
+
* <p>The name of the limit.</p>
|
|
450
|
+
* @public
|
|
451
|
+
*/
|
|
452
|
+
QuotaCode;
|
|
453
|
+
/**
|
|
454
|
+
* <p>The name of the service.</p>
|
|
455
|
+
* @public
|
|
456
|
+
*/
|
|
457
|
+
ServiceCode;
|
|
395
458
|
/**
|
|
396
459
|
* @internal
|
|
397
460
|
*/
|
|
@@ -401,8 +464,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
401
464
|
$fault: "client",
|
|
402
465
|
...opts
|
|
403
466
|
});
|
|
404
|
-
this.name = "ServiceQuotaExceededException";
|
|
405
|
-
this.$fault = "client";
|
|
406
467
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
407
468
|
this.Message = opts.Message;
|
|
408
469
|
this.ResourceId = opts.ResourceId;
|
|
@@ -411,15 +472,39 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
411
472
|
this.ServiceCode = opts.ServiceCode;
|
|
412
473
|
}
|
|
413
474
|
};
|
|
414
|
-
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
415
|
-
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
416
475
|
var ValidationExceptionReason = {
|
|
417
476
|
CANNOT_PARSE: "CANNOT_PARSE",
|
|
418
477
|
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
419
478
|
OTHER: "OTHER",
|
|
420
479
|
UNKNOWN_OPERATION: "UNKNOWN_OPERATION"
|
|
421
480
|
};
|
|
422
|
-
var
|
|
481
|
+
var ValidationException = class _ValidationException extends PanoramaServiceException {
|
|
482
|
+
static {
|
|
483
|
+
__name(this, "ValidationException");
|
|
484
|
+
}
|
|
485
|
+
name = "ValidationException";
|
|
486
|
+
$fault = "client";
|
|
487
|
+
Message;
|
|
488
|
+
/**
|
|
489
|
+
* <p>The reason that validation failed.</p>
|
|
490
|
+
* @public
|
|
491
|
+
*/
|
|
492
|
+
Reason;
|
|
493
|
+
/**
|
|
494
|
+
* <p>A unique ID for the error.</p>
|
|
495
|
+
* @public
|
|
496
|
+
*/
|
|
497
|
+
ErrorId;
|
|
498
|
+
/**
|
|
499
|
+
* <p>A list of attributes that led to the exception and their values.</p>
|
|
500
|
+
* @public
|
|
501
|
+
*/
|
|
502
|
+
ErrorArguments;
|
|
503
|
+
/**
|
|
504
|
+
* <p>A list of request parameters that failed validation.</p>
|
|
505
|
+
* @public
|
|
506
|
+
*/
|
|
507
|
+
Fields;
|
|
423
508
|
/**
|
|
424
509
|
* @internal
|
|
425
510
|
*/
|
|
@@ -429,8 +514,6 @@ var _ValidationException = class _ValidationException extends PanoramaServiceExc
|
|
|
429
514
|
$fault: "client",
|
|
430
515
|
...opts
|
|
431
516
|
});
|
|
432
|
-
this.name = "ValidationException";
|
|
433
|
-
this.$fault = "client";
|
|
434
517
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
435
518
|
this.Message = opts.Message;
|
|
436
519
|
this.Reason = opts.Reason;
|
|
@@ -439,13 +522,27 @@ var _ValidationException = class _ValidationException extends PanoramaServiceExc
|
|
|
439
522
|
this.Fields = opts.Fields;
|
|
440
523
|
}
|
|
441
524
|
};
|
|
442
|
-
__name(_ValidationException, "ValidationException");
|
|
443
|
-
var ValidationException = _ValidationException;
|
|
444
525
|
var JobType = {
|
|
445
526
|
OTA: "OTA",
|
|
446
527
|
REBOOT: "REBOOT"
|
|
447
528
|
};
|
|
448
|
-
var
|
|
529
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends PanoramaServiceException {
|
|
530
|
+
static {
|
|
531
|
+
__name(this, "ResourceNotFoundException");
|
|
532
|
+
}
|
|
533
|
+
name = "ResourceNotFoundException";
|
|
534
|
+
$fault = "client";
|
|
535
|
+
Message;
|
|
536
|
+
/**
|
|
537
|
+
* <p>The resource's ID.</p>
|
|
538
|
+
* @public
|
|
539
|
+
*/
|
|
540
|
+
ResourceId;
|
|
541
|
+
/**
|
|
542
|
+
* <p>The resource's type.</p>
|
|
543
|
+
* @public
|
|
544
|
+
*/
|
|
545
|
+
ResourceType;
|
|
449
546
|
/**
|
|
450
547
|
* @internal
|
|
451
548
|
*/
|
|
@@ -455,16 +552,12 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Panora
|
|
|
455
552
|
$fault: "client",
|
|
456
553
|
...opts
|
|
457
554
|
});
|
|
458
|
-
this.name = "ResourceNotFoundException";
|
|
459
|
-
this.$fault = "client";
|
|
460
555
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
461
556
|
this.Message = opts.Message;
|
|
462
557
|
this.ResourceId = opts.ResourceId;
|
|
463
558
|
this.ResourceType = opts.ResourceType;
|
|
464
559
|
}
|
|
465
560
|
};
|
|
466
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
467
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
468
561
|
var JobResourceType = {
|
|
469
562
|
PACKAGE: "PACKAGE"
|
|
470
563
|
};
|
|
@@ -1929,477 +2022,511 @@ var _sF = "statusFilter";
|
|
|
1929
2022
|
var _tK = "tagKeys";
|
|
1930
2023
|
|
|
1931
2024
|
// src/commands/CreateApplicationInstanceCommand.ts
|
|
1932
|
-
var
|
|
2025
|
+
var CreateApplicationInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1933
2026
|
return [
|
|
1934
2027
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1935
2028
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1936
2029
|
];
|
|
1937
2030
|
}).s("OmniCloudServiceLambda", "CreateApplicationInstance", {}).n("PanoramaClient", "CreateApplicationInstanceCommand").f(void 0, void 0).ser(se_CreateApplicationInstanceCommand).de(de_CreateApplicationInstanceCommand).build() {
|
|
2031
|
+
static {
|
|
2032
|
+
__name(this, "CreateApplicationInstanceCommand");
|
|
2033
|
+
}
|
|
1938
2034
|
};
|
|
1939
|
-
__name(_CreateApplicationInstanceCommand, "CreateApplicationInstanceCommand");
|
|
1940
|
-
var CreateApplicationInstanceCommand = _CreateApplicationInstanceCommand;
|
|
1941
2035
|
|
|
1942
2036
|
// src/commands/CreateJobForDevicesCommand.ts
|
|
1943
2037
|
|
|
1944
2038
|
|
|
1945
2039
|
|
|
1946
|
-
var
|
|
2040
|
+
var CreateJobForDevicesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1947
2041
|
return [
|
|
1948
2042
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1949
2043
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1950
2044
|
];
|
|
1951
2045
|
}).s("OmniCloudServiceLambda", "CreateJobForDevices", {}).n("PanoramaClient", "CreateJobForDevicesCommand").f(void 0, void 0).ser(se_CreateJobForDevicesCommand).de(de_CreateJobForDevicesCommand).build() {
|
|
2046
|
+
static {
|
|
2047
|
+
__name(this, "CreateJobForDevicesCommand");
|
|
2048
|
+
}
|
|
1952
2049
|
};
|
|
1953
|
-
__name(_CreateJobForDevicesCommand, "CreateJobForDevicesCommand");
|
|
1954
|
-
var CreateJobForDevicesCommand = _CreateJobForDevicesCommand;
|
|
1955
2050
|
|
|
1956
2051
|
// src/commands/CreateNodeFromTemplateJobCommand.ts
|
|
1957
2052
|
|
|
1958
2053
|
|
|
1959
2054
|
|
|
1960
|
-
var
|
|
2055
|
+
var CreateNodeFromTemplateJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1961
2056
|
return [
|
|
1962
2057
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1963
2058
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1964
2059
|
];
|
|
1965
2060
|
}).s("OmniCloudServiceLambda", "CreateNodeFromTemplateJob", {}).n("PanoramaClient", "CreateNodeFromTemplateJobCommand").f(CreateNodeFromTemplateJobRequestFilterSensitiveLog, void 0).ser(se_CreateNodeFromTemplateJobCommand).de(de_CreateNodeFromTemplateJobCommand).build() {
|
|
2061
|
+
static {
|
|
2062
|
+
__name(this, "CreateNodeFromTemplateJobCommand");
|
|
2063
|
+
}
|
|
1966
2064
|
};
|
|
1967
|
-
__name(_CreateNodeFromTemplateJobCommand, "CreateNodeFromTemplateJobCommand");
|
|
1968
|
-
var CreateNodeFromTemplateJobCommand = _CreateNodeFromTemplateJobCommand;
|
|
1969
2065
|
|
|
1970
2066
|
// src/commands/CreatePackageCommand.ts
|
|
1971
2067
|
|
|
1972
2068
|
|
|
1973
2069
|
|
|
1974
|
-
var
|
|
2070
|
+
var CreatePackageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1975
2071
|
return [
|
|
1976
2072
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1977
2073
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1978
2074
|
];
|
|
1979
2075
|
}).s("OmniCloudServiceLambda", "CreatePackage", {}).n("PanoramaClient", "CreatePackageCommand").f(void 0, void 0).ser(se_CreatePackageCommand).de(de_CreatePackageCommand).build() {
|
|
2076
|
+
static {
|
|
2077
|
+
__name(this, "CreatePackageCommand");
|
|
2078
|
+
}
|
|
1980
2079
|
};
|
|
1981
|
-
__name(_CreatePackageCommand, "CreatePackageCommand");
|
|
1982
|
-
var CreatePackageCommand = _CreatePackageCommand;
|
|
1983
2080
|
|
|
1984
2081
|
// src/commands/CreatePackageImportJobCommand.ts
|
|
1985
2082
|
|
|
1986
2083
|
|
|
1987
2084
|
|
|
1988
|
-
var
|
|
2085
|
+
var CreatePackageImportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1989
2086
|
return [
|
|
1990
2087
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1991
2088
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1992
2089
|
];
|
|
1993
2090
|
}).s("OmniCloudServiceLambda", "CreatePackageImportJob", {}).n("PanoramaClient", "CreatePackageImportJobCommand").f(void 0, void 0).ser(se_CreatePackageImportJobCommand).de(de_CreatePackageImportJobCommand).build() {
|
|
2091
|
+
static {
|
|
2092
|
+
__name(this, "CreatePackageImportJobCommand");
|
|
2093
|
+
}
|
|
1994
2094
|
};
|
|
1995
|
-
__name(_CreatePackageImportJobCommand, "CreatePackageImportJobCommand");
|
|
1996
|
-
var CreatePackageImportJobCommand = _CreatePackageImportJobCommand;
|
|
1997
2095
|
|
|
1998
2096
|
// src/commands/DeleteDeviceCommand.ts
|
|
1999
2097
|
|
|
2000
2098
|
|
|
2001
2099
|
|
|
2002
|
-
var
|
|
2100
|
+
var DeleteDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2003
2101
|
return [
|
|
2004
2102
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2005
2103
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2006
2104
|
];
|
|
2007
2105
|
}).s("OmniCloudServiceLambda", "DeleteDevice", {}).n("PanoramaClient", "DeleteDeviceCommand").f(void 0, void 0).ser(se_DeleteDeviceCommand).de(de_DeleteDeviceCommand).build() {
|
|
2106
|
+
static {
|
|
2107
|
+
__name(this, "DeleteDeviceCommand");
|
|
2108
|
+
}
|
|
2008
2109
|
};
|
|
2009
|
-
__name(_DeleteDeviceCommand, "DeleteDeviceCommand");
|
|
2010
|
-
var DeleteDeviceCommand = _DeleteDeviceCommand;
|
|
2011
2110
|
|
|
2012
2111
|
// src/commands/DeletePackageCommand.ts
|
|
2013
2112
|
|
|
2014
2113
|
|
|
2015
2114
|
|
|
2016
|
-
var
|
|
2115
|
+
var DeletePackageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2017
2116
|
return [
|
|
2018
2117
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2019
2118
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2020
2119
|
];
|
|
2021
2120
|
}).s("OmniCloudServiceLambda", "DeletePackage", {}).n("PanoramaClient", "DeletePackageCommand").f(void 0, void 0).ser(se_DeletePackageCommand).de(de_DeletePackageCommand).build() {
|
|
2121
|
+
static {
|
|
2122
|
+
__name(this, "DeletePackageCommand");
|
|
2123
|
+
}
|
|
2022
2124
|
};
|
|
2023
|
-
__name(_DeletePackageCommand, "DeletePackageCommand");
|
|
2024
|
-
var DeletePackageCommand = _DeletePackageCommand;
|
|
2025
2125
|
|
|
2026
2126
|
// src/commands/DeregisterPackageVersionCommand.ts
|
|
2027
2127
|
|
|
2028
2128
|
|
|
2029
2129
|
|
|
2030
|
-
var
|
|
2130
|
+
var DeregisterPackageVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2031
2131
|
return [
|
|
2032
2132
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2033
2133
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2034
2134
|
];
|
|
2035
2135
|
}).s("OmniCloudServiceLambda", "DeregisterPackageVersion", {}).n("PanoramaClient", "DeregisterPackageVersionCommand").f(void 0, void 0).ser(se_DeregisterPackageVersionCommand).de(de_DeregisterPackageVersionCommand).build() {
|
|
2136
|
+
static {
|
|
2137
|
+
__name(this, "DeregisterPackageVersionCommand");
|
|
2138
|
+
}
|
|
2036
2139
|
};
|
|
2037
|
-
__name(_DeregisterPackageVersionCommand, "DeregisterPackageVersionCommand");
|
|
2038
|
-
var DeregisterPackageVersionCommand = _DeregisterPackageVersionCommand;
|
|
2039
2140
|
|
|
2040
2141
|
// src/commands/DescribeApplicationInstanceCommand.ts
|
|
2041
2142
|
|
|
2042
2143
|
|
|
2043
2144
|
|
|
2044
|
-
var
|
|
2145
|
+
var DescribeApplicationInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2045
2146
|
return [
|
|
2046
2147
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2047
2148
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2048
2149
|
];
|
|
2049
2150
|
}).s("OmniCloudServiceLambda", "DescribeApplicationInstance", {}).n("PanoramaClient", "DescribeApplicationInstanceCommand").f(void 0, void 0).ser(se_DescribeApplicationInstanceCommand).de(de_DescribeApplicationInstanceCommand).build() {
|
|
2151
|
+
static {
|
|
2152
|
+
__name(this, "DescribeApplicationInstanceCommand");
|
|
2153
|
+
}
|
|
2050
2154
|
};
|
|
2051
|
-
__name(_DescribeApplicationInstanceCommand, "DescribeApplicationInstanceCommand");
|
|
2052
|
-
var DescribeApplicationInstanceCommand = _DescribeApplicationInstanceCommand;
|
|
2053
2155
|
|
|
2054
2156
|
// src/commands/DescribeApplicationInstanceDetailsCommand.ts
|
|
2055
2157
|
|
|
2056
2158
|
|
|
2057
2159
|
|
|
2058
|
-
var
|
|
2160
|
+
var DescribeApplicationInstanceDetailsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2059
2161
|
return [
|
|
2060
2162
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2061
2163
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2062
2164
|
];
|
|
2063
2165
|
}).s("OmniCloudServiceLambda", "DescribeApplicationInstanceDetails", {}).n("PanoramaClient", "DescribeApplicationInstanceDetailsCommand").f(void 0, void 0).ser(se_DescribeApplicationInstanceDetailsCommand).de(de_DescribeApplicationInstanceDetailsCommand).build() {
|
|
2166
|
+
static {
|
|
2167
|
+
__name(this, "DescribeApplicationInstanceDetailsCommand");
|
|
2168
|
+
}
|
|
2064
2169
|
};
|
|
2065
|
-
__name(_DescribeApplicationInstanceDetailsCommand, "DescribeApplicationInstanceDetailsCommand");
|
|
2066
|
-
var DescribeApplicationInstanceDetailsCommand = _DescribeApplicationInstanceDetailsCommand;
|
|
2067
2170
|
|
|
2068
2171
|
// src/commands/DescribeDeviceCommand.ts
|
|
2069
2172
|
|
|
2070
2173
|
|
|
2071
2174
|
|
|
2072
|
-
var
|
|
2175
|
+
var DescribeDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2073
2176
|
return [
|
|
2074
2177
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2075
2178
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2076
2179
|
];
|
|
2077
2180
|
}).s("OmniCloudServiceLambda", "DescribeDevice", {}).n("PanoramaClient", "DescribeDeviceCommand").f(void 0, void 0).ser(se_DescribeDeviceCommand).de(de_DescribeDeviceCommand).build() {
|
|
2181
|
+
static {
|
|
2182
|
+
__name(this, "DescribeDeviceCommand");
|
|
2183
|
+
}
|
|
2078
2184
|
};
|
|
2079
|
-
__name(_DescribeDeviceCommand, "DescribeDeviceCommand");
|
|
2080
|
-
var DescribeDeviceCommand = _DescribeDeviceCommand;
|
|
2081
2185
|
|
|
2082
2186
|
// src/commands/DescribeDeviceJobCommand.ts
|
|
2083
2187
|
|
|
2084
2188
|
|
|
2085
2189
|
|
|
2086
|
-
var
|
|
2190
|
+
var DescribeDeviceJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2087
2191
|
return [
|
|
2088
2192
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2089
2193
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2090
2194
|
];
|
|
2091
2195
|
}).s("OmniCloudServiceLambda", "DescribeDeviceJob", {}).n("PanoramaClient", "DescribeDeviceJobCommand").f(void 0, void 0).ser(se_DescribeDeviceJobCommand).de(de_DescribeDeviceJobCommand).build() {
|
|
2196
|
+
static {
|
|
2197
|
+
__name(this, "DescribeDeviceJobCommand");
|
|
2198
|
+
}
|
|
2092
2199
|
};
|
|
2093
|
-
__name(_DescribeDeviceJobCommand, "DescribeDeviceJobCommand");
|
|
2094
|
-
var DescribeDeviceJobCommand = _DescribeDeviceJobCommand;
|
|
2095
2200
|
|
|
2096
2201
|
// src/commands/DescribeNodeCommand.ts
|
|
2097
2202
|
|
|
2098
2203
|
|
|
2099
2204
|
|
|
2100
|
-
var
|
|
2205
|
+
var DescribeNodeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2101
2206
|
return [
|
|
2102
2207
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2103
2208
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2104
2209
|
];
|
|
2105
2210
|
}).s("OmniCloudServiceLambda", "DescribeNode", {}).n("PanoramaClient", "DescribeNodeCommand").f(void 0, void 0).ser(se_DescribeNodeCommand).de(de_DescribeNodeCommand).build() {
|
|
2211
|
+
static {
|
|
2212
|
+
__name(this, "DescribeNodeCommand");
|
|
2213
|
+
}
|
|
2106
2214
|
};
|
|
2107
|
-
__name(_DescribeNodeCommand, "DescribeNodeCommand");
|
|
2108
|
-
var DescribeNodeCommand = _DescribeNodeCommand;
|
|
2109
2215
|
|
|
2110
2216
|
// src/commands/DescribeNodeFromTemplateJobCommand.ts
|
|
2111
2217
|
|
|
2112
2218
|
|
|
2113
2219
|
|
|
2114
|
-
var
|
|
2220
|
+
var DescribeNodeFromTemplateJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2115
2221
|
return [
|
|
2116
2222
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2117
2223
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2118
2224
|
];
|
|
2119
2225
|
}).s("OmniCloudServiceLambda", "DescribeNodeFromTemplateJob", {}).n("PanoramaClient", "DescribeNodeFromTemplateJobCommand").f(void 0, DescribeNodeFromTemplateJobResponseFilterSensitiveLog).ser(se_DescribeNodeFromTemplateJobCommand).de(de_DescribeNodeFromTemplateJobCommand).build() {
|
|
2226
|
+
static {
|
|
2227
|
+
__name(this, "DescribeNodeFromTemplateJobCommand");
|
|
2228
|
+
}
|
|
2120
2229
|
};
|
|
2121
|
-
__name(_DescribeNodeFromTemplateJobCommand, "DescribeNodeFromTemplateJobCommand");
|
|
2122
|
-
var DescribeNodeFromTemplateJobCommand = _DescribeNodeFromTemplateJobCommand;
|
|
2123
2230
|
|
|
2124
2231
|
// src/commands/DescribePackageCommand.ts
|
|
2125
2232
|
|
|
2126
2233
|
|
|
2127
2234
|
|
|
2128
|
-
var
|
|
2235
|
+
var DescribePackageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2129
2236
|
return [
|
|
2130
2237
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2131
2238
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2132
2239
|
];
|
|
2133
2240
|
}).s("OmniCloudServiceLambda", "DescribePackage", {}).n("PanoramaClient", "DescribePackageCommand").f(void 0, void 0).ser(se_DescribePackageCommand).de(de_DescribePackageCommand).build() {
|
|
2241
|
+
static {
|
|
2242
|
+
__name(this, "DescribePackageCommand");
|
|
2243
|
+
}
|
|
2134
2244
|
};
|
|
2135
|
-
__name(_DescribePackageCommand, "DescribePackageCommand");
|
|
2136
|
-
var DescribePackageCommand = _DescribePackageCommand;
|
|
2137
2245
|
|
|
2138
2246
|
// src/commands/DescribePackageImportJobCommand.ts
|
|
2139
2247
|
|
|
2140
2248
|
|
|
2141
2249
|
|
|
2142
|
-
var
|
|
2250
|
+
var DescribePackageImportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2143
2251
|
return [
|
|
2144
2252
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2145
2253
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2146
2254
|
];
|
|
2147
2255
|
}).s("OmniCloudServiceLambda", "DescribePackageImportJob", {}).n("PanoramaClient", "DescribePackageImportJobCommand").f(void 0, void 0).ser(se_DescribePackageImportJobCommand).de(de_DescribePackageImportJobCommand).build() {
|
|
2256
|
+
static {
|
|
2257
|
+
__name(this, "DescribePackageImportJobCommand");
|
|
2258
|
+
}
|
|
2148
2259
|
};
|
|
2149
|
-
__name(_DescribePackageImportJobCommand, "DescribePackageImportJobCommand");
|
|
2150
|
-
var DescribePackageImportJobCommand = _DescribePackageImportJobCommand;
|
|
2151
2260
|
|
|
2152
2261
|
// src/commands/DescribePackageVersionCommand.ts
|
|
2153
2262
|
|
|
2154
2263
|
|
|
2155
2264
|
|
|
2156
|
-
var
|
|
2265
|
+
var DescribePackageVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2157
2266
|
return [
|
|
2158
2267
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2159
2268
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2160
2269
|
];
|
|
2161
2270
|
}).s("OmniCloudServiceLambda", "DescribePackageVersion", {}).n("PanoramaClient", "DescribePackageVersionCommand").f(void 0, void 0).ser(se_DescribePackageVersionCommand).de(de_DescribePackageVersionCommand).build() {
|
|
2271
|
+
static {
|
|
2272
|
+
__name(this, "DescribePackageVersionCommand");
|
|
2273
|
+
}
|
|
2162
2274
|
};
|
|
2163
|
-
__name(_DescribePackageVersionCommand, "DescribePackageVersionCommand");
|
|
2164
|
-
var DescribePackageVersionCommand = _DescribePackageVersionCommand;
|
|
2165
2275
|
|
|
2166
2276
|
// src/commands/ListApplicationInstanceDependenciesCommand.ts
|
|
2167
2277
|
|
|
2168
2278
|
|
|
2169
2279
|
|
|
2170
|
-
var
|
|
2280
|
+
var ListApplicationInstanceDependenciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2171
2281
|
return [
|
|
2172
2282
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2173
2283
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2174
2284
|
];
|
|
2175
2285
|
}).s("OmniCloudServiceLambda", "ListApplicationInstanceDependencies", {}).n("PanoramaClient", "ListApplicationInstanceDependenciesCommand").f(void 0, void 0).ser(se_ListApplicationInstanceDependenciesCommand).de(de_ListApplicationInstanceDependenciesCommand).build() {
|
|
2286
|
+
static {
|
|
2287
|
+
__name(this, "ListApplicationInstanceDependenciesCommand");
|
|
2288
|
+
}
|
|
2176
2289
|
};
|
|
2177
|
-
__name(_ListApplicationInstanceDependenciesCommand, "ListApplicationInstanceDependenciesCommand");
|
|
2178
|
-
var ListApplicationInstanceDependenciesCommand = _ListApplicationInstanceDependenciesCommand;
|
|
2179
2290
|
|
|
2180
2291
|
// src/commands/ListApplicationInstanceNodeInstancesCommand.ts
|
|
2181
2292
|
|
|
2182
2293
|
|
|
2183
2294
|
|
|
2184
|
-
var
|
|
2295
|
+
var ListApplicationInstanceNodeInstancesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2185
2296
|
return [
|
|
2186
2297
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2187
2298
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2188
2299
|
];
|
|
2189
2300
|
}).s("OmniCloudServiceLambda", "ListApplicationInstanceNodeInstances", {}).n("PanoramaClient", "ListApplicationInstanceNodeInstancesCommand").f(void 0, void 0).ser(se_ListApplicationInstanceNodeInstancesCommand).de(de_ListApplicationInstanceNodeInstancesCommand).build() {
|
|
2301
|
+
static {
|
|
2302
|
+
__name(this, "ListApplicationInstanceNodeInstancesCommand");
|
|
2303
|
+
}
|
|
2190
2304
|
};
|
|
2191
|
-
__name(_ListApplicationInstanceNodeInstancesCommand, "ListApplicationInstanceNodeInstancesCommand");
|
|
2192
|
-
var ListApplicationInstanceNodeInstancesCommand = _ListApplicationInstanceNodeInstancesCommand;
|
|
2193
2305
|
|
|
2194
2306
|
// src/commands/ListApplicationInstancesCommand.ts
|
|
2195
2307
|
|
|
2196
2308
|
|
|
2197
2309
|
|
|
2198
|
-
var
|
|
2310
|
+
var ListApplicationInstancesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2199
2311
|
return [
|
|
2200
2312
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2201
2313
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2202
2314
|
];
|
|
2203
2315
|
}).s("OmniCloudServiceLambda", "ListApplicationInstances", {}).n("PanoramaClient", "ListApplicationInstancesCommand").f(void 0, void 0).ser(se_ListApplicationInstancesCommand).de(de_ListApplicationInstancesCommand).build() {
|
|
2316
|
+
static {
|
|
2317
|
+
__name(this, "ListApplicationInstancesCommand");
|
|
2318
|
+
}
|
|
2204
2319
|
};
|
|
2205
|
-
__name(_ListApplicationInstancesCommand, "ListApplicationInstancesCommand");
|
|
2206
|
-
var ListApplicationInstancesCommand = _ListApplicationInstancesCommand;
|
|
2207
2320
|
|
|
2208
2321
|
// src/commands/ListDevicesCommand.ts
|
|
2209
2322
|
|
|
2210
2323
|
|
|
2211
2324
|
|
|
2212
|
-
var
|
|
2325
|
+
var ListDevicesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2213
2326
|
return [
|
|
2214
2327
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2215
2328
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2216
2329
|
];
|
|
2217
2330
|
}).s("OmniCloudServiceLambda", "ListDevices", {}).n("PanoramaClient", "ListDevicesCommand").f(void 0, void 0).ser(se_ListDevicesCommand).de(de_ListDevicesCommand).build() {
|
|
2331
|
+
static {
|
|
2332
|
+
__name(this, "ListDevicesCommand");
|
|
2333
|
+
}
|
|
2218
2334
|
};
|
|
2219
|
-
__name(_ListDevicesCommand, "ListDevicesCommand");
|
|
2220
|
-
var ListDevicesCommand = _ListDevicesCommand;
|
|
2221
2335
|
|
|
2222
2336
|
// src/commands/ListDevicesJobsCommand.ts
|
|
2223
2337
|
|
|
2224
2338
|
|
|
2225
2339
|
|
|
2226
|
-
var
|
|
2340
|
+
var ListDevicesJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2227
2341
|
return [
|
|
2228
2342
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2229
2343
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2230
2344
|
];
|
|
2231
2345
|
}).s("OmniCloudServiceLambda", "ListDevicesJobs", {}).n("PanoramaClient", "ListDevicesJobsCommand").f(void 0, void 0).ser(se_ListDevicesJobsCommand).de(de_ListDevicesJobsCommand).build() {
|
|
2346
|
+
static {
|
|
2347
|
+
__name(this, "ListDevicesJobsCommand");
|
|
2348
|
+
}
|
|
2232
2349
|
};
|
|
2233
|
-
__name(_ListDevicesJobsCommand, "ListDevicesJobsCommand");
|
|
2234
|
-
var ListDevicesJobsCommand = _ListDevicesJobsCommand;
|
|
2235
2350
|
|
|
2236
2351
|
// src/commands/ListNodeFromTemplateJobsCommand.ts
|
|
2237
2352
|
|
|
2238
2353
|
|
|
2239
2354
|
|
|
2240
|
-
var
|
|
2355
|
+
var ListNodeFromTemplateJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2241
2356
|
return [
|
|
2242
2357
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2243
2358
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2244
2359
|
];
|
|
2245
2360
|
}).s("OmniCloudServiceLambda", "ListNodeFromTemplateJobs", {}).n("PanoramaClient", "ListNodeFromTemplateJobsCommand").f(void 0, void 0).ser(se_ListNodeFromTemplateJobsCommand).de(de_ListNodeFromTemplateJobsCommand).build() {
|
|
2361
|
+
static {
|
|
2362
|
+
__name(this, "ListNodeFromTemplateJobsCommand");
|
|
2363
|
+
}
|
|
2246
2364
|
};
|
|
2247
|
-
__name(_ListNodeFromTemplateJobsCommand, "ListNodeFromTemplateJobsCommand");
|
|
2248
|
-
var ListNodeFromTemplateJobsCommand = _ListNodeFromTemplateJobsCommand;
|
|
2249
2365
|
|
|
2250
2366
|
// src/commands/ListNodesCommand.ts
|
|
2251
2367
|
|
|
2252
2368
|
|
|
2253
2369
|
|
|
2254
|
-
var
|
|
2370
|
+
var ListNodesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2255
2371
|
return [
|
|
2256
2372
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2257
2373
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2258
2374
|
];
|
|
2259
2375
|
}).s("OmniCloudServiceLambda", "ListNodes", {}).n("PanoramaClient", "ListNodesCommand").f(void 0, void 0).ser(se_ListNodesCommand).de(de_ListNodesCommand).build() {
|
|
2376
|
+
static {
|
|
2377
|
+
__name(this, "ListNodesCommand");
|
|
2378
|
+
}
|
|
2260
2379
|
};
|
|
2261
|
-
__name(_ListNodesCommand, "ListNodesCommand");
|
|
2262
|
-
var ListNodesCommand = _ListNodesCommand;
|
|
2263
2380
|
|
|
2264
2381
|
// src/commands/ListPackageImportJobsCommand.ts
|
|
2265
2382
|
|
|
2266
2383
|
|
|
2267
2384
|
|
|
2268
|
-
var
|
|
2385
|
+
var ListPackageImportJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2269
2386
|
return [
|
|
2270
2387
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2271
2388
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2272
2389
|
];
|
|
2273
2390
|
}).s("OmniCloudServiceLambda", "ListPackageImportJobs", {}).n("PanoramaClient", "ListPackageImportJobsCommand").f(void 0, void 0).ser(se_ListPackageImportJobsCommand).de(de_ListPackageImportJobsCommand).build() {
|
|
2391
|
+
static {
|
|
2392
|
+
__name(this, "ListPackageImportJobsCommand");
|
|
2393
|
+
}
|
|
2274
2394
|
};
|
|
2275
|
-
__name(_ListPackageImportJobsCommand, "ListPackageImportJobsCommand");
|
|
2276
|
-
var ListPackageImportJobsCommand = _ListPackageImportJobsCommand;
|
|
2277
2395
|
|
|
2278
2396
|
// src/commands/ListPackagesCommand.ts
|
|
2279
2397
|
|
|
2280
2398
|
|
|
2281
2399
|
|
|
2282
|
-
var
|
|
2400
|
+
var ListPackagesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2283
2401
|
return [
|
|
2284
2402
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2285
2403
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2286
2404
|
];
|
|
2287
2405
|
}).s("OmniCloudServiceLambda", "ListPackages", {}).n("PanoramaClient", "ListPackagesCommand").f(void 0, void 0).ser(se_ListPackagesCommand).de(de_ListPackagesCommand).build() {
|
|
2406
|
+
static {
|
|
2407
|
+
__name(this, "ListPackagesCommand");
|
|
2408
|
+
}
|
|
2288
2409
|
};
|
|
2289
|
-
__name(_ListPackagesCommand, "ListPackagesCommand");
|
|
2290
|
-
var ListPackagesCommand = _ListPackagesCommand;
|
|
2291
2410
|
|
|
2292
2411
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2293
2412
|
|
|
2294
2413
|
|
|
2295
2414
|
|
|
2296
|
-
var
|
|
2415
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2297
2416
|
return [
|
|
2298
2417
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2299
2418
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2300
2419
|
];
|
|
2301
2420
|
}).s("OmniCloudServiceLambda", "ListTagsForResource", {}).n("PanoramaClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2421
|
+
static {
|
|
2422
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2423
|
+
}
|
|
2302
2424
|
};
|
|
2303
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2304
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2305
2425
|
|
|
2306
2426
|
// src/commands/ProvisionDeviceCommand.ts
|
|
2307
2427
|
|
|
2308
2428
|
|
|
2309
2429
|
|
|
2310
|
-
var
|
|
2430
|
+
var ProvisionDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2311
2431
|
return [
|
|
2312
2432
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2313
2433
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2314
2434
|
];
|
|
2315
2435
|
}).s("OmniCloudServiceLambda", "ProvisionDevice", {}).n("PanoramaClient", "ProvisionDeviceCommand").f(void 0, void 0).ser(se_ProvisionDeviceCommand).de(de_ProvisionDeviceCommand).build() {
|
|
2436
|
+
static {
|
|
2437
|
+
__name(this, "ProvisionDeviceCommand");
|
|
2438
|
+
}
|
|
2316
2439
|
};
|
|
2317
|
-
__name(_ProvisionDeviceCommand, "ProvisionDeviceCommand");
|
|
2318
|
-
var ProvisionDeviceCommand = _ProvisionDeviceCommand;
|
|
2319
2440
|
|
|
2320
2441
|
// src/commands/RegisterPackageVersionCommand.ts
|
|
2321
2442
|
|
|
2322
2443
|
|
|
2323
2444
|
|
|
2324
|
-
var
|
|
2445
|
+
var RegisterPackageVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2325
2446
|
return [
|
|
2326
2447
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2327
2448
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2328
2449
|
];
|
|
2329
2450
|
}).s("OmniCloudServiceLambda", "RegisterPackageVersion", {}).n("PanoramaClient", "RegisterPackageVersionCommand").f(void 0, void 0).ser(se_RegisterPackageVersionCommand).de(de_RegisterPackageVersionCommand).build() {
|
|
2451
|
+
static {
|
|
2452
|
+
__name(this, "RegisterPackageVersionCommand");
|
|
2453
|
+
}
|
|
2330
2454
|
};
|
|
2331
|
-
__name(_RegisterPackageVersionCommand, "RegisterPackageVersionCommand");
|
|
2332
|
-
var RegisterPackageVersionCommand = _RegisterPackageVersionCommand;
|
|
2333
2455
|
|
|
2334
2456
|
// src/commands/RemoveApplicationInstanceCommand.ts
|
|
2335
2457
|
|
|
2336
2458
|
|
|
2337
2459
|
|
|
2338
|
-
var
|
|
2460
|
+
var RemoveApplicationInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2339
2461
|
return [
|
|
2340
2462
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2341
2463
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2342
2464
|
];
|
|
2343
2465
|
}).s("OmniCloudServiceLambda", "RemoveApplicationInstance", {}).n("PanoramaClient", "RemoveApplicationInstanceCommand").f(void 0, void 0).ser(se_RemoveApplicationInstanceCommand).de(de_RemoveApplicationInstanceCommand).build() {
|
|
2466
|
+
static {
|
|
2467
|
+
__name(this, "RemoveApplicationInstanceCommand");
|
|
2468
|
+
}
|
|
2344
2469
|
};
|
|
2345
|
-
__name(_RemoveApplicationInstanceCommand, "RemoveApplicationInstanceCommand");
|
|
2346
|
-
var RemoveApplicationInstanceCommand = _RemoveApplicationInstanceCommand;
|
|
2347
2470
|
|
|
2348
2471
|
// src/commands/SignalApplicationInstanceNodeInstancesCommand.ts
|
|
2349
2472
|
|
|
2350
2473
|
|
|
2351
2474
|
|
|
2352
|
-
var
|
|
2475
|
+
var SignalApplicationInstanceNodeInstancesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2353
2476
|
return [
|
|
2354
2477
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2355
2478
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2356
2479
|
];
|
|
2357
2480
|
}).s("OmniCloudServiceLambda", "SignalApplicationInstanceNodeInstances", {}).n("PanoramaClient", "SignalApplicationInstanceNodeInstancesCommand").f(void 0, void 0).ser(se_SignalApplicationInstanceNodeInstancesCommand).de(de_SignalApplicationInstanceNodeInstancesCommand).build() {
|
|
2481
|
+
static {
|
|
2482
|
+
__name(this, "SignalApplicationInstanceNodeInstancesCommand");
|
|
2483
|
+
}
|
|
2358
2484
|
};
|
|
2359
|
-
__name(_SignalApplicationInstanceNodeInstancesCommand, "SignalApplicationInstanceNodeInstancesCommand");
|
|
2360
|
-
var SignalApplicationInstanceNodeInstancesCommand = _SignalApplicationInstanceNodeInstancesCommand;
|
|
2361
2485
|
|
|
2362
2486
|
// src/commands/TagResourceCommand.ts
|
|
2363
2487
|
|
|
2364
2488
|
|
|
2365
2489
|
|
|
2366
|
-
var
|
|
2490
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2367
2491
|
return [
|
|
2368
2492
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2369
2493
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2370
2494
|
];
|
|
2371
2495
|
}).s("OmniCloudServiceLambda", "TagResource", {}).n("PanoramaClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2496
|
+
static {
|
|
2497
|
+
__name(this, "TagResourceCommand");
|
|
2498
|
+
}
|
|
2372
2499
|
};
|
|
2373
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2374
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2375
2500
|
|
|
2376
2501
|
// src/commands/UntagResourceCommand.ts
|
|
2377
2502
|
|
|
2378
2503
|
|
|
2379
2504
|
|
|
2380
|
-
var
|
|
2505
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2381
2506
|
return [
|
|
2382
2507
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2383
2508
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2384
2509
|
];
|
|
2385
2510
|
}).s("OmniCloudServiceLambda", "UntagResource", {}).n("PanoramaClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2511
|
+
static {
|
|
2512
|
+
__name(this, "UntagResourceCommand");
|
|
2513
|
+
}
|
|
2386
2514
|
};
|
|
2387
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2388
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2389
2515
|
|
|
2390
2516
|
// src/commands/UpdateDeviceMetadataCommand.ts
|
|
2391
2517
|
|
|
2392
2518
|
|
|
2393
2519
|
|
|
2394
|
-
var
|
|
2520
|
+
var UpdateDeviceMetadataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2395
2521
|
return [
|
|
2396
2522
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2397
2523
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2398
2524
|
];
|
|
2399
2525
|
}).s("OmniCloudServiceLambda", "UpdateDeviceMetadata", {}).n("PanoramaClient", "UpdateDeviceMetadataCommand").f(void 0, void 0).ser(se_UpdateDeviceMetadataCommand).de(de_UpdateDeviceMetadataCommand).build() {
|
|
2526
|
+
static {
|
|
2527
|
+
__name(this, "UpdateDeviceMetadataCommand");
|
|
2528
|
+
}
|
|
2400
2529
|
};
|
|
2401
|
-
__name(_UpdateDeviceMetadataCommand, "UpdateDeviceMetadataCommand");
|
|
2402
|
-
var UpdateDeviceMetadataCommand = _UpdateDeviceMetadataCommand;
|
|
2403
2530
|
|
|
2404
2531
|
// src/Panorama.ts
|
|
2405
2532
|
var commands = {
|
|
@@ -2438,10 +2565,11 @@ var commands = {
|
|
|
2438
2565
|
UntagResourceCommand,
|
|
2439
2566
|
UpdateDeviceMetadataCommand
|
|
2440
2567
|
};
|
|
2441
|
-
var
|
|
2568
|
+
var Panorama = class extends PanoramaClient {
|
|
2569
|
+
static {
|
|
2570
|
+
__name(this, "Panorama");
|
|
2571
|
+
}
|
|
2442
2572
|
};
|
|
2443
|
-
__name(_Panorama, "Panorama");
|
|
2444
|
-
var Panorama = _Panorama;
|
|
2445
2573
|
(0, import_smithy_client.createAggregatedClient)(commands, Panorama);
|
|
2446
2574
|
|
|
2447
2575
|
// src/pagination/ListApplicationInstanceDependenciesPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class PanoramaClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { PanoramaServiceException as __BaseException } from "./PanoramaServiceException";
|
|
3
3
|
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
name = "AccessDeniedException";
|
|
5
|
+
$fault = "client";
|
|
6
|
+
Message;
|
|
4
7
|
constructor(opts) {
|
|
5
8
|
super({
|
|
6
9
|
name: "AccessDeniedException",
|
|
7
10
|
$fault: "client",
|
|
8
11
|
...opts,
|
|
9
12
|
});
|
|
10
|
-
this.name = "AccessDeniedException";
|
|
11
|
-
this.$fault = "client";
|
|
12
13
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
14
|
this.Message = opts.Message;
|
|
14
15
|
}
|
|
@@ -50,14 +51,19 @@ export const ApplicationInstanceStatus = {
|
|
|
50
51
|
REMOVAL_SUCCEEDED: "REMOVAL_SUCCEEDED",
|
|
51
52
|
};
|
|
52
53
|
export class ConflictException extends __BaseException {
|
|
54
|
+
name = "ConflictException";
|
|
55
|
+
$fault = "client";
|
|
56
|
+
Message;
|
|
57
|
+
ResourceId;
|
|
58
|
+
ResourceType;
|
|
59
|
+
ErrorId;
|
|
60
|
+
ErrorArguments;
|
|
53
61
|
constructor(opts) {
|
|
54
62
|
super({
|
|
55
63
|
name: "ConflictException",
|
|
56
64
|
$fault: "client",
|
|
57
65
|
...opts,
|
|
58
66
|
});
|
|
59
|
-
this.name = "ConflictException";
|
|
60
|
-
this.$fault = "client";
|
|
61
67
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
62
68
|
this.Message = opts.Message;
|
|
63
69
|
this.ResourceId = opts.ResourceId;
|
|
@@ -87,28 +93,35 @@ export var ManifestPayload;
|
|
|
87
93
|
};
|
|
88
94
|
})(ManifestPayload || (ManifestPayload = {}));
|
|
89
95
|
export class InternalServerException extends __BaseException {
|
|
96
|
+
name = "InternalServerException";
|
|
97
|
+
$fault = "server";
|
|
98
|
+
Message;
|
|
99
|
+
RetryAfterSeconds;
|
|
90
100
|
constructor(opts) {
|
|
91
101
|
super({
|
|
92
102
|
name: "InternalServerException",
|
|
93
103
|
$fault: "server",
|
|
94
104
|
...opts,
|
|
95
105
|
});
|
|
96
|
-
this.name = "InternalServerException";
|
|
97
|
-
this.$fault = "server";
|
|
98
106
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
99
107
|
this.Message = opts.Message;
|
|
100
108
|
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
101
109
|
}
|
|
102
110
|
}
|
|
103
111
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
112
|
+
name = "ServiceQuotaExceededException";
|
|
113
|
+
$fault = "client";
|
|
114
|
+
Message;
|
|
115
|
+
ResourceId;
|
|
116
|
+
ResourceType;
|
|
117
|
+
QuotaCode;
|
|
118
|
+
ServiceCode;
|
|
104
119
|
constructor(opts) {
|
|
105
120
|
super({
|
|
106
121
|
name: "ServiceQuotaExceededException",
|
|
107
122
|
$fault: "client",
|
|
108
123
|
...opts,
|
|
109
124
|
});
|
|
110
|
-
this.name = "ServiceQuotaExceededException";
|
|
111
|
-
this.$fault = "client";
|
|
112
125
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
113
126
|
this.Message = opts.Message;
|
|
114
127
|
this.ResourceId = opts.ResourceId;
|
|
@@ -124,14 +137,19 @@ export const ValidationExceptionReason = {
|
|
|
124
137
|
UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
|
|
125
138
|
};
|
|
126
139
|
export class ValidationException extends __BaseException {
|
|
140
|
+
name = "ValidationException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
Message;
|
|
143
|
+
Reason;
|
|
144
|
+
ErrorId;
|
|
145
|
+
ErrorArguments;
|
|
146
|
+
Fields;
|
|
127
147
|
constructor(opts) {
|
|
128
148
|
super({
|
|
129
149
|
name: "ValidationException",
|
|
130
150
|
$fault: "client",
|
|
131
151
|
...opts,
|
|
132
152
|
});
|
|
133
|
-
this.name = "ValidationException";
|
|
134
|
-
this.$fault = "client";
|
|
135
153
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
136
154
|
this.Message = opts.Message;
|
|
137
155
|
this.Reason = opts.Reason;
|
|
@@ -145,14 +163,17 @@ export const JobType = {
|
|
|
145
163
|
REBOOT: "REBOOT",
|
|
146
164
|
};
|
|
147
165
|
export class ResourceNotFoundException extends __BaseException {
|
|
166
|
+
name = "ResourceNotFoundException";
|
|
167
|
+
$fault = "client";
|
|
168
|
+
Message;
|
|
169
|
+
ResourceId;
|
|
170
|
+
ResourceType;
|
|
148
171
|
constructor(opts) {
|
|
149
172
|
super({
|
|
150
173
|
name: "ResourceNotFoundException",
|
|
151
174
|
$fault: "client",
|
|
152
175
|
...opts,
|
|
153
176
|
});
|
|
154
|
-
this.name = "ResourceNotFoundException";
|
|
155
|
-
this.$fault = "client";
|
|
156
177
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
157
178
|
this.Message = opts.Message;
|
|
158
179
|
this.ResourceId = opts.ResourceId;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: PanoramaClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: PanoramaClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: PanoramaClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: PanoramaClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: PanoramaClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: PanoramaClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: PanoramaClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: PanoramaClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-panorama",
|
|
3
3
|
"description": "AWS SDK for JavaScript Panorama Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.726.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-panorama",
|
|
@@ -20,56 +20,56 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.726.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.726.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.726.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.726.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.726.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.726.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|